@charset "UTF-8";

/* 
_function.scss ファイル
それぞれ( )内にpxでの数値を入れるとrem, pxに変換
*/
body {
    color: #623f2a;
    font-family: "Noto Sans JP", serif;
    font-size: 16px;
    line-height: 1.7;
    background-color: rgb(253, 246, 227);
}

body.detail {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top:0;
}

@media screen and (min-width: 768px) {
    body {
        font-size: 16px;
    }
}

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

a {
    color: inherit;
}

.fade-in-up {
    opacity: 0;
    -webkit-transform: translateY(24px);
    transform: translateY(24px);
    -webkit-transition: opacity 3s, -webkit-transform 3s;
    transition: opacity 3s, -webkit-transform 3s;
    transition: opacity 3s, transform 3s;
    transition: opacity 3s, transform 3s, -webkit-transform 3s;
}

.fade-in-up.is-in-view {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.inner {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 900px) {
    .inner {
        padding-left: 30px;
        padding-right: 30px;
        max-width: 1200px;
    }
}

.body-no-scroll {
    overflow: hidden;
}

.catalogue__head {
    background: rgb(253, 246, 227);
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 70;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
}

@media screen and (min-width: 768px) {
    .catalogue__head {
        padding-left: 40px;
        padding-right: 40px;
        height: 70px;
    }
}

.catalogue__head-logo {
    width: 56px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    position: relative;
}

.catalogue__head-logo>img {
    position: absolute;
    left: 73px;
    top: 5px;
    width: 175px;
    max-width: max-content;
}

.catalogue__head-logo:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    .catalogue__head-logo {
        width: 63px;
    }
}

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

/*検索窓のエリア sp*/
#search-wrap {
    position: absolute;
    /*絶対配置にして*/
    z-index: 2;
    /*最前面に設定。数字は変更可*/
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 85px;
}

@media screen and (min-width: 768px) {
    #search-wrap {
        right: 105px;
    }
}

@media screen and (min-width: 1200px) {
    #search-wrap {
        display: none;
    }
}

input {
    max-width: 75vw;
}

/*テキスト入力input設定*/
#search-text {
    -webkit-appearance: none;
    /*SafariやChromeのデフォルトの設定を無効*/
    width: 30px;
    /*テキスト入力エリアが伸びる前の横幅*/
    height: 30px;
    border: none;
    border-bottom: 1px solid #623f2a;
    background: url(../img/icon-search.svg);
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    /*transitionを使ってスムースに伸ばす*/
    outline: none;
    cursor: pointer;
    /*カーソルを指マークに*/
}

/*テキスト入力inputにフォーカスした時の形状*/
#search-text.is-checked {
    width: 150px;
    /*テキスト入力エリアが伸びる後の横幅*/
    padding: 0px 0 0px 37px;
}

.header__open {
    width: 27px;
    height: 27px;
    position: relative;
    z-index: -1;
    margin-top: 13px;
    margin-left: auto;
}

@media screen and (min-width: 1200px) {
    .header__open {
        display: none;
    }
}

.header__open.is-checked .header__bar:nth-of-type(1) {
    top: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header__open.is-checked .header__bar:nth-of-type(2) {
    top: 5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.fadeDown {
    -webkit-animation-name: fadeDownAnime;
    animation-name: fadeDownAnime;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}

@-webkit-keyframes fadeDownAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

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

@keyframes fadeDownAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }

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

.header__bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: #623f2a;
    -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
    transition: top 0.3s linear, -webkit-transform 0.3s linear;
    transition: transform 0.3s linear, top 0.3s linear;
    transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}

@media screen and (min-width: 1200px) {
    .header__bar {
        display: none;
    }
}

.header__bar:nth-of-type(1) {
    top: 0;
}

.header__bar:nth-of-type(2) {
    top: 11px;
}

