﻿/* --------------------------------------------------
    レイアウト
-------------------------------------------------- */
#gHeader{background-color: white;}
:root {
  --edelweiss-base: #005B60;
  --edelweiss-btn-color: #3C3C3C;
}
body {background-color: white;}
.pane-left-menu {
    display: none;
}
.pane-main,
.pane-left-menu+.pane-main {
    width: auto;
}
[data-browse-mode="P"] main > div {
    width: 1060px;
}
main.mainframe_ > div {
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}
.edelweiss-content {
    padding: 3.2rem 0 10rem;
}
.edelweiss-content sup {
    font-size: 0.6em;
    vertical-align: top;
}
/* --------------------------------------------------
    コンテンツ
-------------------------------------------------- */
.edelweiss-content .headLine01 {
    width: auto;
}
.edelweiss-content .headLine02 {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 60px;
    font-size: clamp(20px,6.5vw,32px);
}
.edelweiss-content .sub-line-title {
    text-align: center;
    position: relative;
    color: var(--edelweiss-base);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
    font-size: 20px;
    max-width: 610px;
}
.edelweiss-content .sub-line-title::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: var(--edelweiss-base);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.edelweiss-content .sub-line-title .inner {
    background-color: white;
    padding: 0 0.4em;
    position: relative;
    font-size: 20px;
    font-weight: normal;
}
.edelweiss-content .read-text {
    color: var(--edelweiss-base);
    text-align: center;
    font-size: clamp(14px,3.3vw,16px);
    line-height: 2;
}
.edelweiss-content .read-text + .read-text {
    margin-top: 25px;
}
.edelweiss-content .read-text + *:not(.read-text) {
    margin-top: 100px;
}
.edelweiss-content .img-content {
    text-align: center;
    max-width: 390px;
    margin: auto;
}
[data-browse-mode="S"] .edelweiss-content .headLine02 {
    margin-top: 50px;
    margin-bottom: 40px;
}
[data-browse-mode="S"] .edelweiss-content .sub-line-title {
    margin-bottom: 50px;
}
[data-browse-mode="S"] .edelweiss-content .read-text + *:not(.read-text) {
    margin-top: 80px;
}
[data-browse-mode="S"] .edelweiss-content > *:not(.mv-image){
    margin-left: 20px;
    margin-right: 20px;
}
@media (max-width: 768px){
    main.mainframe_ .edelweiss-content .headLine02 {
        margin-top: 50px;
        margin-bottom: 40px;
    }
    main.mainframe_ .edelweiss-content .sub-line-title {
        margin-bottom: 50px;
    }
    main.mainframe_ .edelweiss-content .read-text + *:not(.read-text) {
        margin-top: 80px;
    }
    main.mainframe_ .edelweiss-content > *:not(.mv-image){
        margin-left: 20px;
        margin-right: 20px;
    }
}
/* --------------------------------------------------
    商品一覧
-------------------------------------------------- */
.edelweiss-content .item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 3em;
    margin-top: 100px;
    margin-bottom: 100px;
}
.edelweiss-content .item-list .item {
    width: calc((100% - 6em) / 3);
    display: flex;
    flex: 1 1 calc((100% - 6em) / 3);
}
.edelweiss-content .item-list .item .item-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}
.edelweiss-content .item-list .item .item-inner .img-block {
    border: 1px solid #e2e2e2;
    aspect-ratio: 1;
    width: 80%;
}
.edelweiss-content .item-list .item .text {
    color: var(--edelweiss-base);
    font-size: clamp(10px,3.8vw,14px);
    min-height: calc(clamp(8px,3.5vw,12px) * 6);
}
.edelweiss-content .item-list .item .name {
    flex: 1;
}
.edelweiss-content .item-list .item .name,
.edelweiss-content .item-list .item .price {
    font-size: 12px;
}
.edelweiss-content .item-list .item .price {
  margin-top: auto;
}
[data-browse-mode="S"] .edelweiss-content .item-list {
    margin-top: 80px;
    margin-bottom: 70px;
}
[data-browse-mode="S"] .edelweiss-content .item-list {
    gap: 80px 20px;
}
[data-browse-mode="S"] .edelweiss-content .item-list .item {
    width: calc((100% - 20px) / 2);
    flex: 1 1 calc((100% - 20px) / 2);
}
.edelweiss-content .item-list .item .text {
    min-height: calc(clamp(8px,3.5vw,12px) * 3);
    margin-top: 1.8rem;
}
.notesUl,.notesUl * {font-size: clamp(8px,3.3vw,10px);}
@media (max-width: 768px){
    main.mainframe_ .edelweiss-content .item-list {
        margin-top: 80px;
        margin-bottom: 70px;
    }
    main.mainframe_ .edelweiss-content .item-list {
        gap: 80px 20px;
    }
    main.mainframe_ .edelweiss-content .item-list .item {
        width: calc((100% - 20px) / 2);
        flex: 1 1 calc((100% - 20px) / 2);
    }
    .edelweiss-content .item-list .item .text {
        min-height: calc(clamp(8px,3.5vw,12px) * 6);
    }
    .edelweiss-content .item-list .item .item-inner .img-block {
        width: auto;
    }
}
@media (min-width: 769px){
    .notesUl { gap: 1em; }
}
@media (max-width: 768px){
    .notesUl { flex-direction: column; gap: 0.5em; }
}