@charset "utf-8";
/* =======================================================
* common
* ======================================================= */
html {
    font-size: 62.5%;
}

body {
    box-sizing: border-box;
    font-family: '游明朝','Yu Mincho', YuMincho, 'Hiragino Mincho Pro', 'Noto Sans JP', serif, sans-serif;
    font-size: 1.6rem;
}

* {
    padding: 0;
    margin: 0;
}

a {
    color: #3C2A11;
    text-decoration: none;
}

a:hover,
input:hover {
    opacity: 0.6;
}

ul {
    list-style: none;
}

h2 {
    font-size: 4.8rem;
    font-weight: 500;
}

input, textarea, select, button {
    width: 100%;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    box-sizing: border-box;
    font-family: '游明朝','Yu Mincho', YuMincho, 'Hiragino Mincho Pro';
    padding: 1.2rem 1.6rem;
    margin-top: 1.2rem;
}

input[type="submit"],
input[type="button"],
input[type="radio"],
label {
    cursor: pointer;
    vertical-align: text-bottom;
}

/* セレクトボックス矢印変更 */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(/img/icon-arrow-down.svg);
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
    color: #3C2A11;
}

form .inner + .flex-center {
    padding-top: 9rem;
}

form .inner + .flex-center .btn,
form .inner .flex-center .btn,
.page-delivery .flex-center .btn,
.page-setting-details .flex-center .btn,
.page-guide .flex-center .btn,
.page-multiple .flex-center .btn,
.base-btn {
    width: 100%;
    max-width: 226px;
    padding: 0 1.2rem;
}

#wapper {
    overflow: hidden;
    position: relative;
}

.flex-block {
    display: flex;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.sp {
    display: none;
}

/* =======================================================
* style
* ======================================================= */
#menu-btn {
    display: none;
}

#menu-btn::before,
#menu-btn::after {
    width: 25px;
    height: 1px;
    border-radius: 1px;
    background-color: #907033;
    content: "";
    position: absolute;
    top: 50%;
    transition: 0.5s;
    margin-top: -1px;
}

#menu-btn::before {
    box-shadow: 0 3px 0 0 transparent, 0 9px 0 0 #907033;
}

#menu-btn::after {
    box-shadow: 0 -3px 0 0 transparent, 0 -9px 0 0 #907033;
}

#menu-btn.open::after {
    box-shadow: none;
    transform: rotate(-45deg);
}

#menu-btn.open::before{
    box-shadow: none;
    transform: rotate(45deg);
}

#nav-container {
    display: flex;
    width: 100%;
    height: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in, transition 0.4s linear,visibility 0.3s ease-out;
    padding: 7rem 0;
    white-space: nowrap;
}
@media screen and (min-width: 771px) {
    #nav-container {
        height: initial;
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        visibility: visible;
        opacity: 1;
        padding: 0;
    }
}

#menu-btn.open + #nav-container {
    visibility: visible;
    opacity: 1;
}

@media screen and (min-width: 771px) {
    nav ul li {
        display: inline-block !important;
    }
}

nav ul li a {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
@media screen and (min-width: 771px) {
    nav ul li a {
        display: inline-block;
    }
    nav li:not(:last-of-type) a i {
        display: none !important;
    }
}

nav li {
    padding-left: 20px;
}

#header {
    width: 100%;
    background: #000 url(/img/bg-menu.webp) no-repeat center center / cover;
    position: fixed;
    top: 0;
    z-index: 9999;
    padding: 0.3rem 0;
}

.header-container {
    background: #000 url(/img/bg-menu.webp) no-repeat center center / cover;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, #907033 0.55%, #F3C753 51.83%, #A0630F 100%) 1;
    padding: 0.3rem 0;
}

.header-container::before,
.header-container::after {
    display: block;
    height: 18px;
    content: "";
    background: url(/img/icon-header.svg) repeat;
}

.header-container .flex-between {
    align-items: center;
    padding: 1rem 4rem;
}

.header-container img {
    vertical-align: bottom;
}

.header-inner li {
    padding-left: 2.7rem;
}

.header-inner a,
.footer-inner a {
    color: #BBB;
}

.header-inner a:hover,
.footer-inner a:hover {
    color: #F3C753;
    opacity: 1;
}

#pagetop {
    position: fixed;
    bottom: 0;
    right: 0;
    cursor: pointer;
}

#footer {
    background: #000 url(/img/bg-menu.webp) no-repeat center center / cover;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, #907033 0.55%, #F3C753 51.83%, #A0630F 100%) 1;
}

.footer-container {
    padding: 3rem 4rem;
}

