@charset "UTF-8";
/**
 * モーダルアクション大画面用スタイル
 * 
 * このファイルはモーダルアクションの大画面用スタイルを定義しています。
 * リファクタリング済み：コードの整理と可読性の向上
 */
/**
 * モーダルアクション小画面用スタイル
 * 
 * このファイルはモーダルアクションの小画面用スタイルを定義しています。
 * リファクタリング済み：コードの整理と可読性の向上
 */
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  .modal-action {
    border-radius: 4px;
    padding: 1.2em 1em;
    margin-bottom: 25px;
    line-height: 0;
    border: solid 1px rgb(191, 191, 191);
    box-shadow: 0px 0px 3.84px 0.16px rgba(210, 210, 210, 0.6);
    display: block;
    cursor: pointer;
    position: sticky;
    top: 0;
    transition: all 0.3s ease;
    background-color: #fff;
    z-index: 100;
  }
  .modal-action.is-stuck .css-search-result,
  .modal-action.is-stuck .tab-buttons {
    display: none;
    animation: fade-out 0.3s forwards;
  }
  .modal-action__wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .modal-action .station-search-title::after {
    content: "";
    display: block;
    min-width: 24px;
    height: 24px;
    background: url(../icons/store/magnifying-glass.svg) no-repeat center/contain;
  }
  .modal-action .tab-buttons {
    margin-bottom: calc(10 * 100vw / 1440);
  }
  .modal-action .tab-buttons .tab-button {
    width: calc(138 * 100vw / 1440);
    padding: calc(10 * 100vw / 1440) 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .modal-action .tab-buttons .tab-button .css-choice_text {
    display: inline-block;
    margin: 0;
    width: 100%;
    max-width: 6.25rem;
    aspect-ratio: 100/20;
    font-size: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
  }
  .modal-action .css-search-result > p {
    text-align: right;
    margin: 0;
  }
  .modal-select {
    font-size: 20px;
    font-weight: 600;
    color: #00afd5;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
  }
  .modal-label-empty {
    color: #606060;
  }
  .modal-change {
    font-size: 14px;
    font-weight: 600;
    color: #606060;
    margin-left: auto;
  }
  .modal-icon-area {
    display: block;
    min-width: 24px;
    height: 24px;
    background: url(../icons/store/magnifying-glass.svg) no-repeat center/contain;
  }
  /* モーダルのスタイル */
  #search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
  }
  #search-modal.is-visible {
    display: flex;
    z-index: 10000;
  }
  /* 店舗リスト */
  .store-list {
    border-top: none;
  }
  .store-list__name.store-page-name {
    position: absolute;
    top: 0;
    z-index: 2;
    padding: 0;
    margin: 0;
    width: 100%;
    aspect-ratio: 670/90;
    background-size: 100% auto;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: flex-start;
  }
  .store-list__item {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 0;
    margin-bottom: calc(80 * 100vw / 1440);
  }
  .store-list__item__wrapper {
    display: block;
    position: relative;
  }
  .store-list__item__wrapper .css-link-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
  }
  .store-list__item__wrapper .css-button_icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: calc(14 * 100vw / 1440);
    right: calc(20 * 100vw / 1440);
    z-index: 7;
    max-width: 4.4375rem;
    width: 100%;
    aspect-ratio: 71/21;
  }
  .store-list__item__wrapper .css-button_icons .good-icon-wrap.like-button-wrap {
    margin: 0;
    max-width: 1.625rem;
    width: calc(26 * 100vw / 1440);
    aspect-ratio: 26/19;
  }
  .store-list__item__wrapper .css-button_icons .good-icon-wrap.like-button-wrap .good-icon {
    max-width: 1.625rem;
    width: calc(26 * 100vw / 1440);
    aspect-ratio: 26/19;
  }
  .store-list__item__wrapper .css-button_icons .good-icon-wrap.like-button-wrap .good-icon.liked path {
    fill: #e1306c;
  }
  .store-list__item__wrapper .css-button_icons .good-icon-wrap.like-button-wrap .good-icon path {
    stroke: none;
    fill: white;
    stroke-width: 1.625rem;
    transition: fill 0.3s ease;
  }
  .store-list__item__wrapper .css-button_icons .good-icon-wrap.like-button-wrap svg {
    width: 100%;
    height: auto;
  }
  .store-list__item__wrapper .css-button_icons .like-count {
    font-size: 1.25rem;
    color: #fff;
  }
  .store-list__item__wrapper .store-name {
    margin: 0 auto !important;
    margin-top: calc(5 * 100vw / 1440) !important;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: unset;
    text-align: center;
  }
  .store-list__item__wrapper .store-comment {
    position: absolute;
    background-color: rgba(51, 51, 51, 0.6);
    padding: calc(15 * 100vw / 1440) 0;
    padding-right: calc(2 * 100vw / 1440);
    max-width: 30rem;
    width: calc(480 * 100vw / 1440);
    aspect-ratio: 480/72;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    right: 0;
    bottom: 0;
    border-radius: 4px 0 0 0;
  }
  .store-list__item__wrapper .store-comment p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
  }
  .store-list__item__wrapper .store-comment .css-store_icon {
    max-width: 1.4375rem;
    width: calc(23 * 100vw / 1440);
  }
  .store-list__item__wrapper .css-station_label {
    list-style-type: none;
    margin: 0;
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: calc(10 * 100vw / 1440);
    column-gap: calc(10 * 100vw / 1440);
    left: calc(20 * 100vw / 1440);
    bottom: calc(14 * 100vw / 1440);
  }
  .store-list__item__wrapper .css-station_label li {
    margin: 0;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 3px;
    background-color: rgba(2, 175, 213, 0.6);
    line-height: 1.5;
    color: #fff;
  }
  .store-list__item .store-outline {
    padding: 1.25rem;
  }
  .store-list__item .store-outline__list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: calc(10 * 100vw / 1440);
  }
  .store-list__item .store-outline__list__item {
    max-width: 2.5rem;
    width: calc(40 * 100vw / 1440);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .store-list__item .store-outline__list__item a {
    font-size: 1rem;
    font-weight: bold;
    color: #7b7b7b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .store-list__item .store-outline__list__item i {
    width: calc(20 * 100vw / 1440);
    margin-bottom: calc(5 * 100vw / 1440);
  }
  .store-list__item .store-outline__list__item .access-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1rem;
    text-decoration: unset;
    gap: 0;
    margin-left: 0;
  }
  .store-list__item .store-outline__list__item.css-hours {
    width: 100%;
    max-width: max-content;
    align-items: flex-start;
  }
  .station-search-title {
    margin: 0;
    text-align: center;
    margin-top: calc(0 * 100vw / 1440);
    font-size: 1rem;
  }
  .station-search-description {
    margin: 0;
    text-align: center;
    margin-top: calc(10 * 100vw / 1440);
    margin-bottom: calc(20 * 100vw / 1440);
    font-size: 0.875rem;
  }
  .station-search__wrapper {
    padding: calc(20 * 100vw / 1440);
    overflow-y: scroll;
    max-height: 360px;
    height: 100%;
  }
  .kana-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }
  .kana-buttons .kana-button {
    display: grid;
    place-items: center;
    color: #a0a0a0;
    padding: 6px;
  }
  .kana-buttons .kana-button.kana-active {
    display: block;
    border: solid 1px rgb(191, 191, 191);
    border-radius: 4px;
    box-shadow: 0px 0px 3.84px 0.16px rgba(210, 210, 210, 0.6);
    border-radius: 2px;
    text-align: center;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    padding: 6px;
  }
  #popular-keywords h3.popular-keywords-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #606060;
    border-bottom: unset;
    padding: 0;
    margin: 0;
  }
  #popular-keywords h3.popular-keywords-title::after {
    display: none !important;
  }
  #popular-keywords .popular-keywords-list {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 0.625rem;
    margin: 1rem 0;
  }
  #popular-keywords .popular-keywords-list .popular-keyword-item {
    margin: 0;
  }
  #popular-keywords .popular-keywords-list .popular-keyword-item .popular-keyword-link {
    font-size: 0.75rem;
    color: #000;
  }
  .css-flex_box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .css-flex_box.td-pb-row [class*=td-pb-span] {
    float: none;
  }
  .ctm-main-sidebar {
    height: 100%;
  }
  .ctm-main-sidebar .td_block_wrap {
    position: sticky;
  }
  .ctm-main-sidebar .popular-posts.wpp-ajax h2 {
    font-size: 17px;
    font-weight: 500;
    margin-top: -10px;
    margin-bottom: 22px;
    line-height: 37px;
    padding: 0;
    position: relative;
    text-align: left;
    color: #333 !important;
  }
  .ctm-main-sidebar .popular-posts.wpp-ajax h2:before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f5f5f5;
  }
  .ctm-main-sidebar .popular-posts.wpp-ajax h2::after {
    content: "";
    width: 50px;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    margin: auto;
    background-color: #00afd5;
  }
  body {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  #td-outer-wrap {
    overflow: visible;
  }
  .scroll-top {
    cursor: pointer;
    position: fixed;
    right: calc(10 * 100vw / 1440);
    bottom: calc(90 * 100vw / 1440);
    z-index: 100;
  }
  .s-view {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .modal-action {
    border-radius: 4px;
    padding: calc(17 * 100vw / 375) calc(14 * 100vw / 375);
    margin-bottom: 25px;
    line-height: 0;
    border: solid 1px rgb(191, 191, 191);
    box-shadow: 0px 0px 3.84px 0.16px rgba(210, 210, 210, 0.6);
    display: block;
    gap: 15px;
    cursor: pointer;
    position: sticky;
    top: 0;
    transition: all 0.3s ease;
    background-color: #fff;
    z-index: 100;
  }
  .modal-action.is-stuck .css-search-result,
  .modal-action.is-stuck .tab-buttons {
    display: none;
    animation: fade-out 0.3s forwards;
  }
  .modal-action__wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .modal-action .tab-buttons {
    margin-bottom: calc(5 * 100vw / 375);
  }
  .modal-action .tab-buttons .tab-button {
    padding: calc(10 * 100vw / 375) 0;
    font-size: calc(12 * 100vw / 375);
  }
  .modal-action .tab-buttons .tab-button .css-choice_text {
    display: inline-block;
    margin: 0;
    width: 100%;
    aspect-ratio: 71/20;
    font-size: calc(12 * 100vw / 375);
  }
  .modal-action .css-search-result > p {
    text-align: right;
    margin: 0;
  }
  .modal-heading {
    margin: 0 -22px;
  }
  .modal-inner {
    padding: calc(24 * 100vw / 375);
  }
  .modal-inner .tab-button {
    font-size: calc(12 * 100vw / 375);
  }
  .modal-select {
    font-size: 16px;
    font-weight: 600;
    color: #00afd5;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
  }
  .modal-label-empty {
    color: #606060;
  }
  .modal-change {
    font-size: 12px;
    font-weight: 600;
    color: #606060;
    margin-left: auto;
  }
  .modal-icon-area {
    display: block;
    min-width: 24px;
    height: 24px;
    background: url(../icons/store/magnifying-glass.svg) no-repeat center/contain;
  }
  /* モーダルのスタイル */
  #search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
  }
  #search-modal.is-visible {
    display: flex;
    z-index: 10000;
  }
  .td-container {
    padding: 0;
    width: calc(335 * 100vw / 375);
    margin: 0 auto;
  }
  /* 店舗リスト */
  .store-list {
    border-top: none;
  }
  .store-list__name.store-page-name {
    position: absolute;
    top: 0;
    z-index: 2;
    padding: 0;
    margin: 0;
    width: 100%;
    aspect-ratio: 335/52;
    background-size: 100% auto;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: flex-start;
  }
  .store-list__item {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 0;
    margin-bottom: calc(40 * 100vw / 375);
  }
  .store-list__item__wrapper {
    display: block;
    position: relative;
  }
  .store-list__item__wrapper .css-link-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
  }
  .store-list__item__wrapper .css-button_icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 7;
    top: calc(5 * 100vw / 375);
    right: calc(5 * 100vw / 375);
    width: calc(48 * 100vw / 375);
    aspect-ratio: 48/21;
  }
  .store-list__item__wrapper .css-button_icons .good-icon-wrap.like-button-wrap {
    margin: 0;
    max-width: calc(15 * 100vw / 375);
    width: calc(15 * 100vw / 375);
    aspect-ratio: 15/11;
  }
  .store-list__item__wrapper .css-button_icons .good-icon-wrap.like-button-wrap .good-icon {
    width: calc(15 * 100vw / 375);
    aspect-ratio: 15/11;
  }
  .store-list__item__wrapper .css-button_icons .good-icon-wrap.like-button-wrap .good-icon.liked path {
    fill: #e1306c;
  }
  .store-list__item__wrapper .css-button_icons .good-icon-wrap.like-button-wrap .good-icon path {
    stroke: none;
    fill: white;
    stroke-width: calc(15 * 100vw / 375);
    transition: fill 0.3s ease;
  }
  .store-list__item__wrapper .css-button_icons .good-icon-wrap.like-button-wrap svg {
    width: 100%;
    height: auto;
  }
  .store-list__item__wrapper .css-button_icons .like-count {
    font-size: calc(16 * 100vw / 375);
    color: #fff;
  }
  .store-list__item__wrapper .store-name {
    margin: 0 auto !important;
    margin-top: calc(0 * 100vw / 375) !important;
    color: #fff;
    font-weight: bold;
    font-size: calc(18 * 100vw / 375) !important;
    text-decoration: unset;
    text-align: center;
  }
  .store-list__item__wrapper .store-comment {
    position: absolute;
    background-color: rgba(51, 51, 51, 0.6);
    padding: calc(15 * 100vw / 375) 0;
    padding-right: calc(2 * 100vw / 375);
    width: calc(256 * 100vw / 375);
    aspect-ratio: 256/48;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    right: 0;
    bottom: 0;
    border-radius: 4px 0 0 0;
  }
  .store-list__item__wrapper .store-comment p {
    color: #fff;
    font-size: calc(10 * 100vw / 375);
    line-height: 1.5;
    margin: 0;
  }
  .store-list__item__wrapper .store-comment .css-store_icon {
    width: calc(23 * 100vw / 375);
  }
  .store-list__item__wrapper .css-station_label {
    list-style-type: none;
    margin: 0;
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: calc(5 * 100vw / 375);
    column-gap: calc(5 * 100vw / 375);
    left: calc(5 * 100vw / 375);
    bottom: calc(5 * 100vw / 375);
  }
  .store-list__item__wrapper .css-station_label li {
    margin: 0;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 3px;
    background-color: rgba(2, 175, 213, 0.6);
    line-height: 1.5;
    color: #fff;
    font-size: calc(12 * 100vw / 375);
  }
  .store-list__item .store-outline {
    padding: calc(10 * 100vw / 375);
  }
  .store-list__item .store-outline__list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: calc(10 * 100vw / 375);
  }
  .store-list__item .store-outline__list__item {
    width: calc(40 * 100vw / 375);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .store-list__item .store-outline__list__item a {
    font-size: calc(10 * 100vw / 375);
    font-weight: bold;
    color: #7b7b7b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .store-list__item .store-outline__list__item i {
    width: calc(20 * 100vw / 375);
    margin-bottom: calc(5 * 100vw / 375);
  }
  .store-list__item .store-outline__list__item .access-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: calc(10 * 100vw / 375);
    text-decoration: unset;
    gap: 0;
    margin-left: 0;
  }
  .store-list__item .store-outline__list__item.css-hours {
    width: 100%;
    max-width: max-content;
    align-items: flex-start;
    font-size: calc(14 * 100vw / 375);
  }
  .store-list__item .store-outline__list__item.css-hours .hours-icon {
    width: calc(20 * 100vw / 375);
    aspect-ratio: 1/1;
  }
  .station-search-title {
    margin: 0;
    text-align: center;
    margin-top: calc(0 * 100vw / 375);
    font-size: 1rem;
  }
  .station-search-description {
    margin: 0;
    text-align: center;
    margin-top: calc(10 * 100vw / 375);
    margin-bottom: calc(20 * 100vw / 375);
    font-size: 0.875rem;
  }
  .station-search__wrapper {
    padding: calc(20 * 100vw / 375);
    overflow-y: scroll;
    max-height: 360px;
    height: 100%;
  }
  .kana-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }
  .kana-buttons .kana-button {
    display: grid;
    place-items: center;
    color: #a0a0a0;
    padding: 6px;
  }
  .kana-buttons .kana-button.kana-active {
    display: block;
    border: solid 1px rgb(191, 191, 191);
    border-radius: 4px;
    box-shadow: 0px 0px 3.84px 0.16px rgba(210, 210, 210, 0.6);
    border-radius: 2px;
    text-align: center;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    padding: 6px;
  }
  #popular-keywords h3.popular-keywords-title {
    font-size: calc(16 * 100vw / 375);
    font-weight: bold;
    color: #606060;
    border-bottom: unset;
    padding: 0;
    margin: 0;
  }
  #popular-keywords h3.popular-keywords-title::after {
    display: none !important;
  }
  #popular-keywords .popular-keywords-list {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    column-gap: calc(10 * 100vw / 375);
    margin-top: calc(16 * 100vw / 375);
    margin-bottom: calc(20 * 100vw / 375);
  }
  #popular-keywords .popular-keywords-list .popular-keyword-item {
    margin: 0;
  }
  #popular-keywords .popular-keywords-list .popular-keyword-item .popular-keyword-link {
    font-size: calc(12 * 100vw / 375);
    color: #000;
  }
  .ctm-main-sidebar .popular-posts.wpp-ajax h2 {
    font-size: 17px;
    font-weight: 500;
    margin-top: -10px;
    margin-bottom: 22px;
    line-height: 37px;
    padding: 0;
    position: relative;
    text-align: left;
    color: #333 !important;
  }
  .ctm-main-sidebar .popular-posts.wpp-ajax h2:before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f5f5f5;
  }
  .ctm-main-sidebar .popular-posts.wpp-ajax h2::after {
    content: "";
    width: 50px;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    margin: auto;
    background-color: #00afd5;
  }
  body {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  #td-outer-wrap {
    overflow: visible;
  }
  .tdc-content-wrap {
    overflow: hidden;
  }
  .scroll-top {
    cursor: pointer;
    position: fixed;
    right: calc(50 * 100vw / 375);
    bottom: calc(120 * 100vw / 375);
    z-index: 100;
  }
  .td-header-wrap .td-header-menu-wrap-full,
  .td-header-wrap .td-header-menu-wrap,
  .td-header-wrap .td-header-main-menu {
    background-color: #222 !important;
    height: 54px !important;
  }
  .td-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .td-logo-wrap .td-logo-container {
    width: 100%;
    display: block;
    height: calc(48 * 100vw / 375);
  }
  .td-header-logo-wrap {
    max-width: calc(200 * 100vw / 375);
    max-height: unset;
    padding: 0;
    margin: 0 auto;
    height: calc(54 * 100vw / 375);
  }
  .td-header-logo-wrap.td-container {
    padding-right: 0;
    padding-left: 0;
    height: 100%;
  }
  .td-header-logo-wrap::after {
    display: none;
  }
  .td-header-logo-wrap::before {
    display: none;
  }
  .td-header-logo-wrap .td-header-sp-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .td-header-logo-wrap .td-logo-image {
    margin: 0;
    width: calc(145 * 100vw / 375);
    aspect-ratio: 145/48;
    position: static !important;
  }
  .td-header-logo-wrap .td-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .td-header-logo-wrap a {
    line-height: 90px;
  }
  .td-header-logo-wrap .td-logo {
    line-height: 90px;
  }
  .header-search-wrap .td-icon-search {
    color: #fff !important;
    height: 54px;
    width: 54px;
    line-height: 54px;
    font-size: 22px;
    margin-right: 2px;
  }
  .tagdiv-small-theme #td-mobile-nav .td-mobile-content {
    width: calc(335 * 100vw / 375);
    margin: 0 auto;
    padding: 0;
  }
  .td-search-form {
    display: flex;
    flex-direction: column;
    width: calc(335 * 100vw / 375);
    margin: 0 auto;
    padding: 0;
  }
  .td-search-form .td-head-form-search-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 4px 8px;
    position: relative;
    margin-bottom: calc(50 * 100vw / 375);
    margin-top: calc(10 * 100vw / 375);
  }
  .td-search-form .td-head-form-search-wrap::after {
    opacity: 0.8;
    transform: scaleX(1);
    transition: transform 0.5s ease 0.8s;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 0;
  }
  .td-search-form .td-head-form-search-wrap input[type=text] {
    order: 2;
    border: none;
    outline: none;
    position: relative;
    color: #fff;
    font-weight: bold;
    font-size: 26px;
    height: 40px;
    line-height: 36px;
    border: 0;
    background: transparent;
    outline: 0;
    margin: 8px 0;
    padding: 0;
    text-align: center;
  }
  .td-search-form .td-head-form-search-wrap input[type=image] {
    order: 1;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
  .custom-add-menu-banner {
    width: calc(335 * 100vw / 375);
    margin: 0 auto;
    margin-top: calc(20 * 100vw / 375);
  }
  .custom-add-menu {
    width: calc(335 * 100vw / 375);
    margin: 0 auto;
    padding: 0;
  }
  .custom-add-menu__headline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: bold;
    font-size: calc(21 * 100vw / 375);
    color: #fff;
    margin: 0;
  }
  .custom-add-menu__headline img {
    width: calc(23 * 100vw / 375);
    aspect-ratio: 23/23;
    margin-right: calc(15 * 100vw / 375);
  }
  .custom-add-menu__list {
    background-color: rgba(255, 255, 255, 0.1);
    list-style-type: none;
    padding: 0 calc(18 * 100vw / 375);
  }
  .custom-add-menu__list__item {
    margin: 0;
    height: calc(40 * 100vw / 375);
    border-bottom: calc(1 * 100vw / 375) solid rgba(255, 255, 255, 0.1);
  }
  .custom-add-menu__list__item a {
    margin: 0;
    font-size: calc(18 * 100vw / 375);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: calc(40 * 100vw / 375);
    width: 100%;
  }
  .custom-add-menu__list__item--icon {
    width: calc(20 * 100vw / 375);
    aspect-ratio: 1/1;
    display: block;
  }
  .td-header-wrap #td-header-search {
    width: 91%;
    font-size: 16px;
  }
  .favorite-button.sp {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    height: calc(48 * 100vw / 375);
  }
  .favorite-button.sp::after {
    content: "";
    display: none;
  }
  .favorite-button.pc {
    display: none;
  }
  .header-search-wrap.pc {
    display: none;
  }
  .td-search-btns-wrap.sp {
    display: block;
    width: auto;
    height: 100%;
    aspect-ratio: 54/54;
  }
  .td-search-btns-wrap.sp::before {
    content: "";
    display: block;
    height: 65%;
    width: 1px;
    background-color: #d0d1d1;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .td-search-btns-wrap.sp #td-header-search-button-mob {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .td-search-btns-wrap.sp #td-header-search-button-mob .td-icon-search {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100%;
    aspect-ratio: 54/54;
    margin: 0;
  }
  .user-liked-stores {
    z-index: 101;
  }
  .td-header-menu-wrap.pc {
    display: none;
  }
  #td-top-mobile-toggle {
    display: inline-block;
    position: relative;
  }
  .td-container,
  .tdc-row,
  .tdc-row-composer {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .td-crumb-container {
    padding-top: 11px;
  }
  .l-view {
    display: none;
  }
}
