@charset "UTF-8";

ul,
ul ul,
ul li {
    padding: 0;
    list-style: none;
    margin: 0;
}

li::marker {
    display: none;
}

a:hover {
    opacity: .8;
}

input[type="radio"],
input[type="checkbox"] {
    /* 透明度0 */
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    /* ブラウザのデフォルトのスタイルを削除 */
    -webkit-appearance: none;
    appearance: none;
    /* レイアウトから無視 */
    position: absolute;
}

/* カスタムプロパティ ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
:root {
    --main-color: #000;
    --h2-fontSize: calc(20 / 16 * 1rem);
    --pc-storeName__fontSize: calc(20 / 16 * 1rem);
    --link-bg-Color: #733C1E;
    --border-radius: 4px;
    --address-fontSize: calc(14 / 16 * 1rem);
    --fontSize: calc(14 / 16 * 1rem);
    --item-bg-color: #F3F3F3;
    --color: #fff;
    --open-bgcolor: #733C1E;
    --checked-color: #8b2100;
    --pc__borderColor: #cdcdcd;
    --pc__checked-color: #FFB890;
    --area-bgColor: #FFE390;
    --font-family-main: "Noto Sans JP", sans-serif;
}

/* 共通パーツ */
.l-contents-wrapper {
    font-family: var(--font-family-main);
    width: 92%;
    margin: 0 auto;
    max-width: 1056px;
}

.notes-text {
    color: var(--main-color);
    font-family: var(--font-family-main);
    font-size: calc(13 / 16 * 1rem);
    line-height: 1.615;
}

h2 {
    color: var(--main-color);
    font-size: var(--h2-fontSize);
    font-weight: 700;
    line-height: 1.3;
    margin: 16px 0;
}

.storeSearch-title {
    font-size: calc(17 / 16 * 1rem);
}

.storeSearch {
    background-color: var(--link-bg-Color);
    border-radius: var(--border-radius);
    margin-left: 0;
    margin-bottom: 38px;
}

.storeSearch a {
    display: block;
    width: 100%;
    color: #FFF;
    text-align: center;
    font-size: var(--h2-fontSize);
    font-weight: 500;
    line-height: 18px;
    padding: 11px 0;
}

.storeSearch:hover {
    opacity: .8;
}

.search-contents-wrapper {
    padding: 50px 0 102px;
}

@media screen and (min-width:768px) {
    .storeSearch {
        max-width: 400px;
    }

    .storeSearch-title {
        font-size: calc(23 / 16 * 1rem);
        margin-top: 20px;
        line-height: 0.783;
    }

    .storeSearch a {
        padding: 16px 0;
    }

    :root {
        --fontSize: calc(16 / 16 * 1rem);
    }
}

/* リスト検索 (SP)ーーーーーーーーーーーーーー */
/*ベース*/
.toggle {
    display: none;
}

.Label,
.area {
    /*タイトル*/
    display: block;
    height: 35px;
    color: var(--main-color);
    background: #FFE390;
    text-align: center;
    font-size: var(--fontSize);
    font-weight: 400;
    padding: 8px 0;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.Label::before {
    /*タイトル横の矢印*/
    content: "";
    position: absolute;
    top: 12px;
    right: 20px;
    border: 6px solid transparent;
    border-top: 9px solid var(--main-color);
    transition: all 0.2s ease-in-out;
    transform-origin: 50% 25%;
}

.Label,
.content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.content {
    /*本文*/
    height: 0;
    overflow: hidden;
}

.toggle:checked+.Label+.content {
    /*開閉時*/
    height: auto;
    transition: all .3s ease-in;
}

.toggle:checked+.Label::before {
    transform: rotate(-180deg) !important;
}

.list-container .Label {
    margin-bottom: 12px;
    line-height: 1.15;
}

/* 都道府県名 */
.prefectures,
.pc_prefectures {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin-bottom: 12px;
    gap: 11px 2.03%;
    padding: 0;
}

.pc_prefectures {
    margin-top: 30px;
    gap: 0.76%;
    row-gap: 5px;
}

.placeName,
.pc_placeName {
    width: 31.88%;
    height: 30px;
    text-align: center;
    margin-bottom: 3px;
    border-radius: var(--border-radius);
    background-color: var(--item-bg-color);
    list-style: none;
}

.pc_placeName label,
.placeName label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    line-height: 1;
}

.placeName button {
    border: none;
    display: block;
    width: 100%;
    height: 100%;
    font-size: calc(14 / 16 * 1rem);
    font-weight: 400;
    line-height: 1.2;
    padding: 5px 0;
    border-radius: var(--border-radius);
    background-color: var(--item-bg-color);
    color: var(--main-color);
}

.pc_placeName {
    height: 35px;
    font-size: calc(14 / 16 * 1rem);
    font-weight: 400;
    line-height: 1.2;
    background-color: var(--item-bg-color);
    color: var(--main-color);
    list-style: none;
}

.area button,
.pc_placeName button {
    border: none;
}

.area button {
    background-color: transparent;
    width: 100%;
    padding: 10px 0;
}