@media screen and (min-width: 769px) {
    .footer-inner {
        order: 2;
        text-align: right;
    }
}

.footer-inner li {
    padding-left: 2rem;
}

.footer-inner p {
    color: #BBB;
    font-family: Noto Sans JP;
    font-size: 1rem;
    padding-top: 1.8rem;
}

.footer-container img {
    order: 1;
}

#inner + .btn {
    padding-top: 9rem;
}

.btn a,
.btn input,
.pattern-container button {
    display: block;
    width: 100%;
    max-width: 226px;
    height: 43px;
    line-height: 43px;
    box-sizing: border-box;
    color: #F8F2D2;
    font-size: 1.3rem;
    text-align: center;
    padding: 0;
    margin: 0 auto;
}

.btn-gry a,
.btn-gry input,
.pattern-container .btn-gry button {
    background: #4B4B48;
    border: 1px solid #85837B;
    border-radius: 2px;
    cursor: pointer;
}

.btn-yel a,
.btn-yel input {
    background: #907033;
    border: 1px solid #907033;
    border-radius: 2px;
}

.btn-brn {
    border-top: 1px solid #616161;
    padding-top: 3.5rem;
    margin-top: 3.5rem;
}

.btn-brn a {
    max-width: 478px;
    height: 43px;
    line-height: 43px;
    background: rgba(103, 96, 82, 0.51);
    border: 1px solid #907033;
    border-radius: 2px;
}

.btn-clr a {
    max-width: 200px;
    height: 43px;
    line-height: 43px;
    border: 1px solid #261C0F;
    border-radius: 2px;
    color: #3C2A11;
}

.btn-clr img {
    width: 3.3%;
    padding-left: 1rem;
}

.btn-wht {
    display: inline-block;
    height: 53px;
    background: #FFF;
    border: 1px solid #907033;
    box-sizing: border-box;
    color: #3C2A11;
    font-size: 2rem;
    padding: 1rem 3rem;
    margin-top: 2.5rem;
}

.link-blu {
    color: #305E9B;
    font-size: 1.4rem;
    font-weight: 800;
}

.link-blu-nomal {
    color: #305E9B;
}

.link-yel {
    color: #F3C753;
    text-decoration: underline;
}

.clr-red {
    color: #F00;
}

.delete {
    max-width: 30px;
    color: #8A8A8A;
    font-size: 1.5rem;
    text-align: center;
}

.style-border {
    border-top: 1px solid #D9D9D9;
}

/* =======================================================
* under
* ======================================================= */
#page-header {
    background: #292620 url(/img/bg-header.webp) no-repeat center center / cover;
}

#page-contents.page-index {
    background: #292620 url(/img/bg-top.webp) no-repeat top center / cover;
}

#page-contents,
#page-contents.page-buy {
    background: #292620 url(/img/bg-cover.webp) no-repeat center center / cover;
    padding-bottom: 11rem;
}

.container {
    max-width: 1200px;
    box-sizing: border-box;
    padding: 0 10rem;
    margin: 0 auto;
}

.page-header-container {
    color: #F3C753;
    padding: 6.5rem 0;
}

.page-header-container p {
    font-size: 2rem;
    padding-top: 2rem;
}

.description-container { /* 白レイヤー上概要テキスト */
    color: #D9D9D9;
    padding: 4rem 0;
}

#inner,  /* 白レイヤー */
.inner { /* 白レイヤー（連続） */
    background: #FFF;
    border: 1px solid #907033;
    border-radius: 4px;
    color: #3C2A11;
    padding: 3.5rem 4rem;
}

.inner-padding { /* 白レイヤー上余白設定 */
    padding-top: 10rem;
}

#index { /* 白レイヤーなし */
    /*padding: 3.5rem 4rem;*/
    padding: 3.5rem 0;
}

.description-container p {
    background: #FFF;
    border: 2px solid #F00;
    border-radius: 4px;
    color: #F00;
    font-size: 1.5rem;
    padding: 1rem 2.4rem;
}

.description-container p a {
    color: #F00;
    text-decoration: underline;
}

#index h3 {
    color: #F3C753;
    font-size: 2rem;
    text-align: center;
    padding-top: 3rem;
}

#index + .btn {
    padding-top: 5rem;
}

.index-container {
    padding-top: 6.5rem;
}

.description-container .btn-gry,
.index-container .btn-gry {
    display: inline-block;
    background: #54524D;
    border-radius: 4px;
    color: #D9D9D9;
    padding: 1rem 1.2rem;
    margin: 2.5rem 0;
}

.index-inner { /* 白テキスト */
    color: #D9D9D9;
}

