@charset "UTF-8";

@font-face {
    font-family: "didot";
    src: url("../fonts/didot-1.ttf") format("truetype");
}
@font-face {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    src: url("../fonts/NotoSansCJKjp-Regular.otf") format("opentype");
}
body {
    margin: 0;
}
.u-mobile {
    display: none;
}
.br__sp {
    display: none;
}
.br__pc {
    display: block;
}
.vsp {
    display: none;
}
.vpc {
    display: block;
}
a {
    transition: 0.4s;
}
a:hover {
    opacity: 0.8;
}
button {
    transition: 0.4s;
}
button:hover {
    opacity: 0.8;
}
.bottom-button a {
    transition: 0.4s;
}
.bottom-button a:hover {
    opacity: 0.8;
}
.bottom-button a::after {
    transition: 0.4s;
}
.bottom-button a:hover::after {
    transform: translateY(-2px)
}

.scroll {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.common__title-vertical {
    position: absolute;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.common__title-en {
    writing-mode: vertical-rl;
    font-family: "didot";
    font-size: 28.35px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    margin: 0;
}
.common__title-jp {
    writing-mode: vertical-rl;
    font-family: "Shippori Mincho", serif;
    font-size: 13.46px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    padding: 10px 5px 0 0;
    margin: 0;
}
.common__font-en {
    font-family: "didot";
}
.common__font-jp {
    font-family: "Shippori Mincho", serif;
}
.common__content {
    max-width: 1460px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 100px;
}
.header {
    position: absolute;
    width: 100%;
    z-index: 2;
    height: 100%;
    pointer-events: none;
}
.header__top {
    display: flex;
    align-items: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    max-width: 1240px;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 20px 0;
}
.header__logo a {
    width: 65px;
    position: relative;
    display: block;
    margin: 0 20px 0 0;
    pointer-events: auto;
}
.header__logo img {
    width: 100%;
    height: auto;
    transition: 0.5s;
}
.header__expert {
    font-size: 12.76px;
    font-family: "didot";
    color: #fff;
    line-height: calc(15 / 12);
    letter-spacing: 0.05em;
    margin: 0;
    transition: 0.5s;
    text-align: justify;
}
#header.-active .header__expert {
    color: #000000;
    transition: 0.5s;
}
#header .swiper-pagination {
    position: relative;
    text-align: left;
    margin: 5px 0 0;
}
#header .swiper-pagination-bullet {
    width: 20px;
    height: 1px;
    background-color: #fff;
    opacity: 1 !important;
    margin: 0 5px 0 0 !important;
    transition: 0.4s;
    border-radius: 0;
}
#header .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #a49980;
}
.hero .swiper-wrapper {
    margin: 0;
    padding: 0;
}
.hero .swiper-slide {
    list-style: none;
}
.hero .swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.hero .swiper-slide video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.header__content-center {
    letter-spacing: 0.1em;
    color: #fff;
    font-size: 52px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    position: absolute;
    max-width: 1500px;
    width: 100%;
    font-family: "didot";
    margin: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.5s;
}
.header__content-center-text-sp {
    display: none;
}
#header.-active .header__content-center {
    color: #000000;
    transition: 0.5s;
}
.header__content-bottom {
    margin: 0 auto;
    right: 0;
    bottom: 0;
    position: absolute;
    left: 0;
    max-width: 1240px;
    box-sizing: border-box;
    padding: 0 20px 70px 20px;
    width: 100%;
}
.header__content-bottom p {
    font-family: "didot";
    display: flex;
    text-align: justify;
    position: relative;
    justify-content: right;
    color: #fff;
    transition: 0.5s;
}
#header.-active .header__content-bottom p {
    color: #000000;
    transition: 0.5s;
}
.globalNav__wrap {
    height: 68px;
}
.globalNav {
    background: #fff;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 1000;
}
.globalNav__inner {
    box-sizing: border-box;
    padding: 16px 0;
    margin: 0 auto;
    max-width: 1240px;
    width: 100%;
}
.globalNav__group {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}
.globalNav.jsHeaderFixed {
    left: 0;
    position: fixed;
    top: 0;
}
.globalNav.jsHeaderFixed.UpMove {
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
    from {
        opacity: 1;
        z-index: 1;
    }
    to {
        opacity: 0;
        z-index: -1;
    }
}

/*　下に下がる動き　*/

.globalNav.jsHeaderFixed.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.globalNav__nav {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.globalNav__nav li {
    font-size: 16px;
    margin: 0 40px 0 0;
    box-sizing: border-box;
}

.globalNav__nav li a {
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: "didot";
    text-decoration: none;
    letter-spacing: 0.1em;
    box-sizing: border-box;
    position: relative;
    transition: 0.7s;
}

.globalNav__nav li a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #e7ddda;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .4s;
}

.globalNav__nav li a:hover::after {
    transform: scale(1, 1);
}

.globalNav__nav li a:hover {
    opacity: 0.8;
}

.globalNav__nav li a small {
    /*font-family: "Shippori Mincho", serif;*/
    font-family: "Noto Sans JP", sans-serif;
    font-size: 8px;
    font-weight: 400;
    margin: 3px 0 0;
}

.globalNav__favorite-link {
    color: #7a6b4a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: "didot";
    text-decoration: none;
    letter-spacing: 0.1em;
    box-sizing: border-box;
    position: relative;
    transition: 0.7s;
}

.globalNav__favorite-link::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #e7ddda;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .4s;
}

.globalNav__favorite-link:hover::after {
    transform: scale(1, 1);
}

.globalNav__favorite-link:hover {
    opacity: 0.8;
}

.globalNav__favorite-link span {
    /*font-family: "Shippori Mincho", serif;*/
    font-family: "Noto Sans JP", sans-serif;
    font-size: 8px;
    margin: 3px 0 0;
    box-sizing: border-box;
}

.globalNav__favorite {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.favorite__icon {
    position: relative;
    width: 17px;
}

.favorite__icon-instagram {
    position: relative;
    width: 20px;
}

.favorite__icon-dott {
    position: relative;
    width: 21px;
}

.header__nav-contact img {
    max-height: 100%;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fadeUp-2 {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fadeUp-3 {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fadeUp-4 {
    animation-name: fadeUpAnime;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    opacity: 0;
}


@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

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

.animation-content {
    opacity: 0;
    transition-duration: 0.6s;
    transform: translate(0px, 50px);
}

.is-scrollIn {
    opacity: 1;
    transform: translate(0px, 0);
}

.content__sticky {
    font-size: 20px;
    position: absolute;
    left: 25px;
    z-index: 2;
}

.content__sticky.fixed {
    position: fixed;
    top: 50px;
    /* 固定後の位置を指定 */
}


.content__sticky-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.content__sticky-img {
    width: 46px;
    box-sizing: border-box;
    position: relative;
    display: block;
    padding: 0 0 20px;
}

.content__sticky-img img {
    width: 100%;
    height: auto;
}

.content__sticky p {
    font-family: "Cormorant Garamond", serif;
    font-size: 10.63px;
    line-height: calc(15.76 / 10.63);
    writing-mode: vertical-rl;
    margin: 0;
}

.side_menu.js_fixed {
    position: fixed;
    top: 50px;
}


/* コンセプト */
.concept {
    background-image: url(../images/concept-bg_2x.webp);
    background-size: 100% 69%;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 84px 0 100px;
    position: relative;
}

.concept__title-vertical {
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.concept__title-vertical {
    position: absolute;
    margin: 0;
}

.concept__title-en {
    writing-mode: vertical-rl;
    font-family: "didot";
    font-size: 28.35px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    margin: 0;
}

.concept__title-jp {
    writing-mode: vertical-rl;
    font-family: "Shippori Mincho", serif;
    font-size: 13.46px;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 400;
    padding: 10px 0 0;
}

.concept__content {
    max-width: 1460px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 100px;
}

.concept__flex {
    display: flex;
    flex: 1;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 120px 100px 0;
}

.concept__flex-img {
    flex: 0 1 300px;
    padding: 0 100px 0 0;
}

.concept__flex-img img {
    width: 100%;
    height: auto;
}

.concept__flex-group {
    flex: 1;
    margin: 0;
}

.concept__flex-group-title {
    font-family: "didot";
    font-size: 41px;
    line-height: calc(50 / 41);
    letter-spacing: 0.1em;
    margin: 40px 0 40px;
}

.concept__flex-body-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(37 / 16);
    letter-spacing: 0.2em;
    padding: 150px 0 10px;
    margin: 0;
}

.concept__flex-body-expert {
    color: #231815;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10.63px;
    line-height: calc(22 / 10);
    letter-spacing: 0.1em;
    text-align: justify;
    margin: 0;
    padding: 0 0 20px;
}

.concept__flex-body-button a {
    color: #7a6b4a;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 14.63px;
    display: inline-flex;
    align-items: center;
    line-height: calc(24 / 14);
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0;
    gap: 3px;
    transition: 0.4s;
    text-decoration: none;
}

.concept__flex-body-button a:hover {
    opacity: 0.8;
}

.concept__flex-body-button a::after {
    content: "";
    background-image: url(../images/arrow_2x.webp);
    background-size: 25px 3.5px;
    height: 3.5px;
    width: 25px;
    position: relative;
    display: flex;
}



/* すべては特別な一日のために */

.concept-everything__flex-wrap {
    max-width: 1460px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 100px;
    margin: 0 auto;
}

.concept-everything__flex {
    display: flex;
    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 88px 100px 130px;
}

.concept-everything__flex-img {
    flex: 0 1 300px;
}

.concept-everything__flex-img img {
    width: 100%;
    height: auto;
}

.concept-everything__flex-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0 30px 0 0;
}

.concept-everything__flex-group-title {
    display: flex;
    justify-content: end;
    font-family: "didot";
    font-size: 41px;
    line-height: calc(50 / 41);
    letter-spacing: 0.1em;
    margin: 0;
    z-index: 1;
}

.concept-everything__flex-body {
    padding: 86px 0 0;
}

.concept-everything__flex-body-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(37 / 16);
    letter-spacing: 0.24em;
    margin: 0;
    padding: 0 0 20px;
}

.concept-everything__flex-body-expert {
    color: #231815;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10.63px;
    line-height: calc(22 / 10);
    letter-spacing: 0.1em;
    text-align: justify;
    margin: 0;
    padding: 0 0 20px;
}

.concept-everything__flex-body-button {
    color: #7a6b4a;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 10.63px;
    display: flex;
    align-items: center;
    line-height: calc(24 / 14);
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0;
    gap: 3px;
}

.concept-everything__flex-body-button::after {
    content: "";
    background-image: url(../images/arrow_2x.webp);
    background-size: 25px 3.5px;
    height: 3.5px;
    width: 25px;
    position: relative;
    display: flex;
}

/* サロン */
.salon {
    background-image: url(../images/salon-bg_2x.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.salon__head {
    max-width: 1510px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 30px 20px 40px;
    margin: 0 auto;
}

.salon__head-top-sp {
    display: none;
}

.salon__head-top-title-en {
    font-family: "didot";
    font-size: 20px;
    line-height: calc(24 / 20);
    letter-spacing: 0.1em;
    margin: 36px 0 26px;
}

.salon__head-top-title-jp {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(37 / 16);
    letter-spacing: 0.2em;
}

.salon__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 160px 0;
}

.salon__grid-item {
    list-style: none;
}

.salon__grid-item img {
    width: 100%;
    height: auto;
}

.salon__bottom {

    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 40px 100px 60px;
    text-align: center;
}

.salon__bottom-title {
    font-family: "didot";
    font-size: 16px;
    font-weight: 400;
    line-height: calc(19.5 / 16.3);
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0 0 24px;
}

.salon__bottom-expert {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10.3px;
    line-height: calc(22 / 10);
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0 0 10px;
}

.salon__bottom-button a {
    color: #7a6b4a;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 14.63px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: calc(24 / 14);
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0;
    gap: 3px;
    transition: 0.4s;
}

.salon__bottom-button a:hover {
    opacity: 0.8;
}

.salon__bottom-button a::after {
    content: "";
    background-image: url(../images/arrow_2x.webp);
    background-size: 25px 3.5px;
    height: 3.5px;
    width: 25px;
    position: relative;
    display: flex;
}

/* ブランド */
.brand__inner {
    padding: 80px 0 120px;
}

.brand__content {
    max-width: 1460px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 100px 0;
}

.brand__flex {
    padding: 0 0 0 130px;
}


.brand__flex-item-en {
    font-family: "didot";
    font-size: 85px;
    line-height: 1;
    letter-spacing: 0;
    margin: 0;
    z-index: 1;
    position: relative;
}

.brand__flex-item-en-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
}

.brand__flex-item-en-b span {
    font-family: "didot";
    font-size: 28.5px;
    letter-spacing: 0;
    margin: 0;
}
.brand__flex-item-ja {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    line-height: calc(30 / 12);
    letter-spacing: 0.2em;
    margin: -4px 0 0;
    width: 100%;
}

.brand__flex-item picture {
    display: flex;
    flex-direction: column;
}

.brand__flex-item picture img {
    width: 100%;
    height: auto;
}

.brand__flex-row01,
.brand__flex-row02,
.brand__flex-row03 {
    display: flex;
    gap: 6%;
    padding: 0;
}
.brand__flex-row01 li,
.brand__flex-row02 li,
.brand__flex-row03 li {
    list-style: none;
}

.brand__flex-item {
    width: 29%;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
}

.brand__flex-item a {
    text-decoration: none;
    color: inherit;
}

.brand__flex-item picture {
    overflow: hidden;
}

.brand__flex-item picture img {
    transition: 0.4s;
}

.brand__flex-item a:hover picture img {
    transform: scale(1.1, 1.1);
    transition: 0.4s;
}

.brand__flex-row01-item-first-en {
    margin: -35px 0 0;
}


.brand__flex-row01-item-second {
    padding: 90px 0 0;
}


/* ニコル＋フェリシア */
.brand__flex-row01-item-third {
    margin: 120px 0 0;
    position: relative;
}

.brand__flex-row01-item-third picture {
    border-top-left-radius: 999px;
    border-top-right-radius: 999px;
    width: 100%;
}

.brand__flex-row01-item-third-en {
    font-size: 56px;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
}

.brand__flex-row01-item-second-en span {
    margin: 0 0 0 -10px;
}


.brand__flex-row02 {
    margin: -30px 0 0;
}

/* ミリア・ロンドン */
.brand__flex-row02-item-first picture {
    border-radius: 100%;
}

.brand__flex-row02-item-first-en {
    margin: -75px 0 0;
    text-align: center;
    justify-content: center;
}

.brand__flex-row02-item-first-ja {
    text-align: right;
    margin: 0 -15px 0 0;
}

/* ニュー・ホワイト */
.brand__flex-row02-item-second {
    padding: 0 13px 0;
}

.brand__flex-row02-item-second-side {
    position: relative;
}

.brand__flex-row02-item-second picture {
    position: relative;
    border-top-left-radius: 46px;
    border-bottom-right-radius: 46px;
}

.brand__flex-row02-item-second-en {
    color: #fff;
    writing-mode: vertical-rl;
    position: absolute;
    bottom: 0;
    padding: 0 0 20px 5px;
    display: flex;
    align-items: end;
}

.brand__flex-row02-item-second-en span {
    line-height: 1.5;
}

.brand__flex-row02-item-second-ja {
    text-align: right;
}

/* ヴェラ・ウォン */
.brand__flex-row02-item-third {
    position: relative;
    margin: 80px 0 0;
    padding: 60px 0 0;
}

.brand__flex-row02-item-third-en {
    font-size: 56px;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    right: 0;
}

.brand__flex-row03 {
    margin: -100px 0 0;
}

/* Others */
.brand__flex-row03-item-first {
    position: relative;
    margin: 0 0 0;
    padding: 0 0 0;
}

.brand__flex-row03-item-first-en {
    color: #fff;
    font-size: 56px;
    writing-mode: vertical-rl;
    position: absolute;
    top: 15px;
    right: 10px;
}

.brand__flex-row03-item-first-ja {
    margin: 10px 0 0 10px;
    padding: 0;
}
.brand__flex-row03-item-first-ja li {
    margin: 0;
    padding: 0;
}

/* 着物 */
.brand__flex-row03-item-second {
    margin-top: 20px;
}

.brand__flex-row03-item-second picture {
    position: relative;
    display: block;
    margin: -20px 0 0;
    border-radius: 9999px;
    display: flex;
}

/* タキシード */
.brand__flex-row03-item-third {
    text-align: end;
    padding: 0 0 0 15px;
    margin-top: 150px;
}

.brand__flex-row03-item-third-en {
    justify-content: end;
}

.brand__flex-row03-item-third-en span {
    margin: 0 0 0 -10px;
}

.brand__flex-row03-item-third-ja {
    margin: 0 -10px 0 0;
}

/* プラン */

.plan {
    background-image: url(../images/plan-bg_2x.webp);
    background-size: 100% 90%;
    background-repeat: no-repeat;
}

.plan__inner {
    max-width: 1460px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 65px 100px 0;
    position: relative;
}

.plan__content {
    padding: 0 30px 0 134px;
}

.plan__body {
    padding: 192px 0 0 0;
}

.plan__body-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(37 / 16);
    letter-spacing: 0.2em;
    margin: 0;
}

.plan__body-excerpt {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10.63px;
    line-height: calc(22 / 10);
    letter-spacing: 0.1em;
    margin: 0;
    color: #231815;
    padding: 0 0 20px;
}

.plan__body-button a {
    color: #000000;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 14.63px;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    line-height: calc(24 / 14);
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0;
    gap: 8px;
    transition: 0.4s;
}

.plan__body-button a:hover {
    opacity: 0.8;
}

.plan__body-button a::after {
    content: "";
    background-image: url(../images/arrow_2x.webp);
    background-size: 25px 3.5px;
    height: 3.5px;
    width: 25px;
    position: relative;
    display: flex;
}


.plan__swiper {
    width: 100%;
    height: 100%;
    margin: 140px 0 0;
}
.plan__swiper .swiper-wrapper {
    padding: 0;
}

.plan__swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    cursor: pointer;
    transition: 0.4s;
    list-style: none;
}

.plan__swiper .swiper-slide picture {
    width: 100% !important;
}

.plan__swiper .swiper-slide:hover {
    opacity: 0.8;
}

.plan__swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 21/32;
}

/* 前へ次への矢印カスタマイズ */
.plan__swiper .swiper-button-prev,
.plan__swiper .swiper-button-next {
    width: 50px;
    display: inline-flex !important;
}

.plan__swiper .swiper-button-prev {
    left: 0;
    justify-content: start;
}

.plan__swiper .swiper-button-next {
    right: 0;
    justify-content: end;

}

.plan__swiper .swiper-button-prev::after,
.plan__swiper .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: 50px 100px;
    content: "";
    height: 100px;
    margin: 0;
    width: 50px;
    position: relative;
    display: flex;
}

.plan__swiper .swiper-button-prev::after {
    background-image: url(../images/swiper-prev_2x.webp);
}

.plan__swiper .swiper-button-next::after {
    background-image: url(../images/swiper-next_2x.webp);
}

.plan__swiper .swiper-slide img {
    height: auto;
    width: 100%;
}

.plan__swiper-button {
    text-align: right;
}

.plan__swiper-button a {
    color: #7a6b4a;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 14.17px;
    display: inline-flex;
    align-items: center;
    justify-content: end;
    line-height: calc(24 / 14);
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 40px 0 0;
    gap: 3px;
    transition: 0.4s;
}

.plan__swiper-button a:hover {
    opacity: 0.8;
}

.plan__swiper-button a::after {
    content: "";
    background-image: url(../images/arrow_2x.webp);
    background-size: 25px 3.5px;
    height: 3.5px;
    width: 25px;
    position: relative;
    display: flex;
}


/* モーダル */


.plan__modal {
    /* display: none; */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: .3s;
    visibility: hidden;
}

.plan__modal.is-active {
    opacity: 1;
    visibility: visible;
}

.plan__modal-inner {
    margin: auto;
    position: relative;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   
}

.plan__modal-content {
    animation-name: modalopen;
    animation-duration: 0.5s;
}

.plan__modal-content img {
    max-height: 80vh;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* object-position: center; */
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalopen {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.plan__modalClose {
    background-color: rgb(255, 255, 255, .4);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    margin: 0 0 0 auto;
}


.plan__modalClose:hover {
    cursor: pointer;
}

.modalClose {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
}

.modalClose::before,
.modalClose::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 14px;
    background: #fff;
}

.modalClose::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modalClose::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}



.plan-instagram {
    padding: 90px 20px 220px;
}

.plan-instagram-title {
    text-align: center;
}

.plan-instagram-title a {
    color: #7a6b4a;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 24.63px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: 0.1em;
    text-decoration: none;
    gap: 10px;
    margin: 0 0 30px;
    transition: 0.4s;
}

.plan-instagram-title a:hover {
    opacity: 0.8;
}

.plan-instagram-title a::before {
    content: "";
    background-image: url(../images/favorite-icon-instagram_2x.webp);
    background-size: 20px 20px;
    height: 20px;
    width: 20px;
    position: relative;
    display: flex;
}

.plan-instagram__grid {
  
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
    transition: 0.4s;
}
.plan-instagram__grid ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0;
    margin: 0;
}

.plan-instagram__grid:hover {
    opacity: 0.8;
}
.plan-instagram__grid-item {
    list-style: none;
}
.plan-instagram__grid-item picture{
    display: flex;
}

.plan-instagram__grid img {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ドレス買い取り */
.memories {
    background: #777374;
}

.memories__inner {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 0 0 120px;
}

.memories__title-vertical {
    color: #fff;
}

.memories__flex {
    display: flex;
}

.memories__body {
    flex: 0 1 46%;
    padding: 80px 0 90px;
}

.memories__body-inner {
    max-width: 100%;
    margin: 0 auto 0 auto;
    box-sizing: border-box;
    padding: 0 50px 0 0;
}

.memories__body-content {
    padding: 72px 0 0 130px;
}

.memories__body-title {
    color: #fff;
    font-family: "didot";
    font-size: 50px;
    line-height: calc(72/50);
    letter-spacing: 0.1em;
    margin: 0;
}

.memories__body-title-img {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    max-width: 214px;
    display: block;
    margin: -10px auto 34px 36%;
}

.memories__body-title-img img {
    width: 100%;
    height: auto;
}

.memories__img-wrap {
    flex: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/memories-bg_2x.webp);
}