.placeName button.is-active {
    background-color: var(--open-bgcolor);
    color: var(--color);
}

/* 店舗カード */

a.map {
    margin-left: 12px;
}

@media screen and (min-width:768px) {
    p.store-text {
        font-size: calc(16 / 16 * 1rem);
    }
}

/* 店舗カード */
.storeList-wrapper {
    display: none;
    margin-bottom: 12px;
}

.is-active.storeList-wrapper {
    display: block;
}

.address-wrapper {
    padding: 8px 8px 15px;
    border-bottom: 1px solid #E8E8E8;
}

.store-description {
    max-width: 566px;
    gap: 40px;
}

.store-bottom-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}

.address-outer {
    width: 70%;
}

h2.store_name {
    margin: 0;
    margin-bottom: 4px;
    font-size: calc(17 / 16 * 1rem);
    line-height: 1.059;
}

@media screen and (min-width:768px) {
    .store-description {
        max-width: 720px;
    }

    .store_name {
        max-width: 400px;
    }

    .store_name::before {
        top: 0;
    }

    .store-bottom-inner {
        max-width: 720px;
    }
}

.address_item-wrapper {
    width: 70%;
    position: relative;
}

p.address {
    color: #000;
    font-size: var(--address-fontSize);
    font-weight: 400;
    line-height: 1.607;
    margin: 0;
    margin-bottom: 6px;
}

.number {
    color: #000;
    font-size: var(--address-fontSize);
    font-weight: 400;
    line-height: 1.643;
}

.number:hover {
    opacity: .8;
}

a.map {
    color: #0FA98D;
    font-size: var(--address-fontSize);
    font-weight: 400;
    line-height: 1.1;
}

a.store_link {
    display: flex;
    width: 26.75%;
    background-color: var(--link-bg-Color);
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: calc(13 / 16 * 1rem);
    height: 40px;
    border-radius: 4px;

}

.store_link a {
    display: block;
    width: 100%;
    height: 100%;
}

.none .store_link {
    display: none;
}

@media screen and (min-width:768px) {
    a.store_link {
        width: 120px;
        height: 50px;
    }

    .none .store_link {
        display: none;
    }
}

p.store-text {
    margin: 0;
    color: #ff0000;
    line-height: 1.2;
    font-size: .875em;
    margin-top: 6px;
}

a.map {
    margin-left: 12px;
}

@media screen and (min-width:768px) {
    p.store-text {
        font-size: 1em;
    }
}

/* 店舗カード ここまで*/
.storePlace {
    font-size: var(--address-fontSize);
    background-color: transparent;
    border: none;
}

.storePlace input:checked~label {
    color: var(--checked-color);
}

.placeName label {
    font-size: calc(14 / 16 * 1rem);
}

.pc_placeName label {
    height: 100%;
}

.pc_placeName input,
.placeName input {
    background-color: var(--item-bg-color);
}

.pc_placeName input:checked~label,
.placeName input:checked~label {
    color: var(--color);
    background-color: var(--open-bgcolor);
    display: flex;
    height: 100%;
    border-radius: var(--border-radius);
    justify-content: center;
    align-items: center;
    transition: all ease-in-out .2s;
}

.area label {
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.area input:checked~label {
    background-color: var(--pc__checked-color);
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.pc_placeName input:checked~label {
    height: 35px;
}

.storePlace label {
    line-height: 1.4;
    box-sizing: border-box;
    display: block;
    text-decoration: underline;
}

#tokyo23storeList,
#tokyo23otherstoreList,
#YokohamaStoreList,
#YokohamaOtherStoreList {
    display: none;
    padding: 0;
}

#tokyo23storeList,
#YokohamaStoreList {
    display: block;
}

.storePlace-wrapper {
    display: flex;
    justify-content: left;
    gap: 20px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.storePlace-wrapper p {
    margin: 0;
}

/* リスト検索　(PC) ーーーーーーーーーーーーーーーーーーー */
.area {
    width: 33.33%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.pc_area-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.125rem;
    padding: 0;
}

.pc_prefectures {
    display: none;
    padding: 0;
}

.pc_prefectures.is-active {
    display: flex;
}

@media screen and (max-width:767px) {
    .pc_list-contents {
        display: none;
    }
}



@media screen and (min-width: 768px) {
    :root {
        --address-fontSize: 1em;
    }

    .notes-text {
        font-size: calc(13 / 16 * 1rem);
        display: inline;
    }

    /* SPコンテンツを非表示 */
    .accordion,
    .Label::before {
        display: none;
    }

    .list-container {
        width: 340px;
    }

    /* 地域、都道府県名、区内外のボタンのホバーの設定とチェックされた時のホバーの設定 */
    .pc_placeName label,
    .area label {
        align-items: center;
        width: 100%;
    }

    .pc_placeName input:not(:checked)~label:hover,
    .area input:not(:checked)~label:hover {
        cursor: pointer;
        opacity: .6;
    }

    .area input:not(:checked)~label:hover {
        background-color: var(--area-bgColor);
    }

    .storePlace label:hover {
        cursor: pointer;
    }

    a.map:hover,
    .store_link a:hover,
    .storePlace input:not(:checked)~label:hover {
        opacity: .8;
    }

    .storePlace-wrapper {
        margin-bottom: 35px;
        padding-left: 10px;
    }

    .pc_area-wrapper {
        gap: 12px 1.7%;
    }

    .area {
        width: 32.2%;
        max-width: 340px;
    }

    .List h2 {
        margin-bottom: 10px;
        font-size: var(--pc-storeName__fontSize);
    }

    .List .List-heading {
        margin-bottom: 20px;
        font-size: calc(20 / 16 * 1rem);
    }

    .pc_placeName {
        width: 10.4%;
        max-width: 110px;
    }

    .address-wrapper {
        border-bottom: 1px solid var(--pc__borderColor);
        padding-bottom: 16px;
        padding-left: 24px;
        margin-bottom: 0;
        margin-top: initial;
    }

    .l-section .store_name {
        line-height: 1.4;
    }

    .address_item-wrapper {
        box-sizing: border-box;
        width: 590px;
    }

    .address_item {
        width: 430px;
    }

    .address {
        margin-bottom: 10px;
        margin-top: 0;
    }

    /* PC表示時に電話番号へのリンクを無効にする */
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }

    .is-active.areaButton {
        background-color: var(--pc__checked-color);
        border-radius: var(--border-radius);
    }
}