.index-inner-center { /* 白テキストセンタリング */
    color: #D9D9D9;
    text-align: center;
}

.header-line {
    display: flex;
    justify-content: space-between;
    padding: 10.5rem 0 2rem;
}

.header-line span {
    color: #907033;
    font-size: 3.6rem;
    text-align: center;
    padding: 0 5rem;
}

@media screen and (max-width: 1220px) {
    .header-line span {
        font-size: 1.8rem;
        padding: 0 2rem;
    }
}

.header-line img {
    width: 27%;
}

/* list-contents */
.sort-container {
    color: #D9D9D9;
    padding: 3rem 0;
}

.sort-container .flex-block {
    width: 300px;
    align-items: center;
}

.select-box {
    width: 100%;
    max-width: 125px;
    border-radius: 2px;
    position: relative;
    margin-left: 1.5rem;
}

.select-item {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 2px;
    padding: 1.5rem 1.2rem;
}

.select-item::-ms-expand{
    display: none;
}

.list-contents-header {
    background: rgba(208, 199, 180, 0.37);
    border-radius: 4px 4px 0 0;
    font-weight: 800;
    padding: 1.5rem 4rem;
}

.list-contents-header .list-contents-date {
    width: 95px;
}

.list-contents-container {
    color: #73604B;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 0 4rem 4rem;
}

.list-contents-list {
    align-items: center;
    border-bottom: 1px solid #CFCFCF;
    padding: 3rem 2rem;
}

.list-contents-date {
    width: 110px;
    padding-right: 3rem;
}

/* accordion */
details {
    background: #292620;
    border: 1px solid #907033;
    border-radius: 4px;
    color: #3C2A11;
    transition: .6s;
    margin-top: 2rem;
}

summary::-webkit-details-marker {
    display: none;
}

summary {
    display: flex;
    align-items: center;
    background: #292620;
    border-left: 4px solid #907033;
    border-radius: 4px;
    color: #907033;
    cursor: pointer;
    padding: 0 2.5rem 0 1rem;
}

summary .flex-block {
    align-items: center;
}

summary img:last-of-type {
    padding: 0 1.5rem 0 2rem;
}

#index summary h5 {
    color: #907033;
    font-size: 2rem;
    padding: 3rem 3rem 3rem 0;
}

summary::after {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 1px solid #907033;
    border-bottom: 1px solid #907033;
    content: '';
    transform: translateY(-25%) rotate(45deg);
    transition: transform .3s;
    margin-left: 1rem;
}

details[open] summary {
    border-bottom: 1px solid #907033;
    border-radius: 4px 4px 0 0;
}

details[open] summary::after {
    transform: rotate(225deg);
}

.accordion-inner {
    background: #D0C7B4;
    border-radius: 0 0 4px 4px;
}