.memories__img img {
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.memories__body-text {
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(37 / 16);
    letter-spacing: 0.2em;
    margin: 0 0 30px;
}

.memories__body-expert {
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-size: 11.34px;
    text-align: justify;
    line-height: calc(22 / 11);
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0 0 20px;
}

.memories__body-button a {
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 14.17px;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    line-height: calc(24 / 14);
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0;
    gap: 3px;
    transition: 0.4s;
}

.memories__body-button a:hover {
    opacity: 0.8;
}

.memories__body-button a::after {
    content: "";
    background-image: url(../images/arrow-white_2x.webp);
    background-size: 25px 3.5px;
    height: 3.5px;
    width: 25px;
    position: relative;
    display: flex;
}


.memories__img {
    width: 100%;
    display: flex;
    max-width: 500px;
    width: 100%;
    margin: -20px 0 0 -20px;
}

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

.grid-link__inner {
    padding: 196px 0 144px;
}

.grid-link__wrap ul{
    display: flex;
    max-width: 1040px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    gap: 14%;
    padding: 0 100px;
}

.grid-link__item {
    width: 24%;
    background: #EFEAEB;
    text-decoration: none;
    list-style: none;
    color: inherit;
    transition: 0.4s;
}

.grid-link__item a {
 color: inherit;
 text-decoration: none;
}

.grid-link__item:hover {
    opacity: 0.8;
}

.grid-link__item-body {
    padding: 20px 20px 20px;
}

.grid-link__item:first-child .grid-link__item-body::after {
    content: "";
    width: 100px;
    height: 1px;
    display: flex;
    transform: rotateZ(-45deg);
    background: #211815;
    right: -25px;
    bottom: 25px;
    position: absolute;
}

.grid-link__item:nth-child(2) .grid-link__item-body::after {
    content: "";
    width: 100px;
    height: 1px;
    display: flex;
    transform: rotateZ(-45deg);
    background: #211815;
    left: -25px;
    top: 25px;
    position: absolute;
}

.grid-link__item-img {
    position: relative;
    display: flex;
    box-sizing: border-box;
    padding: 0 0 0 35px;
    margin: -20px -35px 0 0;
}

.grid-link__item-second picture {
    margin: -30px -35px 0 0;
    top: 60px;
}

.grid-link__item-second .grid-link__item-body {
    padding: 30px 20px 20px;
}

.grid-link__item-img img {
    width: 100%;
    height: auto;
}

.grid-link__item-title-en {
    font-family: "didot";
    font-size: 21px;
    line-height: calc(36/26);
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    margin: 0;
    text-align: center;
}

.grid-link__item-title-jp {
    /*font-family: "Shippori Mincho", serif;*/
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11.38px;
    font-weight: 400;
    line-height: calc(22.6/11.38);
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0 0 5px;
    text-align: center;
}

.grid-link__item-excerpt {
    text-align: center;
    /*font-family: "Shippori Mincho", serif;*/
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11.38px;
    font-weight: 400;
    line-height: calc(22.6/11.38);
    letter-spacing: 0.1em;
}

.grid-link__item-third {
    background: #898080;
    color: #fff;
}

.grid-link__item-third .grid-link__item-excerpt {
    font-size: 10.85px;
    letter-spacing: 0.02em;
}

.grid-link__item-button {
    color: #fff;
    /*font-family: "Shippori Mincho", serif;*/
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11.38px;
    font-weight: 400;
    line-height: calc(22.6/11.38);
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 2px solid #fff;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.grid-link__item-button::before {
    content: "";
    width: 5px;
    height: 2px;
    background-color: #898080;
    position: absolute;
    top: -2px;
    right: 0;
}

.grid-link__item-button::after {
    content: "";
    width: 5px;
    height: 2px;
    background-color: #898080;
    position: absolute;
    bottom: -2px;
    left: 0;
}


/* お知らせ */
.news {
    background: #EFEAEB;
}

.news__inner {    
    max-width: 1460px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 60px 100px 100px;
}

.news__item-wrap {
    max-width: 1100px;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 100px 0;
    margin: 0 auto;
}

.news__item-wrap li {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0 0 70px;

    transition: 0.4s;
    position: relative;
}

.news__item-wrap li b {
    font-weight: 400;
}
.news__item-wrap li::before {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #AC9EA6;
    position: absolute;
    bottom: -35px;
}

.news__item-wrap li:last-child::before {
    content: none;
}

.news__item-wrap li:hover {
    opacity: 0.8;
}

.news__item-wrap li:last-child {
    border-bottom: none;
    margin: 0;
}

.news__item-wrap li time {
    color: #7a6b4a;
    flex: 0 1 100px;
    /*font-family: "Shippori Mincho", serif;*/
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14.8px;
    line-height: calc(17/14);
    letter-spacing: 0.1em;
    margin: 0;
}

.news__item-wrap li p {
    color: #000;
    flex: 1;
    /*font-family: "Shippori Mincho", serif;*/
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12.76px;
    line-height: calc(22/12);
    letter-spacing: 0em;
    margin: 0;
}

.news__item-wrap li a{
    color: #000;
}

/* Media */
.media__inner {
    max-width: 1460px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 60px 230px 100px;
}

.page-about-media__item-body {
    line-height: 1.8;
    font-size: 11px;
}

.page-about-media__item-body h3 {
    color: #857B58;
    margin-top: 0;
    font-size: 14px;
}

.page-about-media__more-button {
    margin-top: 50px;
    display: block;
    margin-inline: auto;
    width: 176px;
    text-align: center;
    padding: 3px 12px;
    text-decoration: none;
    border-top: 1px solid #857B58;
    border-bottom: 1px solid #857B58;
    position: relative;
    font-family: "Cormorant Garamond", serif;
    color: #857B58;
    transition: 0.7s;
}

.page-about-media__more-button:hover {
    opacity: 0.7;
}

.page-about-media__more-button::before,
.page-about-media__more-button::after {
    content:"";
    background: #857B58;
    width: 1px;
    height: 90%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.page-about-media__more-button::before {
    left: 0;
}

.page-about-media__more-button::after {
    right: 0;
}

/* メディアセクション下のインスタグラム */
.news-instagram {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.news-instagram__inner {
    padding: 180px 100px 120px;
}

.news-instagram__title {
    text-align: center;
}

.news-instagram__title a {
    color: #7a6b4a;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 24.63px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0;
    gap: 10px;
    margin: 0 0 30px;
    padding: 0;
    text-decoration: none;
    transition: 0.4s;
}

.news-instagram__title a:hover {
    opacity: 0.8;
}

.news-instagram__title a::before {
    content: "";
    background-image: url(../images/favorite-icon-instagram_2x.webp);
    background-size: 20px 20px;
    height: 20px;
    width: 20px;
    position: relative;
    display: flex;
}

.news-instagram__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    transition: 0.4s;
}

.news-instagram__grid:hover {
    opacity: 0.8;
}

.news-instagram__item img {
    width: 100%;
    height: auto;
}

/* アクセス   */
.access__inner {
    max-width: 1460px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 100px 200px 100px;
}

.access__flex {
    box-sizing: border-box;
    display: flex;
    align-items: end;
    gap: 6%;
    padding: 0 100px;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

.access__flex-img {
    flex: 0 1 250px;
}

.access__flex-img img {
    width: 100%;
    height: auto;
}

.access__flex-body {
    flex: 1;
}

.access__flex-body-title {
    font-family: "didot";
    font-size: 30px;
    font-weight: 400;
    line-height: calc(52/30);
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0;
}

.access__flex-body-table {
    display: grid;
    gap: 10px 34px;
    grid-template-columns: 75px 1fr;
    /*font-family: "Shippori Mincho", serif;*/
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12.76px;
    line-height: calc(22/12);
}

.access__flex-body-table dt {
    padding: 0;
    margin: 0;
}

.access__flex-body-table dd {
    padding: 0;
    margin: 0;
}

.access__flex-body-button a {
    color: #7a6b4a;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 14.17px;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    line-height: calc(24 / 14);
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0;
    gap: 3px;
    transition: 0.4s;
}

.access__flex-body-button a:hover {
    opacity: 0.8;
}

.access__flex-body-button a::after {
    content: "";
    background-image: url(../images/arrow_2x.webp);
    background-size: 25px 3.5px;
    height: 3.5px;
    width: 25px;
    position: relative;
    display: flex;
}

.footer-top {
    background-image: url(../images/footer-bg_2x.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-top__inner {
    max-width: 1460px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 100px;

}

.footer-top__content {
    max-width: 1230px;
    width: 100%;
    position: relative;
    padding: 130px 0;
}

.footer-top__scroll {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #464041;
    color: #fff;
    display: flex;
    align-items: center;
    font-family: "Cormorant Garamond", serif;
    writing-mode: vertical-rl;
    font-family: "didot";
    font-size: 12px;
    line-height: calc(14/12);
    letter-spacing: 0.1em;
    margin: -30px 0 0 auto;
    padding: 20px 25px;
    text-decoration: none;
    transition: 0.4s;
}

.footer-top__scroll:hover {
    opacity: 0.8;
}

.footer-top__scroll::before {
    content: "";
    background-image: url(../images/footer-top_2x.webp);
    background-size: 3.5px 25px;
    height: 25px;
    width: 3.5px;
    position: relative;
    display: flex;
    margin: 0 0 10px;
}

.footer-top picture {
    display: flex;
    max-width: 83px;
    width: 100%;
    margin: 0 auto;
}

.footer-top picture img {
    width: 100%;
    height: auto;
}

.footer__breadcrumb  {
    max-width: 1460px;
    width: 100%;
    margin: auto auto 10px;
    box-sizing: border-box;
    padding: 0 100px 0;
}
.footer__breadcrumb ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    row-gap: 8px;
}
.footer__breadcrumb li {
    position: relative;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 11.45px;
    display: flex;
    align-items: center;
    justify-content: start;
    line-height: calc(13 / 11);
    letter-spacing: 0.1rem;
    text-decoration: none;
    margin: 0 0 0 12px;
}

.footer__breadcrumb li::before {
    content: "";
    border-right: 1px solid;
    position: relative;
    left: -6px;
    width: 1px;
    height: 80%;
}
.footer__breadcrumb li:first-child {
    margin: 0 0 0 0;
}
.footer__breadcrumb li:first-child::before {
    content: none; 

}

.footer__breadcrumb li a{
    text-decoration: none;
    color: inherit;
}

.footer__breadcrumb li small {
    font-size: 0.7em;
    padding-left: 0.5em;
}

/* フッター */
.footer {
    background: #464041;
}

.footer__inner {
    padding: 30px 0 0;
}

.footer__nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
    padding: 0 0 60px;
    margin: 0;
}

.footer__nav-item {
    margin: 0 64px 0 0;
}

.footer__nav-item:last-child {
    margin: 0 0 0 0;
}

.footer__nav-item a {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: "didot";
    text-decoration: none;
    letter-spacing: 0.1em;
    box-sizing: border-box;
    position: relative;
    transition: 0.7s;
}

.footer__nav-item a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #e7ddda;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .4s;
}

.footer__nav-item a:hover::after {
    transform: scale(1, 1);
}

.footer__nav-item a:hover {
    opacity: 0.8;
}

.footer__nav-item a small {
    /*font-family: "Shippori Mincho", serif;*/
    font-family: "Noto Sans JP", sans-serif;
    font-size: 8px;
    font-weight: 400;
    margin: 3px 0 0;
}

.footer-instagram__title {
    text-align: center;
    margin: 0 0 54px;
}

.footer-instagram__title a {
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: calc(21/17);
    letter-spacing: 0.1em;
    text-decoration: none;
    margin: 0;
    gap: 10px;
    padding: 0;
}

.footer-instagram__title a::before {
    content: "";
    background-image: url(../images/footer-instagram_2x.webp);
    background-size: 20px 20px;
    height: 20px;
    width: 20px;
    position: relative;
    display: flex;
}

.copyright {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 10.63px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
    padding: 0 0 18px;
    margin: 0;
}

.page-common-mv {
    padding: 100px 0 0;
}

.page-common__head h1,
.page-common__head h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "didot";
    font-size: 28.35px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0;
}

.page-common__head h1 small,
.page-common__head h2 small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11.34px;
    letter-spacing: 0.1em;
    line-height: calc(20 / 12);
    margin: 0;
    padding: 10px 0 0 ;
}

.l-inner {
    box-sizing: border-box;
    max-width: 1000px;
    width: 100%;
    padding: 0 100px;
    margin: 0 auto;
}

.l-inner-1000 {
    box-sizing: border-box;
    max-width: 1200px;
    width: 100%;
    padding: 0 100px;
    margin: 0 auto;
}

.page-about-mv__content {
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    padding: 64px 200px 90px;
    margin: 0 auto;
}

.page-about-mv__content-title {
    color: #7A6B4A;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: calc(37 / 16);
    text-align: center;
    margin: 0;
    padding: 0 0 40px;
}

.page-about-mv__content-text {
    color: #7A6B4A;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: calc(30 / 11);
    text-align: center;
    margin: 0;
    padding: 0 0 28px;
}

.page-about-mv__content-text-center {
    padding: 0 0 36px;
}

.page-about-mv__content-text:last-child {
    padding: 0;
}

.page-about-mv__content-img {
    position: relative;
    display: block;
    padding: 0;
    margin: 0 0 15px;
}

.page-about-mv__content-img img {
    width: 100%;
    height: auto;
}

.page-about-mv__content-img-center {
    margin: 0 0 30px;
}

.page-about-mv__logo {
    position: relative;
    display: block;
    text-align: center;
    padding: 0 0 110px;
    margin: 0;
}

.page-about-concept {
    background-image: url(../images/concept-bg_2x.webp);
    background-size: 100% 83%;
    background-position: 50% 56%;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0 0 60px;
    position: relative;
}

.page-about-concept__flex  {
    display: flex;
    flex: 1;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.page-about__img-flex-content {
    gap: 20px;
    display: flex;
    box-sizing: border-box;
    max-width: 1200px;
    width: 100%;
    padding: 0 200px;
    margin: 0 auto;
}

.page-about-concept__flex .concept__flex-body-title {
    padding: 10px 0 20px;
}

.page-about-concept__flex .concept__flex-body-expert {
    font-size: 11px;
    line-height: calc(22.68/11);
    text-align: justify;
    padding: 0;
}

.page-about-concept__flex .concept__flex-body-expert span {
    font-size: 11px;
    line-height: calc(30/11);
    margin: 18px 0 0;
    position: relative;
    display: block;
    letter-spacing: 0.1em;
    text-align: justify;
}
.page-about__img-flex-content picture {
    flex: 0 1 50%;
    position: relative;
    display: block;
}
.page-about__img-flex-content picture img {
    width: 100%;
    height: auto;
}

.concept-everything__flex.page-about-concept-everything__flex {
    padding: 88px 0 100px;
}

.page-about-concept-everything__flex-group-title {
    display: flex;
    font-family: "didot";
    font-size: 41px;
    line-height: calc(50 / 41);
    letter-spacing: 0.1em;
    margin: 0;
    padding: 100px 0 0;
    z-index: 1;
}

.page-about-concept-everything__flex-wrap .concept-everything__flex-group {
    margin: 0;
}

.page-about-concept-everything__flex-wrap .concept-everything__flex-img{
    padding: 0 100px 0 0;
}

.page-about-concept-everything__flex-wrap .concept-everything__flex-body {
    padding: 120px 0 0;
}

.page-about-concept-everything__flex-wrap .concept-everything__flex-body-title {
    padding: 0 0 12px;
}

.page-about-concept-everything__flex-body-expert {
    text-align: justify;
    padding: 0;
}

.page-about-concept-everything__flex-body-expert span {
    display: flex;
    font-size: 11px;
    line-height: calc(30/11);
    margin: 18px 0 0;
}

.page-about-salon .salon__head {
    padding: 84px 100px 32px;
    box-sizing: border-box;
}

.page-about-salon .salon__head-top-title-en {
    margin: 0 0 10px;
}

.page-about-salon__bottom {
    text-align: left;
    padding: 40px 100px 86px;
}

.page-about-common__heading {
    color: #000;
    font-family: "didot";
    font-weight: 400;
    font-size: 32px;
    line-height: calc(38 / 32);
    letter-spacing: 0.1em;
    padding: 0 0 60px;
    margin: 0;
}

.page-about-common__heading small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    letter-spacing: 0.2em;
    line-height: calc(38 / 16);
    text-align: center;
    margin: 0;
    padding: 0;
}

.page-about-media {
    padding: 0;
    margin-bottom: 86px;
}

.page-about-media__item-wrap{
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-about-media__item-wrap li {
    position: relative;
}

.page-about-media__item-wrap li {
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    gap: 56px;
    padding: 0;
    margin: 0 0 60px;
    position: relative;
    text-decoration: none;
}

.page-about-media__item-wrap li::after {
    content: "";
    border-bottom: 1px solid #E7DDDA;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -30px;
}

.page-about-media__item-wrap li:last-child::after {
    content: none;
}

.page-about-media__item-wrap li:last-child {
    margin: 0;
}

.page-about-media__item-wrap > li:nth-child(1) > a {
    display: block;
    position: relative;
    flex: 0 1 150px;
}

.page-about-media__item-wrap li a:first-child,
.page-about-media__item-wrap li div:first-child {
    width: 151px;
}

.page-about-media__item-wrap li picture {
    width: 100%;
}

.page-about-media__item-wrap li picture img {
    width: 100%;
    height: auto;
}

.page-about-media__item-wrap li a {
    color: #000;
}

.page-about-media__item-body {
    flex: 1;
}

.page-about-media__item-body > a {
    text-decoration: none;
}

.page-about-media__item-body > a > h3 {
    font-size: 14px;
    letter-spacing: 0;
    line-height: calc(21 / 14);
    color: #7A6B4A;
    font-weight: 400;
    margin: 0;
    padding: 0 0 16px;
}

.page-about-media__item-wrap li p {
    font-size: 11px;
    letter-spacing: 0;
    line-height: calc(22 / 11);
    margin: 0;
    padding: 0 0 10px;
    color: #000;
}

.page-about-media__item-body a:nth-child(3) {
    color: #000;
    background: none;
    border: 0;
    text-decoration: underline;
    font-size: 11px;
    letter-spacing: 0;
    line-height: calc(22 / 11);
    padding: 0;
    margin: 0;
}

.page-about-company {
    margin-bottom: 86px;
}

.page-about-company__heading {
    padding: 0 0 36px;
}

.page-about-company__item:first-child {
    border-top: 1px solid #E7DDDA;
}

.page-about-company__item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E7DDDA;
    padding: 20px 25px;
}
.page-about-company__item-top {
    align-items: start;
}

.page-about-company__item-title {
    flex: 0 1 70px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(22 / 11);
    padding: 0;
    margin: 0 40px 0 0;
    
}

.page-about-company__item-content {
    flex: 1;
}

.page-about-company__item-text {

    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: calc(22 / 11);
    padding: 0;
    margin: 0;
}

.page-about-company__item-left{
    flex: 0 1 230px;
    margin: 0 60px 0 0;
    display: flex;
    align-items: center;
}

.page-about-company__item-right{
    flex: 1;
    display: flex;
    align-items: center;
}

.page-about-news-instagram__wrap {
    padding: 0;
    margin-bottom: 86px;
}

.page-about-news-instagram__wrap .news-instagram__inner{
    padding: 0;
}

.page-about-news-instagram__wrap .news-instagram {
    margin-bottom: 86px;
}

.page-brand-list__wrap {
    max-width: 1300px;
    width: 100%;
    box-sizing: border-box;
    padding: 150px 100px 250px;
    margin: auto;
}

.page-brand-list__wrap .brand-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    gap: 8%;
}

.page-brand-list__wrap .brand-list li {
    width: 45.5%;
    display: flex;
    flex-direction: column;
    margin: 0 0 100px;
}

.page-brand-list__wrap .brand-list li.brand-kimono,
.page-brand-list__wrap .brand-list li.brand-tuxedo {
    margin: 0;
}

.page-brand-list__wrap .brand-list li a:first-child {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.page-brand-list__wrap .brand-list picture{
    position: relative;
    display: flex;
    margin: 0 0 72px;
}

.page-brand-list__wrap .brand-list picture img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    width: 100%;
    box-sizing: border-box;
}

.page-brand-list__wrap .brand-list li.brand-galialahav > a > picture ,
.page-brand-list__wrap .brand-list li.brand-yolancris > a > picture{
    height: 500px;
}

.page-brand-list__wrap .brand-list li.brand-nicole > a > picture,
.page-brand-list__wrap .brand-list li.brand-millialondon > a > picture  {
    height: 540px;
}

.page-brand-list__wrap .brand-list li.brand-newhite > a > picture ,
.page-brand-list__wrap .brand-list li.brand-verawang > a > picture,
.page-brand-list__wrap .brand-list li.brand-others > a > picture  {
    height: 550px;
}

.page-brand-list__wrap .brand-list li.brand-kimono > a > picture ,
.page-brand-list__wrap .brand-list li.brand-tuxedo > a > picture {
    height: 500px;
}

.page-brand-list__wrap .brand-list li.brand-yolancris > a > picture img {
    padding: 25px 0;
    box-sizing: border-box;
}

.page-brand-list__wrap .brand-list li.brand-nicole > a > picture img {
    padding: 24px 0;
}

.page-brand-list__wrap .brand-list li.brand-newhite > a > picture img {
    padding: 15px 0;
}

.page-brand-list__wrap .brand-list li.brand-kimono > a > picture img {
    padding: 35px 0;
}

.page-brand-list__wrap .brand-list h2 {
    display: flex;
    flex-direction: column;
    color: #231815;
    font-family: "didot";
    font-weight: 400;
    font-size: 26px;
    line-height: calc(26 / 21);
    letter-spacing: 0;
    padding: 0 0 10px;
    margin: 0;
}

.page-brand-list__wrap .brand-list h2 small{
    font-family: "Noto Sans JP", sans-serif;
    color: #474342;
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: calc(22 / 11);
    padding: 0;
    margin: 0;
}

.page-brand-list__text {
    flex-grow: 1;
    font-size: 11px;
    letter-spacing: 0;
    line-height: calc(19 / 11);
    color: #231815;
    padding: 0 0 18px;
    font-family: "Noto Sans JP", sans-serif;
}

.page-brand-list__wrap > ul > li > a:last-child{
    position: relative;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 0;
    background: #F8F4F3;
    color: #7A6B4A;
    padding: 10px;
    max-height: 40px;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
}

.archive-blog-category__list {
    margin: 80px 0 0;
}

.archive-blog__content {
    background-image: url(../images/img-blog-bg.webp);
    background-size:  100% 100%;
    margin: 0 0 120px;
}

.archive-blog__content-inner {
    max-width: 1470px;
    width: 100%;
    padding: 0 100px 120px;
    margin: 50px auto 0;
    box-sizing: border-box;
}

.archive-blog-mv {
    padding: 60px 0 0;
}

.page-common__head .blog-list__category,
.page-common__head .blog-list__tag {
    font-size: 0.9em;
}

.page-common__head .blog-list__category small {
    display: block;
    text-align: center;
}

.blog-category__list {
    padding: 0 35px;
}

.blog-category__list ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.blog-category__list li {
    width: 28% !important;
    display: block;
    background: #FFFFFF;
}

.blog-category__list li a{
    align-items: baseline;
    box-sizing: border-box;
    color: #713934;
    /*flex-wrap: wrap;*/
    font-family: "didot";
    font-weight: 400;
    font-size: 24px;
    line-height: calc(28 / 24);
    letter-spacing: 0.1em;
    display: flex;
    text-decoration: none;
    width: 100%;
    height: 100%;
    padding: 15px;
}

.blog-category__list li a small {
    font-size: 10px;
    line-height: calc(17 / 10);
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    margin: 0 0 0 4px;
}

.blog-category__list li.current-cat {
    background: #E7E1D8;
}

.blog-tag__list {
    padding: 0 35px;
}

.blog-tag__list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 30px 0 0;
}

.blog-tag__list ul li {
    list-style: none;
}

.blog-tag__list ul li a {
    font-size: 12px;
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    line-height: calc(21/12);
    letter-spacing: 0.1em;
    text-decoration: none;
    background-color: #fff;
    color: #392E27;
    padding: 4px 8px;
    border-radius: 5px;
    display: flex;
}

.blog-tag__list ul li.current-tag a {
    background-color: #988A94;
    color: #fff;
}

.blog__content-wrap {
    margin: 40px 0 140px;
}

.blog__content-wrap .page-common__head h2 {
    margin-bottom: 2em;
}

.blog__content-inner {
    max-width: 1540px;
    width: 100%;
    padding: 0 100px 120px;
    margin: 50px auto 0;
    box-sizing: border-box;
}



.single-blog-related__content {
    max-width: 1480px;
    width: 100%;
    padding: 0 65px 120px;
    margin: 50px auto 0;
    box-sizing: border-box;
}
.single-blog-related__content-inner.blog__content-inner {
    max-width: 1540px;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul.blog-list{
    list-style: none;
    padding: 0;
    width: 100%;
    height: auto;
}
.blog__content-wrap ul.blog-list{
    margin: 60px 0 80px;
}

.single-blog-related__content ul.blog-list{
    margin: 50px 0 0;
}

.blog__content-wrap .blog-list > li,
.single-blog-related__content ul.blog-list > li {
    width: 30%;
    height: auto;
}

.blog__content-wrap .blog-list > li img,
.single-blog-related__content ul.blog-list > li img{
    width: 100%;
    height: auto;
}

.blog__content-wrap ul.blog-list h3 ,
.single-blog-related__content ul.blog-list h3{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: calc(22 / 14);
    margin: 0;
    color: #000;
}

.blog__content-wrap ul.blog-list h3.no-thumbnail ,
.single-blog-related__content ul.blog-list h3.no-thumbnail {
    border: 1px solid;
    padding: 4em 1em;
    background: #E7E1D8;
    color: #7A6B4A;
}

.blog__content-wrap ul.blog-list a,
.single-blog-related__content ul.blog-list  a{
    text-decoration: none;
}

.blog__content-wrap ul.blog-list img,
.single-blog-related__content ul.blog-list  img {
    margin: 0 0 12px;
}

.blog__content-wrap ul.blog-list > li,
.single-blog-related__content ul.blog-list  > li {
    margin: 0 0 10px;
}

.blog__content-wrap ul.blog-list > li > ul,
.single-blog-related__content ul.blog-list > li > ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    gap: 10px;
}

ul.blog-list > li > ul.blog-list__cat > li {
    background: #E7E1D8;
    color: #713934;
    font-family: "didot";
    font-weight: 400;
    display: flex;
}

ul.blog-list > li > ul.blog-list__tag > li {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    letter-spacing: 0.1em;
    line-height: calc(22 / 14);
    background: #fff;
    border-radius: 5px;
}

ul.blog-list > li > ul > li > a {
    font-size: 12.5px;
    line-height: calc(21/12);
    letter-spacing: 0.1em;
    border-radius: 5px;
    text-decoration: none;
    color: #392E27;
    box-sizing: border-box;
    display: inline-block;
}

ul.blog-list > li > ul.blog-list__cat > li > a {
    color: #713934;
    padding: 5px 20px 5px 10px;
}

ul.blog-list > li > ul.blog-list__tag > li > a {
    font-size: 10px;
    padding: 0.5em 1em;
}

.blog__content-wrap  ul.blog-list > li > ul > li > a small,
.single-blog-related__content ul.blog-list > li > ul > li > a small{ 
   font-size: 10px;
   margin-left: 4px;
}