.sp-modal {
    display: none;
    position: fixed;
    z-index: 70;
    left: 0;
    top: 65px;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    background-color: rgba(0, 0, 0, 0.4);
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.header__content-pc {
    display: none;
}

@media screen and (min-width: 1200px) {
    .header__content-pc {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (min-width: 1200px) {
    .header__content-pc-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        margin-top: 30px;
    }
}

/*検索窓のエリア pc*/
.search_container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.search_container input[type=text] {
    border: none;
    border-bottom: 1px solid #623f2a;
    padding: 3px 5px;
    overflow: hidden;
    font-size: 12px;
}

.search_container input[type=text]:focus {
    outline: 0;
}

.search_container input[type=submit] {
    cursor: pointer;
    border: none;
    background: url("../img/icon-search.svg") no-repeat center center;
    background-size: contain;
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.search_container input[type=text]:focus {
    outline: 0;
}

.header-list {
    display: none;
}

@media screen and (min-width: 900px) {
    .header-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 33px;
        margin-left: 33px;
    }
}

.header-list__head {
    left: 0;
    padding: 76px 0 10px;
    width: 90%;
    z-index: 30;
    background: #FFFFFF;
}

@media screen and (min-width: 768px) {
    .header-list__head {
        top: 100px;
    }
}

@media screen and (min-width: 1200px) {
    .header-list__head {
        padding: 27px 0 10px 0;
        margin-top: -27px;
        width: calc(100vw - 400px);
        top: auto;
        left: auto;
    }
}


.megaMenu-close {
    position: absolute;
    right: 20px;
    top: 65px;
    width: 25px;
    height: 25px;
}

@media screen and (min-width: 768px) {
    .megaMenu-close {
        top: 100px;
        right: 40px;
    }
}

.header-list__head>.megaMenu-close {
    top: 20px;
}

.megaMenu-close__category {
    width: 100vw;
    height: 75px;
    background: #FFFFFF;
    position: fixed;
    left: 0;
}

.megaMenu-close__category::before {
    content: "";
    position: absolute;
    background: url(../img/icon-batsu.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    top: 20px;
    right: 20px;
}

@media screen and (min-width: 768px) {
    .megaMenu-close__category::before {
        right: 40px;
    }
}

.header-list__head-button {
    width: 90vw;
    padding-top: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 7px;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.64px;
    overflow-x: auto;
    padding-bottom: 12px;
    position: relative;
}

@media screen and (min-width: 900px) {
    .header-list__head-button {
        width: 100%;
        padding: 0;
        font-size: 16px;
        gap: 15px;
    }

    .header-list__head-button.clear {
        margin-bottom: 40px;
    }
}

.header-list__head-button .tab {
    padding: 3px 8px;
    line-height: 2;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ccc;
    color: #623f2a;
    border-radius: 3px;
    text-wrap: nowrap;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
    display: flex;
    white-space: nowrap;
}

@media screen and (min-width: 900px) {
    .header-list__head-button .tab {
        padding: 0 10px;
    }
}

.header-list__head-button .tab:hover {
    background-color: #623f2a;
    color: #FFFFFF;
}

.header-list__head-button .tab.active {
    background-color: #623f2a;
    color: #FFFFFF;
}

.header-item-main {
    padding-left: 40px;
    font-size: 14px;
    position: relative;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    margin-left: 40px;
}

.header-item-main.catalogue_list {
    font-size: 12px;
}

@media screen and (min-width: 1200px) {
    .header-item-main {
        padding-left: 0;
        padding-right: 24px;
        margin-left: 0;
    }
}

.header-item-main::after {
    content: "";
    position: absolute;
    background-image: url(../img/icon-arrow-b.svg);
    background-size: cover;
    width: 19px;
    height: 19px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    left: 0;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

@media screen and (min-width: 1200px) {
    .header-item-main::after {
        left: auto;
        right: 0;
        -webkit-transform: translateY(-50%) rotate(0deg);
        transform: translateY(-50%) rotate(0deg);
    }
}

.header-item-main:hover {
    color: #b1b6af;
}

.header-item-main:hover::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.btn {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn1-sp,
.btn2-sp {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.btn1-sp.is-checked .header-item-main-sp,
.btn2-sp.is-checked .header-item-main-sp {
    color: #b1b6af;
}

.btn1-sp.is-checked .header-item-main-sp::after,
.btn2-sp.is-checked .header-item-main-sp::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    top: 13px;
    background-image: url(../img/icon-arrow-g.svg);
}

@media screen and (min-width: 768px) {

    .btn1-sp.is-checked .header-item-main-sp::after,
    .btn2-sp.is-checked .header-item-main-sp::after {
        top: 15px;
    }
}

.megaMenu-list {
    z-index: 60;
    padding: 16px 16px 160px;
    height: 100vh;
    height: 100svh;
    margin: auto;
    top: 70px;
    right: 0;
    background: #FFFFFF;
    width: 100%;
    overflow-y: auto;
}

@media screen and (min-width: 768px) {
    .megaMenu-list {
        top: 100px;
        padding: 27px 20px;
    }
}

@media screen and (min-width: 1200px) {
    .megaMenu-list {
        border-radius: 8px;
        top: 110px;
        right: 150px;
        left: auto;
        -webkit-transform: none;
        transform: none;
        width: calc(100vw - 300px);
        padding: 27px 40px;
        height: 70vh;
        height: 70svh;
        overflow-y: hidden;
        position:fixed ;
    }
}

.megaMenu-list.order-period {
    flex-direction: column;
    width: 400px;
    height: 330px;
    right: 250px;
}

.from-to-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.from-to-box.catalogue_list {
    font-size: 12px;
}

.from-to-box label {
    width: 20%;
}


.megaMenu-list button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #623f2a;
    padding: 5px 24px;
    background: #fdb17d;
    border-radius: 50px;
    width: 100%;
    font-size: 14px;
}

.megaMenu-list button.clear {
    background-color: #fff;
    border: 1px solid #623f2a;
}

.megaMenu-list button img {
    margin-right: 10px;
}

@media screen and (min-width: 1200px) {
    .megaMenu__maker-wrapper {
        overflow-y: auto;
        width: calc(100vw - 400px);
        margin-inline: auto;
        height: 55vh;
        height: 55dvh;
    }
}

.megaMenu-list-wrapper__maker {
    margin-top: 50px;
}

@media screen and (min-width: 1200px) {
    .megaMenu-list-wrapper__maker {
        margin-top: 40px;
    }
}

.megaMenu-list-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px 24px;
}

@media screen and (min-width: 600px) {
    .megaMenu-list-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px) {
    .megaMenu-list-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1200px) {
    .megaMenu-list-wrapper {
        grid-template-columns: repeat(5, 1fr);
        gap: 48px 22px;
    }
}

.megaMenu-title {
    font-size: 16px;
    text-align: left;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .megaMenu-title {
        font-size: 20px;
        letter-spacing: 0.8px;
        margin-bottom: 28px;
    }
}

.megaMenu-item {
    color: #623f2a;
    font-size: 14px;
    text-align: left;
    padding-bottom: 3px;
    border-bottom: 2px solid rgb(253, 246, 227);
    -webkit-transition: border-bottom 0.3s;
    transition: border-bottom 0.3s;
}

@media screen and (min-width: 768px) {
    .megaMenu-item {
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0.64px;
        padding-bottom: 6px;
    }
}

.megaMenu-item:hover {
    border-bottom: 2px solid #fdb17d;
}

.header-item a {
    color: #623f2a;
    font-size: 14px;
    display: block;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

@media screen and (min-width: 768px) {
    .header-item a {
        font-size: 16px;
    }
}

.header-item a:hover {
    color: #b1b6af;
}

.search__button-wrapper-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5px;
    position: relative;
    padding-top: 30px;
}

.newest>.search__button-wrapper-pc.catalogue_list {
    justify-content: right;
    padding-top: 0px;
    margin-right: 60px;
}

.search__button-wrapper-pc>p {
    position: absolute;
    top: 8px;
    right: 2px;
    white-space: nowrap;
    /* ＳＷ変更 ログイン者名 */
    font-size: 14px; 
    /* font-size: 12px; */
    line-height: 14px;
}

.search__button-wrapper-pc {
    font-size: 14px;
    text-align: center;
}

.search__button-wrapper-pc>a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #623f2a;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 10px;
    background: #fdb17d;
}

.search__button-wrapper-pc form button {
    align-items: center;
    border: 1px solid #623f2a;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 50px;
    font-size: 10px;
    background: #fdb17d;
}

.search__button-wrapper-pc form button:nth-of-type(2) {
    background-color: rgb(253, 246, 227);
}

.search__button-wrapper-pc form button.delete {
    background-color: #ddd;
    position: absolute;
    top: -40px;
    right: 0px;
}

.search__button-wrapper-pc form button.catalogue_list_sample.edit {
    background-color: #fff;
    position: absolute;
    top: -40px;
    right: 70px;
}

.search__button-wrapper-pc form button.catalogue_list_sample.save {
    background-color: #fff;
    position: absolute;
    top: -100px;
    right: -35px;
}

.search__button-wrapper-pc form button.clear {
    background-color: rgb(253, 246, 227);
}

.search__button-wrapper-pc form button.clear img {
    margin: 0;
}

.search__button-wrapper-pc form button span {
    color: #623f2a;
}

.search__button-wrapper-pc form button.catalogue_list_sample {
    right: -20px;
}

div.input-back {
    align-items: center;
    border: 1px solid #623f2a;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 50px;
    font-size: 10px;
    background: rgb(253, 246, 227);
    display: flex;
    align-items: center;
    cursor: pointer;
}

input.input-back {
    background: rgb(253, 246, 227);
    border: none;
    font-size: 10px;
    color: #623f2a;
    padding: 0;
}

.search__button-wrapper-pc img {
    margin: 0 5px 0 0;
}

@media screen and (min-width: 768px) {
    .search__button-wrapper-pc {
        margin-left: 30px;
        margin-right: 30px;
        column-gap: 20px;
    }

    .search__button-wrapper-pc.catalogue_list {
        column-gap: 5px;
    }

    .search__button-wrapper-pc>a:nth-of-type(2) {
        background-color: rgb(253, 246, 227);
    }

    .search__button-wrapper-pc>a.back {
        background-color: rgb(253, 246, 227);
    }
}

.search__button-pc {
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    background: #fdb17d;
    padding: 4px 20px;
    font-size: 12px;
    border-radius: 50px;
    border: 1px solid #623f2a;
    min-width: 77px;
    text-align: center;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.search__button-pc:hover {
    opacity: 0.7;
}

.header__content {
    width: 100%;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    position: absolute;
    background: rgb(253, 246, 227);
    top: 70px;
    right: 0;
    z-index: 50;
    padding: 20px;
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
    display: none;
}

@media screen and (min-width: 600px) {
    .header__content {
        max-width: 500px;
        border-radius: 30px 0 0 5cap;
        padding: 60px 50px;
    }
}

@media screen and (min-width: 768px) {
    .header__content {
        padding: 60px 20px;
        top: 100px;
        width: 60%;
        height: calc(100vh - 70px);
        height: calc(100dvh - 70px);
    }
}

/* ナビゲーションメニュー */
.nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    max-width: 300px;
    margin-inline: auto;
}

.nav-menu.order_history {
    gap: 10px;
}

.nav-menu.order_history input {
    max-width: 250px;
}

.search-maker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.input-wrapper {
    position: relative;
}

.form-maker {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 3px solid #623f2a;
    background: #fff;
    padding: 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.custom-placeholder {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 10px;
    color: #999;
    pointer-events: none;
    white-space: pre-line;
    /* 改行をサポート */
}

.form-text:not(:-moz-placeholder-shown)+.custom-placeholder {
    display: none;
}

.form-text:not(:-ms-input-placeholder)+.custom-placeholder {
    display: none;
}

.form-text:focus+.custom-placeholder,
.form-text:not(:placeholder-shown)+.custom-placeholder {
    display: none;
}

.form-select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font: inherit;
    color: inherit;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border-radius: 5px;
    border: 3px solid #623f2a;
    background-color: #FFFFFF;
    background-image: url(../img/icon-arrow.svg);
    background-repeat: no-repeat;
    background-position: center right 14px;
    background-size: 13.217px 20px;
    padding: 12px 43px 11px 13px;
}

.search__button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    column-gap: 13px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding-top: 0px;
}

.search__button-wrapper>p {
    position: absolute;
    right: 0;
    top: -5px;
    white-space: nowrap;
}

.search__button-wrapper {
    font-size: 14px;
    text-align: center;
    flex-direction: column;
    margin-top: 20px;
    margin-left: 40px;
    width: 80%;
}

.search__button-wrapper>a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #623f2a;
    padding: 5px 24px;
    background: #fdb17d;
    border-radius: 50px;
}

.search__button-wrapper>a:nth-of-type(2) {
    background-color: rgb(253, 246, 227);
}

.search__button-wrapper>a.back {
    background-color: rgb(253, 246, 227);
}

.search__button-wrapper img {
    margin-right: 20px;
}

@media screen and (min-width: 768px) {
    .search__button-wrapper {
        margin-left: 60px;
        margin-right: 60px;
    }
}

