body,
html {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

.font-en {
    font-family: "Prociono", serif;
    font-weight: 400;
    font-style: normal;
}

.font-wind {
    font-family: "WindSong", cursive;
    font-weight: 400;
    font-style: normal;
}

.indicator {
    position: fixed;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    z-index: 100;
}

.dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    margin: 26px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #333;
}

h1 img {
    width: 220px;
}
/*------------------------ふわっと表示されるアニメーション------------------------*/
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}


/*------------------------header------------------------*/
header {
    position: fixed;
    top: 0px;
    left: 0px;
    padding-top: 52px;
    padding-left: 75px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/*------------------------headerEND------------------------*/

/*------------------------グローバルメニュー------------------------*/
/* ハンバーガーボタン */
.hambarger-btn {
    position: relative;
    width: 56px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
}

.hambarger-btn span {
    position: absolute;
    right: 0;
    height: 1px;
    background: #3f3f3f;
    transition: transform 0.4s ease, top 0.4s ease, width 0.4s ease;
}

.hambarger-btn.hambarger-btn--white span {
    background: white;
}

.hambarger-btn.active span {
    background: white;
    right: 40px;
}

.hambarger-btn span:first-of-type {
    width: 56px;
    top: 0;
}

.hambarger-btn span:last-of-type {
    width: 28px;
    top: 18px;
}

.hambarger-btn.active span:first-of-type {
    transform: rotate(45deg);
    top: 9px;
    width: 22px;
}

.hambarger-btn.active span:last-of-type {
    transform: rotate(-45deg);
    top: 9px;
    width: 22px;
}

/* グローバルメニュー */
.global-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    height: 100vh;
    background: linear-gradient(0deg, #38373E 0%, #38373E 100%), #FFF;
    transform: translateX(100%);
    /* 右に隠す */
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 8;
    pointer-events: none;
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    padding-top: 120px;
}

.global-menu.active {
    transform: translateX(0);
    /* スライドイン */
    opacity: 0.8;
    /* フェードイン */
    pointer-events: auto;
}


nav.global-menu ul {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

nav.global-menu ul li a p {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    line-height: 252%;
    letter-spacing: 1.65px;
}

nav.global-menu ul li a {
    position: relative;
}

nav.global-menu ul li a p:last-of-type {
    position: absolute;
    top: 32px;
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 11px;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 1.65px;
    opacity: 0;
    transition: all 0.5s;
}

nav.global-menu ul li.active a p:last-of-type {
    opacity: 0.5;
}


/* ベース位置調整 */
.global-menu ul li p:first-of-type {
    position: relative;
}

/* 疑似要素：線の初期状態 */
.global-menu ul li p:first-of-type::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 51%;
    width: 0;
    height: 1px;
    background: white;
    /* 任意の色 */
    transition: width 0.4s ease;
    transform: translateY(-50%);
}

/* アクティブ時：線を17pxに伸ばす */
.global-menu ul li.active p:first-of-type::before {
    width: 17px;
}

li.nav-logo {
    transition: 0.3s;
}

li.nav-logo img {
    width: 150px;
}

li.nav-logo:hover {
    opacity: 0.3;
}

.global-menu ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* アクティブ時に順番に表示 */
.global-menu.active ul li {
    opacity: 1;
    transform: translateY(0);
}

/* 順番にディレイを付ける */
.global-menu ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.global-menu ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.global-menu ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.global-menu ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.global-menu ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.global-menu ul li:nth-child(6) {
    transition-delay: 0.6s;
}

.global-menu ul li:nth-child(7) {
    transition-delay: 0.7s;
}


/*------------------------headerEND------------------------*/


/*------------------------フローティングボタン------------------------*/

.floating-btn {
    position: fixed;
    bottom: 40px;
    right: 100px;
    background: #29292F;
    box-shadow: 15px 15px 30px 0px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.floating-btn a p {
    color: white;
}

.floating-btn a {
    background: #29292F;
    display: flex;
    width: 129px;
    height: 129px;
    padding: 21.5px 18px;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s;
}

.floating-btn a:hover {
    background: #C57D84;
}

.floating-btn p:first-of-type {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 1.547px;
    margin-bottom: 10px;
}

.floating-btn p:last-of-type {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 8px */
    letter-spacing: 1.2px;
}

.floating-btn p span {
    color: white;
}

.floating-btn__arrow span {
    display: block;
    height: 1px;
    background: #ffffff;
    position: absolute;
    width: 60px;
    left: 0;
    top: 0;
    transition: width 0.3s, opacity 0.3s 0.15s;
}

.floating-btn__arrow span:before {
    content: "";
    width: 10px;
    display: block;
    height: 1px;
    background: #ffffff;
    position: absolute;
    transform: rotate(45deg);
    right: -2px;
    bottom: 3px;
}

.floating-btn__arrow {
    position: absolute;
    bottom: 24px;
    left: 50px;
}



/*------------------------フローティングボタン　END------------------------*/
/*------------------------メインビジュアル------------------------*/
.section-inner.section-inner--mainvisual {
    height: 100vh;
}

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

h2.catch {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 8.4px;
    position: absolute;
    top: 40%;
    left: 20%;
    writing-mode: vertical-rl;
    /* 縦書き */
    text-orientation: mixed;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    opacity: 0;
}

h2.catch.type-active {
    opacity: 1;
    /* 表示 */
}

h2.catch span {
    display: inline-block;
    margin-left: 10px;
}

span.last-row {
    margin-top: 80px;
}

.typing-char {
    opacity: 0;
    display: block;
    animation: show 0.3s forwards;
}

@keyframes show {
    to {
        opacity: 1;
    }
}



/*------------------------メインビジュアルEND------------------------*/


/*------------------------共通パーツ------------------------*/
h2.content-title {
    font-size: 28px;
    color: #3F3F3F;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    letter-spacing: 4.8px;
}

p.content-title {
    color: #3F3F3F;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 2.1px;
}





/* moreボタン normal*/
.hv-trigger.more-btn-wrapper {
    margin-top: 54px;
    width: 140px;
    justify-content: center;
    background: #3F3F3F;
}

.more-btn.more-btn--normal {
    color: #3F3F3F;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 37.78px;
    letter-spacing: 2.1px;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 80px;
}

.more-btn.more-btn--normal a {
    display: block;
    width: 140px;
    padding-left: 36px;
}

.more-btn.more-btn--normal p {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.547px;
}

.more-btn.more-btn--normal div {
    position: relative;
}

.more-btn.more-btn--normal span {
    display: block;
    height: 1px;
    background: #ffffff;
    position: absolute;
    width: 22px;
    left: 56px;
    bottom: 14px;
    transition: width 0.2s, opacity 0.3s 0.15s;
}

.more-btn.more-btn--normal.is-hover span {
    width: 30px;
    opacity: 0;
}

.more-btn.more-btn--normal span:before {
    content: "";
    width: 5px;
    display: block;
    height: 1px;
    background: #ffffff;
    position: absolute;
    transform: rotate(45deg);
    right: 0px;
    bottom: 2px;
}




/* moreボタン news*/
.more-btn.more-btn--news {
    color: #3F3F3F;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 37.78px;
    letter-spacing: 2.1px;
    position: absolute;
    right: 0;
    z-index: -1;
}

.more-btn.more-btn--news {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80px;
    height: 39px;
}

.more-btn.more-btn--news span {
    display: block;
    height: 1px;
    background: #3F3F3F;
    position: absolute;
    width: 22px;
    left: 56px;
    bottom: 14px;
    transition: width 0.2s, opacity 0.3s 0.15s;
}

.more-btn.more-btn--news.is-hover span {
    width: 30px;
    opacity: 0;
}

.more-btn.more-btn--news span:before {
    content: "";
    width: 5px;
    display: block;
    height: 1px;
    background: #3F3F3F;
    position: absolute;
    transform: rotate(45deg);
    right: 0px;
    bottom: 2px;
}



/* moreボタン viewall*/
.more-btn.more-btn--all {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.1px;
    text-align: center;
    padding-top: 60px;
}

.more-btn.more-btn--all a {
    display: inline-block;
    padding: 0 40px 4px;
    position: relative;
    color: #3F3F3F;
}

.more-btn.more-btn--all div {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.more-btn.more-btn--all div span {
    display: block;
    height: 1px;
    background: #3F3F3F;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    transition: width 0.3s, opacity 0.3s 0.15s;
}

.more-btn.more-btn--all a.is-hover span {
    width: calc(100% + 20px);
    opacity: 0;
}

.more-btn.more-btn--all div span:before {
    content: "";
    width: 10px;
    display: block;
    height: 1px;
    background: #3F3F3F;
    position: absolute;
    transform: rotate(45deg);
    right: -2px;
    bottom: 3px;
}





/* moreボタン back*/
.more-btn.more-btn--back {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.1px;
    text-align: left;
    padding-top: 60px;
    padding-left: 14px;
}

.more-btn.more-btn--back a {
    display: inline-block;
    padding: 0 14px 14px;
    position: relative;
    color: #3F3F3F;
}

.more-btn.more-btn--back div {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: scale(-1.1);
}

.more-btn.more-btn--back div span {
    display: block;
    height: 1px;
    background: #3F3F3F;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    transition: width 0.3s, opacity 0.3s 0.15s;
}

.more-btn.more-btn--back a.is-hover span {
    width: calc(100% + 20px);
    opacity: 0;
}

.more-btn.more-btn--back div span:before {
    content: "";
    width: 10px;
    display: block;
    height: 1px;
    background: #3F3F3F;
    position: absolute;
    transform: rotate(45deg);
    right: -3px;
    bottom: 3px;
}



/*------------------------共通パーツ　END------------------------*/

/*------------------------NEWS TOP------------------------*/

section.news-top {
    padding: 130px 60px;
    position: relative;
}

section.news-top::before {
    content: "";
    width: 1px;
    height: 0;
    background: #3f3f3f;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: height 0.6s ease-out;
}

/* 表示時に高さを伸ばす */
section.news-top.line-animate::before {
    height: 50px;
}

.content-inner.content-inner--top {
    max-width: 820px;
    margin: auto;
}

.arhive-meta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.archive-list {
    padding-top: 58px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.archive-list__item.archive-list__item--top {
    display: flex;
    align-items: center;
    gap: 32px;
}

p.category-news {
    display: inline-block;
}

.category-news a {
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1.7px;
    min-width: 86px;
    padding: 0 8px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #3f3f3f;
    transition: all 0.3s;
    white-space: nowrap;
}

.category-news a:hover {
    background: #3f3f3f;
    color: white;
}

p.archive-list__date.font-en {
    color: #3F3F3F;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.25px;
}

.archive-list h4 {
    width: 100%;
    position: relative;
}

.archive-list h4 a {
    color: #3F3F3F;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.25px;
    display: block;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*------------------------NEWS TOP END------------------------*/

/*------------------------MENU TOP------------------------*/
section.menu-top.section {
    padding: 130px 60px;
    background: #EDEDF1;
}

.menu-top-item:first-of-type {
    margin-bottom: 110px;
}

.menu-top-item {
    display: flex;
    align-items: flex-end;
    gap: 80px;
}

.menu-top-body {
    width: calc(100% - 400px);
}

section.menu-top .content-title-wrapper {
    padding-bottom: 68px;
}

.menu-top-body h4 {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 252%;
    letter-spacing: 2.85px;
}

p.menu-top-body__desc {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 250%;
    letter-spacing: 1.8px;
}

p.menu-top-body__price.font-en {
    color: #3F3F3F;
    font-family: Prociono;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.25px;
}

.menu-top-thumbnail {
    display: flex;
    padding-top: 32px;
}

.line:after {
    content: "";
    position: absolute;
    width: calc(100% / 3);
    height: 1px;
    background: #3f3f3f;
}

.line {
    position: relative;
    margin-top: 30px;
    width: 100%;
    height: 1px;
    background: rgb(63 63 63 / 30%);
}

.more-btn.more-btn--all.more-btn--menu {
    padding-top: 86px;
}


/*-------------Menuスライダー------------------*/

.menu-top-item__main {
    aspect-ratio: 320 / 430;
    position: relative;
    width: 40%;
    max-width: 320px;
}

.menu-top-item__main img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    aspect-ratio: 140 / 98;
}

.menu-top-item__main img.active {
    opacity: 1;
    z-index: 1;
    aspect-ratio: 140 / 98;
}

.thumbs-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
}

.thumbs {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.thumbs img {
    width: calc(100% / 3);
    cursor: pointer;
    object-fit: cover;
    aspect-ratio: 140 / 98;
    transition: all 0.3s;
}

.thumbs img:hover {
    opacity: 0.6;
}

.thumbs-current {
    z-index: 2;
    opacity: 1;
}

.thumbs-next {
    z-index: 1;
}

.thumbs-wrapper {
    height: 98px;
    margin-top: 38px;
}

/*------------------------PHILOSOPHY------------------------*/

section.philosophy.section {
    height: 100vh;
    background: url(../img/philosophy.jpg);
    background-size: cover;
    background-position: center;
    padding: 130px 60px;
    position: relative;
}

section.philosophy.section::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #414146;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 1;
    transition: opacity 2s ease;
    /* ← 2秒に変更してゆっくりに */
}

section.philosophy.section.fade-out::before {
    opacity: 0;
}


.content-inner.content-inner--philosophy {
    height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-body {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 40px;
}

.philosophy-body p {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    line-height: 2.6em;
    letter-spacing: 2.25px;
    opacity: 0;
    /* ← 初期非表示 */
    transition: opacity 0.3s ease;
}
.philosophy-body p span {
    display:block;
}
.philosophy-body p span {
    color: white;
}

.philosophy-body p span.mg {
    display: inline-block;
    margin-top: 28px;
}


.philosophy-body p.visible {
    opacity: 1;
    /* ← 表示開始時に付ける */
}

.typing-unit {
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    animation: typingFade 0.15s ease-out forwards;
    color: inherit;
    /* ← 親の白を継承 */
}

@keyframes typingFade {
    to {
        opacity: 1;
        visibility: visible;
    }
}


/* ぼかし→はっきり 表示アニメーション */
.blur-in {
  opacity: 0;
  filter: blur(4px);
  animation: blurFadeIn 0.8s ease-out forwards;
}

@keyframes blurFadeIn {
  from {
    opacity: 0;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}




/*------------------------PHILOSOPHY END------------------------*/



/*------------------------STORES TOP------------------------*/

section.stores-top {
    padding: 130px 60px 225px;
    position: relative;
}

section.stores-top .content-title-wrapper {
    padding-bottom: 100px;
}

.tab-contents {
    position: relative;
    height: auto;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    position: relative;
}

.tab-menu {
    display: flex;
    list-style: none;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 48px;
}

.tab-menu li {
    cursor: pointer;
    padding-left: 60px;
    position: relative;
}

.tab-menu li {
    position: relative;
}

.tab-menu li::before {
    content: "";
    width: 18px;
    height: 1px;
    background: #3f3f3f;
    position: absolute;
    left: 0;
    top: 50%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tab-menu li.active::before {
    transform: scaleX(1);
}



.tab-menu li p {
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 2.85px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.tab-menu li.active p {
    opacity: 1;
}


.stores-top-item h4 {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.85px;
    padding-bottom: 32px;
}

.stores-info p {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    /* 30.24px */
    letter-spacing: 2.4px;
}

.stores-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    margin-left: auto;
    padding-top: 72px;
    gap: 40px;
}

.stores-info-wrapper .hv-trigger.more-btn-wrapper {
    margin-top: 0;
}

.stores-sns {
    display: flex;
    align-items: center;
    gap: 20px;
}

p.stores-info__map a {
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1.7px;
    width: 86px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #3f3f3f;
    transition: all 0.3s;
}

p.stores-info__map {
    display: flex;
    align-items: center;
    gap: 16px;
}

p.stores-info__map a:hover {
    background: #3f3f3f;
    color: white;
}

.stores-info {
    padding-top: 58px;
}

/*-------------storesスライダー------------------*/

.stores-top-item__main {
    aspect-ratio: 806 / 442;
    position: relative;
}

.stores-top-item__main img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    aspect-ratio: 806 / 442;
}

.stores-top-item__main img.active {
    opacity: 1;
    z-index: 1;
    aspect-ratio: 806 / 442;
}

.stores-top .thumbs-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    max-width: none;
}

.stores-top .thumbs {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.stores-top .thumbs img {
    width: calc(100% / 3);
    cursor: pointer;
    object-fit: cover;
    aspect-ratio: 268 / 150;
    transition: opacity 0.3s;
}


.stores-top .thumbs img:hover {
    opacity: 0.6;
}

.stores-top .thumbs-current {
    z-index: 2;
    opacity: 1;
}

.stores-top .thumbs-next {
    z-index: 1;
}

.stores-top .thumbs-wrapper {
    height: 158px;
    margin-top: 38px;
}

.stores-top .line {
    position: relative;
    margin-top: 30px;
    width: 50%;
    height: 1px;
    background: rgb(63 63 63 / 30%);
}


/*------------------------STORES TOP END------------------------*/

/*------------------------footer------------------------*/

.footer-info {
    display: flex;
}

.footer-info>div {
    width: 50%;
}

.footer-info>div a {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    height: 250px;
    transition: all 0.5s;
    z-index: 2;
}

.footer-info>div h3 {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 20.603px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 3.09px;
    transition: all 0.3s;
}

.footer-info>div p {
    color: #FFF;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1.8px;
    transition: all 0.3s;
}

.footer-info__recruit {
    background: url("../img/recruit_bg.jpg");
    background-size: cover;
    background-position: center;
}

.footer-info__contact {
    background: url("../img/contact_bg.jpg");
    background-size: cover;
    background-position: center;
}

.footer-info__contact a,.footer-info__recruit a {
    position: relative;
    transition: all 0.3s;
}

.footer-info__contact a:hover:before,.footer-info__recruit a:hover:before {
    opacity: 1
}

.footer-info__contact a:before,.footer-info__recruit a:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #76767B;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s;
    z-index: -1;
	opacity:0.3;
}


.footer-info>div a:hover h3,
.footer-info>div a:hover p {
    letter-spacing: 0.2em;
}

.footer {
    padding: 110px 60px;
    display: flex;
    flex-direction: column;
    background: #232420;
    gap: 60px;
    align-items: center;
}

.footer * {
    color: white;
}

.footer-inner {
    display: flex;
    gap: 108px;
    width: 100%;
    max-width: 820px;
}

.footer__logo {
    width: 50%;
    border-bottom: 1px solid #ffffff6e;
}
.footer__logo img {
    max-width: 220px;
}
.footer__nav {
    width: calc(50% - 108px);
}

.footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 40px;
}

.footer__nav ul li {
    width: calc(50% - 20px);
}

.footer__nav ul li a {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    line-height: 252%;
    letter-spacing: 1.65px;
}

.copyright {
    text-align: center;
}

.copyright a {
    color: #FFF;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 1.65px;
    transition: all 0.3s;
    margin-bottom: 12px;
    display: block;
}

.copyright a:hover {
    opacity: 0.6;
}

.copyright p {
    color: #FFF;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 1.65px;
}

.footer__nav ul li a {
    position: relative;
    display: inline-block;
    color: white;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s;
}

.footer__nav ul li a:hover {
    padding-left: 20px;
}

.footer__nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    /* 上から50%の位置に */
    height: 1px;
    width: 0;
    background-color: white;
    transition: width 0.2s ease;
}

.footer__nav ul li a:hover::after {
    width: 10px;
}


/*------------------------footer END------------------------*/





/*------------------------下層共通------------------------*/
nav.breadcrumb ul {
    display: flex;
    gap: 8px;
    padding-left: 76px;
}

nav.breadcrumb ul li {
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    /* 25.2px */
    letter-spacing: 1.5px;
}

.heading {
    padding-top: 180px;
    padding-bottom: 82px;
}

.heading h2 {
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
    letter-spacing: 4.8px;
    padding: 20px 0 10px;
}

.heading p {
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 14px */
    letter-spacing: 2.1px;
}


main.page section {
    padding-left: 140px;
    padding-right: 140px;
}

/*------------------------下層共通END------------------------*/

/*------------------------私たちについて------------------------*/
main.page section.mvv {
    padding-left: 0;
    padding-bottom: 68px;
}

.mvv-item.mvv-item--mission {
    background: url("../img/about/mission.jpg");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
}

.mvv-item {
    padding: 52px 0;
    margin-bottom: 10px;
    position: relative;
    height: 210px;
    display: flex;
    align-items: center;
}

.mvv-item:before {
    width: 100%;
    height: 100%;
    content: "";
    background: white;
    position: absolute;
    left: 0;
    top: 0;
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255) 40%, rgba(255, 255, 255, 1) 100%);
}