.blog-list__pagination > .nav-links > .page-numbers {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-list__pagination .page-numbers li a {
    font-family: "Noto Sans JP", sans-serif;
    color: #7A6B4A;
    text-decoration: none;
    padding: 5px;
    border-top: 1px solid;
    border-bottom: 1px solid;
}
.blog-list__pagination .page-numbers.current  {
    font-family: "Noto Sans JP", sans-serif;
    background-color: #E7E1D8;
    color: #7A6B4A;
    text-decoration: none;
    padding: 5px;
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.blog-list__pagination .page-numbers li {
    margin-right: 20px;
}

.blog-list__pagination .page-numbers li:last-child {
    margin-right: 0;
}

.blog-list__pagination .page-numbers li .next.page-numbers ,
.blog-list__pagination .page-numbers li .prev.page-numbers{
    border-top: none;
    border-bottom: none;
}

/* 投稿詳細ページ */

.single-blog__head > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "didot";
    font-size: 28.35px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    margin: 0;
}

.single-blog__head > div > small{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11.34px;
    letter-spacing: 0.1em;
    line-height: calc(20 / 12);
    margin: 0;
    padding: 10px 0 0;
}


.single-blog__container {
    background-image: url(../images/img-blog-detail-bg.webp);
    background-size:  100% 100%;
    background-repeat: repeat;
    margin: 50px 0 120px;
}

.single-blog__container-inner {
    max-width: 1470px;
    width: 100%;
    padding: 0 100px 0;
    margin: 0 auto 120px;
    box-sizing: border-box;
}

.single-blog-top-category__list {
    margin-top: 30px;
    padding: 0;
}
.single-blog-top-category__list li {
    background: #E7E1D8;
}

.single-blog-top-tag__list {
    padding: 0 0 30px;
}
.single-blog-top-tag__list ul li a {
    background-color: #988A94;
    color: #fff;
    display: flex;
}

.single-blog__container article{
    font-size: 12.1px;
    line-height: calc(20/12);
    font-family: "Noto Sans JP", sans-serif;
    background: rgb(255, 255, 255, .7);
    padding: 40px 50px;
    margin: 100px 0 0;
}

.single-blog__header {
    margin: 0 0 40px;
}

.single-blog__header h1{
    font-weight: 400;
    font-size: 22px;
    line-height: calc(22/22);
    letter-spacing: 0.1em;
}

.single-blog__header img {
    max-width: 100%;
    margin-top: 40px;
}

.blog-detail__content {
    padding: 0 100px;
}

.blog-detail__content > * {
    margin: 20px 0;
}

.blog-detail__content > p {
    margin: 10px 0;
    font-size: 12px;
    font-weight: 400;
    line-height: calc(19/12);
}

.blog-detail__content figure:nth-child(2) {
    width: 76%;
    margin: 20px auto 0;
}

.blog-detail__content figure.aligncenter{
    width: 76%;
    margin: 0 auto 0;
}

.blog-detail__content iframe{
    width: 100%;
}

.blog-toc__wrap {
    border: 1px solid;
    color: #7A6B4A;
    background: #fff;
    padding: 40px 50px;
    position: relative;
    margin: 50px 0 20px;
}

.blog-toc__buttton {
    display: flex;
    max-width: 50px;
    margin: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}
.blog-toc__buttton::after {
   content: "";
   display: inline-block;
   vertical-align: middle;
   color: #333;
   line-height: 1;
   width: 8px;
   height: 8px;
   border: 1px solid currentColor;
   border-left: 0;
   border-bottom: 0;
   box-sizing: border-box;
   transform: translateY(-25%) rotate(135deg);
   margin: 4px 0 0;
}

.blog-detail__content .blog-toc {
    list-style: none;
    padding: 0;
}
.blog-detail__content .blog-toc::before {
    content: "目次";
    padding: 0 0 10px;
    box-sizing: border-box;
    display: block;
} 

.blog-detail__content .blog-toc li {
    padding-bottom: 10px;
}

.blog-detail__content .blog-toc li a {
    color: #7A6B4A;
}


.blog-toc__wrap .single-blog-toc__all-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.blog-toc__wrap .single-blog-toc__all {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 8px;
    font-family: "Noto Sans JP", sans-serif;
    line-height: calc(19/8);
    letter-spacing: 0.1em;
    margin: 0;
}
.blog-toc__wrap .single-blog-toc__all span{
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 8px;
    height: 8px;
    border: 1px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
}

.external-link {
    color: #7A6B4A;
}

.blog-detail__content .external-link {
    color: #7A6B4A;
}

.blog-detail__content .external-link::after {
    content: "";
    background-image: url(../images/external-link.svg);
    width: 9px;
    height: 11px;
    margin: 0 5px 0;
    background-size: 9px 11px;
    background-repeat: no-repeat;
    display: inline-block;
}

.blog-detail__content .internal-link {
    color: #7A6B4A;
}

.blog-detail__content .internal-link::after {
    content: "";
    background-image: url(../images/internal-link.svg);
    width: 12px;
    height: 12px;
    margin: 0 5px 0;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    display: inline-block;
}

.blog-detail__content > blockquote {
    position: relative;
    padding: 50px 40px 20px;
    box-sizing: border-box;
    font-style: italic;
    color: #4e4e4e;
    background: #F2F0EE !important;
}

.blog-detail__content > blockquote cite {
    padding: 30px 0 0;
}

.blog-detail__content > blockquote::before{
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 10px;
    content: "“";
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.blog-detail__content > blockquote::after{
    display: inline-block;
    position: absolute;
    bottom: 5px;
    right: 15px;
    text-align: center;
    content: "”";
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.blog-detail__content h2.has-background {
    background-color: #E7E1D8 !important;
    color: #000;
    font-size: 15px !important;
    font-weight: 400!important;
    line-height: calc(18/15)!important;
    padding: 10px 15px!important;
    margin: 40px 0;
}

.blog-detail__content h2 strong {
    font-weight: 400!important;
}

.blog-detail__content  .single-blog-toc {
    background-color: rgb(255, 255, 255, .7) !important;
    border: 1px solid;
    color: #505050;
    background: #fff;
    padding: 40px 50px;
    position: relative;
    list-style: none;
    margin: 50px 0 40px;
}

.blog-detail__content  .single-blog-toc p{
    margin: 0 0 20px;
    font-size: inherit !important;
}

.blog-detail__content .single-blog-toc ul{
    list-style: none;
    padding: 0;
    font-size: inherit !important;
}


.blog-detail__content .single-blog-toc li {
    padding-bottom: 10px;
}

.blog-detail__content .single-blog-toc a {
    color: #505050;
}
.blog-detail__content .single-blog-toc.single-blog-toc__all-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.blog-detail__content .single-blog-toc .single-blog-toc__all {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 8px;
    font-family: "Noto Sans JP", sans-serif;
    line-height: calc(19/8);
    letter-spacing: 0.1em;
    margin: 0;
}
.blog-detail__content .single-blog-toc .single-blog-toc__all span{
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 8px;
    height: 8px;
    border: 1px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
}

.supplementary-explanation {
    border: 1px solid #7A6B4A;
    border-radius: 15px;
    padding: 30px 50px;
    margin: 40px 0;
}

.supplementary-explanation h4 {
    color: #7A6B4A;
    font-size: 16px;
    line-height: calc(19/16);
    letter-spacing: 0;
    margin: 0 0 20px;
}


/* お気に入りページ */
.page-favorite {
    max-width: 1400px;
    width: 100%;
    padding: 30px 100px 300px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-favorite-mv {
    padding: 110px 0 0;
}

.page-favorite__top-text {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 10px;
    line-height: calc(17/10);
    letter-spacing: 0.1em;
}

.page-favorite__top-text-non-text {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 10px;
    line-height: calc(17/10);
    letter-spacing: 0.1em;
    text-align: center;
    padding: 72px 0 0;
}

.page-favorite__non-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    list-style: none;
    margin: 34px 0 0;
    padding: 0;
}

.page-favorite__non-list a{
    color: #231815;
    padding: 14px 20px;
    max-width: 380px;
    width: 100%;
    margin: auto;
    text-decoration: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F2F0EE;
    font-family: "didot";
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
}

.page-favorite__non-list a small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    letter-spacing: 0em;
    line-height: calc(21 / 11);
    margin: 0;
    padding: 5px 0 0;
}

.favorite-dress-list {
    margin: 20px 0 0;
}
.favorite-dress-list .favorite-dress-list__box > ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    row-gap: 40px;
    padding: 0;
    margin: 0;
}

.favorite-dress-list .favorite-dress-list__box > ul > li {
    width: 22%;
    margin: 0 4% 0 0;
    position: relative;
}

.favorite-dress-list .favorite-dress-list__box > ul > li:nth-of-type(4n) {
    margin:0px;
}

.favorite-dress-list > .favorite-dress-list__box > ul > li > a {
    display: flex;
    flex-direction: column;
}
.favorite-dress-list .favorite-dress-list__box > ul > li img{
    width: 100%;
    height: auto;
    aspect-ratio: 200 / 300;
    object-fit: cover;
}



.favorite-dress-list .favorite-dress-list__box > ul > li > ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    gap: 5px;
}

.favorite-dress-list .favorite-dress-list__box > ul > li > ul > li {
    font-family: "Noto Sans JP", sans-serif;
    color: #7A6B4A;
    background-color: #F8F4F3;
    font-size: 12px;
    line-height: calc(14/12);
    letter-spacing: 0;
    padding: 4px;
    box-sizing: border-box;
    display: flex;
    align-items: baseline;
}
.favorite-dress-list .favorite-dress-list__box > ul > li > ul > li small {
    margin: 0 0 0 2px;
}

.favorite-dress-list > .favorite-dress-list__box > ul > li .favorite-dress-list__head {
    position: relative;
    margin: 5px 0 0;
}

.favorite-dress-list > .favorite-dress-list__box > ul > li .favorite-dress-list__head a{
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    color: #000;
    text-decoration: none;
    font-size: 11px;
    line-height: calc(19/12);
    letter-spacing: 0.1em;
    margin: 10px 0 0;
}

.favorite-dress-list__check {
    display: flex;
    align-items: center;
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 10px;
    line-height: calc(17/10);
    letter-spacing: 0.1em;
    margin: 10px 0 0;
}

/* .favorite-dress-list__check input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #A58F82;
    background-color: #F8F4F3;
    vertical-align: -5px;
    margin: 0 5px 0 0;
} */
.favorite-dress-list__check input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #A58F82;
    background-color: #F8F4F3;
    vertical-align: -5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0 5px 0 0;
    cursor: pointer;
}
.favorite-dress-list__check input[type="checkbox"]:checked::before{
    content: '';
    position: absolute;
    top: 2px;
    left: 7px;
    transform: rotate(50deg);
    width: 3px;
    height: 9px;
    border-right: 1px solid #A58F82;
    border-bottom: 1px solid #A58F82;
}

.favorite-dress-list__check label {
    cursor: pointer;
}
  
/* .favorite-dress-list__check input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    transform: rotate(50deg);
    width: 4px;
    height: 10px;
    border-right: 2px solid #A58F82;
    border-bottom: 2px solid #A58F82;

} */

.favorite-dress-list__head-favorite .simplefavorite-button {
    cursor: pointer;
}

.favorite-dress-list__head-favorite {
    position: absolute;
    top: 3px;
    right: 0;
    font-size: 0;
}

.simplefavorite-button {
    cursor: pointer;
}

.favorite-dress-list__head-favorite .simplefavorite-button.active::before {
    content: "";
    background-image: url(../images/simplefavorite-button-active.svg);
    background-repeat: no-repeat;
    height: 18px;
    width: 17px;
    background-size: 18px 17px;
    position: relative;
    display: flex;
    right: 0;
    margin: 0 0 0 auto;
}

.page-favorite__button {
    text-align: center;
    margin: 50px 0 0;
}

.page-favorite__button button,
.page-favorite__button a {
    background-color: #464041;
    border: none;
    color: #fff;
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: calc(17/10);
    letter-spacing: 0.1em;
    padding: 10px 30px;
    cursor: pointer;
    text-decoration: none;
}


/* フォトプランページ */
.page-plan__head-button {
    display: flex;
}
.page-plan__head a{
    display: block;
    color: #7A6B4A;
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 12px;
    line-height: calc(14.5/12);
    text-align: center;
    margin: 24px auto 0;
}

.page-plan__swiper {
    margin: 64px 0 0;
}

.page-plan__swiper-bottom {
    padding: 0 100px 0;
    margin: 90px 0 0;
}

.page-plan__swiper-bottom-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(37/16);
    letter-spacing: 0.2em;
    text-align: center;
    padding: 0 0 18px;
    margin: 0;
}

.page-plan__swiper-bottom-text {
    padding:  0 0 62px;
}

.page-plan__swiper-bottom-text p{
    color: #231815;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    line-height: calc(22/11);
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0;
}

.page-plan__swiper-bottom-text p:first-child { 
    padding: 0 0 42px;
}
.page-plan__swiper-bottom-text p:last-child { 
    font-size: 10px;
    line-height: calc(20/10);
}

.page-plan-common__button {
    background-color: #464041;
    color: #fff;
    display: block;
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 11px;
    line-height: calc(20/11);
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    max-width: 300px;
    width: 100%;
    margin: auto;
    padding: 10px 30px;
    box-sizing: border-box;
}


.page-plan__hair {
    background-image: url(../images/img-page-plan-hair-bg.webp);
    background-size: 100% 90%;
    background-repeat: no-repeat;
    background-position: center;
    margin: 100px 0 0;
}

.page-plan__hair-top img,
.page-plan__hair-center img,
.page-plan__hair-bottom img {
    width: 100%;
    height: auto;
}

.page-plan__hair-top h2,
.page-plan__hair-center h2,
.page-plan__hair-bottom h2 {
    margin: 0 0 20px;
}

.page-plan__hair-top {
    display: flex;
    padding: 0 0 105px 90px;
    gap: 14%;
    justify-content: space-between;
}

.page-plan__hair-top-img {
    flex: 0 1 38%;
}

.page-plan__hair-top-body {
    padding: 180px 0 0;
    flex: 1;
}

.page-plan__hair-body h2 {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    font-family: "didot";
    font-size: 28.35px;
    font-weight: 400;
    line-height: calc(34/28);
    letter-spacing: 0.1em;
}

.page-plan__hair-body h2 small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10.6px;
    line-height: calc(22/10);
    letter-spacing: 0.1em;
    margin:0 0 0 5px;
}

.page-plan__hair-body p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    line-height: calc(22/11);
    letter-spacing: 0.1em;
    max-width: 300px;
    width: 100%;
}

.page-plan__hair-top-body-img {
    position: relative;
    display: block;
    max-width: 180px;
    width: 100%;
    margin: 50px 0 0 auto;
}
.page-plan__hair-top-body-img  img {
    width: 100%;
    height: auto;
}

.page-plan__hair-center {
    display: flex;
    gap: 6%;
}

.page-plan__hair-center-img {
    flex: 0 1 50%;
    margin: 20px 0 0;
    position: relative;
    display: block;
}


.page-plan__hair-center-body {
    flex: 1;
}

.page-plan__hair-bottom {
    display: flex;
    gap: 4%;
    margin: 120px 0 0;
}

.page-plan__hair-bottom-img {
    flex: 0 1 50%;

}

.page-plan__hair-bottom-body {
    flex: 1;
    margin: 90px 0 0;
}


/* プランの詳細 */
.page-plan__detail {
    margin: 140px 0 0;
}
.page-plan__detail-list{
    margin: 70px 0 0;
}

.page-plan__detail-list-wrap {
    box-sizing: border-box;
    display: flex;
    column-gap: 2.5%;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 200px 0;
}

.page-plan__detail-list-left,.page-plan__detail-list-right {
    width: 48.75%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.page-plan__detail-list-item {
    color: #000;
    background-color: #F8F4F3;
    text-decoration: none;
    font-family: "didot";
    font-size: 20px;
    font-weight: 400;
    line-height:calc(24/20);
    letter-spacing: 0.1em;
    padding: 6px 12px;
    position: relative;
}

.page-plan__detail-list-item small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 9px;
    line-height: calc(22/9);
    letter-spacing: 0.1em;
    margin-left: 5px;
}

.page-plan__detail-list-item::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: #7A6B4A;
    line-height: 1;
    width: 10px;
    height: 10px;
    border: 1px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(135deg);
    position: absolute;
    right: 20px;
    top: 50%;
}

.page-plan-kind__head {
    box-sizing: border-box;
    max-width: 1200px;
    width: 100%;
    padding: 0 100px 25px;
    margin: 0 auto;
}
.page-plan-kind__title {
    position: relative;
    color: #000;
    background-color: #F8F4F3;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: "didot";
    font-size: 20px;
    font-weight: 400;
    line-height:calc(24/20);
    letter-spacing: 0.1em;
    padding: 6px 12px;
    margin: 0;
}

.page-plan-kind__title small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 9px;
    line-height: calc(22/9);
    letter-spacing: 0.1em;
    margin-left: 5px;
}


.page-plan-kind__swiper {
    width: 100%;
    height: 100%;
    padding: 0 0 44px;
}

.page-plan-kind__swiper picture {
    display:flex;
}

.page-plan-kind__swiper img {
    width: 100%;
    height: auto;
}

.page-plan-kind__swiper .swiper-wrapper {
    padding: 0;
    margin: 0;
}

.page-plan-kind__swiper .swiper-button-prev{
    left: 18%;
    transform: translateY(-50%);
}

.page-plan-kind__swiper .swiper-button-prev::after {

    content: "";
    display: inline-block;
    vertical-align: middle;
    color: #7A6B4A;
    line-height: 1;
    width: 25px;
    height: 25px;
    border: 1px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(225deg);
    position: absolute;
    top: 50%;
}

.page-plan-kind__swiper .swiper-button-next {
    right: 18%;
    transform: translateY(-50%);
}

.page-plan-kind__swiper .swiper-button-next::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: #7A6B4A;
    line-height: 1;
    width: 25px;
    height: 25px;
    border: 1px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
}

.page-plan-dress__head {
    padding: 86px 100px 25px;
}

.page-plan-price__table-title {
    display: none;
}

.page-plan-price__table table {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}
.page-plan-price__table > table > thead > tr > th:nth-child(1) {
    width: 18%;
}
.page-plan-price__table-head-top {
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    background-color: #F8F4F3;
    color: #652503;
    line-height: calc(22/11);
    letter-spacing: 0.1em;
    padding: 10px 0;
    margin: 0 1.5px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-plan-price__table-first-head-top {
    min-height: 100px;
}

.page-plan-price__table-head-bottom {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #7A6B4A;
    line-height: calc(22/13);
    letter-spacing: 0.1em;
    padding: 20px 0;
    margin: 0 1.5px;
}

.page-plan-price__table table tbody tr {
    border-top: 1px solid #E7DDDA;
}

.page-plan-price__table table tbody tr:last-child {
    border-bottom: 1px solid #E7DDDA;
}

.page-plan-price__table table tbody th {
    color: #231815;
    text-align: left;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 10.68px;
    line-height: calc(22.6/10.6);
    letter-spacing: 0.1em;
    padding: 16px 0 16px 27px;
    white-space: nowrap;
}
.page-plan-price__table table tbody th  {
    color: #231815;
}


.page-plan-price__table table tbody td {
    color: #231815;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: calc(22.6/10.6);
    padding: 14px 0;
}

.page-plan-price__table table tbody .colspan{
    color: #231815;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: calc(22.6/10.6);
    padding: 14px 0;
    -webkit-text-size-adjust: 100%;
}

.page-plan-price__table table tbody th a{
    color: #231815;
}

.page-plan-price__table table tbody td.page-plan-price__table-bold {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: calc(22/12);
    letter-spacing: 0.1em;
}

.page-plan-price__table table tbody td a {
    color: #231815;
}

.page-plan-price__schedule-title {
    cursor: pointer;
}

.page-plan-price__schedule-table tbody td p {
    background-color: inherit;
    position: relative;
    color: #000;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: calc(22/12);
    letter-spacing: 0.1em;
    padding: 8px 12px;
    margin: 0;

}
.page-plan-price__schedule-table tbody td div {
    display: flex;
    align-items: start;
    justify-content: start;
    text-align: left;
}


.page-plan-price__schedule .page-plan-price__schedule-table {
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(14/12);
}
.page-plan-price__schedule .page-plan-price__schedule-table.is-open {
    max-height: 800px;
    padding: 10px 0;
}

.page-plan-price__schedule {
    border-bottom: 1px solid #E7DDDA;
    padding: 10px 0;
}

.page-plan-price__schedule > p {
    position: relative;
    color: #000;
    background-color: #F8F4F3;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: calc(22/12);
    letter-spacing: 0.1em;
    padding: 8px 12px;
    margin: 0;
}

.page-plan-price__schedule-plus {
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 1em;
    height: 0.1em;
    right: 20px;
    background: currentColor;
    border-radius: 0.1em;
}

.page-plan-price__schedule-table .page-plan-price__table-head-bottom {
    text-align: start;
    padding: 5px 0;
}


.page-plan-price__schedule-table table tbody td {
    padding: 8px 0;
}
.page-plan-price__schedule-table table tbody td p{
    padding: 0;
}
.page-plan-price__schedule-table table tbody td p:last-child {
    padding: 0 0 0 10px;
}
.page-plan-price__schedule-table table tbody tr {
    border-top: none;
}

.page-plan-price__schedule-table table tbody tr:last-child {
    border-bottom: none;
}
  
.page-plan-price__schedule-plus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}

.page-plan-price__schedule-link { 
    box-sizing: border-box;
    max-width: 1200px;
    width: 100%;
    padding: 24px 100px 0;
    margin: 0 auto;
    text-align: right;
}
.page-plan-price__schedule-link a{
    color: #231815;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: calc(22/11);
    letter-spacing: 0.1em;
    width: 100%;

}
.page-plan-price__table .scroll-hint-box {
    display: none;
}

.page-plan-kimono {
    padding: 82px 0 124px;
}
.page-plan-kimono__head {
    padding: 0 100px 40px;
}
.page-plan-option {
    max-width: 1200px;
    padding: 0 200px 80px;
}

.page-plan-option__head {
    padding: 0;
}

.page-plan-option__flex {
    display: flex;
    gap: 6%;
    padding: 30px 0 54px;
}

.page-plan-option__img {
    position: relative;
    flex: 0 1 37.5%;
    display: flex;
}

.page-plan-option__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.page-plan-option__img::after {
    content: "ロケ等の写真";
    position: absolute;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10.63px;
    font-weight: 400;
    line-height: calc(22/11);
    letter-spacing: 0.1em;
    right: 20px;
    bottom: 20px;;
}

.page-plan-option__table {
    flex: 1;
	font-family: 'Noto Serif JP', serif;
	font-size: 14px;
    border-collapse: collapse;
    display: flex;
}

.page-plan-option__table th,.page-plan-option__table td {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10.63px;
    font-weight: 400;
    line-height: calc(22/11);
    letter-spacing: 0.1em;
	text-align: justify;
	border-top: 1px solid #E7DDDA;
    color:#231815;
}

.page-plan-option__table th {
    display: block;
    width: 74px;
    padding: 22px 0 22px 0;
}

.page-plan-option__table td {
    font-size: 11px;
    line-height: calc(22.68/11);
    padding: 22px 0 22px 15px;
}

.page-plan-option__table td a {
	display: flex;
    justify-content: end;
    color:#231815;
    margin: 10px 0 0;
}

.page-plan-blog {
    background: #F2F0EE;
    margin: 0;
    padding-top: 20px;
}

.page-plan-blog__content-inner{
    max-width: 1540px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 100px 50px;
    box-sizing: border-box;
}
.page-plan-blog-tag__list {
    display: flex;
    list-style: none;
    padding: 0 90px;
    margin: 0 0 40px;
}

.page-plan-blog-tag__list li{
    background-color: #988A94;
    color: #fff;
    font-size: 12px;
    font-family: "Noto Sans JP", sans-serif; 
    line-height: calc(21/12);
    letter-spacing: 0.1em;
    padding: 4px 8px;
    border-radius: 5px;
}

.page-plan-blog__button {
    margin: 52px auto 140px;
}

.page-plan-tuxedo {
    max-width: 1200px;
    width: 100%;
    padding: 0 200px;
}

.page-plan-tuxedo__head {
    padding: 0;
}

.page-plan-reservation-calendar__wrap {
    margin: 0 auto;
    max-width: 420px;
    width: 100%;

}

.page-plan-reservation-calendar__wrap .swiper-wrapper {
    transition-timing-function: linear;
}
  
.page-plan-reservation-calendar__wrap .swiper-slide {
    height: auto;
    background: #F8F4F3;
}

.sc-reservation-calendar__table {
    width: 100%;
}

.sc-reservation-calendar__title {
    font-size: 60px;
    font-weight: 700;
    font-family: "didot";
    font-style: italic;
    line-height:calc(24/20);
    letter-spacing: 0.1em;
    padding: 30px 0 20px;
}

.sc-reservation-calendar__title .cal-y,
.sc-reservation-calendar__title .cal-mn{
    font-size: 14px;
    padding:0px 10px 0 10px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
}

.sc-reservation-calendar__table {
    padding: 0 20px 20px;
    border: none;
}
.sc-reservation-calendar__table thead th {
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
}

.sc-reservation-calendar__table tr, .sc-reservation-calendar__table td, .sc-reservation-calendar__table th {
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
    color: #231815;
    border: none;
    padding: 10px 5px;
}

.sc-reservation-calendar__table td {
    text-align: center;
}

.sc-reservation-calendar__table .ok {
    background: none;
    position: relative;
}

.sc-reservation-calendar__table .ok::after {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: flex;
    position: absolute;
    border: 1px solid;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sc-reservation-calendar__table .today {
    background: none;
    position: relative;
    color: #fff;
    font-weight: bold;
}

.sc-reservation-calendar__table .today::after {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: flex;
    position: absolute;
    border: 1px solid;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #231815;
    z-index: -1;
}

.sc-reservation-calendar> table > thead > tr > th:nth-child(1) {
    color: #E27CA3;
}

.sc-reservation-calendar > table > thead > tr > th:nth-child(7) {
    color: #0092CB;
}

.page-plan-reservation-calendar__wrap .swiper-button-prev {
    top: 70px;
    left: 40px;
}
.page-plan-reservation-calendar__wrap .swiper-button-next {
    top: 70px;
    right: 40px;
}
.page-plan-reservation-calendar__wrap .swiper-button-prev::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #000;
    border-left: 0;
}
.page-plan-reservation-calendar__wrap .swiper-button-next::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #000;
    border-right: 0;
}


/* Dress & Tuxedo 衣装について */
.page-plan-tuxed__content-title {
    color: #7A6B4A;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 13px;
    font-weight: 500;
    line-height: calc(21/13);
    letter-spacing: 0.1em;
    box-sizing: border-box;
    display: flex;
    padding: 20px 0 0;
    margin: 0;
}

h3.page-plan-tuxed__content-title-second {
    padding: 0 0 20px;
}

.page-plan-tuxed__content-flex {
    display: flex;
    gap: 10%;
    flex-grow: 1;
    padding: 32px 0 48px;
}

.page-plan-tuxed__content-flex .page-plan-tuxed__content-item {
    width: 45%;
}

.page-plan-tuxed__content-item {
    display: flex;
    flex-direction: column;

}

.page-plan-tuxed__content-item-title {
    font-family: "Noto Sans JP", sans-serif;
    color: #231815;
    font-size: 10.63px;
    font-weight: 700;
    line-height: calc(22/11);
    letter-spacing: 0.1em;
    padding: 0 0 10px;
    margin: 0;
}


.page-plan-tuxed__content-item-text {
    color: #231815;
    font-size: 11px;
    font-weight: 400;
    flex-grow: 1;
    font-family: "Noto Sans JP", sans-serif; 
    text-align: justify;
    line-height: calc(22/11);
    letter-spacing: 0.1em;
    padding: 0 0 20px;
    margin: 0;
}

.page-plan-tuxed__content-item-text-groom {
    padding: 0 0 40px;
}

.page-plan-tuxed__content-item picture {
    display: block;
    display: flex;
    flex-direction: column;
}

.page-plan-tuxed__content-item picture img{
    width: 100%;
    height: auto;
}

.page-plan-tuxed__content-item-text a {
    color: #6A1815;
}