/* 別ページへのリンク */
.about-contents-wrapper {
    margin-top: 26px;
    margin-bottom: 16px;
}

.about-item-wrapper {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

a.about-link {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #E50112;
    display: block;
    text-align: center;
    padding: 18px 0;
    border-radius: 4px;
}

a.about-link::after {
    content: "";
    background-image: url(../images/link-mark-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
}

@media screen and (min-width: 768px) {
    .search-contents-wrapper {
        padding-bottom: 52px;
    }

    .about-contents-wrapper {
        margin-top: 38px;
    }

    .about-item-wrapper {
        max-width: 1056px;
        flex-direction: row;
        justify-content: space-between;
    }

    .about-item {
        width: 49%;
    }

    a.about-link {
        font-size: 16px;
    }

    a.about-link::after {
        right: 19px;
    }
}

/* メインコンテンツ以外のスタイル変更　ーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 767px) {
    .area-contents {
        padding-bottom: 30px;
    }

    h1.mod-heading {
        margin-bottom: 25px;
    }
}

@media screen and (min-width: 768px) {
    html {
        min-width: 768px;
        width: 100%;
        overflow-x: hidden;
    }

    body {
        width: 100%;
    }

    ._main,
    .brand-common-wisywig h1,
    h1.mod-heading {
        width: 100%;
    }

    .area-contents {
        padding-bottom: 40px;
        width: 100%;
        min-width: initial;
    }

    .area-header-brand {
        min-width: initial;
    }

    .area-header-brand ._wrap,
    .area-footer ._wrap,
    .mod-wrap {
        width: 100%;
        min-width: initial;
        max-width: 1056px;
        margin: 0 auto;
    }

    .mod-wrap {
        width: 97%;
        min-width: initial;
    }

    .area-footer ._wrap {
        min-width: 700px;
        width: 97%;
    }

    .area-footer ._brand-list ._company-column-2 ._company {
        width: 49.05%;
    }

    .area-contents {
        width: 100%;
    }

    .area-footer {
        width: 100%;
        min-width: 768px;
        margin: 0 auto;
    }

    .area-header-brand ._main .mod-breadcrumb {
        width: 100%;
    }

    .mod-breadcrumb ul {
        width: 97%;
        max-width: 1056px;
    }

    .area-header-brand ._wrap {
        width: 97%;
        margin: 0 auto;
    }

    .area-footer ._btn-pagetop {
        bottom: 20px;
        right: 15px;
    }
}

/* ヘッダー調整 */
@media screen and (min-width: 768px) and (max-width: 1055px) {
    .area-header-brand ._main ._navi {
        right: 44px;
    }

    .area-header-brand ._main ._navi li {
        float: left;
        margin: 0 16px 0 0;
    }

    .area-header-brand ._main ._navi li a {
        padding: 0 0 0 12px;
        font-size: 16px;
    }

    .area-header-brand ._main ._navi li a::before {
        font-size: 24px;
        margin: -2px 5px 0 0;
    }

    .area-header-brand ._main ._navi li+li:after {
        top: 22px;
        left: 0px;
        width: 1px;
        height: 30px;
    }

    .area-header-brand ._btn-opener-logo {
        position: absolute;
        top: 20px;
        right: 0px;
        width: 30px;
        height: 30px;
    }

    .area-header-brand ._btn-opener-logo span {
        position: absolute;
        top: 0;
        right: 0px;
        width: 30px;
        height: 30px;
    }
}

/* ヘッダー調整ここまで */

@media screen and (min-width: 1056px) {
    .area-footer ._btn-pagetop {
        right: calc(50% - 528px);
    }

    .notes-text:last-child {
        display: block;
    }

}

/* メインコンテンツ以外のスタイル変更　ここまで　ーーーーーーーーーーーーーーーーーーーーー */