.mvv-item.mvv-item--vision:before {
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255) 45%, rgba(255, 255, 255, 1) 100%);
}

.mvv-item.mvv-item--value:before {
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255) 50%, rgba(255, 255, 255, 1) 100%);
}

.mvv-item.mvv-item--philosophy:before {
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255) 55%, rgba(255, 255, 255, 1) 100%);
}

.mvv-item-desc__text1 {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
    position: absolute;
    letter-spacing: 5.25px;
    left: -120px;
    display: flex;
    align-items: flex-end;
}

.mvv-item-desc span {
    color: white;
    display: inline-block;
    width: 1.2em;
    writing-mode: vertical-rl;
    text-orientation: upright;
}


.mvv-item-desc span {
  color: white;
  display: inline-block;
  width: 1.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed; /* ← Safari対策として "mixed" を推奨 */
  -webkit-writing-mode: vertical-rl; /* Safari用プレフィックス */
}




.mvv-item-desc__text2 {
    color: #3F3F3F;
    text-shadow: 0px 4px 30px rgba(255, 255, 255, 0.30);
    font-family: "Shippori Mincho";
    font-size: 24px;
    font-style: normal;
    line-height: 252%;
    letter-spacing: 3.6px;
}

.mvv-item-desc__text3 {
    color: #3F3F3F;
    text-shadow: 0px 4px 30px rgba(255, 255, 255, 0.30);
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    line-height: 252%;
    letter-spacing: 2.4px;
}

.mvv-inner {
    max-width: 1120px;
    margin: auto;
}

.mvv-item-desc {
    width: 65%;
    margin-left: auto;
    position: relative;
    padding-right: 20px;
}