.page-plan-tuxed-sized {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    column-gap: 5%;
}

.page-plan-tuxed-sized__item-title {
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 10.63px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: calc(22/10);
    color: #231815;
}

.page-plan-tuxed-sized__item table {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
  
.page-plan-tuxed-sized__item table th,
.page-plan-tuxed-sized__item table td {
    width: 16%;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 500;
    line-height: calc(22/11);
    letter-spacing: 0.1em;
    padding: 14px 0;
    border-bottom: 2px solid #E7DDDA;
    text-align: center;
}
.page-plan-tuxed-sized__item table th {
    width: 12%;
}

.page-plan-tuxed-sized__item table tbody th {
    text-align: left;
    padding: 10px 0 10px 10px;
}
.page-plan-tuxed-sized__item table th {
    color: #7A6B4A;
}

.page-plan-tuxed-sized__item table thead th {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 500;
    line-height: calc(22/11);
    letter-spacing: 0.1em;
}


.page-plan-data__head {
    padding: 68px 0 0 0; 
}

.page-plan-data__content-flex .page-plan-tuxed__content-item .page-plan-tuxed__content-item-text {
    padding: 0;
}

.page-plan-data__content-item-title {
    color: #7A6B4A;
    font-weight: 500;
}

.page-plan-faq__head {
    padding: 0 0 32px;
}
.page-plan-faq__text {
    padding: 0 0 40px;
}
.page-plan-faq__text a {
    font-family: "Noto Sans JP", sans-serif; 
    color: #231815;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
}

.page-plan-schedule__text {
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
    color: #231815;
    padding: 30px 0 30px;
}

.page-plan-contact__head {
    padding: 70px 0 0;
}

.mw_wp_form.mw_wp_form_input,
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview {
    padding: 30px 100px 160px;
}
.mw_wp_form.mw_wp_form_input form,
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview form{
    background: #F8F4F3;
    box-sizing: border-box;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 20px 70px;
}

.sya-form {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(19/11);
    color: #231815;
}

.step-text1,
.step-text2 {
    text-align: center;
}
.step-text2  {
    margin: 0 0 30px;
}
.step-text1 .required{
    color: #A80000;
}

.form-box {
    padding: 0 82px 0 0;
}
.form-box > * {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 20px;
}

.form-box dt {
    font-size: 10.73px;
    flex: 0 1 160px;
    text-align: right;
}
.form-box dd {
    flex: 1;
    margin: 0 0 0 23px;
}
.mw_wp_form.mw_wp_form_input .form-box .required{
    position: relative;
}
.mw_wp_form.mw_wp_form_input .form-box .required::after{
    content: "*";
    color: #A80000;
    position: absolute;
    top: 0;
    right: -7px;
}
.mw_wp_form.mw_wp_form_input .form-box__textarea .required::after{
    content: "*";
    color: #A80000;
    position: absolute;
    top: 20px;
    right: -7px;
}
.form-box dd input,
.form-box dd textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 10px;
    border: 1px solid #EBE5E9;
}

.form-box__start {
    align-items: baseline;
}
.form-box__file dd input[type="file"] {
    border: none;
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 9.92px;
    line-height: calc(17.36/9.92);
    letter-spacing: 0.1em;
    padding: 0;
}

.form-box__file dd input[type=file]::-webkit-file-upload-button {
    background: -webkit-gradient(linear, left top, left bottom, from(#90817A), to(#90817A));
    background-color: #90817A;
    border: 1px solid #C1B8B4;
    color: #fff;
    padding: 8px;
    margin: 0 20px 0 0;
}

.form-box__file {
    margin: 0;
    align-items: start;
}
.form-box__file dt {
    margin: 8px 0 0;
}

.form-box dd textarea {
    height: 210px;
}

.form-box dd input {
    height: 40px;
}


.form-box__checkbox{
    display: flex;
    align-items: start;
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 10px;
    line-height: calc(17/10);
    letter-spacing: 0.1em;
    margin: 30px 0 30px;
}

.form-box__checkbox input[type="checkbox"] {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #EBE5E9;
    background-color: #fff;
    vertical-align: -5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0 5px 0 0;
    padding: 6px;

}

.form-box__checkbox input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    transform: rotate(50deg);
    width: 4px;
    height: 6px;
    border-right: 1px solid #A58F82;
    border-bottom: 1px solid #A58F82;
}

.form-box__radio {
    display: flex;
    align-items: start;
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 10px;
    line-height: calc(17/10);
    letter-spacing: 0.1em;
    margin: 30px 0 0;
}


.form-box__radio input[type="radio"] {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #EBE5E9;
    background-color: #fff;
    border-radius: 999px;
    vertical-align: -5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0 5px 0 0;
}

.form-box__radio input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #A58F82;
}

.form-box__date {
    margin: 30px 0 30px;
    align-items: start;
}
.form-box__date > dd > ul > li:nth-child(1) > p{
    margin: 0 0 20px;
}

.form-box__date-form {
    position: relative; 
    display: inline-block; 
}

.form-box__date-form::after {
    position: absolute;
      content: "";
    background-image: url(../images/img-form-box__date-form.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.form-box__date ul {
    list-style: none;
    padding: 0;
    margin: auto;
}
.form-box__date ul li {
    display: flex;
    font-size: 10.73px;
    margin: 0 0 20px -60px;
    width: 100%;
    white-space: nowrap;
    align-items: center;
}

.form-box__date ul li > div {
    margin: 0 0 0 20px;
}

.form-box__date > dd > ul > li:last-child {
    margin: 0 0 0 -60px;
}
.form-box__date ul li input {
    max-width: 250px;
    width: 100%;
    margin: 0 0 0 0;
}
.form-box__date p {
    font-size: 10.73px;
    margin: 0 0 20px 5px;
}
.form-box__size ul {
    display: flex;
    align-items: center;
    padding: 0;
}

.form-box__size ul li {
    display: flex;
    align-items: center;
  
}
.form-box__size ul li input{
    margin: 0 5px;
}

.mwform-tel-field {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    width: 100%;
}

.mwform-tel-field input[type="text"] {
    width: 33%;
}

.form-box dd input[type="select"] {
    max-width: 150px;
    width: 100%;
    height: 40px;
}

.form-box__select {
    justify-content: start;
}
.form-box__select dd {
    max-width: 150px;
    width: 100%;
}
.form-box__select dd select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

  
.form-box__select dd select {
    position: relative;
    border-radius: 2px;
    border: 1px solid #EBE5E9;
    background: #ffffff;
    height: 40px;
}
.form-box__select dd {
    position: relative;
}
.form-box__select dd::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.8em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000000;
    pointer-events: none;
    z-index: 1;
}
.form-box__select dd select {
    padding: 8px 38px 8px 8px;
    color: black;
}

.form-box__textarea {
    align-items: start;
    margin: 30px 0 30px;
}
.form-box__textarea dt {
    padding: 20px 0 0;
}

.form-box__textarea dd .brand-list-link {
    display: block;
    width: 100%;
    color: #000;
    font-weight: bold;
    margin: 0.5em 0 0 0;
    font-size: 12px;
}



.agreement-box label {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.agreement-box label span a{
    color: #000000;
}

.agreement-box label input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #EBE5E9;
    background-color: #fff;
    vertical-align: -5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0 5px 0 0;
}

.agreement-box label input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 8px;
    transform: rotate(50deg);
    width: 4px;
    height: 10px;
    border-right: 1px solid #A58F82;;
    border-bottom: 1px solid #A58F82;;
}

.sya-form .btn-box {
    text-align: center;
}

.sya-form .btn-box button {
    background: #464041;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
    max-width: 300px;
    width: 100%;
    height: 40px;
    margin: 30px auto 0;
    cursor: pointer;
}

.sya-form-complete {
    margin: 70px auto;
    width: 90%;
}

.single-dress-detail__flex {
    box-sizing: border-box;
    display: flex;
    gap: 3%;
    max-width: 1400px;
    width: 100%;
    margin: auto;
    padding: 0 100px 0;
    position: relative;
}


.single-dress-detail__flex-img-thumb {
    display: flex;
    flex-direction: row-reverse;
}


.single-dress-detail__gallery {
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.single-dress-detail__gallery .swiper,
.single-dress-detail__gallery .thumb-wrapper {
    /* max-width: 720px;
    margin: 0; */
}
.single-dress-detail__gallery .swiper {
    overflow: visible;
    max-width: 480px;
}
.single-dress-detail__gallery .swiper-fade .swiper-slide {
    -webkit-transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, transform !important;
    transition-property: opacity, transform, -webkit-transform !important;
    pointer-events: none;
}
.single-dress-detail__gallery .swiper-fade .swiper-slide-active {
    pointer-events: auto;
}




.single-dress-detail__gallery .slide {
    display: block;
    overflow: hidden;
}
.single-dress-detail__gallery .slide-media {
    display: block;
    padding-top: 62.5%;
    border-radius: 4px;
}
.single-dress-detail__gallery .slide-media img {
    object-fit: contain;
}
.single-dress-detail__gallery .slide-title {
    font-weight: bold;
    line-height: 1.6;
    padding: 3.2rem 0;
}

.swiper-wrap{
    width: 87%;
}
.single-dress-detail__gallery .thumb-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
    width: 10%;
    margin: 0 0 auto auto;
}


.single-dress-detail__gallery .thumb-media {
    padding-top: 100%;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    padding: 0;
}

.single-dress-detail__gallery .thumb-media img {
    transition: var(--transition);
    width: 100%;
}
.single-dress-detail__gallery .thumb-media-active {
    opacity: 0.8;
}



.single-dress-detail__gallery img {
    width: 100%;
}
.single-dress-detail__flex-img-wrap {
    flex: 0 1 48%;
    width: 48%;
}
.single-dress-detail__flex-content {
    flex: 1;
    padding: 0 0 140px 0;
    position: relative;
    max-width: 440px;
    width: 100%;
}

.single-dress-detail__flex-img-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 480 / 700;
}
.single-dress-detail__flex-img img{
    max-width: 100%;
    width: 100%;
  
}
.single-dress-detail__flex-img-thumb-main {
    max-width: 480px;
    width: 100%;
    margin: 0 0 0 20px;
}
.single-dress-detail__flex-img-thumb-main img{
    aspect-ratio: 480/700;
    object-fit: cover;
}
.single-dress-detail__flex-img-thumb-list img{
    width: 100%;
    height: auto;
    aspect-ratio: 55/82;
    object-fit: cover;
}

.single-dress-detail__flex-img-thumb-list{
    width: 55px;
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}


.single-dress-detail__flex-content h1 {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: calc(19/16);
    color: #494645;
    margin: 0 0 10px;
    padding: 0 120px 0 0;
}

.sp-share-btn {
    display: none;
}