details[open] .accordion-inner {
    animation: fadeIn .8s ease;
    padding: 3rem 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

/* accordion-inner */
.accordion-box {
    border-top: 4px solid #907033;
    border-radius: 0 0 4px 4px;
    margin: 0 3rem;
}

.accordion-inner .tab-list {
    background: #FFF;
    border-bottom: 1px solid #D9D9D9;
}

.accordion-inner .accordion-border:first-of-type .tab-item li .accordion-box {
    border: none;
    padding: 0;
}

.accordion-box .flex-between {
    color: #907033;
    font-size: 1.2rem;
}

/* accordion-スライダー */
/* スライダー縦並び回避 */
.tab-list,
.tab-content {
    /*    display: none;*/
    /*    height: 0;*/
}

.tab-list.slick-initialized {
    display: block;
    height: 65px;
    padding-top: 2rem;
}

.tab-content.slick-initialized {
    /*    display: block;
        height: auto;*/
}

.tab {
    max-width: 938px;
    margin: 0 auto;
}

.tab-list .slick-list {
    width: 493px;
    margin: 0 auto !important;
}

.tab-list li div {
    width: 45px !important;
    color: #B7AFA4;
    cursor: pointer;
    text-align: center;
    padding: 0 0.5rem 1.5rem;
}

@media screen and (max-width: 1050px) {
    .tab-list li div {
        width: 69px !important;
        padding: 0 1.5rem 1.5rem;
    }
}

.tab-list .slick-current li div {
    border-bottom: 3px solid #3C2A11 !important;
    font-weight: 800;
}

.tab-list li:focus,
.tab-content ul:focus {
    outline: none;
}

.tab-list img {
    width: 10px;
    height: 16px;
    cursor: pointer;
    object-fit: cover;
    position: absolute;
    top: 37%;
}

.tab-prev {
    /*display: none;*/
    left: 17%;
    z-index: 8
}

.tab-next {
    /*display: block;*/
    right: 17%;
    z-index: 8;
}

@media screen and (max-width: 1070px) {
    .tab-prev {
        left: 2%;
    }

    .tab-next {
        right: 2%;
    }
}

/* スライダースクロール */
.slick-slider {
    touch-action: pan-y;
}

/* スライダー逆戻り停止 */
.slick-slider div {
    transition: none;
}

/* 端に来たらナビを消す */
.slick-disabled {
    display: none !important;
}

.accordion-box h4 {
    color: #3C2A11;
    font-size: 2rem;
    padding-left: 1rem;
}

.info-details-contents {
    background: #D0C7B4;
}

.info-details-contents .accordion-border .flex-between {
    align-items: start;
}

/* 生豆 */
li > .info-possession {
    background: #FFF;
    border-radius: 0 0 4px 4px;
    padding: 0;
}

.info-taste,
.info-detail,
.info-flavor {
    background: #FFF;
    padding: 2rem;
    margin: 2.5rem 0 0;
}

.info-taste,
.info-detail {
    width: 49%;
    box-sizing: border-box;
}

.info-taste .flex-between,
.info-detail .flex-block,
.info-flavor .flex-block {
    padding-bottom: 2rem;
}

/* accordion-味のバランス */
.info-taste {
    padding-right: 4rem;
}

.info-taste ul {
    padding-left: 2rem;
}

/* accordion-味の詳細 */
@media screen and (max-width: 1195px) {
    .info-details-contents {
        padding-top: 1.5rem;
    }

    .accordion-border > .flex-between {
        display: block;
    }

    /* accordion-味のバランス */
    .info-taste,
    .info-detail {
        width: auto;
        margin: 0 0 1.5rem;
    }

    .info-flavor {
        margin-top: 0;
    }
}

.accordion-detail li {
    padding-bottom: 0.8rem !important;
}

.accordion-detail li:last-of-type {
    padding: 0 !important;
}

.accordion-detail h5,
.accordion-detail span {
    font-family: YuGothic;
    font-size: 1.5rem;
    font-weight: 500;
}

.accordion-detail span,
.accordion-detail img {
    padding: 0 0.6rem;
}

.accordion-detail img:last-of-type {
    padding-right: 0;
}

.info-detail p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    line-height: 1.53;
}

/* accordion-Flavor */
.info-flavor .flex-block + .flex-block {
    flex-wrap: wrap;
    padding: 0 !important;
}

.info-flavor .flex-block + .flex-block img {
    width: calc(100%/8 - 1rem);
    padding-bottom: 2rem;
    margin-right: 1.1rem;
}

.info-flavor .flex-block + .flex-block img:nth-of-type(8n) {
    margin: 0;
}

/* accordion-生豆の所持量 */
.info-possession {
    border: none;
    padding: 0 2rem;
}

.info-possession .flex-between {
    border-bottom: 1px solid #D9D9D9;
    color: #3C2A11;
    font-size: 1.5rem;
    padding: 1.5rem 0 !important;
    margin: 0 2.5rem;
}

.info-possession .flex-between:last-of-type {
    border-bottom: none;
}

.info-possession .flex-between img,
.info-possession .flex-between span {
    padding-right: 1rem;
}

.info-possession select {
    width: 100%;
    max-width: 84px;
    height: 40px;
    margin: 0;
}

.info-possession .set-price {
    width: auto;
    text-align: left;
}

/* accordion-ボタン */
.accordion-btn .btn {
    width: 200px;
}

.accordion-btn .btn-clr a {
    display: flex;
    justify-content: center;
}