.mvv-item.mvv-item--vision {
    background: url(../img/about/vision.jpg);
    background-position: 40px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.mvv-item-desc span.first {
    order: 2;
    position: relative;
    top: -24px;
}

.mvv-item-desc span.second {
    order: 1;
}

.mvv-item.mvv-item--value {
    background: url(../img/about/value.jpg);
    background-position: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.mvv-item.mvv-item--philosophy {
    background: url(../img/about/philosophy.jpg);
    background-position: 160px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

p.mvv-item-desc__text1.mvv-item-desc__text1--mission {
    font-size: 44px;
    top: 6px;
}

p.mvv-item-desc__text1.mvv-item-desc__text1--vision {
    left: -100px;
    top: -30px;
}
p.mvv-item-desc__text1.mvv-item-desc__text1--value {
    top: -8px;
    left: -105px;
}

p.mvv-item-desc__text1.mvv-item-desc__text1--philosophy {
    top: -14px;
    left: -98px;
}

.mvv-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.mvv-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

section.mvv {
    position: relative;
}

.eyore {
    position: absolute;
    top: 0;
    right: 70px;
}

.eyore::after {
    content: "";
    position: absolute;
    top: calc(100% + 80px);
    /* 要素の下から80px下 */
    left: 50%;
    width: 1px;
    height: 0;
    /* 初期状態 */
    background: #DBDBDB;
    transition: height 0.8s ease-out;
}

/* アニメーション用クラス：1秒後にJSで追加する */
.eyore.line-animate::after {
    height: 240px;
}


/*------------------------私たちについて END ------------------------*/


/*------------------------行動指針-----------------------*/

main.page section.guideline {
    padding: 120px 60px;
    background: #919499;
}

.guideline-title p:first-of-type {
    writing-mode: vertical-rl;
    /* 縦書き：右から左へ */
    text-orientation: upright;
    /* 漢字・カナなどを正立に表示 */
    font-size: 32px;
    /* お好みで */
    line-height: 1.8;
    /* 縦方向の間隔 */
    font-family: "Shippori Mincho", serif;
}

/* spanが横並びにならないように */
.guideline-title p:first-of-type span {
    display: inline-block;
}

.guideline-inner {
    max-width: 952px;
    margin: auto;
}

.guideline-title p:first-of-type {
    display: flex;
    flex-direction: column;
}

.guideline-title {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
    padding-bottom: 62px;
}

.guideline-title p:first-of-type span {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
    /* 128.571% */
    letter-spacing: 5.25px;
}

.guideline-title p:last-of-type span {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 19px;
    font-style: normal;
    line-height: 1.8em;
    letter-spacing: 3.8px;
}

.guideline-title p:first-of-type span:first-of-type {
    transform: translateY(-15px);
}

.guideline-title p:first-of-type span:last-of-type {
    transform: translateY(15px);
}

.guideline-item p.font-wind {
    color: #FFF;
    font-family: WindSong;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 45px;
    /* 150% */
    letter-spacing: 3px;
}

p.guideline-item__desc {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    line-height: 2.2em;
    letter-spacing: 3px;
}

.guideline-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guideline-item {
    width: calc(100% - 238px);
    margin-left: auto;
    position: relative;
}

.guideline-item:before {
    content: "";
    width: 195px;
    top: 22px;
    left: -238px;
    position: absolute;
    background: white;
    height: 1px;
}

.type-anim {
    opacity: 0;
    /* 初期状態は非表示 */
    transition: opacity 0.3s ease-out;
}

.type-anim.show {
    opacity: 1;
}

.char-anim {
    opacity: 0;
    display: inline-block;
    animation: charFade 0.5s forwards;
}

.char-anim--mg {
    margin-right: 1em;
}

@keyframes charFade {
    to {
        opacity: 1;
    }
}


.guideline-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.guideline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*------------------------行動指針 END-----------------------*/


/*------------------------3つの約束-----------------------*/

main.page section.promise {
    padding: 144px 60px 186px 60px;
}

.promise-title h3 {
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 37.78px;
    /* 134.93% */
    letter-spacing: 4.2px;
    padding-bottom: 77px;
}

.promise-inner {
    max-width: 800px;
    margin: auto;
}

p.promise-item__title {
    color: #3F3F3F;
    text-shadow: 0px 4px 30px rgba(255, 255, 255, 0.30);
    font-family: "Shippori Mincho";
    font-size: 19px;
    font-style: normal;
    line-height: 37.78px;
    letter-spacing: 2.85px;
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    font-weight: bold;
}

p.promise-item__title:before {
    content: "";
    width: 32px;
    height: 13px;
    background: url(../img/about/promise_icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -60px;
}

.promise-list {
    padding-right: 68px;
    padding-left: 106px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.promise-item {
    position: relative;
}

p.promise-item__title span {
    color: #3F3F3F;
    text-shadow: 0px 4px 30px rgba(255, 255, 255, 0.30);
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 37.78px;
    /* 251.868% */
    letter-spacing: 2.25px;
    opacity: 0.5;
}

p.promise-item__desc {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.25px;
}

.promise-item ul {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promise-item ul li {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 233%;
    letter-spacing: 2.25px;
    padding-left: 42px;
    position: relative;
}

.promise-item ul li:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 1px;
    background: #3f3f3f;
    left: 0;
    top: 50%;
}

/*------------------------3つの約束 END-----------------------*/

/*------------------------代表挨拶-----------------------*/
section.message {
    padding: 100px 60px 168px;
    background: #EDEDF1;
    position: relative;
}

.message-title h3 {
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 37.78px;
    letter-spacing: 4.2px;
}
.message-title p {
    padding-bottom: 114px;
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.4px;
	padding-top:14px;
}
.message-body p {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.25px;
}

.message-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.message-inner {
    max-width: 806px;
    margin: auto;
    position: relative;
}

.message-image {
    position: absolute;
    top: -150px;
}

.message-image:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -55px;
    top: -55px;
    z-index: -2;
    opacity: 0.5;
    background: #9E9E9F;
}

/*------------------------代表挨拶 END-----------------------*/

/*------------------------スタッフ紹介-----------------------*/

main.page section.staffs {
    padding: 152px 60px 140px;
}

.staffs-inner {
    max-width: 880px;
    margin: auto;
    position: relative;
    left: 80px;
}



.staffs-title h3 span {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    line-height: 252%;
    letter-spacing: 2.4px;
    margin-left: 9px;
}

.staffs-title h3 {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 360%;
    letter-spacing: 1.9px;
    background: white;
    padding-left: 50px;
}

.staffs-title:before {
    width: 162px;
    height: 162px;
    content: "";
    position: absolute;
    border: 1px solid #3f3f3f;
    top: -46px;
    left: -1px;
    z-index: -1;
}

.staffs-title {
    position: relative;
    padding-bottom: 128px;
}

.staffs-list {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.staffs-item {
    width: calc(100% / 3 - 43px);
}

.staffs-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 133px;
}

.staffs-item__image img {
    border-radius: 100px;
}

p.staffs-content__position {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 252%;
    letter-spacing: 2.4px;
}

p.staffs-content__name {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 252%;
    letter-spacing: 3px;
}

p.staffs-content__desc {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 273%;
    letter-spacing: 2.2px;
    font-size: 12px;
}

.staffs-content {
    margin-top: 30px;
}

.staffs-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.staffs-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*------------------------スタッフ紹介 END-----------------------*/

/*------------------------キャリア支援-----------------------*/

main.page section.career {
    padding: 110px 60px 156px;
    background: #919499;
}

.career-inner {
    max-width: 860px;
    margin: auto;
}


.career-title h3 {
    color: #FFF;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 24px;
    font-style: normal;
    line-height: 252%;
    letter-spacing: 3.6px;
    font-weight: 400;
    padding-bottom: 40px;
}

.career-body p {
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    line-height: 267%;
    letter-spacing: 2.25px;
}

.career-list div p {
    transform: skew(20deg);
    color: #99A0A3;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 2.7px;
}

.career-list div {
    background: white;
    width: 205px;
    height: 68px;
    text-align: center;
    transform: skew(-20deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-list {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    justify-content: center;
    margin-top: 52px;
}


/*------------------------キャリア支援 END-----------------------*/


/*------------------------NEWS一覧-----------------------*/
main.page section.archive {
    padding-bottom: 185px;
}

.archive-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 48px 40px;
    max-width: 1080px;
    margin: auto;
}

.news-item {
    width: calc(100% / 3 - 27px);
}

.news-item__thumbnail {
    margin-bottom: 22px;
    overflow: hidden;
}

.news-item__thumbnail a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 337 / 247;
    transition: all 0.5s;
}

.news-meta h4 {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 2.25px;
    margin-top: 12px;
    margin-bottom: 4px;
}

p.news-meta__date.font-en {
    color: #3F3F3F;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.25px;
}

.news-meta {
    position: relative;
}



ul.page-numbers {
    display: flex;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 146px;
    font-family: sans-serif;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 6px 12px;
    text-decoration: none;
    color: #000;
    border-radius: 0px;
    font-weight: 500;
}

.pagination a,
.pagination span {
    display: flex;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    width: 39px;
    height: 39px;
    justify-content: center;
    align-items: center;
}


.pagination .current {
    background-color: #444;
    color: #fff;
    pointer-events: none;
}

ul.page-numbers li {
    font-family: "Prociono", serif;
    font-size: 16px;
    color: #3f3f3f;
}

ul.page-numbers {
    display: flex;
    gap: 26px;
}
.page-numbers li:has(> a:empty),
.page-numbers li:has(> span:empty) {
  display: none;
}

/*------------------------NEWS一覧 END-----------------------*/

/*------------------------NEWS詳細-----------------------*/
main.page section.single {
    padding-right: 0;
}

.single-wrapper {
    display: flex;
    flex-direction: row;
    gap: 80px;
	max-width: 1440px;
    margin-left: auto;
}

.single-inner {
    width: calc(100% - 480px);

    padding-bottom: 164px;
}

.side {
    position: sticky;
    width: 400px;
    background: #DCDFE4;
    right: 0;
    top: 0;
}

.news-meta.news-meta--single {
    display: flex;
    align-items: center;
    gap: 40px;
}


.single-inner h2 {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: 185%;
    letter-spacing: 4.05px;
    padding-top: 18px;
}

.single-share {
    display: flex;
    gap: 20px;
    padding-top: 46px;
    justify-content: flex-end;
    padding-right: 26px;
    align-items: center;
}

.single-share {
    display: flex;
    gap: 20px;
}

.single-share ul li img {
    transform: scale(0.85);
}

.single-share ul {
    display: flex;
    align-items: center;
    gap: 16px;
}

.single-share ul li a {
    transition: all 0.3s;
}

.single-share ul li a:hover {
    opacity: 0.3;
}

.single-share p.font-en {
    color: #3F3F3F;
    font-family: Prociono;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 37.78px;
    letter-spacing: 2.25px;
}

.single-content {
    padding-top: 64px;
}
.single-content .content-button p{
    line-height: 1.6;
    letter-spacing: 1.2px;
    margin: 20px auto;
    color: white;
    font-size: 18px;
}
.single-thumbnail {
	width:70%;
	max-width:650px;
    padding-bottom: 64px;
}

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

.single-share span {
    width: 75px;
    height: 1px;
    background: #3f3f3f;
    margin-right: 12px;
    display: block;
}

.side-inner {
    padding: 250px 92px 250px 82px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.side-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.side-item_thumbnail {
    overflow: hidden;
}

.side-item img {
    width: 100%;
    aspect-ratio: 225 / 165;
    object-fit: cover;
    height: 100%;
}

.side-meta {
    transition: all 0.5s;
}

.side-meta h4 {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 214%;
    letter-spacing: 2.1px;
    padding-top: 16px;
}

p.side-meta__date.font-en {
    color: #3F3F3F;
    font-family: Prociono;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.25px;
}

.side-item a:hover img {
    transform: scale(1.1);
}

.side-item__thumbnail {
    overflow: hidden;
}

.side-item__thumbnail img {
    transition: all 0.5s;
}

.side-item a:hover .side-meta {
    opacity: 0.3;
}

.side-category {
    margin-top: 56px;
}

p.side-category__title {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.1px;
    padding-bottom: 34px;
}

.side-category ul li a {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.1px;
    border-bottom: 1px solid #3f3f3f;
    display: block;
    padding: 8px 0;
    transition: all 0.3s;
}

.side-category ul li a:hover {
    opacity: 0.6;
}

.news-item.news-item--slide {
    width: 100%;
}
figure.wp-block-video {
    text-align: left !important;
}
.single-content figure{
    width: 70%;
}
.single-inner .single-content a {
    text-decoration: underline;
}
/*------------------------NEWS END-----------------------*/



/*-------------stores-----------------*/

main.page section.stores {
    padding-bottom: 150px;
}

.stores-inner {
    max-width: 800px;
    margin: auto;
}

.stores-item h4 {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.85px;
    padding-bottom: 34px;
}

.stores-item__main {
    aspect-ratio: 806 / 442;
    position: relative;
}

.stores-item__main img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    aspect-ratio: 806 / 442;
}

.stores-item__main img.active {
    opacity: 1;
    z-index: 1;
    aspect-ratio: 806 / 442;
}

.stores-inner .thumbs-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 800px;
}

.stores-inner.thumbs {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.stores-inner .thumbs img {
    width: calc(100% / 3);
    cursor: pointer;
    object-fit: cover;
    aspect-ratio: 268 / 150;
    transition: opacity 0.3s;
}


.stores-inner .thumbs img:hover {
    opacity: 0.6;
}

.stores-inner .thumbs-current {
    z-index: 2;
    opacity: 1;
}

.stores-inner.thumbs-next {
    z-index: 1;
}

.stores-inner .thumbs-wrapper {
    height: 158px;
    margin-top: 38px;
}

.stores-inner .line {
    position: relative;
    margin-top: 30px;
    width: 50%;
    height: 1px;
    background: rgb(63 63 63 / 30%);
}

ul.store-list {
    width: 220px;
    padding-bottom: 65px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

ul.store-list li a {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 19px;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 2.85px;
    display: flex;
    padding-bottom: 16px;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
    border-bottom: 1px solid #3f3f3f;
}

.stores-item {
    margin-bottom: 80px;
}

.stores-item:last-of-type {
    margin-bottom: 0px;
}

.stores-content {
    display: flex;
    gap: 60px;
    padding-top: 60px;
}

.stores-message {
    width: calc(50% - 60px);
}

.stores-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    /* margin-left: auto; */
    padding-top: 0;
    gap: 40px;
}


.stores-message__image img {
    width: 100%;
}

.stores-message__image {
    max-width: 133px;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 30px;
}

.stores-message__body h5 {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 252%;
    letter-spacing: 2.4px;
    padding-bottom: 20px;
}

.stores-message-desc {
    display: flex;
    gap: 20px;
    position: relative;
}

.stores-message-desc:after {
    content: "";
    width: 100%;
    height: 50px;
    background: #ffffff;
    left: 0;
    bottom: 0;
    z-index: 2;
    position: absolute;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.stores-message-desc p {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 273%;
    letter-spacing: 2.2px;
    max-height: 200px;
    overflow-y: scroll;
    padding-bottom: 40px;
    /* スクロールバー非表示設定を追加 */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE, Edge */
}


.stores-message-desc span {
    writing-mode: vertical-rl;
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 1.8px;
    padding-right: 14px;
    margin-top: 10px;
    border-right: 1px solid rgb(63 63 63 / 80%);
}


.stores-message-desc p::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

/*------------------------stores END------------------------*/


/*------------------------Menu 一覧------------------------*/


body.menu {
    background: #EDEDF1;
}

.menu-inner {
    max-width: 800px;
    margin: auto;
}

h4.menu-body__title {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
    letter-spacing: 2.85px;
    margin-bottom: 12px;
}


p.menu-body__desc {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 250%;
    letter-spacing: 1.8px;
}

.menu-item {
    display: flex;
    gap: 72px;
    align-items: center;
    margin-bottom: 70px;
}

.menu-item:last-of-type {
    margin-bottom: 0;
}

.menu-item__image {
    aspect-ratio: 407 / 284;
    overflow: hidden;
    width: 407px;
}

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

.menu-body {
    width: calc(100% - 480px);
}

ul.menu-list {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}

ul.menu-list li {
    display: flex;
    justify-content: space-between;
}

p.menu-list__title {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 250%;
    letter-spacing: 1.8px;
}

p.menu-list__price.font-en {
    color: #3F3F3F;
    text-align: right;
    font-family: Prociono;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 2.25px;
}

.hv-trigger.more-btn-wrapper {
    margin-top: 24px;
}

main.page section.menu {
    padding-bottom: 212px;
}

/*------------------------Menu END------------------------*/



/*-------------Menu 詳細------------------*/

main.page section.menu-single {
    padding-top: 90px;
    padding-left: 60px;
    padding-right: 60px;
}

.menu-single-item {
    display: flex;
	align-items:center;
    gap: 52px;
    max-width: 800px;
    margin: auto;
}

.menu-single-item__left {
    width: 422px;
}

.menu-single-item__right {
    width: calc(100% - 474px);
}

.menu-single-inner {
    max-width: 1080px;
    margin: auto;
    position: relative;
    padding: 0 60px 48px;
}

/* .menu-single-inner:before {
    content: "";
    width: 100%;
    height: 380px;
    position: absolute;
    background: white;
    bottom: 0;
    left: 0;
} */


h3.menu-single-title {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 252%;
    letter-spacing: 3.6px;
    max-width: 800px;
    margin: auto;
    padding-bottom: 60px;
}


p.menu-single-body__desc:first-of-type {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 214%;
    letter-spacing: 2.1px;
}

.menu-single-item2 {
    text-align: center;
    margin-top: 120px;
    background: white;
    padding: 80px;
}
p.menu-single-body__desc2 {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 250%;
    letter-spacing: 1.8px;
    max-width: 265px;
    text-align: left;
    margin: auto;
    margin-top: 24px;
}
.ba-item>div {
    width: 50%;
    aspect-ratio: 290 / 200;
    position: relative;
}
.ba-item>div:last-of-type {
    position: relative;
    left: -1px;
}
.ba-item>div:first-of-type:before {
    content: "Before";
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 18px;
    font-style: normal;
    line-height: 252%;
    letter-spacing: 2.16px;
    position: absolute;
    bottom: 6px;
    left: 20px;
}

.ba-item>div:last-of-type:before {
    content: "After";
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 18px;
    font-style: normal;
    line-height: 252%;
    letter-spacing: 2.16px;
    position: absolute;
    bottom: 6px;
    left: 20px;
}


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

.ba-item {
    display: flex;
    max-width: 576px;
    margin: auto;
    position: relative;
    margin-bottom: 28px;
}

.ba-item:last-of-type {
    margin-bottom: 0;
}





/*-------------Menuスライダー 詳細ページ------------------*/

.menu-single-item__main {
    aspect-ratio: 422 / 290;
    position: relative;
    width: 100%;
    max-width: none;
}

.menu-single-item__main img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    aspect-ratio: 422 / 290;
    transition: opacity 0.6s ease;
    /* ←これを追加！ */
}


.menu-single-item__main img.active {
    opacity: 1;
    z-index: 1;
    aspect-ratio: 422 / 290;
}

.menu-single-item .thumbs-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
}

.menu-single-item .thumbs {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.menu-single-item .thumbs img {
    width: calc(100% / 3);
    cursor: pointer;
    object-fit: cover;
    aspect-ratio: 140 / 98;
    transition: all 0.3s;
}

.menu-single-item .thumbs img:hover {
    opacity: 0.6;
}

.menu-single-item .thumbs-current {
    z-index: 2;
    opacity: 1;
}

.menu-single-item .thumbs-next {
    z-index: 1;
}

.menu-single-item .thumbs-wrapper {
    height: 98px;
    margin-top: 0;
}


section.ba {
    padding-top: 168px;
}

.ba-inner {
    max-width: 800px;
    margin: auto;
}

.ba-title h3 {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 360%;
    letter-spacing: 1.9px;
    background: white;
    padding-left: 62px;
    background: #EDEDF1;
}

.ba-title:before {
    width: 162px;
    height: 162px;
    content: "";
    position: absolute;
    border: 1px solid #3f3f3f;
    top: -46px;
    left: -1px;
    z-index: -1;
}

.ba-title {
    position: relative;
}

section.recommend {
    padding-top: 77px;
}

.recommend-inner {
    max-width: 820px;
    margin: auto;
    position: relative;
}

.recommend-title {
    text-align: center;
    position: relative;
}

.recommend-title span {
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 252%;
    letter-spacing: 2.1px;
    display: inline-block;
    background: #ededf1;
    padding: 0 80px;
}

.recommend-item {
    padding-top: 34px;
    padding-bottom: 54px;
    display: flex;
    gap: 28px;
    justify-content: center;
}

.recommend-item ul li:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 8px;
    background: url(../img/menu/check.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 8px;
}

.recommend-item ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.recommend-item ul li {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    line-height: 200%;
    letter-spacing: 1.8px;
    position: relative;
    padding-left: 24px;
}

/* 初期状態：線を0幅に */
.recommend-title::before,
.recommend-inner::before {
    width: 0;
    transition: width 1.6s ease;
    background: #3f3f3f85;
    height: 1px;
    position: absolute;
    content: "";
    z-index: -1;
    /* z-index調整 */
}

/* 線の位置指定 */
.recommend-title::before {
    left: 0;
    top: 50%;
}

.recommend-inner::before {
    right: 0;
    bottom: 0;
}

/* アニメーション後の状態 */
.recommend-title.animate-line::before {
    width: calc(100% - 120px);
}

.recommend-inner.animate-line::before {
    width: calc(100% - 120px);
}







section.flow {
    padding-top: 76px;
    padding-bottom: 116px;
}

h4.flow-title {
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 2.1px;
    margin-bottom: 45px;
}

.flow-item {
    display: flex;
    gap: 64px;

}

.flow-movie {
    width: calc(50% + 20px);
    height: auto;
    aspect-ratio: 409 / 226;
    background: #919191;
}

.flow-movie video {
    width: 100%;
}

.flow-list ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    background: #3f3f3f;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 100%;
}

.flow-list ul li:after {
    content: "";
    width: 1px;
    height: calc(100% + 5px);
    background: #3f3f3f;
    position: absolute;
    left: 2px;
    top: 50%;
}

.flow-list ul li {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 252%;
    letter-spacing: 1.8px;
    padding-left: 28px;
    position: relative;
    white-space: nowrap;
}

.flow-list {
    display: flex;
    gap: 40px;
    padding: 10px;
}

.flow-list ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.flow-list ul:last-of-type {
    margin-top: auto;
}

.flow-list ul:last-of-type li:last-of-type:after {
    display: none;
}

.flow-inner {
    max-width: 800px;
    margin: auto;
}

.price-inner {
    padding: 64px 60px 112px;
    background: white;
    margin: auto;
    max-width: 1080px;
}

h4.price-title {
    color: #38383B;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 252%;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 34px;
}

.price-item {
    max-width: 400px;
    margin: auto;
    padding-bottom: 20px;
}

.price-item__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.price-item__title p:first-of-type {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.1px;
}

.price-item__title p:last-of-type {
    color: #3F3F3F;
    text-align: right;
    font-family: Prociono;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 2.25px;
}

.price-item__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

p.price-item__desc {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 30px;
}
p.price-item__desc2 {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 30px;
    padding-top: 4px;
}
p.price-item__desc:before {
    content: "";
    width: 15px;
    height: 1px;
    background: #3f3f3f;
    position: absolute;
    left: 0;
    top: 9px;
}

.price-note {
    max-width: 400px;
    margin: auto;
    border: 1px solid #3f3f3f;
    margin-top: 16px;
}

.price-note p {
    color: #000;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 1.5px;
}


.precautions {
    border: 1px solid #3f3f3f;
    margin-top: 68px;
    max-width: 800px;
    margin: auto;
    margin-top: 74px;
    padding: 58px 46px 42px;
    position: relative;
}

p.precautions-title {
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 252%;
    letter-spacing: 1.8px;
    margin-bottom: 24px;
    position: absolute;
    top: -20px;
    left: calc(50% - 82px);
    background: white;
    padding: 0 50px;
}

.precautions ul li {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 250%;
    letter-spacing: 1.32px;
}

.precautions ul li span.strong {
    font-weight: bold;
}

section.QA {
    padding: 100px 60px 140px;
}

.QA-inner {
    max-width: 820px;
    margin: auto;
}





.QA-item__title p {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.1px;
}

p.QA-item__desc {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 233%;
    letter-spacing: 1.8px;
}

.toggle-icon {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 0;
}

.QA-item {
    border-bottom: 1px solid #b3b3b3;
    padding: 28px 72px 28px 116px;
}

.QA-item__title {
    position: relative;
    cursor: pointer;
}



.QA-item__desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease, opacity 0.8s ease, padding 0.8s ease;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* 開いているとき */
.QA-item.active .QA-item__desc {
    max-height: 500px;
    /* 内容に応じて調整 */
    opacity: 1;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* トグルボタンの変化（＋→×） */
.toggle-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.toggle-icon span {
    display: block;
    position: absolute;
    background: #3f3f3f;
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transition: transform 0.3s;
}

/* 縦棒（＋） */
.toggle-icon span:nth-child(2) {
    transform: rotate(90deg);
}

/* ×マークに切り替え */
.QA-item.active .toggle-icon span:nth-child(1) {
    transform: rotate(45deg);
}

.QA-item.active .toggle-icon span:nth-child(2) {
    transform: rotate(-45deg);
}

h4.QA-title {
    margin-bottom: 24px;
}

h4.other-title {
    color: #3F3F3F;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 252%;
    letter-spacing: 2.1px;
    margin-bottom: 62px;
}

.other-inner {
    max-width: 920px;
    margin: auto;
}

.other-item__thumbnail {
    aspect-ratio: 288 / 200;
    margin-bottom: 28px;
}

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

.other-item {
    width: calc(100% / 3 - 14px);
}

.other-item-list {
    display: flex;
    gap: 28px;
}

p.other-item__title {
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 252%;
    letter-spacing: 2.85px;
}

p.other-item__desc {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 250%;
    letter-spacing: 1.8px;
}

section.other {
    background: white;
    padding: 92px 60px 136px;
}


section.other .more-btn.more-btn--back {
    text-align: center;
}


/*-------------Menu 詳細 END------------------*/

body.contact {
    background: #76767B;
}


.heading.heading--contact {
    background: url(../img/contact_heading.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

section.contact-form {
    padding: 54px 60px 200px;
}

.contact-form-inner {
    max-width: 800px;
    margin: auto;
}


.heading.heading--contact * {
    position: relative;
    color: white;
}

.heading.heading--contact:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: #76767B;
    background: linear-gradient(180deg, rgba(118, 118, 123, 0) 0%, rgba(118, 118, 123, 0) 0%, rgba(118, 118, 123, 0.6) 53%, rgba(118, 118, 123, 1) 100%, rgba(118, 118, 123, 0.5) 0%);
}


body.contact .footer-info {
    display: none;
}

.sp_block {
    display: none;
}















/*--------------------------------------------*/
/*フォーム*/
/*--------------------------------------------*/
.form-step ul {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    gap: 10px;
}

.form-step ul li {
    color: white;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    max-width: 220px;
    background: #d4debc;
}

.form-step ul li.active {
    background: var(--main);
}

input[type=text],
input[type=email],
dd.form__input.form-input.form-input--tel input,
dd.form__input.form-input.form-input--pt3 input {
    border: 0;
    line-height: 2em;
    background: white;
    border-color: #d9d9d9;
    width: 100%;
    padding: 15px 20px;
    font-weight: normal;
    height: 68px;
    color: #3f3f3f;
    font-size: 18px;
}

textarea {
    border: 0;
    font-size: 18px;
    line-height: 1.6em;
    background: white;
    border-color: #d9d9d9;
    width: 100%;
    padding: 15px 20px;
    height: 358px;
}

select {
    border: 0;
    line-height: 2em;
    background: white;
    border-color: #d9d9d9;
    width: 100%;
    padding: 15px 20px;
    font-weight: normal;
    height: 68px;
    color: #3f3f3f;
    font-size: 18px;
}

dd.form__input.form-input.form-input--select {
    position: relative;
}

dd.form__input.form-input.form-input--select select {
    width: 100%;
    appearance: none;
    /* ▼ を消す */
    -webkit-appearance: none;
    -moz-appearance: none;
}

dd.form__input.form-input.form-input--select::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    background: url(../img/select-icon.svg);
    transform: translateY(-50%);
    pointer-events: none;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}



option {
    color: #3f3f3f;
}

input[type=submit] {
    padding: 15px;
    background: #C20000;
    min-width: 250px;
    color: white;
}

.form__submit {
    margin-top: 50px;
    text-align: center;
}

label {
    line-height: 0;
}

dt,
dd {
    font-weight: 500;
}

.form {
    margin: auto;
    max-width: 800px;
}

dl.form__item {
    display: flex;
    padding: 14px 10px;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

dt.form__label p {
    color: white;
}

.form-item-wrap {
    display: flex;
}

.form-item-wrap dl.form__item {
    width: 50%;
}

dl.form__item dd {
    width: 100%;
    margin: 0;
    font-weight: normal;
}

dt.form__label span {
    background: var(--main);
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    margin-left: 10px;
    font-weight: normal;
}

.form-radio label {
    display: inline-block;
}

.form-radio label:not(:first-of-type) {
    margin-left: 15px;
}

.form-radio input+span {
    position: relative;
    display: block;
    font-size: 0.9375rem;
    line-height: 1;
    cursor: pointer;
    padding: 0px 0px 0px 1.5em;
}

.form-radio input+span::before {
    content: "";
    width: 0.9375rem;
    height: 0.9375rem;
    display: block;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    -o-border-image: initial;
    border-image: initial;
    border-radius: 50%;
}

.form-radio input+span::after {
    content: "";
    width: 0.4375rem;
    height: 0.4375rem;
    position: absolute;
    top: 50%;
    left: 0.25rem;
    transform: translateY(-50%);
    opacity: 0;
    padding: 0.125rem;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    -o-border-image: initial;
    border-image: initial;
    border-radius: 50%;
    background: rgb(0, 0, 0);
    transition: all 0.3s ease 0s;
}

.form-radio input:checked+span:after {
    opacity: 1;
}

dd.form__input.form-input.form-input--pt2 {
    display: flex;
    gap: 10px;
    max-width: 340px;
    justify-content: flex-start;
    font-weight: normal;
}

dd.form__input.form-input.form-input--pt3 {
    max-width: 200px;
}

.form-container {
    max-width: 800px;
    margin: auto;
}



.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    max-width: 800px;
    margin: auto;
    margin-top: 30px;
    border-color: var(--sub) !important;
}


.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: normal;
    display: block;
    margin-top: 6px;
}

section.contact a.retry {
    text-decoration: underline;
    color: var(--main);
}

.contact-thanks {
    background: white;
    padding: 40px;
}

.contact-thanks h4 {
    font-size: 24px;
    color: var(--main);
    padding-bottom: 20px;
}

section.contact.contact--thanks {
    padding-top: 0;
}

section.contact.contact--thanks .inner-wrap {
    max-width: 980px;
}

/*  フォーム用ボタン　*/
.more-btn.more-btn--content a {
    padding: 14px 32px;
    font-size: 16px
}

.more-btn button:hover {
    opacity: 0.8;
}

.more-btn.more-btn--confirm button {
    margin: 0;
}

.more-btn.more-btn--confirm {
    display: flex;
    justify-content: center;
    gap: 10px;
}

button.back-btn {
    background: #9c9c9c;
    max-width: 150px;
}




@media screen and (max-width:520px) {
    dl.form__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    dl.form__item dt {
        width: 100%;
    }

    dl.form__item dd {
        width: 100%;
        margin: 0;
    }

    dd.form__input.form-input.form-input--pt3 {
        max-width: none;
    }
}


.main-content p {
    padding-bottom: 28px;
}


.privacy-check {
    text-align: center;
    margin-top: 48px;
}

.privacy-check p span {
    color: white;
    font-size: 15px;
    cursor: pointer;
    position: relative;
}

.privacy-check span.privacy-check__confirm {
    pointer-events: none;
}

.privacy-check span.wpcf7-list-item-label:before {
    content: "";
    width: 16px;
    height: 16px;
    background: white;
    position: absolute;
    border: 0;
    left: -32px;
    top: 4px;
}

.privacy-check.active span.wpcf7-list-item-label:before,
.privacy-check span.privacy-check__confirm:before {
    content: "";
    width: 16px;
    height: 16px;
    background: rgb(162 162 162);
    position: absolute;
    border: 0;
    left: -32px;
    top: 4px;
}

.privacy-check.active span.wpcf7-list-item-label:after,
.privacy-check span.privacy-check__confirm:after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/check-icon.png);
    position: absolute;
    border: 0;
    left: -32px;
    top: 4px;
    background-position: 110% -10%;
    background-repeat: no-repeat;
}

.privacy-check input {
    display: none;
}

section.contact-form.contact-form--confirm dd.form__input.form-input p,
section.contact-form.contact-form--confirm dd.form__textarea.form-textarea p {
    border: 0;
    line-height: 2em;
    background: #A3A3A7;
    border-color: #d9d9d9;
    width: 100%;
    padding: 15px 20px;
    font-weight: normal;
    height: 68px;
    color: white;
    font-size: 18px;
}

section.contact-form.contact-form--confirm dd.form__textarea.form-textarea p {
    height: 348px;
}


.form__submit.form-submit.form-submit--confirm {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


.form__submit.form-submit.form-submit--confirm .more-btn.more-btn--form {
    width: 50%;
}

.form__submit.form-submit.form-submit--confirm button.more-btn-contact,
button.more-btn-back {
    width: 100%;
}


button.more-btn-contact {
    border: 0;
    color: white;
    background: #3f3f3f;
    width: 340px;
    height: 57px;
    position: relative;
    font-size: 14px;
    cursor: pointer;
}

button.more-btn-contact span {
    display: block;
    height: 1px;
    background: #ffffff;
    position: absolute;
    width: 22px;
    left: calc(100% - 42px);
    bottom: 25px;
    transition: width 0.2s, opacity 0.3s 0.15s;
}

button.more-btn-contact:hover,
button.more-btn-back:hover {
    opacity: 1;
}

button.more-btn-contact span:before {
    content: "";
    width: 5px;
    display: block;
    height: 1px;
    background: #ffffff;
    position: absolute;
    transform: rotate(45deg);
    right: 0px;
    bottom: 2px;
}

button.more-btn-contact.is-hover span {
    width: 30px;
    opacity: 0;
}

button.more-btn-contact span:before {
    content: "";
    width: 5px;
    display: block;
    height: 1px;
    background: #ffffff;
    position: absolute;
    transform: rotate(45deg);
    right: 0px;
    bottom: 2px;
}



button.more-btn-back {
    border: 0;
    color: white;
    /* background: #3f3f3f; */
    width: 100%;
    height: 57px;
    position: relative;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid white;
}

button.more-btn-back span {
    display: block;
    height: 1px;
    background: #ffffff;
    position: absolute;
    width: 22px;
    right: calc(100% - 42px);
    bottom: 25px;
    transition: width 0.2s, opacity 0.3s 0.15s;
}

button.more-btn-back span:before {
    content: "";
    width: 5px;
    display: block;
    height: 1px;
    background: #ffffff;
    position: absolute;
    transform: rotate(-45deg);
    left: 0px;
    bottom: 2px;
}

button.more-btn-back.is-hover span {
    width: 30px;
    opacity: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
    display: none;
}

.wpcf7 form.invalid,
.wpcf7 form.sent {
    display: block !important;
    /* フォームを強制的に表示し続ける */
}



/*--------------------popup-----------------------------*/

.popup-complete {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3e3c45d9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-inner {
    background: #EDEDF1;
    padding: 64px 68px 100px;
    max-width: 636px;
    position: relative;
}

.popup-close {
    margin-top: 0;
    padding: 8px 16px;
    border: 0;
    position: absolute;
    right: 0;
    top: 15px;
}

p.mainl-confirm__desc {
    text-align: left;
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 286%;
    letter-spacing: 2.1px;
}

.popup-inner h4 {
    font-size: 24px;
    text-align: left;
    margin-bottom: 34px;
    font-weight: 600;
    color: #3f3f3f;
}

.mail-confirm {
    text-align: left;
}

.mail-confirm p {
    font-size: 16px;
    color: #3F3F3F;
    font-family: "Shippori Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 252%;
    margin-bottom: 10px;
    letter-spacing: 2.4px;
}

p.mail-confirm__text {
    background: white;
    padding: 15px 34px;
    font-size: 18px;
    line-height: 200%;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

/*--------------------------------------------*/
/*フォームここまで*/
/*--------------------------------------------*/


section.notice {
    padding-bottom: 180px;
}

body.legalnotice {
    background: #EDEDF1;
}

.notice-inner {
    max-width: 1080px;
    margin: auto;
    background: white;
    padding: 64px 140px 112px;
}

.notice-item p {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 252%;
    letter-spacing: 2.1px;
}

.notice-item p:last-of-type {
    width: 60%;
}

.notice-item p:first-of-type {
    width: 40%;
}

.notice-item {
    display: flex;
    padding: 36px 0;
    border-bottom: 1px solid #3f3f3f;
    align-items: center;
}

.notice-item.border-none {
    border-bottom: 0;
}

.more-btn.more-btn--bg {
    background: #76767B;
}

.more-btn.more-btn--bg {
    border: 0;
    color: white;
    width: 340px;
    height: 57px;
    position: relative;
    font-size: 14px;
    cursor: pointer;
}

.more-btn.more-btn--bg span {
    display: block;
    height: 1px;
    background: #ffffff;
    position: absolute;
    width: 22px;
    left: calc(100% - 42px);
    bottom: 25px;
    transition: width 0.2s, opacity 0.3s 0.15s;
}

.more-btn.more-btn--bg span:before {
    content: "";
    width: 5px;
    display: block;
    height: 1px;
    background: #ffffff;
    position: absolute;
    transform: rotate(45deg);
    right: 0px;
    bottom: 2px;
}

.more-btn.more-btn--bg .is-hover span {
    width: 30px;
    opacity: 0;
}

.more-btn.more-btn--bg span:before {
    content: "";
    width: 5px;
    display: block;
    height: 1px;
    background: #ffffff;
    position: absolute;
    transform: rotate(45deg);
    right: 0px;
    bottom: 2px;
}

.more-btn.more-btn--bg a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    background: #76767B;
}

.more-btn-wrapper.more-btn-wrapper--bg {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

p.slide-scroll.tb_block {
    display: none;
}

.tb_block.tb-message-image {
    display: none;
}

.stores .stores-info {
    padding-top: 0;
}




h2.wp-block-heading {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 145%;
    letter-spacing: 3.6px;
    margin-bottom: 24px;
}

h3.wp-block-heading {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 147%;
    letter-spacing: 2.85px;
    margin-bottom: 22px;
}

h4.wp-block-heading {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 143%;
    letter-spacing: 2.1px;
    margin-bottom: 20px;
}

.single-content p {
    color: #000;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 286%;
    letter-spacing: 2.1px;
    margin-bottom: 44px;
}


.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 0;
    text-align: center;
    color: white;
}

/*----------------------------------------タブレット以下---------------------------------------------*/

@media screen and (max-width:1080px) {
    .tb_none {
        display: none;
    }

    .tb_block {
        display: block;
    }

    .indicator {
        display: none;
    }

    p.slide-scroll.tb_block {
        display: block;
    }



    h2.catch {
        top: 15%;
        left: 68%;
    }

    h1 img {
        width: 130px;
    }

    header {
        padding-top: 23px;
        padding-left: 25px;
    }

    .hambarger-btn {
        top: 10px;
    }

    .menu-top-body {
        width: 100%;
    }

    .menu-top-item__main {
        aspect-ratio: 330 / 154;
        position: relative;
        width: 100%;
        max-width: none;
        margin-top: 20px;
    }

    .thumbs-wrapper {
        height: 148px;
        margin-top: 24px;
        max-width: none;
    }

    .archive-list__item.archive-list__item--top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .archive-list h4 {
        width: 100%;
    }

    .content-inner.content-inner--top {
        max-width: 600px;
    }

    .floating-btn {
        right: 40px;
    }

    .hv-trigger.more-btn-wrapper {
        margin-top: 36px;
    }

    .stores-top-item__main img {
        aspect-ratio: 330 / 154;
    }

    .stores-top .thumbs-wrapper {
        height: 118px;
        margin-top: 24px;
    }

    .stores-top .line {
        width: 100%;
        margin-top: 24px;
    }

    .stores-info-wrapper {
        width: 100%;
        padding-top: 40px;
        gap: 40px;
    }

    .stores-info {
        padding-top: 0;
    }

    .stores-top .stores-sns {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .footer__logo {
        width: 30%;
        border-bottom: 1px solid #ffffff6e;
    }

    .footer__nav {
        width: calc(70% - 108px);
    }

    .footer__logo img {
        max-width: 100%;
    }

    .heading {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .mvv-item {
        background-position: 0 0 !important;
    }

    .mvv-item-desc {
        width: 70%;
    }

    .eyore {
        position: absolute;
        top: 0;
        right: 0px;
    }

    .heading h2 {
        padding: 46px 0 10px;
    }

    .message-image {
        width: 150px;
        left: -40px;
    }

    .message-image img {
        width: 100%;
        height: 100%;
    }

    .staffs-inner {
        max-width: 540px;
        margin: auto;
        position: relative;
        left: 0;
    }

    .staffs-item {
        width: calc(100% / 2 - 32px);
    }

    main.page section.archive {
        padding-bottom: 185px;
        padding-left: 60px;
        padding-right: 60px;
    }

    .category-news a {
        font-size: 11px;
    }

    .news-meta h4 {
        line-height: 200%;
    }

    .single-wrapper {
        flex-direction: column;
        gap: 0;
    }

    main.page section.single {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-wrapper {
        max-width: none;
        margin: auto;
    }

    .single-inner {
        width: 100%;
        max-width: 720px;
        padding-bottom: 100px;
        margin: auto;
        padding-left: 60px;
        padding-right: 60px;
    }

    .side {
        position: static;
        width: 100%;
    }


    .side-item-wrapper {
        display: flex;
        gap: 16px;
        /* アイテム間の余白 */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        /* スクロールバーがかぶらないよう余白 */
        flex-direction: row;
        padding-bottom: 50px;
    }

    .news-item.news-item--slide {
        flex: 0 0 auto;
        width: calc(100% / 2 - 6px);
        scroll-snap-align: start;
        overflow: hidden;
        position: relative;
        z-index: 2;
    }

    .more-btn.more-btn--news p {
        display: none;
    }

    .more-btn.more-btn--news {
        right: 6px;
    }


    /* スクロールバーを明示的に表示する */
    .side-item-wrapper {
        overflow-x: auto;
        scrollbar-width: auto;
        /* Firefox */
    }

    .side-item-wrapper::-webkit-scrollbar {
        height: 4px;
        display: block;
        background: #c5c5c5;
        /* Chrome/Safari */
    }

    .side-item-wrapper::-webkit-scrollbar-thumb {
        background: #777777;
        border-radius: 4px;
    }

    .side-item-wrapper::-webkit-scrollbar-track {
        background: transparent;
    }

    p.slide-scroll {
        color: #3F3F3F;
        font-family: "Shippori Mincho";
        font-size: 13px;
        font-style: normal;
        font-weight: 800;
        line-height: 156%;
        letter-spacing: 1.95px;
        position: relative;
        top: -10px;
    }

    .side-category {
        margin-top: 56px;
        width: 50%;
    }

    .side-inner {
        padding: 100px 92px 100px 82px;
    }

    .stores .thumbs-wrapper {
        height: 118px;
        margin-top: 24px;
    }

    main.page section.stores {
        padding: 130px 60px 225px;
    }

    .stores-inner {
        max-width: 600px;
        margin: auto;
    }

    .stores-inner .line {
        width: 100%;
    }

    .stores-content {
        flex-direction: column;
        gap: 40px;
        padding-top: 28px;
    }

    .stores .stores-info-wrapper {
        order: 1;
        padding-top: 0;
        gap: 20px;
    }

    .stores .stores-message {
        order: 2;
    }

    .tb_block.tb-message-image {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-bottom: 30px;
    }

    .stores-message {
        width: 100%;
    }

    .tb_block.tb-message-image h5 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .tb_block.tb-message-image h5 span:last-of-type {
        font-size: 18px;
    }

    .stores-message__image {
        margin-bottom: 0;
    }

    main.page section.menu {
        padding-bottom: 212px;
        padding-left: 60px;
        padding-right: 60px;
        padding-top: 20px;
    }

    .menu-inner {
        max-width: 480px;
        margin: auto;
    }

    .menu-item {
        flex-direction: column;
        gap: 28px;
    }

    .menu-item__image {
        width: 100%;
    }

    .menu-body {
        width: 100%;
    }

    .menu-single-item {
        flex-direction: column;
        max-width: 480px;
    }

    .menu-single-item__right {
        width: 100%;
        padding-right: 0;
    }

    main.page section.menu-single {
        padding-top: 20px;
        padding-left: 0;
        padding-right: 0;
    }

    .menu-single-item__left {
        width: 100%;
    }

    h3.menu-single-title {
        max-width: 480px;
        padding-bottom: 20px;
    }

    p.menu-single-body__desc:first-of-type {
        margin-bottom: 20px;
    }

    .menu-single-inner:before {
        height: 80%;
    }

    .menu-single-inner {
        padding: 0 60px 80px;
    }

    .menu-single-inner .line {
        margin-top: 48px;
    }

    main.page section.ba {
        padding-left: 60px;
        padding-right: 60px;
    }

    .ba-inner {
        max-width: 600px;
        margin: auto;
    }

    .ba-item {
        display: flex;
        max-width: 520px;
        margin: auto;
        position: relative;
        margin-bottom: 14px;
    }

    main.page section.recommend {
        padding-left: 60px;
        padding-right: 60px;
    }

    main.page section.price {
        padding-left: 60px;
        padding-right: 60px;
        margin-top: 80px;
    }

    section.flow {
        display: none;
    }


    .price-item {
        max-width: 420px;
    }

    .price-note {
        max-width: 420px;
    }

    .price-inner {
        padding: 64px 60px 64px;
    }

    .QA-inner {
        max-width: 520px;
        margin: auto;
    }

    main.page section.QA {
        padding-left: 60px;
        padding-right: 60px;
    }

    .QA-item {
        border-bottom: 1px solid #b3b3b3;
        padding: 28px 22px 28px 0px;
    }

    main.page section.other {
        padding-left: 60px;
        padding-right: 60px;
    }

    p.other-item__title {
        font-size: 16px;
        font-weight: bold;
    }

    main.page section.notice {
        padding-left: 60px;
        padding-right: 60px;
    }

    .notice-inner {
        padding: 64px 60px 112px;
    }


    /*--------------------------フォーム----------------------------*/

    main.page section.contact-form {
        padding-left: 36px;
        padding-right: 36px;
    }

    input[type=text],
    input[type=email],
    dd.form__input.form-input.form-input--tel input,
    dd.form__input.form-input.form-input--pt3 input {
        height: 48px;
        padding: 5px 10px;
        font-size: 16px;
    }

    section.contact-form.contact-form--confirm dd.form__input.form-input p {
        height: 48px;
        padding: 5px 10px;
        font-size: 16px;
    }

    section.contact-form.contact-form--confirm dd.form__textarea.form-textarea p {
        height: 200px;
        overflow-y: scroll;
        padding: 5px 10px;
        font-size: 16px;
    }

    select {
        height: 48px;
        padding: 5px 10px;
        font-size: 16px;
    }

    textarea {
        padding: 5px 10px;
        font-size: 16px;
        height: 250px;
    }

    dl.form__item {
        padding: 14px 0;
        gap: 10px;
    }

    .form-item-wrap {
        gap: 0;
        flex-direction: column;
    }

    dt.form__label p {
        color: white;
        font-size: 14px;
    }

    .form-item-wrap dl.form__item {
        width: 100%;
    }

    .form__submit {
        margin-top: 30px;
        text-align: center;
    }

    button.more-btn-contact {
        width: 240px;
    }

    button.more-btn-contact span {
        width: 18px;
    }

    .form__submit.form-submit.form-submit--confirm {
        gap: 6px;
    }

    button.more-btn-back span {
        width: 18px;
        right: calc(100% - 32px);
    }

    button.more-btn-contact span,
    button.more-btn-contact span {
        left: calc(100% - 32px);
    }

    .popup-complete {
        padding: 80px 36px;
    }

    .popup-inner {
        background: #EDEDF1;
        padding: 53px 34px 60px;
    }

    p.mainl-confirm__desc {
        color: #000;
        font-family: "Shippori Mincho";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 250%;
        letter-spacing: 1.8px;
    }

    p.mail-confirm__text {
        background: white;
        padding: 15px 18px;
        font-size: 14px;
        line-height: 200%;
        letter-spacing: 0.1em;
        margin-bottom: 20px;
    }

    .popup-inner h4 {
        font-size: 18px;
        text-align: left;
        margin-bottom: 20px;
        font-weight: 600;
        color: #3f3f3f;
    }

    .mail-confirm p {
        margin-bottom: 0px;
        font-family: "Shippori Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 252%;
        letter-spacing: 2.1px;
    }

    .more-btn.more-btn--back {
        text-align: center;
        padding-top: 30px;
    }
}




/*----------------------------------------スマホ以下---------------------------------------------*/

@media screen and (max-width:667px) {
    header {
        padding-bottom: 22px;
    }

    .sp_none {
        display: none;
    }

    .sp_block {
        display: block;
    }

    .footer-inner {
        flex-direction: column;
        max-width: 240px;
        gap: 68px;
    }

    .footer__nav {
        width: 100%;
    }

.footer__logo img {
        max-width: 154px;
    }

    .footer__logo {
        width: 100%;
        text-align: center;
        padding-bottom: 50px;
    }

    .footer {
        padding: 110px 60px 200px 60px;
    }

    h2.catch {
        font-size: 14px;
        left: 60%;
    }

    h2.catch span {
        display: inline-block;
        margin-left: 6px;
    }

    span.last-row {
        margin-top: 40px;
    }

    .floating-btn a {
        width: 73px;
        height: 73px;
        padding: 14px;
    }

    .floating-btn p:first-of-type {
        font-size: 9px;
        margin-bottom: 8px;
    }

    .floating-btn p:last-of-type {
        font-size: 8px;
    }

    .floating-btn__arrow span {
        width: 33px;
        left: -20px;
        top: 6px;
    }

    .floating-btn__arrow span:before {
        width: 6px;
        right: 0px;
        bottom: 2px;
    }

    h2.content-title {
        font-size: 18px;
        font-weight: bold;
    }

    section.news-top {
        padding: 70px 36px;
        position: relative;
    }

    .more-btn.more-btn--news p {
        display: none;
    }

    .archive-list h4 a {
        font-size: 14px;
    }

    section.news-top.line-animate::before {
        display: none;
    }

    .more-btn.more-btn--news span:before {
        right: 0px;
        bottom: 2px;
        width: 5px;
    }

    p.archive-list__date.font-en {
        padding: 0 60px 0 14px;
    }

    section.menu-top.section {
        padding: 68px 36px;
        background: #EDEDF1;
    }

    section.menu-top .content-title-wrapper {
        padding-bottom: 42px;
    }

    .menu-top-body h4 {
        font-size: 16px;
    }

    p.menu-top-body__price.font-en {
        font-size: 16px;
    }

    .thumbs-wrapper {
        height: 58px;
        margin-top: 14px;
        max-width: none;
    }

    .more-btn.more-btn--normal p {
        font-size: 12px;
    }

    .more-btn.more-btn--normal span:before {
        right: 0px;
        bottom: 2px;
        width: 5px;
    }

    .menu-top-item:first-of-type {
        margin-bottom: 48px;
    }

    .more-btn.more-btn--all a {
        display: inline-block;
        padding: 0 20px 4px;
        position: relative;
        color: #3F3F3F;
        font-size: 12px;
    }

    .more-btn.more-btn--all.more-btn--menu {
        padding-top: 48px;
    }

	.philosophy-body p {
		font-size: 13px;
    text-align: left;
    line-break: strict;
}

    section.philosophy.section {
        padding: 87px 36px;
        background: url(../img/philosophy.jpg);
        background-size: cover;
        background-position: 85% 50%;
    }

    section.stores-top {
        padding: 64px 36px 100px;
        position: relative;
    }

    p.content-title {
        padding-top: 14px;
        font-size: 12px;
    }

    .tab-menu li p {
        font-size: 15px;
    }

    .tab-menu li::before {
        width: 10px;
    }

    .tab-menu li {
        padding-left: 30px;
    }

    section.stores-top .content-title-wrapper {
        padding-bottom: 54px;
    }

    .stores-top-item h4 {
        font-size: 16px;
        font-weight: bold;
        padding-bottom: 32px;
    }

    .stores-top-item__main {
        aspect-ratio: 330 / 154;
    }

    .stores-top .thumbs-wrapper {
        height: 58px;
        margin-top: 14px;
    }

    .hv-trigger.more-btn-wrapper {
        width: 110px;
    }

    .more-btn.more-btn--normal a {
        display: block;
        width: 110px;
        padding-left: 18px;
    }

    .more-btn.more-btn--normal span {
        left: 50px;
    }

    p.stores-info__map {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 10px;
    }

    .footer-info>div a {
        height: 140px;
    }

    .footer-info>div h3 {
        font-size: 18px;
    }

    .footer-info>div p {
        font-size: 10px;
    }

    .hambarger-btn span:first-of-type {
        width: 34px;
        top: 0;
    }

    .hambarger-btn span:last-of-type {
        width: 18px;
        top: 12px;
    }

    .hambarger-btn {
        position: relative;
        width: 34px;
    }

    .global-menu {
        width: 100%;
        padding-top: 110px;
        padding-left: 100px;
        justify-content: flex-start;
    }

    .hambarger-btn.active span {
        right: 20px;
    }

    .heading h2 {
        font-size: 18px;
        font-weight: bold;
    }

    nav.breadcrumb ul {
        padding-left: 26px;
    }

    .eyore img {
        width: 90px;
    }

    .eyore::after {
        top: calc(100% + 50px);
    }

    .mvv-item-desc__text3 {
        font-size: 12px;
        line-height: 200%;
        font-weight: bold;
    }

    .mvv-item-desc__text2 {
        font-size: 18px;
        font-weight: bold;
    }

    .mvv-item-desc {
        width: 80%;
        padding-right: 60px;
        top: -5px;
        position: relative;
    }

    main.page section.mvv {
        padding-right: 20px;
    }

    .mvv-item {
        height: 160px;
        margin-bottom: 6px;
    }

    .mvv-item-desc__text1 {
        left: -50px;
    }
	
	p.mvv-item-desc__text1.mvv-item-desc__text1--mission img {
    width: 28px;
}
p.mvv-item-desc__text1.mvv-item-desc__text1--mission {
        top: 17px;
    }

	p.mvv-item-desc__text1.mvv-item-desc__text1--vision img {
    width: 48px;
}
    p.mvv-item-desc__text1.mvv-item-desc__text1--vision {
        left: -40px;
        font-size: 23px;
        top: 1px;
    }
p.mvv-item-desc__text1.mvv-item-desc__text1--value img {
    width: 28px;
}
p.mvv-item-desc__text1.mvv-item-desc__text1--value {
        top: 12px;
        left: -28px;
        font-size: 23px;
    }

p.mvv-item-desc__text1.mvv-item-desc__text1--philosophy {
        top: 28px;
        left: -38px;
        font-size: 23px;
    }
p.mvv-item-desc__text1.mvv-item-desc__text1--philosophy img {
    width: 48px;
}
    .mvv-item:before {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255) 70%, rgba(255, 255, 255, 1) 100%);
    }

    .mvv-item.mvv-item--vision:before {
        background: #ffffff;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255) 55%, rgba(255, 255, 255, 1) 100%);
    }

    .mvv-item.mvv-item--value {
        background-position: 16% 0 !important;
    }

    .mvv-item.mvv-item--value:before {
        background: #ffffff;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255) 65%, rgba(255, 255, 255, 1) 100%);
    }

    .mvv-item.mvv-item--philosophy:before {
        background: #ffffff;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255) 80%, rgba(255, 255, 255, 1) 100%);
    }

    .guideline-title p:first-of-type {
        flex-direction: row;
        gap: 0;
    }

    .guideline-title p:first-of-type span:first-of-type,
    .guideline-title p:first-of-type span:last-of-type {
        transform: none;
    }

    .guideline-title p:first-of-type span {
        font-size: 23px;
    }

    main.page section.guideline {
        padding: 60px 36px 98px 24px;
    }

    .guideline-title p:last-of-type span {
        font-size: 13px;
    }

    .guideline-title {
        gap: 10px;
    }

    .guideline-item {
        width: calc(100% - 48px);
    }

    p.guideline-item__desc {
        font-size: 13px;
    }

    .guideline-item:before {
        left: -218px;
    }

    .promise-title h3 {
        font-size: 18px;
        padding-bottom: 65px;
        font-weight: bold;
    }

    main.page section.promise {
        padding: 80px 36px 148px 36px;
    }

    .promise-list {
        padding-right: 0;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        gap: 70px;
    }

    p.promise-item__title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
        font-size: 18px;
    }

    p.promise-item__desc {
        font-size: 14px;
    }

    p.promise-item__title:before {
        content: "";
        width: 32px;
        height: 13px;
        background: url(../img/about/promise_icon.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        left: -50px;
        top: 13px;
        transform: skewX(-15deg);
    }

    .promise-item ul li {
        color: #3F3F3F;
        font-family: "Shippori Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 200%;
        letter-spacing: 2.25px;
        padding-left: 32px;
        position: relative;
    }

    .promise-item ul li:before {
        width: 13px;
    }

    .message-image {
        width: 120px;
        left: 0px;
    }

    .message-image:before {
        left: -15px;
        top: -15px;
    }

    .message-title h3 {
        font-size: 18px;
        font-weight: bold;
        padding-bottom: 10px;
    }
	.message-title p{
		padding-bottom: 48px;
		padding-top:0;
	}
    main.page section.message {
        padding: 100px 36px 74px;
    }

    .message-body p {
        font-size: 14px;
    }

    main.page section.staffs {
        padding: 112px 36px 84px;
    }

    .staffs-list {
        display: flex;
        gap: 40px 16px;
        flex-wrap: wrap;
    }

    .staffs-item {
        width: calc(100% / 2 - 8px);
    }

    p.staffs-content__position {
        color: #000;
        font-family: "Shippori Mincho";
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 162%;
        letter-spacing: 2.4px;
        margin-bottom: 8px;
    }

    p.staffs-content__name {
        font-size: 16px;
    }

    p.staffs-content__desc {
        font-size: 13px;
    }

    .staffs-title {
        position: relative;
        padding-bottom: 84px;
    }

    .staffs-title:before {
        width: 98px;
        height: 98px;
        top: -27px;

    }

    .staffs-title h3 {
        font-size: 16px;
        line-height: 300%;
        padding-left: 20px;
    }

    main.page section.career {
        padding: 80px 36px 107px;
        background: #919499;
    }

    .career-title h3 {
        font-size: 18px;
        font-weight: bold;
    }

    .career-list div {
        transform: skew(-10deg);
        height: 88px;
    }

    .career-list div p {
        transform: skew(10deg);
    }

    .career-list {
        gap: 8px;
    }

    li.nav-logo img {
        width: 180px;
    }

    main.page section.archive {
        padding-bottom: 185px;
        padding: 0 36px 100px;
    }

    .news-item {
        width: calc(100% / 2 - 6px);
    }

    .archive-inner {
        display: flex;
        flex-wrap: wrap;
        gap: 24px 12px;
        max-width: 1080px;
        margin: auto;
    }

    .news-meta h4 {
        color: #3F3F3F;
        font-family: "Shippori Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 200%;
        letter-spacing: 2.1px;
    }

    p.news-meta__date.font-en {
        font-size: 13px;
    }

    /* .archive .news-item:first-of-type {
        width: 100%;
    } */

    .news-item__thumbnail {
        margin-bottom: 14px;
    }

    p.archive-list__date.font-en {
        padding: 0;
    }

    .archive p.archive-list__date.font-en {
        line-height: 150%;
        font-size: 13px;
    }


    .news-meta.news-meta--single {
        gap: 16px;
    }

    .single-inner {
        padding-left: 36px;
        padding-right: 36px;
    }

    .single-inner h2 {
        font-size: 16px;
    }

    .single-share ul {
        gap: 4px;
    }

    .single-share ul li img {
        transform: scale(0.65);
    }

    .single-share p.font-en {
        font-size: 12px;
    }

    .single-share {
        display: flex;
        gap: 10px;
        padding-top: 16px;
        justify-content: flex-end;
        padding-right: 0;
        align-items: center;
    }

    .single-share span {
        width: 35px;
        height: 1px;
        background: #3f3f3f;
        margin-right: 0;
        display: block;
    }

    .single-thumbnail {
        width: 100%;
        padding-bottom: 32px;
    }

    .side-inner {
        padding: 60px 36px 74px 36px;
    }

    p.side-category__title {
        padding-bottom: 14px;
    }

    .single .more-btn.more-btn--back.fade-in.sp_block {
        text-align: center;
        padding: 60px 36px;
    }

    .side-category {
        margin-top: 20px;
    }

    main.page section.stores {
        padding: 48px 36px 120px;
    }

    ul.store-list li {
        max-width: 165px;
    }

    ul.store-list li a {
        font-size: 14px;
    }

    .stores-item h4 {
        font-size: 16px;
        font-weight: bold;
        padding-bottom: 20px;
    }

    .stores .thumbs-wrapper {
        height: 48px;
        margin-top: 14px;
    }

    .tb_block.tb-message-image h5 span:last-of-type {
        font-size: 16px;
    }

    .tb_block.tb-message-image {
        gap: 30px;
    }

    .career-list div p {
        font-size: 16px;
    }

    .career-list div {
        padding-left: 5px;
    }

    main.page section.menu {
        padding-bottom: 212px;
        padding-left: 36px;
        padding-right: 36px;
        padding-top: 20px;
    }

    .menu-item {
        align-items: flex-start;
        gap: 20px;
    }

    ul.menu-list {
        margin-top: 0;
    }

    h3.menu-single-title {
        font-size: 16px;
    }

    .menu-single-inner {
        padding: 0 36px 60px;
    }

    .menu-single-inner .line {
        margin-top: 0;
    }

    .menu-single-image {
        text-align: center;
    }

    p.menu-single-body__desc:first-of-type {
        font-size: 12px;
    }

    p.menu-single-body__desc:last-of-type {
        padding-top: 20px;
    }

    .heading p {
        font-size: 12px;
    }

    .ba-title:before {

        width: 98px;
        height: 98px;
        top: -27px;
    }

    .ba-title h3 {
        font-size: 16px;
        line-height: 300%;
        padding-left: 20px;
        margin-bottom: 60px;
    }

    main.page section.ba {
        padding-left: 36px;
        padding-right: 36px;
        padding-top: 100px;
    }

    .ba-item>div:first-of-type:before,
    .ba-item>div:last-of-type:before {
        bottom: 0px;
        left: 10px;
        font-size: 14px;
    }

    main.page section.recommend {
        padding-left: 0;
        padding-right: 0;
    }

    .recommend-inner.animate-line::before,
    .recommend-title.animate-line::before {
        width: calc(100% - 60px);
    }

    .recommend-title span {
        padding: 0 20px;
    }

    .recommend-item {
        flex-direction: column;
        gap: 6px;
    }

    .recommend-item ul {
        gap: 6px;
        width: 80%;
        margin: auto;
    }

    main.page section.price {
        padding-left: 0;
        padding-right: 0;
        margin-top: 80px;
    }

    h4.price-title {
        font-size: 16px;
    }

    .price-inner {
        padding: 54px 36px 80px;
    }

    p.precautions-title {
        left: calc(50% - 57px);
        padding: 0 20px;
    }

    .precautions {
        padding: 38px 16px 22px 36px;
    }

    .price-inner ul {
        height: 200px;
        overflow-y: scroll;
        position: relative;
        padding-left: 20px;
        /* スクロールバーを非表示にする */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }


    .precautions ul li {
        line-height: 200%;
    }

    .precautions-list:after {
        content: "";
        border-left: 1px solid #c8c8c8;
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0;
    }

    .precautions-list {
        position: relative;
    }

    .precautions-list:before {
        content: "Scroll";
        position: absolute;
        left: -20px;
        writing-mode: vertical-rl;
        color: #000;
        font-family: "Shippori Mincho";
        font-size: 10px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%;
        letter-spacing: 2px;
    }

    main.page section.QA {
        padding-left: 36px;
        padding-right: 36px;
        padding-top: 48px;
        padding-bottom: 86px;
    }

    .QA-item {
        padding: 28px 0px 28px 0px;
    }

    main.page section.other {
        padding: 64px 36px 100px;
    }

    h4.other-title {
        margin-bottom: 46px;
    }

    .other-item-list {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        /* ← 縦スクロールを無効に */
        scroll-snap-type: x mandatory;
        padding-bottom: 30px;
        -webkit-overflow-scrolling: touch;

        /* ↓ スクロールバーを表示したい場合は以下を追加（オプション） */
        scrollbar-width: auto;
        /* Firefox用 */
    }

    .other-item-list::-webkit-scrollbar {
        height: 4px;
        /* 横スクロールバーだけ */
        background: #c5c5c5;
    }

    .other-item-list::-webkit-scrollbar-thumb {
        background: #777777;
        border-radius: 4px;
    }

    .other-item-list::-webkit-scrollbar-track {
        background: #f0f0f0;
    }




    .other-item {
        flex: 0 0 auto;
        width: calc(100% / 2 - 5px);
        /* お好みでカード幅調整 */
        scroll-snap-align: start;
        /* 任意：スナップの開始位置 */
    }

    p.other-item__title {
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 1.4px;
        line-height: 160%;
        margin-bottom: 10px;
    }

    .other-item__thumbnail {
        margin-bottom: 14px;
    }

    p.other-item__desc {
        line-height: 180%;
    }

    .other p.slide-scroll.tb_block {
        margin-top: 30px;
    }



    main.page section.notice {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .notice-inner {
        padding: 64px 60px 112px;
    }

    .notice-inner {
        padding: 56px 36px 80px;
        margin-top: 20px;
    }


    .notice-item p:first-of-type {
        width: 120px;
        color: #000;
        font-family: "Shippori Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 252%;
        letter-spacing: 2.1px;
    }

    .notice-item p:last-of-type {
        width: calc(100% - 120px);
        color: #000;
        font-family: "Shippori Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 252%;
        letter-spacing: 2.1px;
        padding-left: 10px;
    }

    .notice-item {
        display: flex;
        padding: 16px 0;
        border: 0;
    }

    .more-btn.more-btn--bg {
        width: 245px;
        height: 41px;
    }

    .more-btn.more-btn--bg span {
        width: 18px;
        left: calc(100% - 37px);
        bottom: 17px;
    }

    header.bg {
        background: rgba(100, 98, 111, 0.30);
    }

    h2.wp-block-heading {
        color: #000;
        font-family: "Shippori Mincho";
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 250%;
        letter-spacing: 2.4px;
        margin-bottom: 15px;
    }

    .single-content p {
        color: #000;
        font-family: "Shippori Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 285.7%;
        letter-spacing: 2.1px;
        margin-bottom: 32px;
    }

    h3.wp-block-heading {
        color: #000;
        font-family: "Shippori Mincho";
        font-size: 15px;
        font-style: normal;
        font-weight: 700;
        line-height: 250%;
        letter-spacing: 2.25px;
        margin-bottom: 20px;
    }

    h4.wp-block-heading {
        color: #000;
        font-family: "Shippori Mincho";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 250%;
        letter-spacing: 2.1px;
        margin-bottom: 20px;
    }

    .archive-inner.is-first-page .news-item:first-of-type {
        width: 100%;
    }

    .pagination{
      margin-top: 100px;  
    }
	
	.floating-btn--top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.floating-btn--top.visible {
  opacity: 1;
  visibility: visible;
}

	nav.global-menu ul li a p:last-of-type{
		display:none;
	}
	
	.menu-single-item2 {
    text-align: center;
    margin-top: 60px;
    background: white;
    padding: 50px 20px;
}
	
}