.single-dress__button-wrap{
    display: flex;
    justify-content: end;
    position: absolute;
    right: 0;
    top: 20px;
}
.single-dress__button-wrap .simplefavorite-button {
    margin-top: -20px;
    font-size: 0;
    display: flex;
    align-items: center;
}
.single-dress__button-wrap .simplefavorite-button::before {
    content: "お気に入りに追加する";
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 8px;
    color: #7A6B4A;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(30/8);
    margin: 0 5px 0 0;

}
.single-dress__button-wrap .simplefavorite-button.active::after {
    background-image: url(../images/simplefavorite-button-active.svg);
}
.single-dress__button-wrap .simplefavorite-button::after {
    content: "";
    background-image: url(../images/simplefavorite-button-passive.svg);
    background-repeat: no-repeat;
    height: 18px;
    width: 17px;
    background-size: 18px 17px;
    position: relative;
    display: flex;
    right: 0;
    text-align: right;
    margin: 0 0 0 auto;
}
.single-dress__tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px;
}
.single-dress__tag-list a {
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
    text-decoration: none;
    color: #483E28;
    background: #F4EFEF;
    padding: 5px 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.single-dress__tag-list a::before {
    content: "";
    background-image: url(../images/img-dress-tag-list.svg);
    background-repeat: no-repeat;
    height: 12px;
    width: 13px;
    background-size: 12px 13px;
    position: relative;
    display: flex;
    right: 0;
    text-align: right;
    margin: 0 3px 0 0;
}

.single-dress__tag-list a small {
    margin: 0 0 0 4px;
}

.single-dress__contact-button {
    list-style: none;
    padding: 24px 0;
    margin: 0;
}

.single-dress__contact-button li a {
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 9.5px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(18/9.5);
    text-decoration: none;
    color: #fff;
    max-width: 300px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-dress__contact-button li:first-child {
    margin: 0 0 20px;
}
.single-dress__contact-button li:first-child a{
    background: #464041;
}
.single-dress__contact-button li button{
    cursor: pointer;
    background: #7A6B4A;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 9.5px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(18/9.5);
    text-decoration: none;
    color: #fff;
    max-width: 300px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.single-dress__contact-button li:last-child a{
    background: #7A6B4A;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 9.5px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(18/9.5);
    text-decoration: none;
    color: #fff;
    max-width: 300px;
    width: 100%;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
}



  
.line-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;

}
  
.line-modal::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-left: -0.2em;
}
  
.line-modal.is-active{
    opacity: 1;
    visibility: visible;
    z-index: 10;
}
  
.line-modal__container{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 300px;
    width: 90%;
}


.line-modal__close {
    content: "";
    cursor: pointer;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -20px;
    right: 4px;
    z-index: 9;
    border-radius: 50%;
}
.line-modal__close::before,   .line-modal__close::after { /* 共通設定 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px; 
    height: 30px; 
    background: #7A6B4A;
}
   
.line-modal__close::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
   
.line-modal__close::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}
  
.line-modal__content{
    background: #fff;
    text-align: left;
    line-height: 1.8;
    background: #F8F4F3;
    padding: 14px 14px 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 300px;
    box-sizing: border-box;
}
  
.line-modal__content p{
    margin: 0;
}

.line-modal__content .single-dress__line-img {
    width: 150px;
    height: 150px;
}

.single-dress__text {
    color: #231815;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(17.5/10);
    max-width: 300px;
    width: 100%;
}

.single-dress__table {
    max-width: 400px;
    width: 100%;
}

.single-dress__table table {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
  
.single-dress__table table th,
.single-dress__table table td {
    width: 16%;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 500;
    line-height: calc(22/11);
    letter-spacing: 0.1em;
    padding: 10px 0;
    border-bottom: 2px solid #E7DDDA;
    text-align: center;
}
.single-dress__table table th {
    width: 25%;
}
.single-dress__table table td{
    width: 75%;
    text-align: left;
}

.single-dress__table table tbody th {
    text-align: left;
    padding: 10px 0 10px 10px;
}
.single-dress__table table th {
    color: #7A6B4A;
}
.single-dress__table table thead th {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 500;
    line-height: calc(22/11);
    letter-spacing: 0.1em;
    text-align: left;
    padding: 10px 80px;
}

.single-dress__table ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
    margin: 0;
}


.single-dress-blog {
    background: #F2F0EE;
    margin: 80px 0 0;
 
}

.single-dress__more-button {
    display: none;
}

.single-dress-blog__inner {
    max-width: 1540px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 100px 0;
    box-sizing: border-box;
}

.single-dress-blog__tag-list{
    display: flex;
    list-style: none;
    padding: 0 90px;
    margin: 0 0 20px;
    flex-wrap: wrap;
    gap: 5px;
}
.single-dress-blog__tag-list li {
    display: flex;
}
.single-dress-blog__tag-list li a{
    font-size: 12px;
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    line-height: calc(21/12);
    letter-spacing: 0.1em;
    text-decoration: none;
    background-color: #fff;
    color: #392E27;
    padding: 4px 8px;
    border-radius: 5px;
}

.single-dress-blog.blog__content-wrap .blog-list {
    margin: 40px 0 0;
    padding: 0 0 40px;
}

.single-dress__line {
    position: absolute;
    box-sizing: border-box;
    bottom: 200px;
    width: 300px;
    height: 300px;
    background: #F8F4F3;
    padding: 14px 14px 42px;
    border-radius: 3px;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    right: 5%;
    bottom: -15px;
}
 
.single-dress__line.hidden {
    opacity: 0;
    visibility: hidden;
}

.single-dress__line .close-btn {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: -20px;
    right: 4px;

    z-index: 9;
    border-radius: 50%;
}
.single-dress__line .close-btn::before,   .single-dress__line .close-btn::after { /* 共通設定 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px; 
    height: 30px; 
    background: #7A6B4A;
}
   
.single-dress__line .close-btn::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
   
.single-dress__line .close-btn::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}
.single-dress__line-img{
    width: 150px;
    height: 150px;
}
.single-dress__line-img img{
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 5px;
}

.single-dress__line-title {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
    color: #231815;
    margin: 0;
}

.globalNav__wrap.globalNav__wrap-white {
    height: 0;
}

.globalNav__wrap.globalNav__wrap-white .globalNav {
    position: fixed;
    background: transparent;
}

.globalNav__wrap.globalNav__wrap-white .globalNav__nav li a {
    color: #fff;
}

.globalNav__wrap.globalNav__wrap-white .globalNav__favorite-link {
    color: #fff;
}

.globalNav__wrap.globalNav__wrap-white .favorite__icon,
.globalNav__wrap.globalNav__wrap-white .globalNav__favorite-link,
.globalNav__wrap.globalNav__wrap-white .favorite__icon-instagram,
.globalNav__wrap.globalNav__wrap-white .favorite__icon-dott
{
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.single-dress__sticky {
    position: absolute;
    padding: 160px 0 0;
}

.page-dress__mv {
    position: relative;
}

.page-dress__mv picture,
.page-dress__mv video {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    object-fit: cover;
}

.page-dress__mv picture img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-dress__mv-yolancris picture img {
    object-position: 80% 50%;
}

.page-dress__heading-wrap {
    max-width: 1000px;
    box-sizing: border-box;
    padding: 0 20px 70px 20px;
    width: 100%;
    bottom: 0;
    right: 0;
    position: absolute;
    left: 0;
    margin: 0 auto;
    z-index: 1;
}

.page-dress__heading{
    color: #fff;
    display: inline-block;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    font-family: "didot";
    font-weight: 400;
    font-size: 72px;
    line-height: 1;
    letter-spacing: 0;
    margin: 0 auto;
    text-align: center;
}

.page-dress__heading span {
    font-family: "didot";
    font-size: 24px;
    letter-spacing: 0;
}

.page-dress__heading-add span {
    margin: 0 0 0 -10px;
}

.page-dress__heading small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14.88px;
    line-height: 1;
    letter-spacing: 0.2em;
    margin: 10px 0 0 10px;
    width: 100%;
    display: block;
}

.free_area_top_code a,
.free_area_bottom_code a {
    color: #000;
}

.page-dress__top {
    background-image: url(../images/img-page-yolancris-top-bg.webp);
    background-size: 100% 80%;
    background-repeat: no-repeat;
    padding: 0 0 92px;
}

.page-dress__top-flex {
    display: flex;
    gap: 10%;
    max-width: 1200px;
    width: 100%;
    padding: 100px 80px 0 130px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-dress__top-flex img {
    width: 100%;
    height: auto;
}

.page-dress__top-flex--yolancris {
    display: flex;
    gap: 10%;
    max-width: 1350px;
    width: 100%;
    padding: 122px 80px 0 205px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-dress__top-flex-left {
    flex: 0 1 64%;
}

.page-dress__top-flex-left p {
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    text-align: justify;
    font-size: 11px;
    line-height: calc(29/11);
    letter-spacing: 0.1em;
    margin: 0;
}

.page-dress__top-flex-left picture {
    position: relative;
    display: flex;
    justify-content: end;
    margin: 180px 0 0;
}

.page-dress__top-flex--galia {
    display: flex;
    gap: 9%;
    max-width: 1066px;
    width: 100%;
    padding: 100px 160px 0 100px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-dress__top-flex--galia .page-dress__top-flex-img {
    flex: 0 1 43%;
}

.page-dress__top-flex--galia .page-dress__top-flex-img video {
    width: 339px;
}

.page-dress__top-flex--galia .page-dress__top-flex-body {
    flex: 1;
    padding: 82px 0 0;
}


.page-dress__top-flex--nicole {
    max-width: 1226px;
    padding: 100px 158px 0 130px;
    gap: 5%;
}
.page-dress__top-flex--nicole  .page-dress__top-flex-img {
    flex: 0 1 36%;
}
.page-dress__top-flex--nicole .page-dress__top-flex-img video {
    width: 330px;
}

.page-dress__top-flex--nicole .page-dress__top-flex-body {
    flex: 1;
    padding: 0 0 22px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.page-dress__top-flex--millia {
    max-width: 1226px;
    padding: 140px 84px 0 84px;
}

.page-dress__top-flex--millia   .page-dress__top-flex-img {
    flex: 0 1 33%;
    margin: 0 0 0 22%;
}

.page-dress__top-flex--millia .page-dress__top-flex-body {
    flex: 1;
    padding: 70px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.page-dress__top--newhite {
    padding: 0 0 62px;
}
.page-dress__top-flex--newhite {
    max-width: 1200px;
    padding: 86px 100px 0 108px;
    gap: 7%;
}

.page-dress__top-flex--newhite   .page-dress__top-flex-img {
    flex: 0 1 41%;
}

.page-dress__top-flex--newhite .page-dress__top-flex-body {
    flex: 1;
    padding: 70px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.page-dress__top--Tuxedo {
    padding: 0 0 140px;
    background-size: 100% 70%;
}

.page-dress__top-flex--Tuxedo {
    display: flex;
    gap: 10%;
    max-width: 1151px;
    width: 100%;
    padding: 170px 80px 0 260px;
    margin: 0 auto;
    box-sizing: border-box;
} 

.page-dress__top-flex--tuxedo  picture {
    width:100%;
    display: flex;
    margin: 0 auto 0;
    padding: 0;
    box-sizing: border-box;
}

.page-dress__top-flex--tuxedo .page-dress__top-flex-img {
    flex: 0 1 37%;
    margin: 0;
    width: 100%;
}

.page-dress__top-flex--tuxedo .page-dress__top-flex-body {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-dress__top--verawang {
    padding: 0 0 65px;
}

.page-dress__top-flex--verawang {
    padding: 115px 100px 0 110px;
}

.page-dress__top-flex--verawang {
    display: flex;
} 

.page-dress__top-flex--verawang .page-dress__top-flex-img {
    flex: 0 1 32%;
    margin: 0;
    width: 100%;
    margin: 100px 0 0;
}

.page-dress__top-flex--verawang .page-dress__top-flex-body {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.page-dress__top-flex--verawang  picture {
    width:100%;
    display: flex;
    margin: 0 auto 0;
    padding: 0;
    box-sizing: border-box;
}

.page-dress__top--other {
    padding: 0 0 65px;
}

.page-dress__top-flex--other {
    padding: 115px 100px 0 110px;
}

.page-dress__top-flex--other {
    display: flex;
} 

.page-dress__top-flex--other .page-dress__top-flex-img {
    flex: 0 1 32%;
    margin: 0;
    width: 100%;
    margin: 50px 0 0;
}

.page-dress__top-flex--other .page-dress__top-flex-body {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.page-dress__top-flex--other .page-dress__top-flex-body ul {
    list-style: none;
    padding-left: 1em;
}

.page-dress__top-flex--other .page-dress__top-flex-body ul li {
    
}

.page-dress__top-flex--other .page-dress__top-flex-body ul li::marker {
    content: "＊ ";
}

.page-dress__top-flex--other  picture {
    width:100%;
    display: flex;
    margin: 0 auto 0;
    padding: 0;
    box-sizing: border-box;
}

.page-dress__top-flex-body p,
.page-dress__top-flex-body ul li {
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    text-align: justify;
    font-size: 11px;
    line-height: calc(29/11);
    letter-spacing: 0.1em;
    margin: 0;
}

.page-dress__report {
    padding: 0 100px;
    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;

}

.page-dress__report-inner {
    padding: 24px;
    background: #F8F4F3;
    display: flex;
    flex-direction: column;
}

.page-dress__report-title {
    font-family: "Noto Sans JP", sans-serif;
    color:#5B4F35;
    font-size: 12px;
    font-weight: 400;
    line-height: calc(29/12);
    letter-spacing: 0.1em;
    margin: 0 0 10px;
}

.page-dress__report ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-dress__report ul li {
    padding: 0.2em;
}

.page-dress__report a {
    font-family: "Noto Sans JP", sans-serif;
    color:#5B4F35;
    font-size: 11px;
    line-height: calc(15/13);
    letter-spacing: 0.1em;
    margin: 0;
}

.page-dress__top-flex-right {
    flex: 1;
}

.page-brand__favorite-dress-message {
    font-size: 12px;
    font-weight: bold;
    background-image: url(../images/simplefavorite-button-active.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    margin: 80px auto 0px;
    background-position: 0 55%;
    line-height: 2;
    padding-left: 40px;
}

.page-brand__favorite-dress-message p {
    margin: 0;
}

.page-brand__favorite-dress-message a {
    color: #000;
}

.dress-list__wrap {
    max-width: 1400px;
    width: 100%;
    padding: 0 100px;
    box-sizing: border-box;
    margin: 100px auto 0;
}
.dress-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    row-gap: 40px;
    padding: 0;
    margin: 0;
}

.dress-list > li{
    width: 22%;
    margin-right: 4%;
    position: relative;
}
.dress-list > li:nth-of-type(4n) {
    margin-right: 0%;
}


.dress-list > li img {
    width: 100%;
    height: auto;
    aspect-ratio: 250 / 380;
    object-fit: cover;
}
.dress-list__wrap > ul > li > a {
    display: flex;
    position: relative;

}
.dress-list__wrap > ul > li > a > span {
    position: absolute;
    bottom: 10px;
    left: 5px;
    font-size: 7.8px;
    background-color: #7A6B4A;
    border: 1px solid #B2A283;
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    color: #fff !important;
    padding: 3px 5px;
    letter-spacing: 0.3em;
    text-transform:uppercase;
}

.dress-list__head-wrap {
    position: relative;
}
.dress-list__head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0 0;
    padding: 0 14% 0 0;
    position: relative;
    box-sizing: border-box;
}

.dress-list__head-wrap a {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    font-size: 11px;
    line-height: calc(19/12);
    letter-spacing: 0.1em;
    margin: 20px 20px 0 0;
    display: flex
}

.dress-list__head-wrap a h4 {
    font-weight: 400;
    margin:0px;
}

.dress-list__head-wrap > div:nth-child(2){
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    color: #000;
    text-decoration: none;
    font-size: 11px;
    line-height: calc(13/11);
    letter-spacing: 0.1em;
    padding: 5px 0 0;
}

.dress-list__head-button {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0;
}

.dress-list .simplefavorite-button.active::after {
    background-image: url(../images/simplefavorite-button-active.svg);
}

.dress-list .simplefavorite-button::after {
    content: "";
    background-image: url(../images/simplefavorite-button-passive.svg);
    background-repeat: no-repeat;
    height: 18px;
    width: 17px;
    background-size: 18px 17px;
    position: relative;
    display: flex;
    right: 0;
    text-align: right;
    margin-right: 0;
    margin-left: auto;
}
.dress-list > li > ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    gap: 5px;
}

.dress-list > li > ul > li {
    font-family: "Noto Sans JP", sans-serif;
    color: #7A6B4A;
    background-color: #F8F4F3;
    font-size: 12px;
    line-height: calc(14/12);
    letter-spacing: 0;
    padding: 4px;
    box-sizing: border-box;
    display: flex;
    align-items: baseline;
}

.dress-list > li > ul > li small{
    margin: 0 0 0 2px;
}

.page-dress-bottom .page-dress__heading {
    color: #000;
}

.page-dress-bottom {
    background-image: url(../images/img-yolancris-bottom_1.webp);
    background-size: 100% 85%;
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 54px 0 70px;
    margin: 100px 0 140px;
}

.page-dress-bottom-kimono {
    padding: 0 0 100px;
    background-image: none;
    margin: -71px 0 190px;
}

.page-dress-bottom picture {
    display: flex;
    margin: 0 auto 30px;
    max-width: 300px;
    width: 100%;
}

.page-dress-bottom picture img {
    width: 100%;
    height: auto;
}

.page-dress-bottom__heading{
    color: #211815;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    font-family: "didot";
    font-weight: 400;
    font-size: 85px;
    line-height: 1;
    letter-spacing: 0;
    z-index: 1;
    margin: 0 auto;
    max-width: 1000px;
    box-sizing: border-box;
    padding: 0 20px 30px 20px;
    width: 100%;
}
.page-dress-bottom__heading span {
    font-family: "didot";
    font-size: 28px;
    letter-spacing: 0;
    margin: 0;
}

.page-dress-bottom__heading-add span {
    margin: 0 0 0 -10px;
}

.page-dress-bottom__heading--Galia span {
    margin: 0 0 0 0; 
}

.page-dress-bottom__heading small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12.5px;
    line-height: 1;
    letter-spacing: 0.2em;
    margin:0px 0 0 10px;
    width: 100%;
    text-align: center;
}

.page-dress-bottom p,
.page-dress-bottom ul li {
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    line-height: calc(30/11);
    letter-spacing: 0.1em;
    max-width: 440px;
    width: 100%;
    padding: 0 20px;
    margin: auto;
    text-align: center;
}

.page-dress-bottom__other ul {
    list-style: none;
    padding-left: 1em;
}

.page-dress-bottom__other ul li {
    text-align: left;
}

.page-dress-bottom__other ul li::marker {
    content: "＊ ";
}

.page-dress__heading-kimono small {
    margin: 10px 0 0 44px;
}


.page-dress-kimono-top {
    padding: 64px 0 0;
}

.page-dress-kimono-top__text {
    text-align: center;
    color: #231815;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: calc(29/11);
}


.page-dress-kimono-top__flex-wrap {
    background-image: url(../images/img-page-kimono-top-bg_x2.webp);
    background-size: 100% 90%;
    background-position: bottom;
    background-repeat: no-repeat;
    margin: -30px 0 0;
}
.page-dress-kimono-top__flex {
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 100px 30px;
    display: flex;
    gap: 12%;
}
.page-dress-kimono-top__flex-left {
    width: 47.5%;
    padding: 70px 0 30px;
}
.page-dress-kimono-top__flex-right {
    width: 44%;
}
.page-dress-kimono-top__flex-left p {
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
    max-width: 360px;
    width: 100%;
    margin: 49px 0 0 auto;
}

.page-dress-kimono-top__flex-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.page-dress-kimono-top__flex-right picture:first-child {
    display: flex;
    margin: 0 0 0 auto;
    max-width: 300px;
    width: 100%;
    width: 100%;
}
.page-dress-kimono-top__flex-right picture:last-child {
    display: flex;
    margin: 30px auto 0 0;
    max-width: 200px;
    width: 100%;
}

.page-dress-kimono-second__flex {
    display: flex;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto 100px;
}
.page-dress-kimono-second__flex-left {
    /* background-image: url(../images/img-page-dress-kimono-center01_x2.webp);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat; */
    width: 50%;  
}
.page-dress-kimono-second__flex-left picture {
    display: flex;
}
.page-dress-kimono-second__flex-left img {
    width: 100%;
    height: auto;
}
.page-dress-kimono-second__flex-right {
    background-image: url(../images/img-page-dress-kimono-center02_x2.webp);
    width: 50%;
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.page-dress-kimono-second__flex-right img {
    width: 100%;
    height: auto;
}

.page-dress-kimono-second__flex-right h2 {
    color: #fff;
    font-family: "didot";
    font-weight: 400;
    font-size: 73.72px;
    line-height: calc(80/73);
    margin: 0;
}
.page-dress-kimono-second__flex-right p {
    color: #000;
    /* background-color: #87314A; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
    text-align: center;
  
    padding: 20px;
}

.page-dress-kimono-third {
    background-image:
    linear-gradient(
  180deg,
  transparent 0%,
  transparent 10%,
  #EFEDE6 10%,
  #EFEDE6 100%
);;
}

.page-dress-kimono-third img {
    width: 100%;
    height: auto;
}

.page-dress__report-kimono {
    padding: 60px 100px 0;
}

.page-dress__report-kimono .page-dress__report-inner {
    position: relative;
}

.page-dress__report-kimono .page-dress__report-inner::after {
    content: "";
    background-image: url(../images/img-kimono-report.webp);
    width: 220px;
    height: 70px;
    background-size: 220px 70px;
    right: 0;
    top: -30px;
    display: flex;
    position: absolute;
}

.page-dress-kimono-third__flex {
    max-width: 1180px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 100px 40px 120px;
    display: flex;
    gap: 15%;
    align-items: center;
}
.page-dress-kimono-third__flex-left {
    width: 50%;
}
.page-dress-kimono-third__flex-left picture {
    width: 82%;
    display: flex;
    border: 1px solid;
    border-radius: 50%;
    padding: 5px;
}
.page-dress-kimono-third__flex-left p {
    text-align: center;
    width: 88%;
    margin: 0;
}
.page-dress-kimono-third__flex-left p {
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    font-size: 9.9px;
    line-height: calc(29/10);
    letter-spacing: 0.1em;
}
.page-dress-kimono-third__flex-right {
    width: 50%;    
    margin: 130px 0 0;
}

.page-dress-kimono-third__flex-right picture {
    width: 86%;
    display: flex;
    margin: 0 0 0 auto;
}
.page-dress-kimono-third__flex-right p {
    text-align: right;
    margin: 0;

}
.page-dress-kimono-third__flex-right p {
    
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    font-size: 9.9px;
    line-height: calc(29/10);
    letter-spacing: 0.1em;
}
.page-dress-kimono-third__flex-right p a {
    color: #000;
}
.page-dress-kimono-under {
    margin: 120px 0 0;
    background: #EFEDE6;
}

.page-dress-kimono-under img {
    width: 100%;
    height: auto;
}

.page-dress-kimono-under__flex {
 
    box-sizing: border-box;
    margin: 0 auto;

    display: flex;

}
.page-dress-kimono-under__flex-left{
    width: 50%;
    padding: 100px 0 0 0;
    box-sizing: border-box;
}

.page-dress-kimono-under-first__flex-wrap{
  background:  #EFEDE6;
}
.page-dress-kimono-under-first__flex-wrap{
    max-width: 1500px;
    margin: auto;
    width: 100%;
    box-sizing: border-box;
}
.page-dress-kimono-under-first__flex .page-dress-kimono-under__flex-right-inner {
    padding: 0;
}

.page-dress-kimono-under-first__flex .page-dress-kimono-under__flex-right-inner picture {
    max-width: 100%;

}
.page-dress-kimono-under__flex-left-inner{
    margin: 10px auto 0;
    max-width: 360px;
    width: 48%;
    display: block;
    text-align: right;
}
.page-dress-kimono-under__flex-left picture {
    display: flex;
    margin: auto;
    max-width: 360px;
    width: 100%;
}

.page-dress-kimono-under__flex-left picture img {
    width: 100%;
    height: auto;
}
.page-dress-kimono-under-first__flex-wrap .page-dress-kimono-under__flex-left p {
    display: flex;
    margin: 10px auto 0;
    max-width: 360px;
    width: 100%;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
    display: inline-block;
    text-align: left;
}
.page-dress-kimono-under__flex-left p {
    color: #000;
}

.page-dress-kimono-under__flex-right {
 
    width: 50%;
}

.page-dress-kimono-under__flex-last-wrap {
    background-image: url(../images/img-kimono-under__flex-last_x2.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.page-dress-kimono-under__flex-last {
    max-width: 1300px;
    margin: auto;
    padding: 94px 100px 90px;
}

.page-dress-kimono-under__flex-last .page-dress-kimono-under__flex-left {
    padding: 0;
}

.page-dress-kimono-under__flex-last .page-dress-kimono-under__flex-left-inner {
    margin: 0 auto 0;
    max-width: 340px;
    width: 64%;
    display: block;
    text-align: right;
}
.page-dress-kimono-under__flex-last  .page-dress-kimono-under__flex-left picture{

    display: flex;
    border: 1px solid;
    border-radius: 50%;
    padding: 5px;
}

.page-dress-kimono-under__flex-last  .page-dress-kimono-under__flex-right {
    padding: 30px 0 0;
}

.page-dress-kimono-under__flex-last  .page-dress-kimono-under__flex-right picture{
    max-width: 470px;
    width: 85%;
    margin: 0 0 0 auto;
    display: flex;
}

.page-dress-kimono-under__flex-last p {
    display: flex;
    margin: 10px auto 0;
    max-width: 360px;
    width: 100%;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
    display: inline-block;
    text-align: center;
}
.page-dress-kimono-under__flex-last p  {
    color: #000;
    text-decoration: underline;
}

/* .page-dress-kimono-under__flex-right-inner {
    display: block;
    max-width: 660px;
    width: 100%;
    padding: 0 80px 0 100px;
    box-sizing: border-box;
} */

.page-dress-kimono-under-first__flex p a {
    text-align: left;
}

/* .page-dress-kimono-under__flex-right-inner picture:first-child {
    display: block;
    max-width: 300px;
    width: 100%;
    margin: 0 0 100px auto;
} */

/* .page-dress-kimono-under__flex-right-inner picture:last-child {
    display: block;
    max-width: 500px;
    width: 100%;
    margin: 0 0 0 0;
} */

.page-dress-bottom__mv {
    max-width: 1500px;
    width: 100%;
    margin: 80px auto 0;
}

.page-dress-bottom__mv p {
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
    text-align: center;
    padding: 0 0 60px;
}

.page-dress-bottom__mv img {
    width: 100%;
    height: auto;
}

.page-contact-top {
    padding: 86px 100px 0;
}

.page-contact-top__inner {
    background: #F8F4F3;
    box-sizing: border-box;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px 30px;
}

.page-contact-top h2 {
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15.6px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(27/16); 
    margin: 0;
}

.page-contact-top p {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(21/12);
    margin: 0;
    padding: 20px 0 30px;
}

.page-contact-top picture {
    text-align: center;
    display: block;
    max-width: 150px;
    width: 100%;
    margin: 0 auto 0;
}

.page-contact-top picture img {
    width: 100%;
}

.page-contact-top button {
    display: none;
}
.page-contact-top a {
    display: none;
}

.page-contact__form .mw_wp_form{
    padding: 30px 100px 70px;
}

.page-contact__form .form-box {
    margin: 40px 0 30px;
}
/* お問い合せ */
.step-text1-big {
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
    margin: 0 0 15px;
}

/* 買取相談 */
.page-sellyourdress-memories {
    background: none;
    color: #231815;
    padding: 100px 0 100px;
}
.page-sellyourdress-memories .memories__body {
    padding: 90px 0 40px;
}
.page-sellyourdress-memories  .memories__body-content {
    padding: 72px 0 0 110px;
}

.page-sellyourdress-memories .memories__body-title,
.page-sellyourdress-memories .memories__body-text,
.page-sellyourdress-memories .memories__body-expert{
    color: #231815; 
}

.page-sellyourdress-memories .memories__body-title-img {
    margin: -10px auto 0 36%;
}

.page-sellyourdress-memories .memories__body-text {
    margin: 0 0 55px;
   

}
.page-sellyourdress-memories .memories__body-expert{
    font-size: 14px;
    line-height: calc(24.5/14);
    padding: 0 0 20px;
}

.page-sellyourdress__flex-wrap {
    max-width: 1300px;
    width: 100%;
    padding: 0 150px 76px;
    box-sizing: border-box;
    margin: 0 auto;
}
.page-sellyourdress__flex {
    display: flex;
    gap: 8%;
}
.page-sellyourdress__flex-item {
    width: 20%;
    display: flex;
    flex-direction: column;
}
.page-sellyourdress__flex-item picture {
    display: block;
}
.page-sellyourdress__flex-item picture img {
    aspect-ratio: 190/220;
    object-fit: contain;
    height: auto;
    width: 100%;
}
.page-sellyourdress__flex-item h2 {
    color: #8C8C8C;
    font-family: "didot";
    font-style: italic;
    font-size: 37px;
    letter-spacing: 0.1em;
    line-height: calc(72/37);
    text-align: center;
    margin: 0 0 10px;
}
.page-sellyourdress__flex-item h2 small {
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.1em;
    line-height: calc(22/11);
    padding: 0 0 0 10px;
}
.page-sellyourdress__flex-item h3 {
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;

    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(17/10);
    background: #F1F4F3;
    text-align: center;
    padding: 5px 10px;
    max-width: 180px;
    width: 100%;
    margin: 20px auto 10px;
}
.page-sellyourdress__flex-item p {
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(20/11);
    text-align: justify;
    margin: 0;
}

/* よくあるご質問 */
.page-faq__content-bottom {
    margin: 26px 0 0;
}


.page-faq__group {
    box-sizing: border-box;
    position: relative;
    max-width: 1000px;
    width: 100%;
    padding: 64px 100px 70px;
    box-sizing: border-box;
    margin: 0 auto 200px;
}

.page-faq__title {
    position: relative;
    color: #000;
    background-color: #F8F4F3;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 15px;
    font-weight: 400;
    line-height: calc(26/15);
    letter-spacing: 0.1em;
    padding: 8px 12px;
    margin: 0 0 20px;
}

.page-faq__content-bottom .page-faq__title {
    margin: 0 0 64px;
}

.page-faq__content-bottom p {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: calc(21/12);
    color: #000;
    padding: 0 0 40px;
    margin: 0;
    text-align: center;
}

.page-faq__box {
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto 40px;
    position: relative;
}

.page-faq__box > div {
    border-bottom: 1px dotted #C7B5A9;
    margin: 0;
}

.page-faq__box > div > dt {
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 0;
    position: relative;
    cursor: pointer;
}

.page-faq__box > div > dt .crossBar {
    width: 10px;
    height: 10px;
    position: relative;
    top: 50%;
    right: -17px;
}

.page-faq__box > div > dt .crossBar::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background-color: #7A6B4A;
    position: absolute;
    top: 0;
    left: 50%;
    transform-origin: center center; 
    transform: translateX(-50%) rotate(0deg);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.page-faq__box > div > dt .crossBar::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #7A6B4A;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.page-faq__box > div > dt {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(14/12);
    color: #000;
    width: 94%;
}

.page-faq__box > div > dt span {
    margin: 0 10px 0 0;
}

.page-faq__box-title {
    cursor: pointer;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.page-faq__box > div > dd {
    margin: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0; 
    max-height: 0;
    overflow: hidden; 
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(14/12);
    color: #7A6B4A;
}

.page-faq__box > div > dd span {
    margin: 0 10px 20px 0;
}

.page-faq__box-answer-text {
    margin: 0 0 20px;
    line-height: 1.5;
}

.page-faq__box > div > dd.is-open { 
    max-height: 100%;
    padding: 10px 0;
}

.page-faq__box > div > dt.is-open .crossBar::before {
    transform: translateX(-50%) rotate(90deg);  
}

.page-faq__group .single-dress__line{
    right: -9.5%;
    bottom: -140px;
    z-index: 20;
}

.page-faq__content-button {
    list-style: none;
    padding:  0;
    margin: 0;
}

.page-faq__content-button li a,
.page-faq__content-button li button {
    border: 0;
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 9.5px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(18/9.5);
    text-decoration: none;
    color: #fff;
    max-width: 300px;
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
}

.page-faq__content-button li {
    margin: 0 auto 20px;
}

.page-faq__content-button li:nth-child(2) {
    margin: 0 auto 0;
}

.page-faq__content-button li:last-child {
    margin: 0 auto 0;
}

.page-faq__content-button li:first-child a{
    background: #464041;
    font-family: "didot";
    font-size: 16.76px;
    line-height: calc(22/16);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.page-faq__content-button li:first-child a small {
    font-family: "Noto Sans JP", sans-serif; 
    font-size: 9.5px;
    letter-spacing: 0.1em;
    line-height: calc(18/9.5);
}

.page-faq__content-button li button{
    background: #7A6B4A;
}

.page-faq__content-button li:last-child a {
    background: #7A6B4A;
    display: none;
}

.page-reservation__flex-wrap {
    position: relative;
    max-width: 1100px;
    width: 100%;
    padding: 64px 100px 70px;
    box-sizing: border-box;
    margin: 0 auto;
}

.page-reservation__flex {
    display: flex;
    gap: 8%;
    justify-content: center;
}

.page-reservation__flex-item {
    width: 47%;
    display: flex;
    flex-direction: column;
}

.page-reservation__flex-item-title {
    display: flex;
    flex-direction: column;
    font-family: "didot";
    font-size: 28.35px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(34/28);
    color: #7A6B4A;
    margin: 0;
    padding: 0 0 20px;
}

.page-reservation__flex-item-title small {
    color: #000;
    font-family: "NotoSansCJKjp-Regular",sans-serif; 
    font-size: 12px;
    line-height: calc(21/12);
    padding: 10px 0 0;
}

.page-reservation__flex-item-text {
    font-family: "NotoSansCJKjp-Regular",sans-serif; 
    flex-grow: 1;
    font-size: 12px;
    font-weight: 400;
    line-height: calc(21/12);
    letter-spacing: 0.1em;
    margin: 0;
    padding: 0 0 40px;
}

.page-reservation__flex-item-text a {
    color: #000;
}

.page-reservation__flex-item-detail {
    color: #7A6B4A;
}

.page-privacy__content {
    position: relative;
    max-width: 1000px;
    width: 100%;
    padding: 50px 100px 100px;
    box-sizing: border-box;
    margin: 0 auto;
}
.page-privacy__content h3 {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(19/11);
    padding: 0;
    margin: 20px 0 0;
}

.page-privacy__content p {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(19/11);
    padding: 0;
    margin: 0;
}

.page-privacy__content p a{
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(19/11);
    color: #000;
    padding: 0;
    margin: 0;
    word-wrap:break-word;
}

.page-privacy__content ul {
    font-family: "NotoSansCJKjp-Regular",sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(19/11);
    padding: 0;
    list-style: none;
    margin: 0;
}

.more-list{
    margin: 0 0 30px;
    max-width: 500px;
}

.more-list ul{
    display: flex;
    flex-wrap: wrap;
    padding-inline-start: 0;
}

.more-list li{
    width: 32%;
    height: 60px;
    background-color: #BDBDBD;
    list-style: none;
    margin: 0 0 10px;
}

.more-list li:nth-child(3n-1){
    margin: 0 1%;
}

.more-btn{
    background-color:black;
    color: #fff;
    padding: 10px;
    margin: 0 auto;
    width: 200px;
    text-align:center;
}

.more-btn:hover{
    cursor: pointer;
}

.page-link__wrap {
    background-image: url(../images/img-page-link-bg.webp);
    background-size: cover;
    background-position: center;
}

.page-link__inner {
    padding: 200px 0 250px;

}

.footer__link {
    margin: auto auto 0;
}

.footer__link .copyright {
    color: #000000;
}

.page-link__img {
    display: flex;
    justify-content: center;
}

.page-link__content {
    margin: 80px 0 0;
}

.page-link__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-link__content ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 0 80px;
}

.page-link__content ul li:last-child {
    margin: 0;
}

.page-link__content ul li::after {
    content: "";
    position: absolute;
    height: 1px;
    max-width: 100px;
    background: #000;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
}

.page-link__content ul li:last-child::after {
    content: none;
}

.page-link__content ul a {
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 25.2px;
    font-family: "didot";
    text-decoration: none;
    letter-spacing: 0.1em;
    line-height: calc(30/25);
    box-sizing: border-box;
    position: relative;
    transition: 0.7s;
}

.page-link__content ul a small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13.34px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: calc(16/13);
    margin: 8px 0 0;
}

/*
font-family: "NotoSansCJKjp-Regular",sans-serif;
font-family: "Noto Sans JP", sans-serif; 
font-family: "didot";
font-size: 11px;
font-weight: 500;
letter-spacing: 0.1em;
line-height: calc(22/11);
color: #7A6B4A;
color: #231815;
*/

@media screen and (max-width:1440px) {
    .header__content-center {
        font-size: clamp(40px, 3.5vw, 50px);
    }

    .salon__grid {
        max-width: 90vw;
    }

}

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

    .dress-list__wrap > ul > li > div:nth-child(3){
        top: 86%;
    }

    .page-faq__group .single-dress__line {
        right: -5.5%;
    }

       /* 買取相談 */
    .page-sellyourdress-memories .memories__body-content {
        padding: 72px 0 0 60px;
    }
}

@media screen and (max-width:1200px) {
    .globalNav__nav li a {
        font-size: 15px;
    }

    .globalNav__nav li {
        margin: 0 20px 0 0;
    }

    .content__sticky {

        left: 10px;
    }

    .content__sticky.jsContentFixed {

        left: 10px;
    }

    .concept__content {
        padding: 0 80px;
    }

    .concept__flex {
        padding: 120px 60px 0;
    }

    .concept__flex-group-title {
        font-size: 38px;
    }

    .concept__flex-img {
        padding: 0 50px 0 0;
    }

    .concept-everything__flex-wrap {
        padding: 0 80px;
    }

    .concept-everything__flex {
        padding: 120px 60px 130px;
    }

    .salon__head {
        padding: 30px 20px 60px;
    }

    .brand__content {
        padding: 0 80px 0;
    }

    .brand__flex {
        padding: 0 0 0 100px;
    }

    .brand__flex-item-en-b {
        font-size: 55px;
    }

    .brand__flex-row01-item-third-en {
        top: 0;
        bottom: 34px;
        font-size: 44px;
    }

    .brand__flex-row02-item-third-en {
        font-size: 40px;
    }

    .plan__inner {
        padding: 65px 80px 0;
    }

    .plan__content {
        padding: 0 0 0 100px;
    }

    .plan-instagram__grid {
        padding: 0 80px 0;
    }

    .memories__inner {
        padding: 0 0 0 80px;
    }

    .memories__body-inner {
        padding: 0 50px 0 0;
    }

    .memories__body-content {
        padding: 80px 0 0 50px;
    }

    .memories__body-title {
        font-size: 42px;
    }

    .memories__body-text {
        font-size: 15px;
    }

    .memories__body-expert {
        font-size: 9.34px;
    }

    .grid-link__wrap ul{
        gap: 0;
        padding: 0 80px;
        justify-content: space-between;
    }

    .grid-link__item {
        width: 28%;
    }

    .news__inner {
        padding: 60px 80px 96px;
    }

    .news__item-wrap {
        padding: 0 50px;
    }

    .media__inner {
        padding: 60px 80px 96px;
    }

    .access__inner {
        padding: 0 80px 200px;
    }

    .dress-list__wrap > ul > li > div:nth-child(3){
        top: 84%;
    }

    /*aboutページ */
    
    .page-about-concept .concept__content {
        padding: 0 100px;
    }
    .page-about-concept__flex.concept__flex {
        padding: 0;
    }

    .page-about-concept-everything__flex.concept-everything__flex{
        padding: 88px 0 100px;
    }

    .page-about-concept-everything__flex-wrap.concept-everything__flex-wrap {
        padding: 0 100px;
    }
   
    /*aboutページ */
    .page-about-mv__content {
        max-width: 1200px;
        width: 100%;
        box-sizing: border-box;
        padding: 64px 160px 90px;
        margin: 0 auto;
    }
    .page-about-concept .concept__content {
        padding: 0 100px;
    }
    .page-about-concept__flex.concept__flex {
        padding: 0;
    }

    .page-about-concept-everything__flex.concept-everything__flex{
        padding: 88px 0 100px;
    }

    .page-about-concept-everything__flex-wrap.concept-everything__flex-wrap {
        padding: 0 100px;
    }
    .page-about-concept-everything__flex-wrap .concept-everything__flex-img {
        padding: 0 60px 0 0;
    }

    .page-about__img-flex-content {
        padding: 0 160px;
    }

    .page-about-salon__bottom {
        padding: 40px 120px 86px;
    }

    .l-inner {
        padding: 0 120px;
    }
    .l-inner-1000 {
        padding: 0 80px;
    }


    /* フォトプラン */
    .page-plan__hair-body h2 {
        font-size: 26.35px;
    } 

    .page-plan__hair-body h2 small {
        font-size: 10.6px;
    }

    .page-plan__detail-list-wrap {
        padding: 30px 180px 0;
    }

    .page-plan-dress__head {
        padding: 86px 80px 25px;
    }
    .page-plan-kimono__head {
        padding: 0 80px 40px;
    }

    .page-plan-contact {
        padding: 0 80px;
    }

    .page-plan-option {
        padding: 0 180px 80px;
    }

    .page-plan-blog {
        margin: 80px 0 40px;
    }
    .page-plan-blog__content-inner {
        padding: 50px 55px 50px;
    }
    .page-plan-blog-tag__list {
        padding: 0 60px;
    }

    .page-plan-tuxedo {
        padding: 0 180px;
        max-width: 1240px;
    }
    .mw_wp_form.mw_wp_form_input, .mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview {
        padding: 30px 80px 160px;
    }

    /* よくあるご質問 */
    .page-faq__group .single-dress__line {
        right: 5%;
    }

    /* 買取相談 */
    .page-sellyourdress-memories .memories__body-content {
        padding: 72px 0 0 20px;
    }

    .blog-detail__content {
        padding: 0 40px;
    }

    /* 着物 */
    .page-dress-kimono-under__flex-left {
        padding: 80px 0 20px;
    }

}
@media screen and (max-width:1100px) {
    .dress-list__wrap > ul > li > div:nth-child(3){
        top: 82%;
    }
}

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

    .globalNav__wrap {
        height: 0;
    }

    .globalNav {
        position: fixed;
        top: 0;
        z-index: 10;
        background-color: transparent;
    }

    .globalNav.jsHeaderFixedSp {
        background-color: rgb(255, 255, 255, .8);
    }

    .globalNav__nav {
        display: none;
    }

    .globalNav__inner {
        padding: 25px 0;
    }

    .globalNav__favorite .globalNav__favorite-link {
        display: none;
    }

    .globalNav__favorite .favorite__icon {
        margin-right: 20px;
    }

    .favorite__icon-instagram {
        margin: 0 20px 0 0;
    }

    .globalNav__favorite {
        justify-content: end;
        align-items: center;
        margin: 0 60px 0 0;
        gap: inherit;
    }

    .favorite__icon-instagram {
        z-index: 100;
    }

    .favorite__icon-dott {
        z-index: 100;
    }

    #g-nav-sp.panelactive {
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        transition: 0.5s;
    }

    .circle-bg {
        position: fixed;
        z-index: 3;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        transform: scale(50);
        right: -50px;
        top: -50px;
        transition: 0.4s;
        pointer-events: none;
    }

    .circle-bg.circleactive {
        transform: scale(50);
        background: #F8F4F3;
        pointer-events: auto;
    }

    .g-nav-sp__logo {
        width: 35px;
        position: fixed;
        display: flex;
        margin: 25px 0 0 25px;
        z-index: 2;
    }

    .g-nav-sp__logo img {
        width: 100%;
        height: auto;
    }

    #g-nav-sp-list {
        display: none;
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
    }

    #g-nav-sp.panelactive #g-nav-sp-list {
        display: block;
    }

    #g-nav-sp ul {
        opacity: 0;
        position: relative;
        z-index: 999;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        padding: 80px 50px 0;
        margin-bottom: 30px;
        z-index: 1;
    }

    #g-nav-sp ul:last-of-type {
        padding-top: 0;
    }

    #g-nav-sp.panelactive ul {
        opacity: 1;
    }

    #g-nav-sp li {
        text-align: left;
        width: 100%;
        list-style: none;
    }

    #g-nav-sp li a {
        color: #000;
        text-decoration: none;
        letter-spacing: 0.1em;
        display: inline-flex;
        flex-direction: column;
        font-family: "didot";
        font-size: 25px;
        line-height: calc(30 / 25);
        letter-spacing: 0.1em; 
        margin: 0 0 30px;
    }

    #g-nav-sp li a span {
        font-size: 13px;
        line-height: calc(16 / 13);
        font-family: "Noto Sans JP", sans-serif;
        padding: 5px 0 0;
    }

    #g-nav-sp .g-nav-sp-list__sub a {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 15.5px;
        line-height: calc(18 / 15);
        padding: 0 0 25px;
    }

    .globalNav__favorite-wrap-sp {
        display: flex;
        align-items: center;
        flex-direction: column;
        position: fixed;
        right: 20px;
        bottom: 40px;
        z-index: 2;
    }

    .globalNav__favorite-link-sp {
        color: #7A6B4A;
        writing-mode: vertical-rl;
        font-family: "didot";
        font-size: 25px;
        line-height: calc(30 / 25);
        letter-spacing: 0.1em;
        text-decoration: none;
        padding: 0 0 20px;
    }

    .openbtn1 {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        cursor: pointer;
        width: 50px;
        height: 50px;
        display: block;
    }

    .globalNav__wrap.globalNav__wrap-white .favorite__icon,
    .globalNav__wrap.globalNav__wrap-white .globalNav__favorite-link,
    .globalNav__wrap.globalNav__wrap-white .favorite__icon-instagram,
    .globalNav__wrap.globalNav__wrap-white .favorite__icon-dott
    {
        -webkit-filter: inherit;
        filter: inherit;
    }

    .openbtn1 span {
        display: inline-block;
        transition: all 0.4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #7A6B4A;
        width: 45%;
    }

    .globalNav.jsHeaderFixedSp .openbtn1 span {
        background-color: #7A6B4A;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn1.active span:nth-of-type(1) {
        background-color: #7A6B4A;
        top: 18px;
        left: 10px;
        transform: translateY(6px) rotate(-30deg);
        width: 30px;
    }

    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn1.active span:nth-of-type(3) {
        background-color: #7A6B4A;
        top: 30px;
        left: 10px;
        transform: translateY(-6px) rotate(30deg);
        width: 30px;
    }

    .br__sp {
        display: block;
    }

    .br__pc {
        display: none;
    }

    .vsp {
        display: block;
    }

    .vpc {
        display: none;
    }

    .header {
        height: 100vh;
    }

    .header__top {
        height: 100vh;
        width: 100%;
        flex-direction: column;
        justify-content: end;
        bottom: 0;
        position: relative;
    }

    .header__content-center {
        display: none;
    }

    .header__content-bottom {
        display: none;
    }

    .header__content-center-text-sp {
        display: block;
        top: inherit;
        left: inherit;
        transform: inherit;
        position: relative;
        font-size: 20px;
    }

    .header__logo-wrap-sp {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
    }

    .header__logo {
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .header__logo a {
        margin: 0 0 0 0;
        width: 54px;
    }

    .header__right {
        width: 100%;
        padding: 0 0 20px 20px;
    }

    #header .swiper-pagination {
        margin: 18px 0 0;
    }

    #header .swiper-pagination-bullet {
        margin: 0 3px 0 0 !important;
    }

    #header.-active .header__logo img {
        filter: invert(100%);
        transition: 0.5s;
    }

    .mv-cursor__swiper {
        height: 100vh;
    }

    .hero .swiper-slide img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }
    .hero .swiper-slide video {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

    /* コンセプト */
    .concept {
        background-image: url(../images/concept-bg_1x.webp);
        padding: 150px 0 32px;
    }

    .concept__title-vertical {
        position: absolute;
        margin: 0 0 0 -10px;
    }

    .content__sticky-content {
        display: none;
    }

    .concept__content {
        padding: 0 40px;
    }

    .concept__flex {
        flex-direction: column;
        padding: 0 0 0 0;
        max-width: 600px;
        margin: 0 auto 0 auto;
    }

    .concept__flex-img {
        width: 50%;
        margin: 0 auto 0;
        padding: 0;
    }

    .concept__flex-group {
        margin: 0;
    }

    .concept__flex-group-title {
        font-family: "didot";
        font-size: 32px;
        line-height: calc(38 / 32);
        letter-spacing: 0.1em;
        text-align: center;
        margin: 20px 0 0;
    }

    .concept__flex-body-title {
        padding: 110px 0 16px;
    }

    .concept__flex-body-expert {
        font-size: 14.2px;
        line-height: calc(27 / 14);
        letter-spacing: 0.1em;
        margin: 0;
        padding: 0 0 15px;
    }

    .concept__flex-body-button a {
        font-size: 19px;
        line-height: calc(33 / 19);
        letter-spacing: 0.1em;
    }


    /* すべては特別な一日のために */
    .concept-everything__flex-group {
        flex-direction: column;
        margin: -46px 0 0 0;
    }

    .concept-everything__flex {
        flex-direction: column-reverse;
        max-width: 600px;
        margin: 0 auto 0 auto;
    }

    .concept-everything__flex-wrap {
        padding: 0 40px;
    }

    .concept-everything__flex {
        padding: 120px 0 90px;
    }

    .concept-everything__flex-img {
        width: 50%;
        margin: 0 auto;
    }

    .concept-everything__flex-group-title {
        justify-content: start;
        font-size: 31.89px;
        line-height: calc(38 / 32);
        letter-spacing: 0.1em;
    }

    .concept-everything__flex-body {
        padding-top: 54px;
        text-align: end;
        display: block;
    }

    .concept-everything__flex-body-inner {
        text-align: left;
        display: inline-block;
    }

    .concept-everything__flex-body-expert {
        font-size: 14.63px;
        line-height: calc(26 / 14);
    }

    /* サロン */
    .salon {
        background-image: url(../images/salon-bg_1x.webp);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .salon__inner {
        padding: 120px 0 60px;
    }

    .salon__head {
        padding: 0 40px;
    }

    .salon__head .salon__head-top {
        display: none;
    }

    .salon__grid {
        grid-template-columns: 1fr;
        gap: 5px;
        width: 35%;
        margin: 0 auto;
    }

    .salon__head-top-sp {
        display: block;
    }

    .salon__head-top-title-en {
        text-align: center;
        letter-spacing: 0.1em;
        margin: 50px 0 0;
        padding: 0 0 15px;
    }

    .salon__head-top-title-jp {
        text-align: center;
        margin: 0;
    }

    .salon__bottom {
        padding: 85px 30px 0;
    }

    .salon__bottom-title {
        font-family: "didot";
        font-size: 19.96px;
        line-height: calc(19.5 / 16.3);
        letter-spacing: 0.1em;
        padding: 0 0 20px;
    }

    .salon__bottom-expert {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 14.17px;
        line-height: calc(26 / 14);
        letter-spacing: 0.1em;
        margin: 0;
        padding: 0 0 10px;
    }

    .salon__bottom-button a {
        font-size: 19.13px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: calc(33/ 19);
        letter-spacing: 0.1em;
    }


    /* ブランド */
    .brand__inner {
        padding: 100px 0 90px;
    }

    .brand__content {
        padding: 0 40px;
    }

    .brand__flex {
        padding: 0 0 0 0;
        max-width: 600px;
        margin: 0 auto;
    }

    .brand__flex-row01,
    .brand__flex-row02,
    .brand__flex-row03 {
        flex-direction: column;
    }

    .brand__flex-row01-item-first {
        width: 75%;
        margin: 0 0 0 auto;
        padding: 0 0 0 0;
    }

    .brand__flex-item-en-b {
        font-size: 43px;
    }

    .brand__flex-item-en-b span {
        font-size: 14px;
        letter-spacing: 0;
        margin: 0 0 0 0;
    }

    .brand__flex-item-ja {
        margin: 0;
    }

    .brand__flex-row01-item-first-en {
        margin: -10px 0 0;
    }

    .brand__flex-row01-item-second {
        width: 86%;
        margin: 0 auto 0 0;
        padding: 0 40px 0 0;
    }

    .brand__flex-row01-item-second-en span {
        margin: 0 0 0 -4px;
    }

    .brand__flex-row01-item-third {
        width: 84%;
        margin: 46px 0 0 auto;
        padding: 0;
        text-align: right;
    }

    .brand__flex-row01-item-third-img {
        position: relative;
        display: flex;
        align-items: start;
        flex-direction: row-reverse;
    }

    .brand__flex-row01-item-third-en {
        font-size: 28px;
        margin: 0 10px 0 0;
        position: relative;
        bottom: 0;
    }

    .brand__flex-row01-item-third-ja {
        text-align: right;
        margin: 0;
    }

    .brand__flex-row02 {
        margin: 0;
    }

    .brand__flex-row02-item-first {
        width: 100%;
        margin: 30px 0 0;
    }

    .brand__flex-row02-item-first a {
        width: 75%;
        display: flex;
    }

    .brand__flex-row02-item-first picture {
        flex: 1;
        position: relative;
    }

    .brand__flex-row02-item-first-en {
        justify-content: end;
        margin: 0;
    }

    .brand__flex-item-body {
        display: flex;
        flex-direction: column;
        justify-content: end;
        flex: 1;
        position: absolute;
        bottom: -10px;
        right: 20px;
    }

    .brand__flex-row02-item-second {
        width: 76%;
        padding: 0 0 0 0;
        margin: 60px 0 0 auto;
        text-align: right;
    }

    .brand__flex-row02-item-second-en {
        padding: 0 0 20px 10px;
    }

    .brand__flex-row02-item-second-en span {
        letter-spacing: 0.1em;
    }

    .brand__flex-row02-item-second-ja {
        text-align: right;
    }

    .brand__flex-row02-item-third {
        width: 75%;
        padding: 0 0 0 0;
        margin: 40px 0 0;
    }

    .brand__flex-row02-item-third-en {
        font-size: 28px;
        right: inherit;
        left: 16px;
        top: 10px;
    }



    .brand__flex-row03 {
        margin: 0;
    }

    .brand__flex-row03-item-first {
        width: 75%;
        padding: 0 0 0 0;
        margin: 40px 0 0 auto;
    }

    .brand__flex-row03-item-first-en {
        font-size: 34px;
        right: inherit;
        top: 15px;
        right: 10px;
    }

    .brand__flex-row03-item-first-ja {
        margin: 10px 0 0 0;
    }

    .brand__flex-row03-item-second {
        width: 74%;
        margin: 24px 0 0 auto;
        padding: 0 0 0 0;
    }

    .brand__flex-row03-item-second a {
        display: flex;
        flex-direction: column;
    }

    .brand__flex-row03-item-second-en {
        order: 2;
        margin: -24px 0 0;
    }

    .brand__flex-row03-item-second-ja {
        order: 3;
    }

    .brand__flex-row03-item-second picture {
        margin: 0;
    }

    .brand__flex-row03-item-third {

        width: 100%;
        margin: 45px auto 0 0;
        padding: 0;

    }

    .brand__flex-row03-item-third a {
        display: flex;
        justify-content: end;
        align-items: end;
    }

    .brand__flex-row03-item-third picture {
        flex: 0 1 76%;
    }

    .brand__flex-row03-item-third-body {
        flex: 0 1 84px;
        padding-left: 10px;
    }

    .brand__flex-row03-item-third-en {
        text-align: left;
        justify-content: start;
    }

    .brand__flex-row03-item-third-en span {
        margin: 0 0 0 -4px;
    }

    .brand__flex-row03-item-third-ja {
        text-align: left;
    }

    .brand__flex-item picture img {
        transition: 0.4s;
    }

    .brand__flex-item:hover picture img {
        transform: none;
        transition: 0.4s;
    }

    /* フォトプラン */
    .plan {
        background-size: cover;
        background-image: url(../images/plan-bg-sp_1x.webp);
    }

    .plan__inner {
        padding: 0 0 40px;
    }

    .plan__content {
        padding: 0;
    }

    .plan__head {
        padding: 40px;
    }

    .plan__body {
        padding: 5px 30px 0;
        width: 54%;
        margin: 0 0 0 auto;
    }

    .plan__body-title {
        padding: 0 0 18px;
    }

    .plan__body-excerpt {
        font-size: 14.2px;
        line-height: calc(26 / 14);
        padding: 0 0 34px;
    }

    .plan__body-button a {
        font-size: 19px;
        line-height: calc(26 / 15);
    }

    .plan__swiper {
        margin: 32px 0 0;
    }

    .plan__swiper-button a {
        font-size: 19px;
        line-height: calc(34 / 19);
        margin: 10px 30px 0;
    }

    .plan__modalClose {
        font-size: 18px;
    }

    .plan__swiper .swiper-button-prev {
        left: 0;
    }

    .plan__swiper .swiper-button-next {
        right: 0;
    }


    .plan__swiper .swiper-button-prev::after,
    .plan__swiper .swiper-button-next::after {
        height: 100px;
        margin: auto;
        width: 50px;
        top: 50% !important;
        transform: translateY(-50%);
    }

    .plan__swiper .swiper-button-prev::after {
        background-image: url(../images/swiper-button-prev_x1.webp);
    }

    .plan__swiper .swiper-button-next::after {
        background-image: url(../images/swiper-button-next_x1.webp);
    }

    .plan__swiper .swiper-slide img {
        height: auto;
        width: 100%;
    }

    .plan__modal-inner {
        margin: 0 auto;
        width: 80%;
    }
    .plan__modal-content img {
        width: 100%;
        object-fit:contain;
        object-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* インスタ */
    .plan-instagram {
        padding: 62px 40px 180px;
    }

    .plan-instagram__grid {
        
        padding: 0;
        max-width: 100%;
        width: 58%;
    }
    .plan-instagram__grid ul {
        grid-template-columns: 1fr 1fr;
    }
    

    .plan-instagram-title a {
        font-size: 20px;
        line-height: calc(36/30);
        margin: 0 0 30px;
        gap: 8px;
    }

    /* ドレスの買い取り */
    .memories__inner {
        padding: 0;
    }

    .memories__flex {
        flex-direction: column-reverse;
        position: relative;
    }

    .memories__title-vertical {
        top: 0;
        padding: 40px 0 0;
    }

    .memories__img-wrap {
        background-image: none;
    }

    .memories__img {
        width: 65%;
        margin: -60px 0 0 auto;
    }



    .memories__body {
        flex: 0 1 50%;
        padding: 65px 0 40px;
    }

    .memories__body-content {
        max-width: 600px;
        width: 100%;
        margin: 0 auto 0 auto;
    }

    .memories__body-text {

        margin: 0 0 80px;
    }

    .memories__body-inner {
        padding: 0 30px 0;
    }

    .memories__body-content {
        padding: 0;
    }

    .memories__body-top {
        padding: 0 0 0 80px;
    }

    .memories__body-title {
        font-size: 31px;
        line-height: calc(47/31);
    }

    .memories__body-title-img {
        margin: 0 0 30px 32%;
    }

    .memories__body-expert {
        font-size: 14.34px;
        line-height: calc(26/14);
        letter-spacing: 0.04em;
        text-align: justify;
        padding: 0 0 10px;
    }

    .memories__body-button a {
        font-size: 19px;
        display: inline-flex;
        align-items: center;
        justify-content: start;
        line-height: calc(34 / 19);
    }


    .grid-link__inner {
        padding: 0;
    }

    .grid-link__wrap ul{
        flex-direction: column;
        max-width: 640px;
        width: 100%;
        padding: 74px 40px 90px;
    }

    .grid-link__item{
        width: 100%;
       
        margin-top: 50px;
    }
    .grid-link__item a {
        display: flex;
    }

    .grid-link__item a:first-child {
        margin: 0;
    }

    .grid-link__item-img {
        flex: 0 1 42%;
        margin: -20px 20px 20px;
        padding: 0;
    }

    .grid-link__item-img img {
        aspect-ratio: 170 / 212;
        object-fit: cover;
    }

    .grid-link__item-body {
        flex: 1;
        padding: 20px 20px 20px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .grid-link__item-title-en {
        letter-spacing: 0.1em;
        margin: 0;
        text-align: center;
    }

    .grid-link__item-button {
        width: 82%;
        margin: 0 auto 0;
    }

    .grid-link__item-second a{
        flex-direction: row-reverse;
    }

    .grid-link__item:nth-child(2) .grid-link__item-body::after {
        content: "";
        right: -25px;
        bottom: 25px;
        left: inherit;
        top: inherit;
    }

    .grid-link__item-second picture {
        margin: -20px 20px 20px;
        padding: 0;
        top: 0;
    }

    .grid-link__item-second .grid-link__item-body {
        padding: 20px 20px 20px 0;
    }

    /* お知らせ */
    .news__inner {
        padding: 50px 40px 40px;
    }

    .news__item-wrap {
        padding: 0 0 0 60px;
        max-width: 600px;
        margin: 0 auto 0 auto;
    }

    .news__item-wrap li {
        flex-direction: column;
        gap: 10px;
        align-items: start;
        margin: 0 0 38px;
        font-size: 11.38px;
    }

    .news__item-wrap li:last-child {
        margin: 0;
    }

    .news__item-wrap li time {
        flex: 1;
        width: 100%;
        font-size: 11.38px;
    }

    .news__item-wrap li::before {
        bottom: -22px;
    }

    /* メディア */
    .media__inner {
        padding: 58px 40px 40px;
    }

    .news-instagram__inner {
        padding: 60px 30px 100px;
        max-width: 680px;
        margin: 0 auto 0 auto;
    }

    .news-instagram__grid {
        max-width: 95%;
        margin: 0 auto;
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }

    .news-instagram__item {
        display: flex;
    }

    .news-instagram__title a {
        font-size: 20px;
        line-height: calc(36/30);
        margin: 0 0 15px;
        gap: 8px;
    }

    .news-instagram__title a::before {
        content: "";
        background-image: url(../images/favorite-icon-instagram_1x.webp);
        background-size: 20px 20px;
        height: 20px;
        width: 20px;
        position: relative;
        display: flex;
    }


    /* アクセス */

    .access__inner {
        max-width: 100%;
        margin: 0 auto 0 auto;
        padding: 0 40px 105px;
    }

    .access__flex-body-button {
        text-align: right;
    }

    .access__flex-body-button a {
        justify-content: end;
        padding: 0 20px 0 0;
        font-size: 19px;
    }

    .access__flex {
        max-width: 600px;
        flex-direction: column;
        padding: 0;
    }

    .access__flex-img {
        width: 60%;
        margin: 0 0 0 auto;
    }

    .access__flex-body {
        padding: 30px 0 0 25px;
        width: 100%;
        box-sizing: border-box;
    }


    .footer-top {
        background-image: url(../images/footer-bg-sp_x1.webp);
    }

    .footer-top__content {
        padding: 155px 0;
    }

    .footer-instagram__title {
        margin: 0 0 54px;
    }

    .footer-instagram__title a {
        font-size: 18px;
        gap: 10px;
    }

    .footer-top__inner {
        padding: 0 45px;
    }

    .footer-top__scroll {
        padding: 28px 25px;
    }

    .footer__nav-item {
        margin: 0 20px 0 0;
    }

    .footer__breadcrumb  {
        max-width: 600px;
        box-sizing: border-box;
        padding: 0 120px 0 40px;
    }

    .footer-fix-menu {
        display: none;
        position: fixed;
        bottom: 0;
        background-color: rgb(231, 225, 216, 0.6);
        padding: 8px;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-fix-menu ul {
        list-style: none;
        display: flex;
        padding: 0;
        margin: 0;
        gap: 8px;
        justify-content: center;
    }

    .footer-fix-menu ul li {
        background-color: #7A6B4A;
        width: 100%;
    }

    .footer-fix-menu ul li a {
        color: #fff;
        text-decoration: none;
        display: block;
        text-align: center;
    }

    .footer-fix-menu ul li a > p {
        text-align: center;
        font-size: 13px;
        letter-spacing: 2px;
        padding-left: 40px;
        background: url(../images/icon_reserve@2x.webp) no-repeat 0 center;
        background-size: 33px;
        display: inline-block;
    }

    .footer-fix-menu ul li:last-child a > p {
        background: url(../images/icon_friend@2x.webp) no-repeat 0 center;
        background-size: 33px;
    }

    .footer-fix-menu ul li a > p > small {
        display: block;
        font-size: 0.7em;
        letter-spacing: 0;
    }


    .page-common-mv {
        padding: 124px 0 0;
    }

    .page-common__head h1,
    .page-common__head h2 {
        align-items: start;
        padding: 0 35px;
        max-width: 600px;
        margin: auto;
    }

    .archive-blog__content .page-common__head h1,
    .archive-blog__content .page-common__head h2 {
        padding: 0;
    }

    .page-common__head .blog-list__category small {
        text-align: left;
    }

    .page-common__head .blog-list__tag {
        font-size: 0.6em;
        line-height: 1.5;
        padding-top: 0.5em;
    }

    .archive-blog__content .blog-list > li {
        width:100%;
        height: auto;
    }

    .page-about-mv__content {
        padding: 24px 14px 72px;
        max-width: 600px;
        margin: auto;
    }

    .page-about-mv__content-title {
        padding: 0 0 20px;
    }

    .page-about-mv__content-text {
        font-size: 14.17px;
        line-height: calc(29/14);
        padding: 0 0 40px;
    }

    .page-about-mv__content-img {
        margin: 0 0 32px;
    }

    .page-about-mv__logo {
        padding: 0 0 95px;
    }

    .page-about-concept {
        background-size: 100% 53%;
        background-position: 100% 34%;
        padding: 0 0 32px;
        margin: 0;
    }

    .page-about-concept .concept__content {
        padding: 0 40px;
    }

    .page-about-concept__flex .concept__flex-body-title {
        padding: 112px 0 20px;
    }

    .page-about-concept__flex .concept__flex-body-expert,
    .page-about-concept__flex .concept__flex-body-expert span {
        font-size: 14px;
        line-height: calc(26/14);
    }

    .page-about-concept__flex .concept__flex-body-expert span {
        margin: 29px 0 0;
        line-height: calc(26.9/14.17);
    }

    .page-about__img-flex-content {
        margin: auto;
        max-width: 600px;
        width: 100%;
        padding: 0 42px;
        display: flex;
        flex-direction: column;
    }

    .page-about-concept-everything__flex.concept-everything__flex{
        padding: 64px 0 50px;
        margin: 0 auto;
    }
    .page-about-concept-everything__flex-wrap.concept-everything__flex-wrap {
        padding: 0 32px;
    }

    .page-about-concept-everything__flex-wrap .concept-everything__flex-group {
        margin: -50px 0 0 0;
    }

    .page-about-concept-everything__flex-wrap .concept-everything__flex-img {
        padding: 0 20px 0 20px;
        width: 100%;
        max-width: 240px;
    }

    .page-about-concept-everything__flex-group-title {
        padding: 0;    
        font-size: 31px;
        line-height: calc(38 / 31);
    }

    .page-about-concept-everything__flex-wrap .concept-everything__flex-body {
        padding: 52px 0 0;
    }

    .page-about-concept-everything__flex-wrap .concept-everything__flex-body-title {
        padding: 0 0 12px 18%;
    }

    .concept-everything__flex-body-expert.page-about-concept-everything__flex-body-expert {
        padding: 0 0 12px 18%;
        box-sizing: border-box;
    }
    .concept-everything__flex-body-expert.page-about-concept-everything__flex-body-expert.page-about-concept-everything__flex-body-expert-bottom {
        padding: 0 0 12px 0;
        margin: 64px 0 0;
    }

    .concept-everything__flex-body-expert.page-about-concept-everything__flex-body-expert.page-about-concept-everything__flex-body-expert-bottom span {
        font-size: 14px;
        line-height: calc(27.1/14.17);
    }

    .page-about-salon .salon__inner {
        padding: 90px 0 80px;
    }
    .page-about-salon .salon__head .salon__head-top  {
        display: block;
    }

    .page-about-salon .salon__head-top.salon__head-top-sp {
        display: none;
    }

    .page-about-salon .salon__head-top-title-en {
        margin: 0;
        padding: 0 0 8px;
    }

    .page-about-salon .salon__head {
        padding: 0 30px 48px;
    }

    .page-about-salon .salon__grid {
        width: 100%;
        max-width: 600px;
        padding: 0 40px 0;
        box-sizing: border-box;
    }

    .page-about-salon .access__flex-body {
        padding: 0 0 0 0;
    }

    .page-about-salon .salon__bottom {
        padding: 24px 30px 0;
        margin: auto;
        max-width: 600px;
    }

    .page-about-salon .access__flex-body-button {
        text-align: left;
        font-size: 14px;
        line-height: calc(27.1/14.17);
    }

    .page-about-common__heading {
        padding: 0 0 50px;
    }

    .page-about-media,
    .page-about-company {
        margin: auto;
        max-width: 600px;
        width: 100%;
        margin-bottom: 80px;
    }
    .page-about-media__item-wrap li {
        gap: 36px;
    }

    .page-about-company__heading {
        margin: 30px 0 0;
    }

    .page-about-company__item-flex {
        display: block;
    }
    .page-about-company__item {
        padding: 17px 25px;
        margin: 0;
    }
    .page-about-company__item-left{
        margin: 0 0 34px 0;
    }

    .page-about-news-instagram__wrap {
        max-width: 600px;
        width: 90%;
        margin: 0 auto 80px;
    }

    .page-about-news-instagram__wrap .news-instagram__title a {
        font-size: 20px;
    }

    .l-inner {
        padding: 0 25px;
    }

    .page-plan__mv.single-blog-mv {
        margin: 80px auto 0;
        padding: 20px 0 0;
        width: 100%;
    }
    .page-about-salon .page-plan__head a {
        margin: 40px auto 0;
    }
    .page-plan__head a {
        margin: 40px auto 0;
    }

    .plan__swiper {
        margin: 40px 0 0;
    }

    .page-plan__swiper-bottom {
        padding: 0 10px 0;
        margin: 26px 0 0;
    }

    .page-plan__swiper-bottom-text {
        padding: 0 0 54px;
    }

    .page-plan__swiper-bottom-text p:first-child {
        padding: 0 0 30px;
    }

    .page-plan-kind__swiper .swiper-button-next {
        right: 3%;
    }
    .page-plan-kind__swiper .swiper-button-prev::after {
        width: 15px;
        height: 15px;  
    }
    .page-plan-kind__swiper .swiper-button-next::after {
        width: 15px;
        height: 15px;  
    }
    .page-plan__hair-inner.l-inner-1000 {
        padding: 0;
    }

    .page-plan__hair {
        margin: 156px 0 0;
        background-size: 100% 94%;
        background-image: url(../images/img-page-plan-hair-bg-sp_x2.webp);
        background-repeat: no-repeat;
    }

    .page-plan__hair-top {
        flex-direction: column-reverse;
        padding: 0 0 60px 45px;
    }

    .page-plan__hair-top-img {
        width: 81%;
        max-width: 600px;
        margin: 0 0 0 auto;
    }

    .page-plan__hair-top h2, .page-plan__hair-center h2, .page-plan__hair-bottom h2 {
        margin: 0 0 24px;
    }

    .page-plan__hair-top-body {
        padding: 72px 0 0;
    }

    .page-plan__hair-body h2 {
        font-size: 28.35px;
    }
    
    .page-plan__hair-top .page-plan__hair-body h2 {
        font-size: 28.35px;
        flex-direction: column;
    }
    .page-plan__hair-top .page-plan__hair-body h2 small {
        margin: 5px 0 0 5px;
    }

    .page-plan__hair-body p {
        max-width: 100%;
        width: 72%;
    }

    .page-plan__hair-top-body-img {
        max-width: 100%;
        width: 42%;
        margin: 64px auto 0 46%;
    }

    .page-plan__hair-center {
        display: flex;
        flex-direction: column-reverse;
    }

    .page-plan__hair-center .page-plan__hair-center-body {
        padding: 0 0 0 50px;
    }
    
    .page-plan__hair-center .page-plan__hair-center-img {
        margin: 44px 0 0;
        width: 82%;
        max-width: 600px;
    }

    .page-plan__hair-bottom {
        flex-direction: column;
    }

    .page-plan__hair-bottom {
        margin: 40px 0 0;

    }

    .page-plan__hair-bottom-body {
        padding: 0 0 0 50px;
        margin: 0;
    }

    .page-plan__hair-bottom-body.page-plan__hair-body p {
        padding: 10px 25px 0 5px;
    }

    .page-plan__hair-bottom-img {
        width: 81%;
        margin: 42px 0 0 auto;
        max-width: 600px;
    }

    .page-plan__detail {
        margin: 84px 0 0;
    }
    .page-plan__detail-button-wrap {
        padding: 0 10px;
    }

    .page-plan__detail-list-wrap {
        display: flex;
        flex-direction: column;
        max-width: 600px;
        margin: 0 auto;
        padding: 80px 10px 0;
    }

    .page-plan__detail-list-left, .page-plan__detail-list-right {
        width: 100%;
        row-gap: 15px;
    }

    .page-plan__detail-list-right {
        margin: 15px 0 0 0;
    }

    .page-plan__detail-list-item {
        font-size: 23px;
        font-weight: 400;
        line-height: calc(27/23);
        padding: 6px 20px;
    }

    .page-plan__detail-list-item small {
        font-size: 10.49px;
        margin-left: 15px;
    }

    .page-plan-common__button {
        padding: 6px 30px;
    }

    .page-plan-dress__head {
        max-width: 600px;
        padding: 144px 12px 45px;
    }


    .page-plan-kimono__head {
        max-width: 600px;
        padding:0px 12px 48px;
    }

    .page-plan-kind__head {
        max-width: 600px;
    }

    .page-plan-kind__title {
        font-size: 23px;
        line-height: calc(27/23);
        padding: 6px 18px;
    }
    .page-plan-kind__title small {
        font-size: 10.49px;
        line-height: calc(26/10.49);
        margin: 0 0 0 12px;
    }

    .page-plan-kind__swiper {
        padding: 0 0 30px;
    }

    .page-plan-price__table-title {
        font-size: 14px;
        line-height: calc(26/14);
        display: block;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 400;
        padding: 0;
        margin: 0;
    }

    .page-plan-kind__swiper .swiper-button-prev {
        left: 2%;
    }

    .page-plan-kind__swiper .swiper-button-next {
        right: 2%;
    }

    .page-plan-price__table {
        margin: auto;
        padding: 0 0 10px;
        overflow-y: auto;
        width: 94%;
        max-width: 600px;
        position: relative;
    }

    .page-plan-price__table table {
        border: 1px solid #E7DDDA;
    }
 

    .page-plan-price__schedule {
        border: 1px solid #E7DDDA;
        width: 922px;
    }
    .page-plan-price__table > table > thead > tr > th:nth-child(1) {
        width: 140px;
    }

    th.page-plan-price__table-head-wrap {
        width: 260px;
        padding: 10px 0 0;
    }

    .page-plan-price__table::-webkit-scrollbar {
        width: 10px; 
        height: 20px; 
        margin-top: -20px;
    }

    .page-plan-price__table::-webkit-scrollbar-track {
        background: rgb(193, 183, 154, 10%); 
        border-radius: 15px;
    }

    .page-plan-price__table::-webkit-scrollbar-thumb {
        background: rgb(193, 183, 154); 
        border-radius: 15px;
    }

    .page-plan-price__table::-webkit-scrollbar-thumb:hover {
        background: #555; 
    }

    .page-plan-price__schedule-link {
        margin: auto;
        padding: 16px 0 0;
        overflow: auto;
        width: 94%;
        max-width: 600px;
    }

    .page-plan-price__table .scroll-hint-box {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgb(193, 183, 154, 0.5);
    }

    .page-plan-price__table .scroll-hint-box picture {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .page-plan-price__table .scroll-hint-box picture img {
        animation: slideIn 3s ease-in-out infinite;
    }
    @keyframes slideIn {
      0% {
        transform: translateX(0);
        opacity: 1;
      }
      100% {
        transform: translateX(100px);
        opacity: 0;
      }
    }

    .page-plan-kimono {
        padding: 70px 0 36px;
    }

    .page-plan-option {
        padding: 0 10px 70px;
    }

    .page-plan-option__flex {
        flex-direction: column;
        max-width: 600px;
        margin: 0 auto;
        padding: 30px 0 46px;
    }

    .page-plan-option__table th {
        display: block;
        width: 74px;
        padding: 22px 0 22px 10px;
    }

    .page-plan-option__table td {
        padding: 22px 0 22px 22px;
    }

    .page-plan-option__img::after {
        right: inherit;
        bottom: inherit;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

    .form-box dt {
        flex: 0 1 106px;
        font-size: 10px;
    }

    .form-box > * {
        margin: 0 0 20px;
    }

    .sya-form {
        font-size: 11px;
        line-height: calc(21/12);
        max-width: 480px;
    }
    
    .page-plan-blog__content-inner {
        padding: 30px 0 50px;
        max-width: 710px;
        margin: 0 auto;
    }
 
    .page-plan-blog-tag__list.single-blog-related-tag__list {
        padding: 0 30px;
    }

    .page-plan-blog-tag__list li {
        padding: 2px 8px;
        border-radius: 2px;
    }

    .page-plan-blog .blog-list {
        padding: 0 50px;
    }

    .blog__content-wrap ul.blog-list > li,
    .single-blog-related__content ul.blog-list > li {
        width: 100%;
        height: auto;
        margin-bottom: 40px;
    }

    .page-plan-blog__button {
        margin: 46px auto 86px;
    }

    .page-plan-tuxedo {
        padding: 0 10px 40px;
    }

   
    .page-plan-tuxed__content-title {
        padding: 30px 0 0 20px;
        max-width: 600px;
        margin: 0 auto;
    }

    .page-plan-tuxed__content-flex {
        box-sizing: border-box;
        flex-direction: column;
        padding: 32px 16px 52px;
        gap: 26px;
        max-width: 600px;
        margin: 0 auto;
    }

    .page-plan-tuxed__content-flex .page-plan-tuxed__content-item {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    .page-plan-tuxed__content-item-text {
        padding: 0 0 30px;
    }

    .page-plan-tuxed__content-item picture {
        width: 85%;
        margin: 0 auto;
    }

    h3.page-plan-tuxed__content-title-second {
        padding: 0 0 0 20px;
    }

    .page-plan-tuxed__content-item-text-groom {
        padding: 25px 20px 32px;
        max-width: 600px;
        margin: 0 auto;
    }

    .page-plan-tuxed-sized__item-title {
        margin: 0;
    }
    .page-plan-tuxed-sized {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 40px;
        column-gap: 5%;
        padding: 0 42px;
        max-width: 600px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .page-plan-tuxed-sized__item table thead th {
        padding: 9px 0;
    }
    .page-plan-tuxed-sized__item table tbody th {
        padding: 16px 10px;
    }

    .page-plan-data__head {
        padding: 64px 0 0 0;
    }
    .page-plan-tuxed__content-item-title.page-plan-data__content-item-title {
        font-size: 13px;
    }

    .page-plan-photo-data__content .page-plan-tuxed__content-flex.page-plan-data__content-flex{
        padding: 24px 30px 52px;
        gap: 30px;
    }

    .page-plan-faq {
        max-width: 600px;
        margin: 0 auto;
    }

    .page-plan-schedule {
        max-width: 600px;
        margin: 0 auto;
    }

    .page-plan-faq__head {
        padding: 0 0 12px;
    }

    .page-plan-faq__text {
        padding: 0 30px 52px;
    }

    .page-plan-schedule__text {
        padding: 25px 30px 0;
    }

    .page-plan-contact {
        padding: 0 10px;
        max-width: 600px;
    }

    .mw_wp_form.mw_wp_form_input, .mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview {
        padding: 30px 10px 180px;
    }

    .mw_wp_form.mw_wp_form_input form, .mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview form {
        padding: 40px 10px 70px;
    }

    .form-box {
        padding: 0 0 0 0;
    }

    .form-box__date > dd > ul > li:last-child {
        margin: 0 0 0 -60px;
    }

    .form-box dt {
        flex: 0 1 23%;
    }

    .page-sellyourdress__form  .form-box dt {
        flex: 0 1 27%;
    }

    .form-box dt span {
        display: inline-block;
    }

    .form-box dd {
        flex: 1;
        margin: 0 0 0 20px;
    }

    .form-box__radio {
        font-size: 11px;
    }

    .form-box__date-form::after {
        right: 15px;
    }

    .sya-form .agreement-box {
        margin: 32px 0 0;
    }

    .sya-form .agreement-box label {
        flex-wrap: wrap;
    }

    .sya-form .agreement-box label span:nth-of-type(2) {
        width: 92%;
        font-size: 10px;
    }

    .footer__breadcrumb li {
        position: relative;
        font-family: "Cormorant Garamond", serif;
        font-weight: 600;
        font-size: 11px;
    }

    .blog__content-wrap {
        margin: 80px 0 140px;
    }

    .blog__content-inner {
        padding: 0 20px 120px;
        max-width: 600px;
        margin: 0 auto 0;
        box-sizing: border-box;
    }

    .archive-blog-mv {
        padding: 37px 0 0;
    }

    .archive-blog-category__list {
        margin: 40px 0 0;
    }

    .blog__content-wrap .page-common__head h2 {
        margin: 0;
    }

    .blog-category__list {
        padding: 0;
        max-width: 600px;
        margin: 20px auto 0;
    }

    .blog-category__list ul {
        /*
        overflow: scroll;
        justify-content: center;
        overflow-x: scroll;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        flex-wrap: unset;
        */
    }

    .blog-category__list ul li {
        width: 100% !important;
        display: block;
        background: #FFFFFF;
        white-space: nowrap;
    }

    .blog-category__list li a {
        padding: 15px 7em 15px 15px;
    }

    .blog-tag__list {
        padding: 0;
    }

    .blog-tag__list ul {
        overflow: scroll;
        justify-content: center;
        overflow-x: scroll;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        flex-wrap: unset;
    }

    .blog-tag__list ul li {
        display: block;
        background: #FFFFFF;
        white-space: nowrap;
    }

    .blog-list__wrap {
        padding: 0;
        box-sizing: border-box;
    }

    /* ブログ詳細 */
    .single-blog__container {
        background-image: url(../images/img-blog-detail-bg.webp);
        background-size:  100% 100%;
        background-repeat: repeat;
        margin: 80px 0 70px;
    }
    .single-blog__head > div {
        justify-content: start;
        align-items: start;
    }

    .single-blog-mv {
        max-width: 600px;
        margin: 30px auto 0;
        padding: 5px 28px 0;
    }

    .single-blog__container article {
        margin: 40px auto 0;
        padding: 35px 20px;       
        max-width: 600px;
    }

    .single-blog__container-inner {
        padding: 0 17px 0; 
    }

    .single-blog-top-category__list {
        padding: 0;
        max-width: 600px;
        width: 100%;
    }
    .single-blog-top-category__list li {
        background: #E7E1D8;
        padding: 0;
    }

    .single-blog-top-category__list li a {
        padding: 10px 5em 10px 15px;
    }

    .single-blog-top-tag__list {
        padding: 0 0 20px;
    }
    .single-blog__header h1 {
        margin: 0 0 30px;
        font-size: 20px;
        line-height: 1.5;
    }

    .single-blog__information {
        display: flex;
        justify-content: space-between;
    }

    .single-blog__information .sp-share-btn {
        display: block;
        font-size: 0;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .single-blog__information .sp-share-btn::after {
        content: "";
        background-image: url(../images/img-share.svg);
        background-size: 17px 17px;
        background-repeat: no-repeat;
        width: 17px;
        height: 17px;
        display: flex;
    }

    .single-blog__container .blog-detail__content {
        padding: 0;
    }

    .blog-detail__content figure:nth-child(2) {
        width: 100%;
        margin: 20px auto 0;
    }

    .blog-toc__wrap {
        padding: 20px 50px;
    }

    .blog-detail__content figure.aligncenter {
        width: 100%;
        margin: 0 auto 0;
    }

    .blog-detail__content > blockquote{
        padding: 60px 40px 60px;
        margin: 40px 0;
    }
    .blog-detail__content > blockquote::before {
        font-size: 100px;
        color: #7A6B4A;
        line-height: 0.5;
        left: -11px;
        top: 0;
    }
    .blog-detail__content > blockquote::after {
        font-size: 100px;
        line-height: 0.5;
        bottom: -35px;
        color: #7A6B4A;
    }

    .blog-detail__content > blockquote cite {
        font-size: 10px;
        padding: 30px 0 0;
    }
    .supplementary-explanation {
        border-radius: 5px;
        padding: 30px 25px;
        margin: 40px 0;
    }
    .single-blog-related__content {
        max-width: 600px;
        padding: 0 0 70px;
        margin: 30px auto 0;
        width: 90%;
    }

    .single-blog-related-category__list {
        padding: 0;
        max-width: 600px;
    }

    .single-blog-related-tag__list {
        padding: 0 0 20px;
    }

    .single-blog-related__content ul.blog-list {
        margin: 10px 0 0 0;
        padding: 0;
    }

    .single-dress-mv {
        padding: 80px 0 0;
    }

    .single-dress-detail__flex-img-wrap {
        flex-direction: column;
        max-width: 600px;
        width: 100%;
        margin: auto;
    }
    .single-dress-detail__gallery .swiper {
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
    .single-dress-detail__gallery .swiper-wrap {
        width: 100%;
    }
    .single-dress-detail__gallery {
        gap: 10px;
    }
    .single-dress-detail__gallery .thumb-wrapper {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .single-dress-detail__gallery {
        flex-direction: column;
    }
    .single-dress-detail__flex {
        flex-direction: column;
        margin: auto;
        padding: 0;
    }

    .single-dress-detail__flex-img-thumb {
        flex-direction: column;
        max-width: 600px;
        margin: auto;
    }   

    .single-dress-detail__flex-img-thumb-main {
        margin: 0;
    }

    .single-dress-detail__flex-img-thumb-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        width: 94%;
        margin: 10px auto 0;
        gap: 10px;
    }

    .single-dress-detail__flex-img-thumb-list li {
        max-width: 100px;
        width: 12%;
    }

    .single-dress-detail__flex-img-thumb-main {
        max-width: 100%;
    }


    /* ドレス商品詳細 */

    .single-dress__line {
        display: none;
    }
    .single-dress-blog {
        margin: 80px 0 65px;
    }
    .single-dress__more-button {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 9.5px;
        font-weight: 400;
        letter-spacing: 0.1em;
        line-height: calc(18/9.5);
        text-decoration: none;
        color: #fff;
        max-width: 300px;
        margin: -100px auto 0;
        width: 100%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #988A94;
    }

    .single-dress-blog__plan-instagram {
        padding: 0 40px 140px;
    }

    .single-dress-blog__plan-instagram .plan-instagram-title a {
        font-size: 20px;
        line-height: calc(36/30);
        margin: 0 0 30px;
        gap: 8px;
    }
    .single-dress-blog__plan-instagram .plan-instagram-title a::before {
        content: "";
        background-image: url(../images/favorite-icon-instagram_2x.webp);
        background-size: 25px 25px;
        height: 25px;
        width: 25px;
        position: relative;
        display: flex;
        background-repeat: no-repeat;
    }

    .single-dress-detail__flex-content {
        max-width: 600px;
        margin: auto;
        padding: 15px 20px;
        box-sizing: border-box;
        position: relative;
        position: relative;
    }

    .single-dress-detail__flex-content h1 {
        padding-right: 30px;
    }

    .single-dress__contact-button {
        padding: 12px 0;
    }

    .single-dress__contact-button {
        padding: 20px 0;
        max-width: 300px;
        margin: auto;
    }

    .single-dress__contact-button li:first-child {
        margin: 0 0 16px;
    }

    .single-dress__contact-button li button{ 
        display: none;
    }
    .single-dress__contact-button li:last-child a{ 
        display: flex;
    }

    .single-dress__button-wrap-group {
        position: absolute;
        right: 20px;
        top: 2px;
    }

    .single-dress__button-wrap {
        display: flex;
        position: relative;
        width: 100%;
        top: inherit;
    }

    .single-dress__table table th, .single-dress__table table td {
        padding: 14px 0;
    }

    .single-dress__button-wrap-group .sp-share-btn {
        display: block;
    }
    .single-dress__button-wrap .dress-favorite {
        font-size: 0;
    }

    .single-dress__button-wrap .simplefavorite-button {
        margin: 0; 
        font-size: 0;
        display: flex;
        align-items: center;
    }

    .single-dress__button-wrap .simplefavorite-button::before {
        content: none;
    }

    .single-dress__button-wrap-group  .sp-share-btn {
        display: block;
        position: absolute;
        right: 0;
        font-size: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    .single-dress__button-wrap-group .sp-share-btn::after {
        content: "";
        background-image: url(../images/img-share.svg);
        background-size: 17px 17px;
        background-repeat: no-repeat;
        width: 17px;
        height: 17px;
        display: flex;
        margin: 8px 0 0;
    }

    .single-dress-blog.blog__content-wrap .blog-list {
        padding: 0;
        box-sizing: border-box;
        margin-top: 10px;
    }

    .blog-list .blog-list__cat,
    .blog-list .blog-list__tag {
        overflow: scroll;
        justify-content: center;
        overflow-x: scroll;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        flex-wrap: unset!important;
    }

    .blog-list .blog-list__cat li,
    .blog-list .blog-list__tag li {
        display: block;
        white-space: nowrap;
    }

    .single-dress-blog__tag-list {
        padding: 0 30px; 
    }

    .page-contact-top{
        padding: 60px 0 0;
    }

    .page-contact-top__inner {
        padding: 50px 20px 80px;
    }

    .page-contact-top picture {
        display: none;
    }

    .page-contact-top button {
        background: #7A6B4A;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 9.5px;
        font-weight: 400;
        letter-spacing: 0.1em;
        line-height: calc(18/9.5);
        text-decoration: none;
        color: #fff;
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
    }
    .page-contact-top a {
        background: #7A6B4A;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 9.5px;
        font-weight: 400;
        letter-spacing: 0.1em;
        line-height: calc(18/9.5);
        text-decoration: none;
        color: #fff;
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
    }

    .page-contact__form .mw_wp_form{
        padding: 30px 0 84px;
    }
    
    .page-contact__form .form-box {
        margin: 30px 0 30px;
    }
    .page-sellyourdress__form .mw_wp_form.mw_wp_form_input form{
        padding: 30px 20px 110px;
    }


    /* ドレス */
    .page-favorite {
        padding: 56px 30px 80px
    }
    .page-favorite-mv {
        padding: 96px 0 0;
    }

    .favorite-dress-list {
        margin: 50px auto 0;
        max-width: 600px;
    }

    .favorite-dress-list .favorite-dress-list__box > ul > li {
        width: 48%;
        margin:0 4% 0 0;
    }

    .favorite-dress-list .favorite-dress-list__box > ul > li:nth-of-type(2n) {
        margin: 0;
    }

    .favorite-dress-list > .favorite-dress-list__box > ul > li .favorite-dress-list__head a {
        font-family: "NotoSansCJKjp-Regular",sans-serif;
        color: #000;
        text-decoration: none;
        font-size: 8.53px;
        line-height: calc(14/8);
        letter-spacing: 0.1em;
        margin: 10px 0 0;
    }
    .favorite-dress-list .favorite-dress-list__box > ul > li > ul > li {
        font-size: 9.3px;
    }

    .favorite-dress-list .favorite-dress-list__box > ul > li > ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 1px 0 0;
        gap: 5px;
    }
    .favorite-dress-list__check input[type="checkbox"] {
        width: 17px;
        height: 17px;
    }
    .favorite-dress-list__check input[type="checkbox"]:checked::before {
        left: 6px;
        width: 3px;
        height: 8px;
    }
    .favorite-dress-list__check {
        display: flex;
        align-items: center;
        font-family: "NotoSansCJKjp-Regular",sans-serif;
        font-size: 7.76px;
        line-height: calc(13.5/7.8);
        letter-spacing: 0.1em;
        margin: 4px 0 0;
    }

    .page-brand-list__wrap {
        width: 90%;
        padding: 40px 0 80px;
    }

    .page-brand-list__wrap .brand-list li.brand-galialahav > a > picture,
    .page-brand-list__wrap .brand-list li.brand-yolancris > a > picture {
        height: inherit;
    }

    .page-brand-list__wrap .brand-list li.brand-nicole > a > picture,
    .page-brand-list__wrap .brand-list li.brand-millialondon > a > picture {
        height: inherit;
    }

    .page-brand-list__wrap .brand-list li.brand-newhite > a > picture,
    .page-brand-list__wrap .brand-list li.brand-verawang > a > picture,
    .page-brand-list__wrap .brand-list li.brand-others > a > picture {
        height: inherit;
    }

    .page-brand-list__wrap .brand-list li.brand-kimono > a > picture,
    .page-brand-list__wrap .brand-list li.brand-tuxedo > a > picture {
        height: inherit;
    }

    .page-brand-list__wrap .brand-list {
        align-items: center;
    }

    .page-brand-list__wrap .brand-list li {
        margin: 0 0 25px;
    }

    .page-brand-list__wrap .brand-list picture {
        margin: 0 0 25px;
    }

    .page-brand-list__wrap .brand-list picture img {
        padding: 0!important;
    }

    .page-brand-list__wrap ul li a {
        font-size: 13px;
    }

    /* 買取相談 */
    .page-sellyourdress-mv {
        padding: 100px 0 0;
    }

    .page-sellyourdress-memories {
        padding: 80px 0 40px;
    }
    .page-sellyourdress-memories .memories__img{
        margin: -30px auto 0 0;
    }

    .page-sellyourdress-memories .memories__img-wrap {
        background-image: url(../images/img-selfyourdress-memories-bg_2x.webp);
        height: 100%;
        background-size: 97% 100%;
        background-position: right;
        padding-bottom: 18%;
    }

    .page-sellyourdress-memories .memories__body {
        padding: 34px 0 0;
    }

    .page-sellyourdress-memories .memories__body-content {
        padding: 0 0 0 20px;
    }

   
    .page-sellyourdress-memories .memories__body-top {
            padding: 0 0 0 0;
    }

    .page-sellyourdress-memories .memories__body-content {
        padding: 0 0 0 0;
    }

    .page-sellyourdress-memories .memories__body-inner {
        padding: 0 32px 0;
    }

    .page-sellyourdress-memories .memories__body-title-img {
        margin: -18px auto 0 41%;
    }
    .page-sellyourdress-memories .memories__body-title {
        font-size: 49.6px;
        line-height: calc(72/49);
    }

    .page-sellyourdress__flex-item h3 {
        max-width: 100%;
    }
    .page-sellyourdress-memories .memories__body-text {
        font-size: 16px;
        margin: 12px 0 55px;
    }

    .page-sellyourdress-memories .memories__body-expert{
        padding: 0;
    }

    .page-sellyourdress__flex-wrap {
        padding: 0 30px 40px;
        box-sizing: border-box;
        margin: auto;
        max-width: 600px;
    }
 
    .page-sellyourdress__flex {
        display: flex;
        row-gap: 18px;
        column-gap: 8%;
        flex-wrap: wrap;
    }

    .page-sellyourdress__flex-item {
        width: 46%;
        display: flex;
        flex-direction: column;
    }

    .page-faq__group .single-dress__line {
        display: none;
    }

  
    .page-faq-mv {
        padding: 100px 0 0;
    }
    .page-faq__group {
        max-width: 600px;
        padding: 60px 15px 0;
        margin: 0 auto 110px;
    }

    .page-faq__title {
        margin: 0 0 6px;
    }

    .page-faq__box{
        padding: 0 10px;
    }

    .page-faq__content-bottom .page-faq__title {
        margin: 0 0 40px;
    }
    .page-faq__content-bottom p  {
     
        font-size: 12.05px;
        line-height: calc(21/12);
        text-align: justify;
    }

    
    .page-faq__content-button li:nth-child(2) {
        display: none;
    }
    .page-faq__content-button li:last-child a {
        display: flex;
    }

    .page-privacy-mv {
        padding: 100px 0 0;
    }

    .page-privacy__content {
        padding: 60px 34px 100px;
        max-width: 600px;
    }

    .page-contact-mv {
        padding: 100px 0 0;
    }

    .page-reservation-mv {
        padding: 100px 0 0;
    }

    .page-reservation__flex-wrap {
        padding: 50px 20px 70px;
        max-width: 600px;
    }

    .page-reservation__flex {
        flex-direction: column;
        row-gap: 30px;
    }
    .page-reservation__flex-item {
        width: 100%;
    }

    .page-reservation__flex-item-text{
        font-size: 14px;
    }


    .sc-reservation-calendar__title {
        font-size: 40px;
        font-weight: 700;
        font-family: "didot";
        font-style: italic;
        line-height:calc(24/20);
        letter-spacing: 0.1em;
        padding: 30px 0 20px;
    }
    
    .sc-reservation-calendar__title .cal-y,
    .sc-reservation-calendar__title .cal-mn{
        font-size: 14px;
        padding:0px 10px 0 10px;
        font-style: normal;
    }

    .page-plan-reservation-calendar__wrap .swiper-button-next {
        top: 60px;
        right: 40px;
    }

    .page-plan-reservation-calendar__wrap .swiper-button-prev {
        top: 60px;
        left: 40px;
    }


    .page-dress__heading-wrap {    
        padding: 0 20px 70px 42px;

    }
    .page-dress__heading small {
        font-size: 10.63px;
        margin: 3px 0 0 10px;
    }

    .page-dress__top {
        background-image: url(../images/img-page-yolancris-top-bg-sp_x2.webp);
        background-size: cover;
        background-repeat: no-repeat;
        padding: 0 0 82px;
        margin: 0 0 40px;
    }

    .page-dress__report-inner {
        padding: 16px 24px 20px;
    }

    .page-dress__report {
        padding: 0 24px;
        max-width: 600px;
    }

    .page-dress__report ul li {
        padding-bottom: 0.8em;
    }

    .dress-list__wrap {
        padding: 0 30px;
        margin: 54px auto;
        max-width: 600px;
    }

    .dress-list > li {
        width: 47%;
        margin-right: 6%;
    }

    .dress-list > li:nth-of-type(2n) {
        margin-right: 0%;
    }

    .dress-list > li > ul > li {
        display: block;
        width: 100%;
    }

    .dress-list > li > ul > li small{
        margin: 1px 0 0 0;
        display: block;
        font-size: 0.7em;
    }

    .page-dress__top-flex--yolancris {
        display: flex;
        flex-direction: column-reverse;
        gap: 10%;
        max-width: 600px;
        width: 100%;
        padding: 88px 20px 0;
    }

    .page-dress__top-flex--yolancris picture {
        width: 86%;
        display: flex;
        margin: auto;
        padding: 0 0 0 40px;
        box-sizing: border-box;
    }

    .page-dress__top-flex--yolancris .page-dress__top-flex-left {
        padding: 46px 0 0 26px;
    }

    .page-dress__top-flex--galia {
        display: flex;
        flex-direction: column-reverse;
        gap: 10%;
        max-width: 600px;
        width: 100%;
        padding: 60px 20px 0 40px;
        box-sizing: border-box;
    }

    .page-dress__top-flex--galia .page-dress__top-flex-body {
        padding: 0;
    }

    .page-dress__top-flex--galia .page-dress__top-flex-img picture,
    .page-dress__top-flex--galia .page-dress__top-flex-img video {
        width: 86%;
        display: flex;
        margin: 40px auto 0;
        padding: 0 0 0 0;
        box-sizing: border-box;
    }

    .page-dress__top-flex--galia .page-dress__top-flex-body {
        padding: 0 0 0 0;
    }

    .page-dress__top--galia {
        padding: 0 0 43px;
    }

    .page-dress-bottom {
        margin: 64px 0 100px;
        padding: 0 0 80px;
    }
    .page-dress-bottom picture {
        max-width: 300px;
        width: 64%;
    }

    .page-dress-bottom-Galia picture {
        max-width: 283px;
    }

    .page-dress-bottom p {
        /*font-size: clamp(8.25px, 2.291vw, 11px);*/
        font-size: 11px;
    }

    .page-dress__top-flex--nicole{
        display: flex;
        flex-direction: column-reverse;
        gap: 10%;
        max-width: 600px;
        width: 100%;
        padding: 60px 20px 0 40px;
        box-sizing: border-box;
    }

    .page-dress__top-flex--nicole .page-dress__top-flex-img picture,
    .page-dress__top-flex--nicole .page-dress__top-flex-img video {
        width: 91%;
        display: flex;
        margin: 0 auto 0;
        padding: 0 0 0 50px;
        box-sizing: border-box;
    }

    .page-dress__top-flex--nicole .page-dress__top-flex-body {
        flex: 1;
        padding: 85px 0 0;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .page-dress__top--millia {
        background-image: url(../images/img-page-yolancris-top-bg.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 0 0 7px;
        margin: 0 0 62px;
    }
    .page-dress__top-flex--millia {
        display: flex;
        flex-direction: column-reverse;
        gap: 10%;
        max-width: 600px;
        width: 100%;
        padding: 90px 20px 0 40px;
        box-sizing: border-box;
    } 

    .page-dress__top-flex--millia  picture {
        width: 91%;
        display: flex;
        margin: 0 auto 0;
        padding: 0 0 0 0;
        box-sizing: border-box;
    }

    .page-dress__top-flex--millia .page-dress__top-flex-img {
        flex: 0 1 33%;
        margin: 76px 0 0 0;
        width: 93%;
    }
    
    .page-dress__top-flex--millia .page-dress__top-flex-body {
        flex: 1;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .page-dress__top-flex--millia {
        display: flex;
        flex-direction: column-reverse;
        gap: 10%;
        max-width: 600px;
        width: 100%;
        padding: 90px 20px 0 40px;
        box-sizing: border-box;
    } 

    .page-dress__top-flex--millia  picture {
        width: 91%;
        display: flex;
        margin: 0 auto 0;
        padding: 0 0 0 0;
        box-sizing: border-box;
    }

    .page-dress__top-flex--millia .page-dress__top-flex-img {
        flex: 0 1 33%;
        margin: 76px 0 0 0;
        width: 93%;
    }
    
    .page-dress__top-flex--millia .page-dress__top-flex-body {
        flex: 1;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }
    

    .page-dress__top--newhite {
        background-image: url(../images/img-page-yolancris-top-bg-sp_x2.webp);
        background-size: 100% 87%;
        background-repeat: no-repeat;
        padding: 0 0 32px;
        margin: 0 0 40px;
    }
    
    .page-dress__top-flex--newhite {
        display: flex;
        flex-direction: column;
        gap: 10%;
        max-width: 600px;
        width: 100%;
        padding: 43px 0 0 0;
        box-sizing: border-box;
    } 

    .page-dress__top-flex--newhite  picture {
        width:100%;
        display: flex;
        margin: 0 auto 0;
        padding: 0 0 0 0;
        box-sizing: border-box;
    }

    .page-dress__top-flex--newhite .page-dress__top-flex-img {
        flex: 0 1 33%;
        margin: 0 0 0 0;
        width: 100%;
    }
    
    .page-dress__top-flex--newhite .page-dress__top-flex-body {
        flex: 1;
        padding: 40px 21px 0 116px;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }
    


    .page-dress__top-flex--tuxedo {
        display: flex;
        flex-direction: column;
        gap: 10%;
        max-width: 600px;
        width: 100%;
        padding: 129px 0 0 0;
        box-sizing: border-box;
    } 

    .page-dress__top-flex--tuxedo  picture {
        width: 69%;
        display: flex;
        margin: 0 0 0 auto;
        padding: 0 30px 0 0;
        box-sizing: border-box;
    }

    .page-dress__top-flex--tuxedo .page-dress__top-flex-img {
        flex: 0 1 33%;
        margin: 0 0 0 0;
        width: 100%;
    }
    
    .page-dress__top-flex--tuxedo .page-dress__top-flex-body {
        flex: 1;
        padding: 61px 40px 0 38px;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .page-dress__top--verawang {
        background-image: url(../images/img-page-yolancris-top-bg-sp_x2.webp);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 0 0 20px;
        margin: 0 0 52px;
    }
    .page-dress__top-flex--verawang {
        padding: 146px 24px 0 32px;
        flex-direction: column;
    }
    
    .page-dress__top-flex--verawang .page-dress__top-flex-img {
        flex: 0 1 32%;
        margin: 0;
        width: 77%;
        margin: 62px 0 0 auto;
    }

    .page-dress__top--other {
        background-image: url(../images/img-page-yolancris-top-bg-sp_x2.webp);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 0 0 20px;
        margin: 0 0 52px;
    }
    .page-dress__top-flex--other {
        padding: 80px 24px 0 32px;
        flex-direction: column;
    }
    
    .page-dress__top-flex--other .page-dress__top-flex-img {
        flex: 0 1 32%;
        margin: 0;
        width: 77%;
        margin: 62px 0 0 auto;
    }

    .page-dress-bottom__other ul {
        padding-left: 2em;
    }

    .page-brand__favorite-dress-message {
        font-size: 11px;
        background-size: 18px 18px;
        margin: 50px auto 0px;
    }


/* 
    kimono */

    .page-dress-kimono-top__text {
        padding: 0 10px;
    }
    .page-dress-kimono-third__flex {
        flex-direction: column;
        display: flex;
        align-items: center;
        max-width: 600px;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
        padding: 20px 20px 40px;
        gap: 15%;
    }
    .page-dress-kimono-top {
        padding: 20px 0 0;
    }
    .page-dress-kimono-third__flex-left {
        width: 100%;
    }

    .page-dress-kimono-third__flex-left picture,
    .page-dress-kimono-third__flex-left p {
        width: 60%;
    }
    .page-dress-kimono-third__flex-right {
        width: 100%;
        margin: 46px 0 0;
    }
    .page-dress-kimono-third__flex-right picture {
        width: 64%;
        display: flex;
        margin: 0 0 0 auto;
    }

    .page-dress-kimono-second__flex {
        display: flex;
        max-width: 1500px;
        width: 100%;
        margin: 0 auto 54px;
        flex-direction: column;
    }
    .page-dress-kimono-second__flex-left {
        width: 100%;
    }
    .page-dress-kimono-second__flex-right {
        width: 100%;
        min-height: 500px;
    }

    .page-dress__report-kimono {
        padding: 35px 24px 54px;
    }

    .page-dress__report-kimono .page-dress__report-inner::after {
        content: none;
    }

    .page-dress-kimono-second__flex-right h2 {
        color: #fff;
        font-family: "didot";
        font-weight: 400;
        font-size: 46.19px;
        line-height: calc(80/46);
        letter-spacing: 0.1em;
        margin: 0;
    }

    .page-dress-kimono-under {
        margin: 60px 0 0;
    }

    .page-dress-kimono-under-first__flex-wrap  .page-dress-kimono-under__flex {
        box-sizing: border-box;
        margin: 0 auto;
        display: flex;
        flex-direction: column-reverse;
    }

    .page-dress-kimono-under__flex-right {
        width: 100%;
    }

    .page-dress-kimono-under__flex-left {
        width: 100%;
        padding: 56px 0 28px;
        box-sizing: border-box;
    }
    .page-dress-kimono-under__flex-left-inner {
        width: 52%;
    }

    .page-dress-kimono-under-first__flex-wrap .page-dress-kimono-under__flex-left p {
        text-align: right;
    }

    .page-dress-kimono-under__flex-last {
        padding: 94px 30px 90px;
        align-items: center;
    }

    .page-dress-kimono-under__flex-last .page-dress-kimono-under__flex-left-inner {
        width: 80%;
        margin: 0;
    }

    .page-dress-kimono-under__flex-last p {
        width: 90%;
    }

    .page-dress-kimono-under__flex-last .page-dress-kimono-under__flex-right {
        padding: 0 0 30px;
    }

    .page-dress-kimono-under__flex-last  .page-dress-kimono-under__flex-right-inner {
        width: 90%;
        margin: 0 0 0 auto;
    }

}


@media screen and (max-width:640px) {
    .header__logo {
        padding: 0;
    }

}


@media screen and (max-width:480px) {
    .concept__flex-img {
        width: 100%;
        max-width: 280px;
        padding: 0 40px 0;
        box-sizing: border-box;
    }

    .concept-everything__flex-img {
        width: 100%;
        max-width: 280px;
        padding: 0 40px 0;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .salon__grid {
        width: 100%;
        max-width: 240px;
        padding: 0 40px 0;
        box-sizing: border-box;
    }

    .plan-instagram__grid {
        width: 100%;
        max-width: 280px;
    }

    .memories__body-inner {
        padding: 0 30px 0;
    }

    .page-plan__hair-body h2 {
        padding: 0 25px 0 0;
    }

    .page-plan__hair-body p {
        max-width: 312px;
        width: 100%;
        padding: 0 25px 0 5px;
        box-sizing: border-box;
    }

    .page-dress__mv {
        max-height: 600px;
    }

    .page-dress__mv picture, .page-dress__mv video {
        height: 100%;
        max-height: 600px;
        min-height: 100%;
        display: flex;
    }

    .page-about-media__item-wrap a picture {
        align-items: start;
    }

    .page-about-media__item-wrap a picture img {
        aspect-ratio: 150 / 200;
        object-fit: cover;
    }

    .page-plan-kind__swiper .swiper-button-next {
        right: 3%;
    }

    .page-plan-kind__swiper .swiper-button-prev::after {
        width: 15px;
        height: 15px;
    }

    .page-plan-kind__swiper .swiper-button-next::after {
        width: 15px;
        height: 15px;
    }

    /*
    .form-box dt,
    .form-box__date ul li,
    .form-box__date p {
        font-size: clamp(8px, 2.214vw, 10.63px);
    }
    */

    .page-sellyourdress-memories .memories__body-inner {
        padding: 0 clamp(24px, 6.666vw, 32px) 0;
    }

    .page-sellyourdress-memories .memories__body-text {
        font-size: clamp(12px, 3.333vw, 16px);
        margin: 12px 0 clamp(41px, 11.458vw, 55px);
    }

    .page-sellyourdress-memories .memories__body-expert {
        font-size: clamp(10.5px, 2.916vw, 14px);
        line-height: calc(24.5/14);
        padding: 0 0 20px;
    }

    .single-blog-related-category__list {
        padding: 0;
    }

    /* About */
    .page-about-mv__content-title {
        font-size: clamp(12px, 3.333vw, 16px);
    }
    .page-about-mv__content-text {
        font-size: clamp(10.67px, 2.852vw, 14.17px);
    }
    .page-about-mv__content {
        padding: 24px clamp(12px, 5vw, 14px) 72px;
    }

    .page-dress__top-flex-body p,
    .page-dress-kimono-top__text {
        /*font-size: clamp(8px, 2.291vw, 11px);*/
        font-size: 11px;
    }

    .page-dress__report a {
        font-size: 11px;
    }

    .page-dress__top-flex--verawang {
        padding: 146px clamp(14px, 5vw, 24px) 0 clamp(14px, 6.666vw, 32px);
    }

    .page-dress__top-flex--other {
        padding: 80px clamp(14px, 5vw, 24px) 0 clamp(14px, 6.666vw, 32px);
    }

    .page-dress__heading-wrap {
        padding: 0 20px clamp(30px, 14.58vw, 70px) clamp(20px, 8.75vw, 42px);
    }

    .page-about-media__item-body > div {
        font-size: 12px;
    }

    .page-about-media__more-button {
        margin-top: 54px;
        width: 196px;
        padding: 4px;
    }

}

@media screen and (max-width:479px) {
    .memories__body-inner {
        padding: 0 20px 0;
    }
}

@media screen and (max-width:460px) {
    .header__content-center-text-sp {
        font-size: 14px;
    }
}

@media screen and (max-width:440px) {
    .concept__flex-group-title {
        font-size: 27px;
    }

    .concept__flex-body-expert {
        font-size: 11.2px;
    }


    .concept__flex-body-button a {
        font-size: 14px;
        line-height: calc(33 / 19);
    }

    .concept-everything__flex-body-expert {
        font-size: 11.63px;
    }

    .salon__bottom {
        padding: 80px 30px 0;
    }

    .salon__bottom-expert {
        font-size: 11px;
    }

    .plan__body {
        padding: 80px 30px 0;
        width: 65%;
        margin: 0 0 0 auto;
    }

    .plan__body-excerpt {
        font-size: 13.2px;
        line-height: calc(26 / 14);
        padding: 0 0 34px;
    }

    .plan-instagram {
        padding: 62px 30px 180px;
    }

    .plan__body-button a {
        font-size: 18px;
    }

    .memories__body-title-img {
        margin: 0 0 40px auto;
    }

    .memories__body-title-img {
        max-width: 180px;
    }

    .memories__body-expert {
        font-size: 11.5px;
    }


    .grid-link__item-img {
        margin: -20px 15px 20px 15px;
    }

    .grid-link__item-second picture {
        margin: -20px 15px 20px 15px;
    }

    .grid-link__item-body {
        flex: 1;
        padding: 20px 15px 20px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .grid-link__item-second .grid-link__item-body {
        padding: 20px 15px 20px 0;
    }

    .grid-link__item-title-en {
        font-size: 19px;
    }

    .grid-link__wrap ul{
        max-width: 440px;
        width: 100%;
        padding: 74px 30px 90px;
    }

    .grid-link__item-third .grid-link__item-excerpt {
        font-size: 9.5px;
    }

    .access__flex-img {
        max-width: 240px;
        width: 100%;
    }

    .access__flex-body-table {
        font-size: 11.76px;
    }

    .footer__nav ul {
        padding: 0 10px 60px;
    }
    .footer__nav-item {
        margin: 0 15px 0 0;
    }

    .footer__nav-item a {
        font-size: 14px;
    }
    .footer__breadcrumb {
        max-width: 1460px;
        width: 100%;
        margin: auto auto 40px;
        padding: 0 20px 0;
    }
    .footer-top__inner {
        padding: 0 20px;
    }
    

    /* SYAについて */

   
    .page-about-concept .concept__content {
        padding: 0 20px;
    }

    .page-about-concept-everything__flex-wrap .concept-everything__flex-body-title {
        padding: 0 0 12px 10%;
        font-size: 14px;
    }
    .concept-everything__flex-body-expert.page-about-concept-everything__flex-body-expert {
        padding: 0 0 12px 10%;
        box-sizing: border-box;
    }
    .salon__head-top-title-jp {
        font-size: 14px;
    }
    .page-about-salon .salon__head-top-title-en {
        font-size: 16px;
    }

    .page-about-media__item-wrap li {
        gap: 20px;
    }


    /* フォトプラン */

    .page-plan__swiper-bottom-title {
        font-size: 14px;
    }
    .page-plan__hair-top {
        padding: 0 0 60px 25px;
    }
    .page-plan__hair-center .page-plan__hair-center-body {
        padding: 0 0 0 25px;
    }
    .page-plan__hair-bottom-body {
        padding: 0 0 0 25px;
        margin: 0;
    }
    .page-plan__hair-top .page-plan__hair-body h2 {
        font-size: 24.35px;
        flex-direction: column;
    }
    .page-plan__hair-body h2 {
        font-size: 24.35px;
        padding: 0 25px 0 0;
    }

    .page-plan__hair-body h2 small {
        font-size: 8.6px;
    }
    .page-plan__detail-list-item {
        font-size: 20px;
        font-weight: 400;
        line-height: calc(27/23);
        padding: 6px 30px 6px 15px;
    }
    .page-plan__detail-list-item::after {
        right: 12px;
    }
    .page-plan-blog__content-inner {
        padding: 30px 0 50px;
    }
    .page-plan-kind__title {
        font-size: 21px; 
    }
    .page-plan-tuxed-sized {
        padding: 0 20px;
    }
    .page-plan-reservation-calendar__wrap {
        padding: 0 10px;
        box-sizing: border-box;
    }
   
    .form-box dd {
        flex: 1;
        margin: 0 0 0 15px;
    }


    /* 買取 */

    .page-sellyourdress__flex-wrap {
        padding: 0 20px 40px;
        box-sizing: border-box;
        margin: auto;
        max-width: 600px;
    }
    .page-sellyourdress__flex-item {
        width: 49%;
    }
    .page-sellyourdress__flex {
        display: flex;
        row-gap: 18px;
        column-gap: 2%;
        flex-wrap: wrap;
    }
    .page-sellyourdress__flex-item h3 {
        font-size: 8px;
    }
    .page-sellyourdress-memories .memories__body-title {
        font-size: 40.6px;
        line-height: calc(72/49);
    }
    .page-sellyourdress-memories .memories__body-title-img {
        margin: -8px auto 0 30%;
    }

    .single-dress-blog__inner {
        padding: 30px 0 50px;
    }
}

@media screen and (max-width:370px) {
    .header__content-center-text-sp {
        font-size: 14px;
    }

    .grid-link__wrap ul {
        max-width: 440px;
        width: 100%;
        padding: 74px 20px 90px;
    }
    .grid-link__item-img {
        flex: 0 1 40%;
        margin: -20px 12px 20px 12px;
    }
    .memories__body-top {
        padding: 0 0 0 60px;
    }
    .memories__body-title-img {
        max-width: 180px;
        width: 80%;
    }
    .memories__body-title {
        font-size: 26px;
        line-height: calc(47/31);
    }
    .memories__body-text {
        font-size: 14px;
    }
    .concept-everything__flex-wrap {
        padding: 0 30px;
    }
    .brand__content {
        padding: 0 30px;
    }
    .plan__head {
        padding: 40px 30px;
    }
    .salon__head {
        padding: 0 30px;
    }
    .news__inner {
        padding: 50px 30px 40px;
    }
    .media__inner {
        padding: 50px 30px 40px;
    }

    .access__inner {
        padding: 0 30px 105px;
    }
    .access__flex-img {
        max-width: 240px;
        width: 85%;
    }

    .page-about-media__item-wrap a picture {
        align-items: start;
        flex: 0 1 120px;
    }

    .page-about-company__item {
        padding: 17px 20px;
        margin: 0;
    }

    .page-dress-bottom picture {
        display: flex;
        margin: 0 auto 30px;
        max-width: 300px;
        width: 64%;
    }
    .page-dress-bottom-Galia picture {
        max-width: 283px;
    }

    .sc-reservation-calendar__table .ok::after {
        width: 23px;
        height: 23px;
    }
    .sc-reservation-calendar__title {
        font-size: 34px; 
    }

    .page-plan-reservation-calendar__wrap .swiper-button-next {
        top: 60px;
        right: 20px;
    }
    .page-plan-reservation-calendar__wrap .swiper-button-prev {
        top: 60px;
        left: 20px;
    }

 

 
}