.accordion-border {
    border-bottom: 1px solid #9D8E6E;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

/* label */
.label-blu {
    background: #E8EEF7;
    border: 1px solid #B5C8E1;
    border-radius: 2px;
    color: #305E9B;
    font-size: 1rem;
    font-weight: 800;
    position: relative;
    top: -4px;
    padding: 0.4rem 1rem;
    margin-left: 1.5rem;
}

.label-gry {
    background: #F1F1F1;
    border-radius: 4px;
    color: #837D75;
    font-size: 1.2rem;
    position: relative;
    top: -1px;
    padding: 0.4rem 1rem;
    margin-left: 1.5rem;
}

/* page-navi */
.page-navi {
    color: #FFF;
    text-align: center;
}

.page-navi p {
    padding: 4rem 0 1rem;
}

.navi-links {
    display: flex;
    justify-content: center;
}

.navi-links a,
.navi-links span {
    width: 36px;
    height: 36px;
    color: #F8F2D2;
    line-height: 36px;
    margin: 0.5rem;
}

.navi-links .prev,
.navi-links .next {
    position: relative;
}

.navi-links .prev::before,
.navi-links .next::after {
    vertical-align: middle;
    position: absolute;
    top: 0.2rem;
}

.navi-links .prev::before {
    content: url(/img/icon-arrow-left-beg.svg);
    left: -2rem;
}

.navi-links .next::after {
    content: url(/img/icon-arrow-right-beg.svg);
    right: -2rem;
}

.page-current {
    background: #AA7C25;
    border-radius: 50%;
}

.dots {
    background: none;
}

@media screen and (max-width: 941px) {
    .page-navi p {
        padding: 2.5rem 0 1.5rem;
    }

    .navi-links .pc {
        display: none;
    }
}

/* =======================================================
* TOP
　/index/
* ======================================================= */
#alert-container {
    background: #FFF;
    border-radius: 10px;
    color: #F00;
    font-weight: 600;
    position: relative;
    padding: 2rem 2.5rem;
}

#alert-container a {
    color: #F00;
    text-decoration: underline;
}

#alert-container p:not(:last-of-type) {
    padding-bottom: 1.2rem;
}

.page-index .owner-container {
    background: url(/img/bg-card.webp) no-repeat center center / cover;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2.5rem;
}

.page-index .owner-container img {
    width: 100%;
}

.page-index .owner-container .flex-between img {
    max-width: 80px;
}

.page-index .owner-inner {
    color: #F3C753;
    font-size: 2.4rem;
    text-align: center;
}

.page-index .owner-inner p {
    padding: 0.7rem 0;
}

@media (min-width: 769px) and (max-width: 1090px) {
    .page-index .owner-container .flex-between img {
        max-width: 40px;
    }

    .page-index .owner-inner,
    .page-index .owner-inner .btn-wht {
        font-size: 1.4rem;
    }

    .page-index .owner-inner .btn-wht {
        height: 44px;
    }

    .page-index .owner-inner p {
        line-height: 1.4rem;
    }
}

.page-index .owner-inner span {
    pointer-events: none;
    padding: 0 2.5rem;
}

.page-index .owner-inner .btn span {
    padding: 0 0.5rem 0 0;
}

.page-index details .accordion-btn .flex-block .btn-yel {
    padding-left: 1.3rem;
}

@media screen and (max-width: 910px) {
    .page-index details .accordion-btn .flex-block {
        display: block;
    }

    .page-index details .accordion-btn .flex-block .btn-yel {
        padding: 0 0 1.3rem 0;
    }

    .page-index details .accordion-btn .flex-block .btn-yel:last-of-type {
        padding: 0;
    }
}


/* Editing */
.a-body {
    background-color: #fff;
}

.a-item {
    background: #292620;
    border: 1px solid #907033;
    border-radius: 4px;
    color: #3C2A11;
    transition: .6s;
    margin-top: 2rem;
}

.a-collapse {
    overflow: hidden;
    height: 0;
}

.a-header {
    display: flex;
    align-items: center;
    background: #292620;
    border-left: 4px solid #907033;
    border-radius: 4px;
    color: #907033;
    cursor: pointer;
    padding: 0 2.5rem 0 1rem;
}

.a-header .flex-block {
    align-items: center;
}

.a-header img:last-of-type {
    padding: 0 1.5rem 0 2rem;
}

#index .a-header h5 {
    color: #907033;
    font-size: 2rem;
    padding: 3rem 3rem 3rem 0;
}

.a-header::after {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 1px solid #907033;
    border-bottom: 1px solid #907033;
    content: '';
    transform: translateY(-25%) rotate(45deg);
    transition: transform .3s;
    margin-left: 1rem;
}

.a-item.open .a-header {
    border-bottom: 1px solid #907033;
    border-radius: 4px 4px 0 0;
}

.a-item.open .a-header::after {
    transform: rotate(225deg);
}

.a-item.open .a-collapse {
    height: auto;
    animation: fadeIn .8s ease;
}

.a-item .accordion-inner {
    padding: 3rem 0;
}

.page-index .accordion-btn .flex-block .btn-yel {
    padding-left: 1.3rem;
}

@media screen and (max-width: 910px) {
    .page-index .accordion-btn .flex-block {
        display: block;
    }

    .page-index .accordion-btn .flex-block .btn-yel {
        padding: 0 0 1.3rem 0;
    }

    .page-index .accordion-btn .flex-block .btn-yel:last-of-type {
        padding: 0;
    }
}