.search__button {
    margin-top: 40px;
    max-width: 160px;
    display: block;
    min-width: 0 !important;
    background: #fdb17d;
    padding: 4px 25px;
    border-radius: 50px;
    border: 1px solid #623f2a;
    font-size: 14px;
    width: 100%;
    min-width: 250px;
    text-align: center;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.search__button:hover {
    background: #FFFFFF;
}

@media screen and (min-width: 768px) {
    .search__button {
        max-width: 160px;
        padding: 8px 28px;
        font-size: 17px;
    }
}

.hide {
    display: none;
}

/* オーバーレイのスタイル */
.overlay {
    background-color: rgba(86, 89, 86, 0.56);
    cursor: pointer;
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    -webkit-transition: opacity 0.6s, visibility 0.6s;
    transition: opacity 0.6s, visibility 0.6s;
    visibility: hidden;
    width: 100vw;
    z-index: 50;
    /* メニューよりも下にする */
}

.overlay.active {
    opacity: 0.8;
    visibility: visible;
}

/* ページトップボタン */
.page-top {
    bottom: 70px;
    position: fixed;
    right: 20px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    z-index: 20;
}

@media screen and (min-width: 768px) {
    .page-top {
        bottom: 70px;
        width: 110px;
        height: 110px;
    }
}

.page-top:hover .page-top__inner::before {
    top: 43%;
    cursor: pointer;
}

.page-top__inner {
    position: relative;
}

.page-top__inner::before {
    content: "↑";
    position: absolute;
    width: 26px;
    height: 43px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 25px;
    -webkit-transition: top 0.3s;
    transition: top 0.3s;
}

footer {
    position: relative;
}

@media screen and (min-width: 1200px) {

    footer {
        display: none;
    }
}

footer::before {
    content: "";
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 63px;
    background: #FFFFFF;
    border-radius: 30px 30px 0 0;
    -webkit-box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 768px) {
    footer::before {
        max-width: 700px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 48;
    }
}

.footer__inner {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding-top: 7px;
    padding-bottom: 2px;
    z-index: 49;
}

@media screen and (min-width: 1200px) {
    .footer__inner {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

.footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
}

@media screen and (min-width: 768px) {
    .footer__wrapper {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media screen and (min-width: 900px) {
    .footer__wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 130px;
    }
}

.cart {
    margin-right: 8px;
}

@media screen and (min-width: 1200px) {
    .cart {
        margin-right: 0;
        margin-bottom: -8px;
    }
}

.modal-open__cart {
    position: relative;
    width: 50px;
    overflow: visible !important;
}

.modal-open__cart span {
    position: absolute;
    background: #fdb17d;
    color: #FFFFFF;
    top: -5px;
    right: -20px;
    font-size: 10px;
    border-radius: 50%;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
}

.modal-open__cart img {
    width: 30px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    margin-left: 20px;
    margin-right: 20px;
}

@media screen and (min-width: 768px) {
    .modal-open__cart img {
        margin-top: -3px;
        width: 30px;
        margin-left: 45px;
        margin-right: 45px;
    }
}

.modal-open__cart img:hover {
    opacity: 0.7;
}

.modal-open__cart span {
    position: absolute;
    background: #fdb17d;
    color: #FFFFFF;
    top: -5px;
    right: 0;
    font-size: 11px;
    border-radius: 50%;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
}

@media screen and (min-width: 768px) {
    .modal-open__cart span {
        right: 25px;
    }
}

.modal-container__cart {
    position: fixed;
    right: 20px;
    bottom: 58px;
    width: 90% !important;
    height: 75% !important;
    padding: 20px 20px !important;
    font-size: 12px;
}

@media screen and (min-width: 768px) {
    .modal-container__cart {
        bottom: 72px;
        right: 25%;
        width: 50% !important;
    }
}

.modal-header__cart h3 {
    margin-top: 10px;
    text-align: center;
    font-size: 15px;
}

.modal-cart__wrapper {
    margin-top: 10px;
    height: 350px;
    overflow-y: auto;
}

.modal-cart__wrapper.final {
    width: 100%;
    height: 410px;
}

@media screen and (min-width: 768px) {
    .modal-cart__wrapper {
        height: 360px;
    }

    .modal-cart__wrapper.final {
        width: 90%;
    }
}

.modal-card {
    margin-top: 20px;
    background: rgb(253, 246, 227);
    padding: 20px 30px;
    border-radius: 30px;
    width: 100%;
    margin-inline: auto;
}

@media screen and (min-width: 768px) {
    .modal-card {
        width: 80%;
    }
}

.modal-card+.modal-card {
    margin-top: 20px;
}

.modal-cart__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}

@media screen and (min-width: 768px) {
    .modal-cart__top {
        gap: 40px;
    }
}

.modal-cart__top a {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.modal-cart__top img {
    width: 50px;
    height: 50px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.modal-cart__top img:hover {
    opacity: 0.7;
}

.modal-cart__top-contents li {
    padding-bottom: 5px;
}

.modal-cart__top-contents li span:nth-of-type(1) {
    padding-right: 10px;
}

.modal-cart__buttons {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.modal-cart__button {
    padding: 5px;
    text-align: center;
    width: 76px;
    font-size: 11px;
    border-radius: 20px;
    color: #FFFFFF;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.modal-cart__button:hover {
    opacity: 0.7;
}

.modal-cart__button:nth-of-type(1) {
    background: #fdb17d;
}

.modal-cart__button:nth-of-type(2) {
    background: rgb(246, 86, 86);
}

.modal-card__button-wrapper {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.modal-cart__top-contents {
    width: 100%;
}

.modal-cart__top table {
    text-align: left;
    margin-bottom: 20px;
    border-spacing: 0;
}

.modal-cart__top-contents table {
    width: 100%;
}

.modal-cart__top-contents table tr {
    display: block;
    width: 100%;
    padding-top: 10px;

}

.modal-cart__top-contents table th {
    display: block;
    width: 100%;
}

.modal-cart__top-contents table td {
    display: block;
    width: 100%;
}

.modal-cart__top-contents table thead tr th {
    font-weight: bold;
}

.modal-cart__top-contents table tbody tr td.product_number {
    text-align: right;
    padding-right: 20px;
    width: 55px;
}

@media screen and (max-width: 1200px) {
    .modal-card__button-wrapper {
        margin-top: 10px;
    }
}

@media screen and (min-width: 768px) {

    .modal-cart__top-contents table {
        width: auto;
    }

    .modal-cart__top-contents table tr {
        width: auto;
        border: 1px dotted #000;
        display: table-row;
    }

    .modal-cart__top-contents table th {
        width: auto;
        display: table-cell;
    }

    .modal-cart__top-contents table td {
        width: auto;
        display: table-cell;
    }

    .modal-cart__top-contents table thead tr {
        height: auto;
    }

    .modal-cart__top-contents table thead tr th {
        width: 12vw;
        font-weight: bold;
        border-bottom: 1px solid #623f2a;
        padding-top: 10px;
        padding-bottom: 15px;
    }

    .modal-cart__top-contents table tbody tr th {
        border-bottom: 1px dashed #623f2a;
        vertical-align: middle;
        padding: 15px 0;

    }

    .modal-cart__top-contents table tbody tr td {
        border-bottom: 1px dashed #000;
        vertical-align: middle;
    }

    .modal-cart__top-contents table tbody tr td.product_number {
        text-align: right;
        padding-right: 20px;
        width: auto;
    }

    .modal-cart__top-contents table tbody tr:last-child th {
        border-bottom: none;
    }

    .modal-cart__top-contents table tbody tr:last-child td {
        border-bottom: none;
    }

    .modal-cart__top-contents table thead tr th.order_date {
        width: 10vw;
    }

    .modal-cart__top-contents table thead tr th.product_name {
        width: 35vw;
    }

    .modal-cart__top-contents table thead tr th.jan {
        width: 9vw;
    }

    .modal-cart__top-contents table thead tr th.shop {
        width: 8vw;
    }

    .modal-cart__top-contents table thead tr th.product_number {
        width: 5vw;
        /* ＳＷ追加 */
        text-align: center;
    }

    .modal-cart__top-contents table thead tr th.catalogue_list {
        width: 7vw;
    }

    .modal-cart__top-contents table thead tr th.catalogue_list.long {
        width: 22vw;
    }

    .modal-cart__top-contents table thead tr th.catalogue_list.short {
        width: 2vw;
    }

    .modal-cart__top.catalogue_list a {
        font-weight: bold;
        text-decoration: underline;
    }
}


.modal-card__button {
    padding: 7px;
    text-align: center;
    border: 1px solid #623f2a;
    border-radius: 20px;
    width: 120px;
    font-size: 11px;
}

@media screen and (min-width: 900px) {
    .modal-card__button {
        width: 200px;
    }
}

.modal-card__button:hover {
    opacity: 0.7;
}

form #order-form {
    display: flex;
    flex-direction: column;

}

form #order-form label {
    font-size: 5px;
}

#remarks-container {
    display: flex;
    flex-direction: column;
}


.footer-button__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}

@media screen and (min-width: 768px) {
    .footer-button__wrapper {
        gap: 15px;
    }
}

.footer-button {
    padding: 7px;
    text-align: center;
    border: 2px solid #623f2a;
    border-radius: 20px;
    width: 100px;
    font-size: 11px;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

@media screen and (min-width: 900px) {
    .footer-button {
        font-size: 13px;
        width: 150px;
    }
}

.footer-button:hover {
    background: #fdb17d;
}

.mypage {
    position: relative;
}

.modal-open__mypage img {
    width: 35px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
    .modal-open__mypage img {
        width: 47px;
    }
}

.modal-open__mypage img:hover {
    opacity: 0.7;
}

.modal-container__mypage {
    width: 100px !important;
    position: fixed;
    bottom: 58px;
    right: 15px;
    padding: 20px 20px !important;
    border-radius: 20px !important;
}

@media screen and (min-width: 768px) {
    .modal-container__mypage {
        width: 120px !important;
        bottom: 72px;
        right: calc(50% - 290px);
        font-size: 12px;
        padding: 30px 20px !important;
    }
}

.modal-header__mypage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

@media screen and (min-width: 768px) {
    .modal-header__mypage {
        gap: 20px;
    }
}

.modal-header__mypage a {
    font-size: 11px;
    border-bottom: 2px solid #623f2a;
    -webkit-transition: border-bottom 0.3s;
    transition: border-bottom 0.3s;
}

@media screen and (min-width: 768px) {
    .modal-header__mypage a {
        font-size: 16px;
    }
}

.modal-header__mypage a:hover {
    border-bottom: 2px solid #fdb17d;
}

.login {
    text-align: center;
    padding-bottom: 30px;
    padding-top: 40px;
}

.login__logo {
    width: 175px;
    margin-inline: auto;
}

.login__contents-wrapper {
    background: #FFFFFF;
    border-radius: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 40px;
    max-width: 700px;
    margin-inline: auto;
    position: relative;
}

.login__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.login__contents-id,
.login__contents-pass {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
}

.form-text {
    border-radius: 5px;
    border: 1px solid #623f2a;
    background: #fff;
    width: 300px;
}

.button {
    background: #fdb17d;
    padding: 8px 0px;
    margin-inline: auto;
    border-radius: 50px;
    border: 1px solid #623f2a;
    font-size: 17px;
    width: 100%;
    min-width: 250px;
    min-height: 34px;
    text-align: center;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-appearance: none;
}

.button:hover {
    opacity: 0.7;
    cursor: pointer;
}

.button>a {
    padding: 8px 60px;
}

.final_confirmation_buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 40px auto 20px;
    gap: 20px;
}

@media screen and (min-width: 768px) {
    .final_confirmation_buttons {
        flex-direction: row;
    }
}

.final_confirmation_buttons>.button.back {
    background-color: #FFFFFF;
}

.final_confirmation_buttons>.button {
    margin-top: 0px;
}

.login__modal {
    margin-top: 30px;
    padding: 6px 28px;
    min-width: 200px;
    width: auto;
    display: inline-block;
}

.information {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media screen and (min-width: 768px) {
    .information {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}

/* fuwafuwaアニメーション */
@-webkit-keyframes fuwafuwa {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes fuwafuwa {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.login__contents-image {
    position: absolute;
    top: -10px;
    right: 0;
    width: 50px;
    height: 50px;
    -webkit-animation: 3s fuwafuwa infinite;
    animation: 3s fuwafuwa infinite;
}

.login__contents-image img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

@media screen and (min-width: 768px) {
    .login__contents-image {
        left: calc(50% + 268px);
        width: 70px;
        height: 105px;
    }
}

.information__card {
    border-radius: 20px;
    background: #fff;
    -webkit-box-shadow: 0px 9px 30px 0px #f4f4f4;
    box-shadow: 0px 9px 30px 0px #f4f4f4;
    padding: 40px 20px;
    max-width: 700px;
    margin-inline: auto;
    position: relative;
}

@media screen and (min-width: 768px) {
    .information__card {
        border-radius: 30px;
        padding-left: 9.2105263158%;
        padding-right: 9.2105263158%;
    }
}

.information__title {
    font-family: "Kranky", serif;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 3.8px;
    text-align: left;
    position: relative;
}

@media screen and (min-width: 768px) {
    .information__title {
        font-size: 36px;
        letter-spacing: 4px;
    }
}

.information__title::before {
    content: "";
    position: absolute;
    background: url(../img/deco-lady.jpg);
    background-size: contain;
    width: 50px;
    height: 50px;
    bottom: -29px;
    right: calc(50% - 126px);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

@media screen and (min-width: 768px) {
    .information__title::before {
        right: calc(50% - 90px);
    }
}

.information__title::after {
    content: "";
    position: absolute;
    background: url(../img/deco-lady.jpg);
    background-size: contain;
    width: 50px;
    height: 50px;
    bottom: -43px;
    right: calc(50% - 156px);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

@media screen and (min-width: 768px) {
    .information__title::after {
        right: calc(50% - 130px);
        bottom: -38px;
    }
}

.information__lists {
    margin-top: 28px;
}

@media screen and (min-width: 768px) {
    .information__lists {
        margin-top: 30px;
    }
}

.information__list {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.information__list:hover {
    opacity: 0.7;
}

.information-link__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .information-link__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding-top: 12px;
        padding-bottom: 12px;
        gap: 0;
    }
}

.custom-dotted-border {
    position: relative;
    width: 100%;
}

.custom-dotted-border::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #623f2a 2px, transparent 2px);
    background-size: 4px 1px;
    background-repeat: repeat-x;
    top: 0;
    left: 0;
}

.information-link__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 12px;
}

@media screen and (min-width: 768px) {
    .information-link__meta {
        width: 247px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        gap: 14px;
    }
}

.information-link__date {
    white-space: nowrap;
}

@media screen and (min-width: 768px) {
    .information-link__date {
        width: 119px;
    }
}

.information-link__title {
    text-align: left;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal;
}

.wrapper {
    overflow: hidden;
}

.catalogue {
    padding-bottom: 100px;
    background: rgb(253, 246, 227);
    margin-bottom: 70px;
}

@media screen and (min-width: 768px) {
    .catalogue {
        margin-bottom: 150px;
    }

    .catalogue.cart {
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
}

.recommend {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    margin-top: 120px;
    padding-top: 45px;
    padding-bottom: 45px;
}

@media screen and (min-width: 900px) {
    .recommend {
        margin-top: 120px;
        padding: 120px 40px 120px 40px;
    }
}

.recommend::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 45px;
    left: 0;
    top: 1px;
    background-color: transparent;
    background-image: url(../img/swiper-top-sp.png);
    background-position: bottom center;
    background-size: contain;
    background-repeat: repeat-x;
}

@media screen and (min-width: 900px) {
    .recommend::before {
        height: 120px;
        background-image: url(../img/swiper-top.png);
    }
}

.recommend::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 45px;
    background-color: transparent;
    background-image: url(../img/swiper-bottom-sp.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    background-repeat: repeat-x;
}

@media screen and (min-width: 900px) {
    .recommend::after {
        height: 120px;
        background-image: url(../img/swiper-bottom.png);
    }
}

.recommend__inner {
    background: #fdb17d;
    width: calc(100vw + 20px);
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .recommend__inner {
        width: calc(100vw + 40px);
        margin-left: -40px;
        padding-left: 40px;
        padding-bottom: 60px;
    }
}

.bbs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 80px;
    line-height: 40px;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    margin-top: 40px;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .bbs {
        margin-top: 30px;
    }
}

.bbs ul {
    -webkit-animation: flowing 90s linear infinite;
    animation: flowing 90s linear infinite;
    font-size: 70px;
    font-family: "Kranky", serif;
    line-height: 1.3px;
    color: #FFFFFF;
    font-weight: 900;
    opacity: 0.7;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .bbs ul {
        font-size: 98px;
    }
}

.bbs ul li {
    display: inline-block;
    padding-right: 10px;
}

@-webkit-keyframes flowing {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes flowing {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.newest {
    margin-top: 120px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
}

@media screen and (min-width: 768px) {
    .newest {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.detail__body>.newest {
    margin-top: 0px;
}

@media screen and (min-width: 768px) {
    .detail__body>.newest {
        margin-top: 120px;
    }
}

.newest.container {
    margin-top: 0px;
}

.title-newest {
    padding-top: 30px;
    position: relative;
}

.title-newest::before {
    content: "";
    position: absolute;
    background: url(../img/deco-rainbow.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    top: -6px;
    left: 105px;
    width: 40px;
    height: 99px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

@media screen and (min-width: 768px) {
    .title-newest::before {
        padding-top: 100px;
        top: -20px;
        left: 129px;
        width: 70px;
        height: 200px;
    }
}

.title-search {
    padding-top: 0px;
    position: relative;
}

.title-search::before {
    content: "";
    position: absolute;
    background: url(../img/deco-frower.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -30px;
    left: 230px;
    width: 60px;
    height: 150px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

@media screen and (min-width: 768px) {
    .title-search::before {
        top: -20px;
        left: 310px;
    }
}

.title-favorite {
    padding-top: 0px;
    position: relative;
}

.title-favorite::before {
    content: "";
    position: absolute;
    background: url(../img/deco-sunflower.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -30px;
    left: 130px;
    width: 60px;
    height: 150px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

@media screen and (min-width: 768px) {
    .title-favorite::before {
        top: -20px;
        left: 180px;
    }
}

.title-category {
    padding-top: 45px;
}

@media screen and (min-width: 768px) {
    .title-category {
        padding-top: 100px;
    }
}

.catalogue__cards {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 18px;
}

@media screen and (min-width: 768px) {
    .catalogue__cards {
        margin-top: 60px;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 24px;
    }
}

.catalogue__cards>.catalogue__card {
    position: relative;
}

.catalogue__card-new {
    position: absolute;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    display: grid;
    place-items: center;
    width: 51px;
    height: 51px;
    background: #fdb17d;
    color: #FFFFFF;
    border-radius: 50%;
    top: 10px;
    left: 10px;
    z-index: 30;
}

@media screen and (min-width: 900px) {
    .catalogue__card-new {
        font-size: 20px;
        width: 81px;
        height: 81px;
        top: 20px;
        left: 20px;
    }
}

.catalogue__card-favorite {
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 30;
    width: 30px;
    height: auto;
}

.catalogue__cards .catalogue__card-favorite {
    bottom: 25%;
    right: 10%;
}

@media screen and (min-width: 900px) {
    .catalogue__card-favorite {
        bottom: 5%;
        right: 8%;
        width: 30px;
    }

    .catalogue__cards .catalogue__card-favorite {
        bottom: 16%;
        right: 10%;
    }
}

.catalogue__card-image {
    width: 40vw;
    height: 40vw;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background: #FFFFFF;
    border-radius: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .catalogue__card-image {
        width: 21vw;
        height: 21vw;
    }
}

.catalogue__card-image img {
    width: 100%;
    margin: auto;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.catalogue__card-image:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.catalogue__card-image-h img {
    height: 100%;
    width: auto;
}

.catalogue__card-tags {
    margin-top: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.text-limit {
    position: relative;
    display: inline-block;
    /* inline要素の幅を持たせるため */
    cursor: pointer;
    padding: 4px 12px 4px 12px;
    border-radius: 50px;
    border: 2px solid #623f2a;
    background: #FFFFFF;
    font-size: 11px;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

@media screen and (min-width: 900px) {
    .text-limit {
        padding: 4px 16px 4px 16px;
        font-size: 13px;
    }
}

.text-limit:hover {
    background: #fdb17d;
}

.text-limit span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.text-limit::after {
    content: attr(data-full-text);
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 90%;
    white-space: nowrap;
    border-radius: 20px;
    background-color: #FFFFFF;
    color: #623f2a;
    font-size: 11px;
    font-weight: 300;
    padding: 5px 10px;
    border: 1px solid rgb(253, 246, 227);
    display: none;
    z-index: 1;
}

.text-limit.show-full-text::after {
    display: block;
}

.recommend__title-wrapper {
    position: relative;
}

.recommend__title-wrapper img {
    position: absolute;
    top: -10px;
    left: 220px;
    width: 60px;
    height: 70px;
}

@media screen and (min-width: 768px) {
    .recommend__title-wrapper img {
        left: 278px;
        width: 73px;
        height: 80px;
    }
}

.title-recommend {
    padding-top: 20px;
}

@media screen and (min-width: 768px) {
    .title-recommend {
        padding-top: 20px;
    }
}

.information__subtitle {
    text-align: left;
}

.title {
    font-family: "Kranky", serif;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 3.8px;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .title {
        font-size: 50px;
        letter-spacing: 5px;
    }
}

.subtitle {
    font-size: 16px;
    letter-spacing: 1.28px;
    margin-top: 14px;
    margin-bottom: 20px;
    color: #623f2a;
}

.swiper-container {
    margin-top: 30px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .swiper-container {
        margin-top: 60px;
    }
}

.swiper-slide {
    width: auto;
}

.swiper-horizontal {
    margin: 0 calc(50% - 57vw);
}

.swiper-pagination {
    top: auto !important;
    bottom: -20px !important;
    left: calc(50% - 141px) !important;
    width: 160px !important;
}

@media screen and (min-width: 768px) {
    .swiper-pagination {
        left: 56px !important;
        width: clamp(300px, 61.1111111111vw, 450px) !important;
    }
}

@media screen and (min-width: 900px) {
    .swiper-pagination {
        width: clamp(500px, 54.6666666667vw, 820px) !important;
        bottom: -40px !important;
    }
}

@media screen and (min-width: 1200px) {
    .swiper-pagination {
        left: 156px !important;
    }
}

.swiper-pagination-progressbar {
    background: rgba(98, 63, 41, 0.2);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #FFFFFF;
}

.swiper-pagination-progressbar.swiper-pagination-horizontal {
    height: 2px;
}

.swiper-buttons {
    position: relative;
    bottom: -45px !important;
    left: calc(50% + 38px) !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

@media screen and (min-width: 768px) {
    .swiper-buttons {
        left: calc(50% + 180px) !important;
        gap: 50px;
    }
}

@media screen and (min-width: 900px) {
    .swiper-buttons {
        left: calc(50% + 202px) !important;
        bottom: -70px !important;
    }
}

@media screen and (min-width: 1200px) {
    .swiper-buttons {
        left: calc(50% + 372px) !important;
    }
}

.swiper-button-prev,
.swiper-button-next {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background: #623f2a;
    top: auto !important;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 0.8;
}

@media screen and (min-width: 768px) {

    .swiper-button-prev,
    .swiper-button-next {
        width: 60px;
        height: 60px;
    }
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-prev {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    position: relative;
}

.swiper-button-prev::before {
    content: "＞";
    position: absolute;
    top: 52%;
    left: 52%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
    color: #FFFFFF;
    font-size: 18px;
    z-index: 1;
    /* 矢印を背景より上に配置 */
}

@media screen and (min-width: 768px) {
    .swiper-button-prev::before {
        font-size: 23px;
        top: 50%;
        left: 50%;
    }
}

.swiper-button-next {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: relative;
}

.swiper-button-next::before {
    content: "＞";
    position: absolute;
    top: 52%;
    left: 52%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
    color: #FFFFFF;
    font-size: 18px;
    z-index: 1;
    /* 矢印を背景より上に配置 */
}

@media screen and (min-width: 768px) {
    .swiper-button-next::before {
        font-size: 23px;
        top: 50%;
        left: 50%;
    }
}

/* モーダル */
.modal-overlay {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

.wrapper {
    overflow: hidden;
}

.catalogue {
    padding-bottom: 100px;
    background: rgb(253, 246, 227);
    margin-bottom: 70px;
}

@media screen and (min-width: 768px) {
    .catalogue {
        margin-bottom: 0px;
    }
}

.recommend {
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    margin-top: 80px;
    padding-top: 45px;
    padding-bottom: 45px;
}

@media screen and (min-width: 900px) {
    .recommend {
        margin-top: 90px;
        padding: 50px 40px;
    }
}

.recommend::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 45px;
    left: 0;
    top: 1px;
    background-color: transparent;
    background-image: url(../img/swiper-top-sp.png);
    background-position: bottom center;
    background-size: contain;
    background-repeat: repeat-x;
}

@media screen and (min-width: 900px) {
    .recommend::before {
        height: 120px;
        top: -20px;
        background-image: url(../img/swiper-top.png);
    }
}

.recommend::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 45px;
    background-color: transparent;
    background-image: url(../img/swiper-bottom-sp.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    background-repeat: repeat-x;
}

@media screen and (min-width: 900px) {
    .recommend::after {
        height: 120px;
        bottom: -20px;
        background-image: url(../img/swiper-bottom.png);
    }
}

.recommend__inner {
    background: #fdb17d;
    width: calc(100vw + 20px);
    margin-left: -20px;
    padding-left: 20px;
    padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .recommend__inner {
        width: calc(100vw + 40px);
        margin-left: -40px;
        padding-left: 40px;
        padding-bottom: 30px;
    }
}

.bbs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100px;
    line-height: 40px;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    margin-top: 40px;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .bbs {
        margin-top: 20px;
    }
}

.bbs ul {
    -webkit-animation: flowing 90s linear infinite;
    animation: flowing 90s linear infinite;
    font-size: 70px;
    font-family: "Kranky", serif;
    line-height: 1.3px;
    color: #fdb17d;
    opacity: 0.3;
    font-weight: 900;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .bbs ul {
        font-size: 98px;
    }
}

.bbs ul li {
    display: inline-block;
    padding-right: 10px;
}

@keyframes flowing {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.title-newest {
    padding-top: 30px;
}

.catalogue__cards {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 18px;
}

@media screen and (min-width: 768px) {
    .catalogue__cards {
        margin-top: 60px;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 24px;
    }
}

.catalogue__cards>.catalogue__card {
    position: relative;
}

.catalogue__card-new {
    position: absolute;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    display: grid;
    place-items: center;
    width: 51px;
    height: 51px;
    background: #fdb17d;
    color: #FFFFFF;
    border-radius: 50%;
    top: 10px;
    left: 10px;
    z-index: 30;
}

@media screen and (min-width: 900px) {
    .catalogue__card-new {
        font-size: 20px;
        width: 81px;
        height: 81px;
        top: 20px;
        left: 20px;
    }
}

.catalogue__card-image {
    width: 40vw;
    height: 40vw;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background: #FFFFFF;
    border-radius: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .catalogue__card-image {
        width: 21vw;
        height: 21vw;
    }
}

.catalogue__card-image img {
    width: 100%;
    margin: auto;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.catalogue__card-image:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.catalogue__card-image-h img {
    height: 100%;
    width: auto;
}

.catalogue__card-tags {
    margin-top: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.catalogue__card-tags a:nth-child(n+3) {
    display: none;
}

@media screen and (min-width: 1200px) {
    .catalogue__card-tags a:nth-child(n+3) {
        display: block;
    }

}



.text-limit {
    position: relative;
    display: inline-block;
    /* inline要素の幅を持たせるため */
    cursor: pointer;
    padding: 4px 12px 4px 12px;
    border-radius: 50px;
    border: 1px solid #623f2a;
    background: #FFFFFF;
    font-size: 11px;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

@media screen and (min-width: 900px) {
    .text-limit {
        padding: 4px 16px 4px 16px;
        font-size: 13px;
    }
}

.text-limit:hover {
    background: #fdb17d;
}

.text-limit span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.text-limit::after {
    content: attr(data-full-text);
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 90%;
    white-space: nowrap;
    border-radius: 20px;
    background-color: #FFFFFF;
    color: #623f2a;
    font-size: 11px;
    font-weight: 300;
    padding: 5px 10px;
    border: 1px solid rgb(253, 246, 227);
    display: none;
    z-index: 1;
}

.text-limit.show-full-text::after {
    display: block;
}

.title-recommend {
    padding-top: 0px;
}

.information__subtitle {
    text-align: left;
}

.title {
    font-family: "Kranky", serif;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 3.8px;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .title {
        font-size: 36px;
        letter-spacing: 5px;
    }
}

.subtitle {
    font-size: 16px;
    letter-spacing: 1.28px;
    margin-top: 14px;
}

.swiper-container2 {
    margin-top: 10px;
    position: relative;
}

.swiper-slide {
    width: auto;
}

.swiper-horizontal {
    margin: 0 calc(50% - 57vw);
}

.swiper-pagination2 {
    top: auto !important;
    bottom: -20px !important;
    left: calc(50% - 20px) !important;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 160px !important;
}

@media screen and (min-width: 768px) {
    .swiper-pagination2 {
        width: clamp(300px, 61.1111111111vw, 450px) !important;
        left: calc(50% - 40px) !important;
    }
}

@media screen and (min-width: 900px) {
    .swiper-pagination2 {
        width: clamp(500px, 54.6666666667vw, 820px) !important;
        bottom: -40px !important;
    }
}

.swiper-pagination2-progressbar {
    background: rgba(98, 63, 41, 0.2);
}

.swiper-pagination2-progressbar .swiper-pagination2-progressbar-fill {
    background: #FFFFFF;
}

.swiper-pagination2-progressbar.swiper-pagination2-horizontal {
    height: 2px;
}

.swiper-button-prev2,
.swiper-button-next2 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #623f2a;
    top: 40% !important;
    opacity: 0.7;
    z-index: 40;
}

.swiper-button-prev2:hover,
.swiper-button-next2:hover {
    cursor: pointer;
}

@media screen and (min-width: 768px) {

    .swiper-button-prev2,
    .swiper-button-next2 {
        top: 45% !important;
        width: 40px;
        height: 40px;
    }
}

.swiper-button-prev2::after,
.swiper-button-next2::after {
    display: none;
}

.swiper-button-prev2 {
    left: 10px !important;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    position: absolute;
}

@media screen and (min-width: 768px) {
    .swiper-button-prev2 {
        left: 20px !important;
    }
}

.swiper-button-prev2::before {
    content: "＞";
    position: absolute;
    top: 52%;
    left: 52%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
    color: #FFFFFF;
    font-size: 12px;
    z-index: 1;
    /* 矢印を背景より上に配置 */
}

@media screen and (min-width: 768px) {
    .swiper-button-prev2::before {
        font-size: 15px;
        top: 50%;
        left: 50%;
    }
}

.swiper-button-next2 {
    right: 40px !important;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
}

@media screen and (min-width: 768px) {
    .swiper-button-next2 {
        right: 100px !important;
    }
}

.swiper-button-next2::before {
    content: "＞";
    position: absolute;
    top: 52%;
    left: 52%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
    color: #FFFFFF;
    font-size: 12px;
    z-index: 1;
    /* 矢印を背景より上に配置 */
}

@media screen and (min-width: 768px) {
    .swiper-button-next2::before {
        font-size: 15px;
        top: 50%;
        left: 50%;
    }
}

/* モーダル */
.modal-overlay {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

/* ページトップボタン */
.footer2 {
    position: relative;
}

@media screen and (min-width: 900px) {
    .footer__inner2 {
        position: fixed;
        top: 100px;
        right: 0;
        padding: 20px 5px;
        background: #FFFFFF;
        border-radius: 25px 0 0 25px;
    }
}

.footer__wrapper2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 900px) {
    .footer__wrapper2 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }
}

.footer-button__text {
    font-size: 10px;
    color: #623f2a;
    /* ＳＷ追加*/
    text-align: center; 
}

.side-button {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.side-button:hover {
    opacity: 0.7;
}

.modal-open__cart2 {
    position: relative;
    width: 50px;
    overflow: visible !important;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.modal-open__cart2:hover {
    opacity: 0.7;
}

.modal-open__cart2 img {
    width: 25px;
}

@media screen and (min-width: 900px) {
    .modal-open__cart2 img {
        margin: 0;
        width: 25px;
    }
}

.modal-open__cart2 span {
    position: absolute;
    background: #fdb17d;
    color: #FFFFFF;
    top: -4px;
    right: -16px;
    font-size: 11px;
    border-radius: 50%;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
}

@media screen and (min-width: 1200px) {
    .modal-open__cart2 span {
        top: -9px;
        right: -13px;
    }
}

.modal-container__cart {
    position: fixed;
    right: 20px;
    bottom: 25px;
    width: 90% !important;
    height: 75% !important;
    padding: 20px 20px !important;
    font-size: 12px;
}

@media screen and (min-width: 768px) {
    .modal-container__cart {
        bottom: 72px;
        right: 25%;
        width: 50% !important;
    }
}

.modal-header__cart h3 {
    margin-top: 10px;
    text-align: center;
    font-size: 15px;
}

.modal-cart__wrapper {
    margin-top: 10px;
    height: 350px;
    overflow-y: auto;
}

@media screen and (min-width: 768px) {
    .modal-cart__wrapper {
        height: 360px;
    }
}

.modal-cart__wrapper.modal-overlay-cart {
    height: 40vh;
}

@media screen and (min-width: 768px) {
    .modal-cart__wrapper.modal-overlay-cart {
        height: 55vh;
    }
}

.modal-card {
    margin-top: 20px;
    background: rgb(253, 246, 227);
    padding: 20px 30px;
    border-radius: 30px;
    width: 100%;
    margin-inline: auto;
}

@media screen and (min-width: 768px) {
    .modal-card {
        width: 90%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

.modal-card+.modal-card {
    margin-top: 20px;
}

.modal-cart__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}

@media screen and (min-width: 768px) {
    .modal-cart__top {
        gap: 40px;
    }
}

.modal-cart__top a {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.modal-cart__top img {
    width: 50px;
    height: 50px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.modal-cart__top img:hover {
    opacity: 0.7;
}

.modal-cart__top-contents ul {
    text-align: left;
}

.modal-cart__top-contents li {
    padding-bottom: 5px;
    display: flex;
    flex-direction: row;
}

.modal-cart__top-contents li span {
    width: 100%;
    padding-right: 10px;
}

.modal-cart__top-contents li span.list-title {
    min-width: 100px;
    width: 100px;
}

.modal-cart__top-contents li span:nth-of-type(1) {
    padding-right: 10px;
}

.modal-cart__buttons {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 20px;
}

.modal-cart__button {
    padding: 5px;
    text-align: center;
    width: 76px;
    height: 33px;
    font-size: 11px;
    border-radius: 20px;
    color: #FFFFFF;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.modal-cart__button:hover {
    opacity: 0.7;
}

.modal-cart__button:nth-of-type(1) {
    background: #fdb17d;
}

.modal-cart__button:nth-of-type(2) {
    background: rgb(246, 86, 86);
}

.footer-button__wrapper2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

@media screen and (min-width: 768px) {
    .footer-button__wrapper2 {
        padding-top: 20px;
        gap: 25px;
        margin-left: -5px;
    }
}

.footer-button2 {
    text-align: center;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    display: block;
}

.footer-button2 img {
    width: 20px;
    height: 20px;
}

@media screen and (min-width: 900px) {
    .footer-button2 img {
        width: 25px;
        height: 25px;
    }
}

.footer-button2:hover {
    opacity: 0.7;
}

.mypage {
    position: relative;
}

.modal-open__mypage img {
    width: 35px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
    .modal-open__mypage img {
        width: 47px;
    }
}

.modal-open__mypage img:hover {
    opacity: 0.7;
}

.modal-container__mypage {
    width: 100px !important;
    position: fixed;
    bottom: 58px;
    right: 15px;
    padding: 20px 20px !important;
    border-radius: 20px !important;
}

@media screen and (min-width: 768px) {
    .modal-container__mypage {
        width: 120px !important;
        bottom: 72px;
        right: calc(50% - 290px);
        font-size: 12px;
        padding: 30px 20px !important;
    }
}

.modal-header__mypage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

@media screen and (min-width: 768px) {
    .modal-header__mypage {
        gap: 20px;
    }
}

.modal-header__mypage a {
    font-size: 11px;
    border-bottom: 2px solid #623f2a;
    -webkit-transition: border-bottom 0.3s;
    transition: border-bottom 0.3s;
}

@media screen and (min-width: 768px) {
    .modal-header__mypage a {
        font-size: 16px;
    }
}

.modal-header__mypage a:hover {
    border-bottom: 2px solid #fdb17d;
}

.footer__image {
    display: none;
}

@media screen and (min-width: 1200px) {
    .footer__image {
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 40px;
        z-index: 20;
        -o-object-fit: cover;
        object-fit: cover;
        height: 69px;
    }
}

@media screen and (min-width: 1200px) {
    .footer__image {
        position: fixed;
        left: 0;
        bottom: 0;
    }
}

.footer__image small {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 5px;
    color: #623f2a;
    display: block;
    text-align: center;
    font-size: 10px;
}

@media screen and (min-width: 768px) {
    .footer__image small {
        bottom: 10px;
    }
}

@media screen and (min-width: 900px) {
    .footer__image small {
        bottom: 5px;
    }
}

.detail {
    padding-bottom: 100px;
}

@media screen and (min-width: 768px) {
    .detail {
        padding-bottom: 0px;
    }
}

.detail__body {
    margin-top: 0px;
}

@media screen and (min-width: 768px) {
    .detail__body {
        margin-top: 70px;
    }
}


.modal-open {
    overflow: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .modal-open {
        max-width: 1500px;
    }
}

.frame {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
    margin-top: 70px;
}

@media screen and (min-width: 768px) {
    .frame {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }
}

@media screen and (min-width: 900px) {
    .frame {
        max-width: 1500px;
    }
}

.frame iframe {
    width: 100%;
    height: calc(100vh - 140px);
}

@media screen and (min-width: 900px) {
    .frame iframe {
        /* ＳＷ変更 */
        height: calc(100vh - 80px);
        /* height: calc(100vh - 70px); */
        max-width: 1500px;
    }
}

iframe img {
    max-width: 100vw;
}


/* モーダル */
.modal-overlay {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

.modal-container {
    background-color: #fff;
    /*overflow-y: auto;*/
    height: 80vh;
    height: 80dvh;
    padding: 20px 20px;
    width: 90%;
    border-radius: 30px;
}

@media screen and (min-width: 768px) {
    .modal-container {
        padding: 40px 40px;
    }
}

@media screen and (min-width: 1200px) {
    .modal-container {
        padding: 40px 90px;
        width: 80%;
        height: 80vh;
        height: 80dvh;
    }
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.modal-header_final {
    display: flex;
    flex-direction: column;
}

.modal-header_final_top {
    display: flex;
    flex-direction: column;
}



@media screen and (min-width: 768px) {
    .modal-header {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .modal-header_final_top {
        display: flex;
        flex-direction: row;
    }
}

.modal-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (min-width: 768px) {
    .modal-left {
        padding: 0 40px 0 0;
        border-bottom: none;
    }
}

.modal-left h2 {
    text-align: center;
}

#js-input-area {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;

}

h2.title-final_confirmation {
    margin-top: 120px;
}

@media screen and (min-width: 768px) {
    .modal-left.final h2 {
        text-align: left;
        margin-left: 38%;
    }
}

.modal-left__contents {
    margin-top: 20px;
    width: 300px;
    margin-inline: auto;
}

.modal-left__contents.final {
    padding-bottom: 10px;
    width: 100%;
}


@media screen and (min-width: 768px) {
    .modal-left__contents.final {
        padding-bottom: 10px;
    }
}

#js-lot-number,
#js-retail-price,
#js-sales-unit-price {
    width: 63px;
    text-align: right;
}

#js-retail-price.kakedaka {
    width:110px;
}

.modal-item {
    border-bottom: 1px solid #000;
    width: 90%;
}

.modal-item:last-of-type {
    border-bottom: 1px solid #fff;
}

@media screen and (min-width: 900px) {
    .modal-left__contents {
        width: 100%;
    }

    .modal-left__contents.final {
        width: 85%;
        margin-inline: initial;
    }
}

p.total-amount {
    padding-top: 16px;
    font-weight: bold;
}

#js-total-amount {
    font-weight: bold;
}

.modal-left__contents li {
    font-size: 12px;
    padding-bottom: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.modal-left__contents li p {
    width: 80px;
}

#delivery-error-message {
    width: 100%;
}

.modal-left__contents li span {
    margin-right: 5px;
    max-width: 60%;
}

.modal-left__contents li span.list-title {
    width: 80px;
}

.modal-left__contents li span:nth-of-type(1) {
    font-weight: bold;
}

.modal-left__contents .modal-left__contents li span:nth-of-type(1) {
    padding-right: 10px;
}

.modal-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    
    /* ãƒ•ã‚©ãƒ¼ã‚«ã‚¹æ™‚ã®ã‚¹ã‚¿ã‚¤ãƒ« */
}

.modal-select select {
    margin-top: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font: inherit;
    color: inherit;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* ＳＷ変更 */
    /* width: 80%; */
    width: 100%;
    max-width: 180px;
    border-radius: 5px;
    border: 1px solid #623f2a;
    background: #fff;
    padding: 5px 43px 5px 13px;
    background: url(../img/icon-arrow-b.svg) no-repeat center right 14px/13.217px 20px;
}

.modal-select select:focus {
    border-width: 1px;
    /* ãƒ•ã‚©ãƒ¼ã‚«ã‚¹æ™‚ã®æž ç·šã®å¤ªã•ã‚’å¤‰æ›´ */
    outline: none;
    /* ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã®ãƒ•ã‚©ãƒ¼ã‚«ã‚¹æ™‚ã®æž ç·šã‚’éžè¡¨ç¤º */
    /* ä»»æ„ã®ãƒ•ã‚©ãƒ¼ã‚«ã‚¹æ™‚ã®ã‚¹ã‚¿ã‚¤ãƒ«ã‚’è¿½åŠ  */
}

.modal-select p {
    font-weight: bold;
}

.select-location {
    width: 100%;
    max-width: 200px;
}

.modal-counter {
    margin-top: 15px;
}

.modal-counter p {
    font-weight: bold;
}

.select-quantity {
    width: fit-content;
}

#quantity-error-message {
    width: 100%;
}

#change-button-error-message {
    font-size: 14px;
    font-weight: bold;
    padding-top: 20px;
}

.counter-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 25px;
    background-color: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #623f2a;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.counter-button {
    color: #623f2a;
    border: none;
    padding: 10px 12px;
    font-size: 10px;
    padding: 0 10px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.counter-display {
    font-size: 12px;
    min-width: 50px;
    text-align: center;
    font-weight: normal !important;
    border-left: 1px solid #623f2a;
    border-right: 1px solid #623f2a;
    margin-right: 0 !important;
    padding: 2px 0;
}

.modal-left__buttons {
    display: block;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

@media screen and (min-width: 768px) {
    .modal-left__buttons {
        margin-top: auto;
        gap: 40px;
    }
}

.button-cart,
.button-close {
    font-size: 12px;
    min-width: 120px;
    padding: 8px 17px;
}

@media screen and (min-width: 900px) {

    .button-cart,
    .button-close {
        padding: 8px 28px;
        min-width: 180px;
    }
}

@media screen and (min-width: 1200px) {

    .button-cart,
    .button-close {
        min-width: 200px;
    }
}

.button-close {
    background: #FFFFFF;
    color: #623f2a;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.button-close:hover {
    background: #fdb17d;
    opacity: 1;
}

.modal-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 600px;
    min-width: 250px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (min-width: 768px) {
    .modal-right {
        width: 50%;
    }
}

.modal-right.final {
    font-size: 14px;
    margin-top: 60px;
}

.modal-right.final label {
    font-weight: bold;
}

.modal-right.final #remarks-container textarea {
    height: 48px;
    width: 80vw;
}

@media screen and (min-width: 768px) {
    .modal-right.final {
        margin-top: 0px;
        width: 45%;
    }

    .modal-right.final input {
        height: 24px;
    }

    .modal-right.final #remarks-container textarea {
        width: auto;
    }
}

.modal-right.final #remarks-container label {
    padding-top: 20px;
}

@media screen and (min-width: 768px) {
    .modal-right {
        padding: 0 0 0 40px;
    }
}

@media screen and (min-width: 1200px) {
    .modal-right {
        min-width: auto;
    }
}

.modal-right h2 {
    text-align: center;
    margin-top: 60px;
}

@media screen and (min-width: 768px) {
    .modal-right h2 {
        margin-top: 0px;
    }
}


.modal-cart__top-contents {
    font-size: 12px;
}

.modal-right__button {
    margin-top: 20px;
    font-size: 12px;
    min-width: 165px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}

.modal-bottom__button {
    margin-top: 40px;
    font-size: 12px;
    min-width: 165px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}

@media screen and (min-width: 768px) {
    .modal-right__button {
        margin-top: auto;
    }
}

@media screen and (min-width: 900px) {
    .modal-right__button {
        min-width: 180px;
    }
}

@media screen and (min-width: 1200px) {
    .modal-right__button {
        min-width: 250px;
    }
}

#empty-cart-message {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#added-message {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close {
    background: transparent;
    border: 0;
}

.modal-header .modal-close::before {
    content: "✕";
}

.box01 {
    background-color: #ccc;
    height: 200px;
    margin: 0 auto;
    width: 80%;
}

.box02 {
    background-color: #ccc;
    height: 200px;
    margin: 0 auto;
    width: 80%;
}

/* モーダルアニメーション */
@-webkit-keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes mmslideIn {
    from {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes mmslideIn {
    from {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes mmslideOut {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }
}

@keyframes mmslideOut {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden=false] .modal-overlay {
    -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal-container {
    -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-overlay {
    -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-container {
    -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
    will-change: transform;
}

.modal-header {
    height: 100%;
}

.hidden-pc {
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .hidden-pc {
        display: none;
    }
}

.hidden-sp {
    display: none;
}

@media screen and (min-width: 768px) {
    .hidden-sp {
        display: inline-block;
    }
}

@media screen and (max-width: 767px) {
    .catalogue__head-logo>img {
        left: 63px;
        width: 130px;
    }

    .header-item-main {
        margin-left: 20px;
    }

    .header-item-main {
        font-size: 16px;
    }
}

.title-final_confirmation.title::before {
    content: "";
    position: absolute;
    background: url(../img/deco-bird.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 100px;
    top: 110px;
    left: 260px;
    width: 40px;
    height: 99px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

@media screen and (min-width: 768px) {
    .title-final_confirmation.title::before {
        top: 90px;
        left: 320px;
        width: 60px;
        height: 200px;
    }
}

.title-catalogue_list.title::before {
    content: "";
    position: absolute;
    background: url(../img/deco-orangeflower.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 100px;
    top: 90px;
    left: 320px;
    width: 60px;
    height: 200px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

.title-catalogue_list_edit.title::before {
    content: "";
    position: absolute;
    background: url(../img/deco-orangeflower.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 100px;
    top: 90px;
    left: 320px;
    width: 60px;
    height: 200px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

.title-catalogue_list_sample.title::before {
    content: "";
    position: absolute;
    background: url(../img/deco-orangeflower.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 100px;
    top: 90px;
    left: 370px;
    width: 60px;
    height: 200px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

/*注文履歴画面*/

.title-order_history.title::before {
    content: "";
    position: absolute;
    background: url(../img/deco-ribbon.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 100px;
    top: 105px;
    left: 260px;
    width: 40px;
    height: 99px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

.order_history_menu {
    font-weight: 700;
}

.input-error {
    border: 2px solid red;
}

@media screen and (min-width: 768px) {
    .title-order_history.title::before {
        top: 90px;
        left: 340px;
        width: 50px;
        height: 200px;
    }

    .title-order_history.title.no-header::before {
        top: -25px;
    }
}

.order_history_container {
    background-color: #FFFFFF;
    width: 100%;
    justify-content: center;
    margin: 20px auto;
    padding: 40px 0;
    border-radius: 30px;
}

.order_history_container.edit {
    width: 700px;
}

.order_history_container.edit>div {
    margin-left: 50px;
}

.modal-cart__top-contents div.date {
    width: 160px;
    padding-top: 11px;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.modal-cart__top-contents div span:nth-of-type(1) {
    padding-right: 10px;
}

br.order_history {
    display: none;
}

ul.order_history {
    width: 100%;
    padding: 11px 0;
}

ul.order_history:last-child {
    border-bottom: none;
}

.modal-card.order_history.order_menu {
    padding-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 40px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgb(253, 246, 227);
    color: #623f2a;
}

@media screen and (max-width: 767px) {
    .order_history_container {
        padding: 20px;
    }
}

.catalogue.order_history {
    padding-bottom: 40px;
}

.catalogue.order_history {
    overflow: hidden;
}

.modal-cart__top-contents ul li:nth-child(6) span:last-child {
    display: inline-block;
    width: 90px;
    text-align: right;
}

.modal-item ul.modal-left__contents.final li:last-child span:last-child {
    display: inline-block;
    width: 50px;
    text-align: right;
}



@media screen and (min-width: 768px) {
    .modal-card.order_history {
        width: 90%;
    }

    .modal-cart__top-contents {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    a.modal-cart__button {
        height: 30px;
    }

    ul.order_history {
        display: flex;
        margin-left: 11px;
    }

    ul.order_history li {
        margin-right: 20px;
        width: 12vw;
    }

    ul.order_history li:last-child {
        margin-right: 0px;
    }

    .modal-cart__buttons {
        display: flex;
        flex-direction: column;
    }

    br.order_history {
        display: block;
    }

    .modal-card.order_history {
        border-radius: 0px;
        margin-top: 0px;
        margin-bottom: 20px;
        padding-top: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .order_history_menu {
        display: none;
    }

    .modal-card.order_history.order_menu span {
        font-weight: 700;
    }

    .modal-cart__button.reorder {
        margin-left: 5vw;
    }
}

/*数量確認・カート確認*/
.modal-container.cart {
    width: 100%;
    height: auto;
    margin: 0px auto;
}

@media screen and (min-width: 768px) {
    .modal-container.cart {
        margin: 20px auto;
    }
}


.modal-left.cart {
    padding: 0;
}

.modal-right.cart {
    padding: 0;
}

.modal-right__button.button.cart {
    margin-top: 20px;
}



@media screen and (min-width: 768px) {
    .newest.no-header {
        margin-top: 0px;
    }

    .detail__body.no-header {
        margin-top: 0px;
    }


}



/*注文完了画面*/


.thanks_card {
    background: #FFFFFF;
    border-radius: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 80px;
    max-width: 700px;
    margin-inline: auto;
    position: relative;
}

.button.back_to_top {
    font-size: 14px;
    margin-top: 40px;
    min-width: 200px;
    width: auto;
    display: inline-block;
    background-color: rgb(253, 246, 227);
}

.button.back_to_top:hover {
    background-color: #fdb17d;
    transition: none;
    opacity: 1;
    transition: 0.3s;
}

.thanks {
    padding: 60px auto 0;
}

#demo.err {
    background-color: #fff6f6;
    border: 1px solid #ffa3a3;
}

#text-length1>span {
    margin-left: 10px;
    color: #d11a1a;
    font-weight: bold;
}

#text-length2>span {
    margin-left: 10px;
    color: #d11a1a;
    font-weight: bold;
}

#text-length3>span {
    margin-left: 10px;
    color: #d11a1a;
    font-weight: bold;
}

#text-length4>span {
    margin-left: 10px;
    color: #d11a1a;
    font-weight: bold;
}

#text-length5>span {
    margin-left: 10px;
    color: #d11a1a;
    font-weight: bold;
}

#text-length6>span {
    margin-left: 10px;
    color: #d11a1a;
    font-weight: bold;
}

/*メンテナンスページ*/
.catalogue_list_sample p {
    margin-top: 5%;
    margin-bottom: 20px;
    font-weight: bold;
}

.catalogue_list_button_box {
    display: flex;
    justify-content: center;
}

.catalogue_list_sample button.save {
    background-color: #fff;
}

.catalogue_list_sample button {
    border: 1px solid #623f2a;
    padding: 10px 20px;
    margin-right: 10px;
    font-size: 14px;
    color: #623f2a;
    border-radius: 5px;
}

.catalogue_list_sample button:nth-of-type(3) {
    background-color: #ddd;
}

.catalogue_list_sample button img {
    padding-right: 5px;
}

.catalogue_list_edit_container {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}


.catalogue_list_edit_content {
    display: flex;
    flex-direction: row;
    margin: 10px 0;
}

.catalogue_list_edit_content label {
    width: 150px;
}

.catalogue_list_edit_content select {
    margin-right: 10px;
}

.catalogue_list_edit_content input#keyword {
    width: 450px;
}

.catalogue_list_edit_content input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 5px;
}


/*ページネーション*/
.pagination_container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 5px;
    margin: 0 auto;
}

.pagination a {
    text-decoration: none;
    padding: 12px;
    border-radius: 4px;
}

.pagination a:hover {
    opacity: 0.7;
}

.pagination span {
    padding: 8px 12px;
}
