@charset "UTF-8";
@media screen and (min-width: 769px) {
  body {
    min-width: 1280px;
  }
}
@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
}

a.splide__slide {
  text-decoration: none;
}

:root {
  --accent-color: #ff322d;
  --text-color: #222;
  --sub-text-color: #999;
  --background-color: #e8e8e8;
  --border-color:#ccc;
  --marker-color: 45, 250, 255;
}

html {
  font-feature-settings: "halt" on;
}

#finder {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.article-detail .breadcrumb {
  position: relative;
}

.breadcrumb {
  margin: 20px 0px !important;
  position: relative !important;
}
@media screen and (min-width: 769px) {
  .breadcrumb {
    min-width: 100%;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    position: relative !important;
    height: 15px;
    max-width: calc(100% - 30px);
    min-width: calc(100% - 30px);
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    margin-top: 15px;
    overflow: hidden;
    margin-bottom: 15px;
  }
  .breadcrumb.text-overflow::after {
    content: "...";
    position: absolute;
    height: 15px;
    background-color: #fff;
    right: 0;
    top: 0;
    color: #777;
  }
  .breadcrumb ol {
    position: absolute;
    left: 0;
    top: 0;
  }
}

.scroll-top {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 100;
  box-shadow: 0px 0px 20px 2px #ccc;
  overflow: hidden;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .scroll-top {
    right: 15px;
    bottom: 15px;
  }
}

.border_line {
  background: linear-gradient(transparent 70%, rgba(var(--marker-color), 0.35) 70%);
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .wrap .border {
    margin-top: 50px;
    margin-bottom: 50px;
    border-top: 1px solid var(--border-color, #ccc);
  }
  .wrap .border + * {
    margin-top: 0 !important;
  }
  .wrap.top {
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 35px;
  }
  .wrap.top > *:not(.mv):not(.border) {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 140px;
    padding-right: 140px;
    box-sizing: border-box;
  }
  .wrap.middle {
    background-color: var(--background-color, #e8e8e8);
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
  }
  .wrap.middle > * {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 190px;
    padding-right: 190px;
    box-sizing: border-box;
  }
  .wrap.middle + * {
    margin-top: 20px;
  }
  .wrap.middle .anchor-list a {
    border-color: #fff;
  }
  .wrap .mv {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
  }
  .wrap .mv-texts {
    width: calc(41.53% - 50px);
    box-sizing: border-box;
  }
  .wrap .mv-title {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.36;
    letter-spacing: 0.02em;
    color: var(--text-color, #222);
  }
  .wrap .mv-text {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    margin-top: 30px;
    color: var(--text-color, #222);
  }
  .wrap .mv-update {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.03em;
    margin-top: 15px;
    color: var(--sub-text-color, #999);
  }
  .wrap .mv-link {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.04em;
    margin-top: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: var(--accent-color, #ff322d);
    transition: opacity 0.3s ease;
  }
  .wrap .mv-link span {
    display: block;
    width: 14px;
    height: 14px;
    background-color: var(--accent-color, #ff322d);
    border-radius: 50%;
    position: relative;
  }
  .wrap .mv-link span::after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 4px;
    top: 5px;
  }
  .wrap .mv-link:hover {
    opacity: 0.5;
  }
  .wrap .mv-image {
    width: 58.47%;
  }
  .wrap .mv-image img {
    width: 100%;
    height: auto;
  }
  .wrap .anchor {
    width: 100%;
    margin-top: 50px;
  }
  .wrap .anchor-title {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.03em;
  }
  .wrap .anchor-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
  }
  .wrap .anchor-list li {
    width: calc((100% - 50px) / 6);
  }
  .wrap .anchor-list a {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    color: var(--accent-color, #ff322d);
    background-color: #fff;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.04em;
    padding: 10px 8px 23px;
    border-radius: 6px;
    text-align: center;
    border: #ccc 1px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
    position: relative;
  }
  .wrap .anchor-list a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-right: 2px solid var(--accent-color, #ff322d);
    border-bottom: 2px solid var(--accent-color, #ff322d);
    transform: rotate(45deg);
    display: block;
    transition: border 0.3s ease;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 10px;
  }
  .wrap .anchor-list a:hover {
    background-color: var(--accent-color, #ff322d);
    color: #fff;
    border: 1px solid var(--accent-color, #ff322d);
  }
  .wrap .anchor-list a:hover::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .wrap .description {
    margin-top: 33px;
  }
  .wrap .description-inner {
    padding: 50px;
    background-color: #f0f0f0;
    box-sizing: border-box;
  }
  .wrap .description-title {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.03em;
    color: var(--text-color, #222);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .wrap .description-title::before {
    content: "";
    display: block;
    width: 22px;
    height: 26px;
    background-color: var(--accent-color, #ff322d);
    -webkit-mask-image: url("../images/m_template/ico_mood.svg");
            mask-image: url("../images/m_template/ico_mood.svg");
    flex-shrink: 0;
  }
  .wrap .description-text {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    margin-top: 30px;
  }
  .wrap .description-link {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.04em;
    margin-top: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: var(--accent-color, #ff322d);
    transition: opacity 0.3s ease;
  }
  .wrap .description-link span {
    display: block;
    width: 14px;
    height: 14px;
    background-color: var(--accent-color, #ff322d);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
  }
  .wrap .description-link span::after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 4px;
    top: 5px;
  }
  .wrap .description-link:hover {
    opacity: 0.5;
  }
  .wrap .texts {
    margin-top: 50px;
  }
  .wrap .texts h2 {
    margin-top: 30px;
    color: var(--text-color, #222);
  }
  .wrap .texts h2 span + span {
    margin-top: 5px;
  }
  .wrap .texts h2 span.sub {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.04em;
  }
  .wrap .texts h2 span.main {
    display: block;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.03em;
  }
  .wrap .texts h2.mood {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.03em;
    color: var(--text-color, #222);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .wrap .texts h2.mood::before {
    content: "";
    display: block;
    width: 22px;
    height: 26px;
    background-color: var(--accent-color, #ff322d);
    -webkit-mask-image: url("../images/m_template/ico_mood.svg");
            mask-image: url("../images/m_template/ico_mood.svg");
    flex-shrink: 0;
  }
  .wrap .texts h2.mood + p {
    margin-top: 24px;
  }
  .wrap .texts h2 + p {
    margin-top: 30px;
  }
  .wrap .texts h3 {
    margin-top: 30px;
    color: var(--text-color, #222);
  }
  .wrap .texts h3 span + span {
    margin-top: 10px;
  }
  .wrap .texts h3 span.sub {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.04em;
  }
  .wrap .texts h3 span.main {
    display: block;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.03em;
  }
  .wrap .texts h3 + p {
    margin-top: 15px;
  }
  .wrap .texts h4 {
    margin-top: 30px;
    color: var(--text-color, #222);
  }
  .wrap .texts h4 span + span {
    margin-top: 10px;
  }
  .wrap .texts h4 span.sub {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.04em;
  }
  .wrap .texts h4 span.main {
    display: block;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    /* 133.333% */
    letter-spacing: 0.03em;
  }
  .wrap .texts h4 + p {
    margin-top: 15px;
  }
  .wrap .texts p {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 0.02em;
    margin-top: 30px;
    color: var(--text-color, #222);
  }
  .wrap .texts > *:first-child {
    margin-top: 0 !important;
  }
  .wrap .links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 25px;
  }
  .wrap .links a {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: var(--accent-color, #ff322d);
    transition: opacity 0.3s ease;
  }
  .wrap .links a span {
    display: block;
    width: 14px;
    height: 14px;
    background-color: var(--accent-color, #ff322d);
    border-radius: 50%;
    position: relative;
  }
  .wrap .links a span::after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 4px;
    top: 5px;
  }
  .wrap .links a:hover {
    opacity: 0.5;
  }
  .wrap .ranking {
    margin-top: 50px;
  }
  .wrap .ranking .splide__slide {
    border-radius: 6px;
    overflow: hidden;
    background: #FFF;
  }
  .wrap .ranking .splide__slide .ranking-image {
    overflow: hidden;
  }
  .wrap .ranking .splide__slide .ranking-image img {
    transition: transform 0.8s ease;
  }
  .wrap .ranking .splide__slide:hover .ranking-image img {
    transform: scale(1.1);
  }
  .wrap .ranking .splide__track {
    z-index: 1;
  }
  .wrap .ranking-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  .wrap .ranking-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
  .wrap .ranking-texts {
    padding: 10px;
  }
  .wrap .ranking-texts > *:first-child {
    margin-top: 0 !important;
  }
  .wrap .ranking-rank {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    color: var(--accent-color, #ff322d);
    margin-top: 4px;
  }
  .wrap .ranking-title {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    color: var(--text-color, #222);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    margin-top: 4px;
  }
  .wrap .ranking-brand {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    color: var(--sub-text-color, #999);
    margin-top: 4px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
  }
  .wrap .ranking-price {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-color, #222);
    letter-spacing: 0.02em;
    margin-top: 4px;
  }
  .wrap .ranking .tags {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 4px;
  }
  .wrap .ranking .tags .tag {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 9px;
    letter-spacing: -0.1em;
    font-weight: 400;
    line-height: 16px;
    /* 160% */
    letter-spacing: -0.03em;
    padding: 1px 4px 0 4px;
    border-radius: 3px;
    background-color: #eee;
  }
  .wrap .ranking .splide__arrow {
    width: 25px;
    height: 25px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 2px #ccc;
    z-index: 0;
    opacity: 1;
    transition: all 0.3s ease;
  }
  .wrap .ranking .splide__arrow:disabled {
    opacity: 0;
  }
  .wrap .ranking .splide__arrow::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--accent-color, #ff322d);
    border-bottom: 2px solid var(--accent-color, #ff322d);
    transform: rotate(-45deg);
    position: absolute;
    left: 8px;
    top: 8px;
  }
  .wrap .ranking .splide__arrow--next {
    right: -30px;
  }
  .wrap .ranking .splide__arrow--prev {
    left: -30px;
  }
  .wrap .ranking .splide__arrow--prev::after {
    transform: rotate(135deg);
    left: 10px;
  }
  .wrap .ranking .splide__arrow:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.1);
  }
  .wrap .comment {
    display: block;
  }
  .wrap .comment-items {
    width: 100%;
    display: block;
  }
  .wrap .comment-items > * {
    width: calc((100% - 10px) / 2);
    margin-bottom: 10px;
  }
  .wrap .comment-items + * {
    margin-top: 30px;
  }
  .wrap .comment-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
  }
  .wrap .comment-conciergeBox {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease, padding-top 0.2s ease;
    padding-top: 0;
  }
  .wrap .comment-conciergeBox-inner {
    padding: 20px 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    position: relative;
  }
  .wrap .comment-conciergeBox-inner::before {
    content: "";
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.5);
    width: 15px;
    height: 5px;
    -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
            clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: absolute;
    top: -5px;
    left: 43px;
  }
  .wrap .comment-conciergeBox .concierge {
    margin-top: 20px;
  }
  .wrap .comment-conciergeBox .title {
    color: var(--accent-color, #ff322d);
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 10px;
    letter-spacing: 0.02em;
  }
  .wrap .comment-conciergeBox .text {
    color: var(--text-color, #222);
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    margin-top: 5px;
  }
  .wrap .comment-conciergeBox .user {
    color: var(--text-color, #222);
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    margin-top: 5px;
  }
  .wrap .comment-conciergeBox.is-open {
    padding-top: 10px;
  }
  .wrap .comment-image {
    width: 144px;
    height: 144px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    overflow: hidden;
  }
  .wrap .comment-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
    transition: transform 0.8s ease;
  }
  .wrap .comment-image:hover img {
    transform: scale(1.1);
  }
  .wrap .comment-texts {
    padding-right: 10px;
    padding-bottom: 27px;
    position: relative;
  }
  .wrap .comment-texts > *:first-child {
    margin-top: 0 !important;
  }
  .wrap .comment-rank {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: var(--accent-color, #ff322d);
    margin-top: 2px;
  }
  .wrap .comment-title {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: var(--text-color, #222);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    margin-top: 4px;
  }
  .wrap .comment-brand {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 18px;
    color: var(--text-color, #222);
    margin-top: 2px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
  }
  .wrap .comment-price {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-color, #222);
    letter-spacing: 0.02em;
  }
  .wrap .comment-links {
    display: flex;
    margin-top: 9px;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .wrap .comment-links .comment-item {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    color: var(--accent-color, #ff322d);
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
  .wrap .comment-links .comment-item:not(.comment-open) span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color, #ff322d);
    border-radius: 50%;
    position: relative;
  }
  .wrap .comment-links .comment-item:not(.comment-open) span:after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 3px;
    top: 4px;
  }
  .wrap .comment-links .comment-item.comment-open span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color, #ff322d);
    border-radius: 50%;
    position: relative;
  }
  .wrap .comment-links .comment-item.comment-open span::after {
    content: "";
    width: 5px;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .wrap .comment-links .comment-item.comment-open span::before {
    content: "";
    width: 5px;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .wrap .comment-links .comment-item.comment-open.is-open {
    opacity: 0.5;
  }
  .wrap .comment-links .comment-item.comment-open.is-open span::before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .wrap .comment-links .comment-item:hover {
    opacity: 0.5;
  }
  .wrap .comment .tags {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 6px;
  }
  .wrap .comment .tags .tag {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 9px;
    letter-spacing: -0.1em;
    font-weight: 400;
    line-height: 16px;
    /* 160% */
    padding: 1px 4px 0 4px;
    border-radius: 3px;
    background-color: #eee;
  }
  .wrap .products {
    margin-top: 50px;
  }
  .wrap .products .splide__slide {
    border-radius: 6px;
    overflow: hidden;
    background: #FFF;
  }
  .wrap .products .splide__slide .products-image {
    overflow: hidden;
  }
  .wrap .products .splide__slide .products-image img {
    transition: transform 0.8s ease;
  }
  .wrap .products .splide__slide:hover .products-image img {
    transform: scale(1.1);
  }
  .wrap .products .splide__track {
    z-index: 1;
  }
  .wrap .products-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  .wrap .products-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
  .wrap .products-texts {
    padding: 10px;
  }
  .wrap .products-texts > *:first-child {
    margin-top: 0 !important;
  }
  .wrap .products-title {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    color: var(--text-color, #222);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    margin-top: 2px;
  }
  .wrap .products-brand {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    color: var(--text-color, #222);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    margin-top: 2px;
  }
  .wrap .products-comment {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    color: var(--sub-text-color, #999);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    margin-top: 5px;
  }
  .wrap .products-price {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-color, #222);
    letter-spacing: 0.02em;
    margin-top: 2px;
  }
  .wrap .products .tags {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .wrap .products .tags .tag {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 9px;
    letter-spacing: -0.1em;
    font-weight: 400;
    line-height: 16px;
    /* 160% */
    padding: 1px 4px 0 4px;
    border-radius: 3px;
    background-color: #eee;
  }
  .wrap .products .splide__arrow {
    width: 25px;
    height: 25px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 2px #ccc;
    z-index: 0;
    opacity: 1;
    transition: all 0.3s ease;
  }
  .wrap .products .splide__arrow:disabled {
    opacity: 0;
  }
  .wrap .products .splide__arrow::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--accent-color, #ff322d);
    border-bottom: 2px solid var(--accent-color, #ff322d);
    transform: rotate(-45deg);
    position: absolute;
    left: 8px;
    top: 8px;
  }
  .wrap .products .splide__arrow--next {
    right: -30px;
  }
  .wrap .products .splide__arrow--prev {
    left: -30px;
  }
  .wrap .products .splide__arrow--prev::after {
    transform: rotate(135deg);
    left: 10px;
  }
  .wrap .products .splide__arrow:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.1);
  }
  .wrap .article {
    margin-top: 30px;
  }
  .wrap .article-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  .wrap .article-item {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    /* 133.333% */
    text-decoration-line: underline;
    color: var(--text-color, #222);
  }
  .wrap .article-item a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
  }
  .wrap .article-item a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
    background-color: var(--accent-color, #ff322d);
    margin-top: 4px;
    flex-shrink: 0;
  }
  .wrap .article-inner {
    position: relative;
    max-height: 360px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .wrap .article-btn {
    position: absolute;
    width: 100%;
    height: 70px;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, var(--background-color, #e8e8e8) 91%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
  }
  .wrap .article-btn p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    /* 128.571% */
    letter-spacing: 0.04em;
    color: var(--accent-color, #ff322d);
    text-decoration: none;
  }
  .wrap .article-btn p span {
    width: 14px;
    height: 14px;
    background-color: var(--accent-color, #ff322d);
    border-radius: 50%;
    display: block;
    position: relative;
  }
  .wrap .article-btn p span::after {
    content: "";
    width: 7px;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .wrap .article-btn p span::before {
    content: "";
    width: 7px;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .wrap .article-btn.is-open {
    position: relative;
  }
  .wrap .article-btn.is-open p span::before {
    display: none;
  }
  .wrap .faq {
    margin-top: 30px;
  }
  .wrap .faq-question {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px; /* 137.5% */
    color: var(--text-color, #222);
  }
  .wrap .faq-question span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--accent-color, #ff322d);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }
  .wrap .faq-question span::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("../images/m_template/ico_question.svg");
  }
  .wrap .faq-answer {
    margin-top: 14px;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px; /* 166.667% */
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .wrap .faq-answer a {
    display: block;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: var(--text-color, #222);
  }
  .wrap .faq-answer a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--text-color, #222);
    border-bottom: 1px solid var(--text-color, #222);
    display: block;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
  }
  .wrap .faq-answer a:hover {
    filter: opacity(50%);
  }
  .wrap .faq-answer a:hover::after {
    transform: translateX(5px) rotate(-45deg);
  }
  .wrap .faq-border {
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-color, #ccc);
  }
  .wrap > .inner > *:first-child {
    margin-top: 0 !important;
  }
  .wrap:last-child {
    margin-bottom: 20px;
  }
  #gift-contents {
    background-color: var(--background-color, #e8e8e8);
  }
  #gift-contents .inner {
    max-width: 1280px;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 160px;
    padding-right: 160px;
  }
  #gift-contents .inner .section-head {
    font-family: "TTNormsPro-Bold", sans-serif;
    font-weight: normal;
    font-size: 22px;
    line-height: 30px;
    text-align: left;
    color: var(--accent-color, #ff322d);
  }
  #gift-contents .inner .section-description {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    color: var(--text-color, #222);
    margin-top: 15px;
  }
  #gift-contents .inner .gift-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  #gift-contents .inner .gift-content .content-title {
    font-family: "TTNormsPro-Bold", sans-serif;
    font-weight: normal;
    font-size: 22px;
    letter-spacing: 0.04em;
    line-height: 30px;
    text-align: left;
    color: var(--accent-color, #ff322d);
    white-space: nowrap;
  }
  #gift-contents .inner .gift-content .content-name {
    margin-top: 8px;
    line-height: 22px;
    text-align: left;
    color: #000;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 600;
  }
  #gift-contents .inner .gift-content .content-name .en {
    font-family: "TTNormsPro-Bold", sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
  }
  #gift-contents .inner .gift-content .content-description {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.01em;
    line-height: 22px;
    text-align: left;
    color: #000;
    margin-top: 8px;
  }
  #gift-contents .inner .gift-content .content-annotation {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.01em;
    line-height: 22px;
    text-align: left;
    color: #707070;
    margin-top: 10px;
  }
  #gift-contents .inner .gift-content .content-detail-button {
    width: 200px;
  }
  #gift-contents .inner .gift-content .content-detail-button a {
    padding-top: 11px;
    padding-bottom: 11px;
    background-color: transparent;
    border: 1px solid var(--accent-color, #ff322d);
    border-radius: 6px;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    color: var(--accent-color, #ff322d);
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: block;
    text-align: center;
    text-decoration: none;
  }
  #gift-contents .inner .gift-content .content-detail-button a:hover {
    background-color: var(--accent-color, #ff322d);
    color: #fff;
  }
  #gift-contents .inner .gift-content.content-wrapping {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-title {
    margin-top: 15px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-description, #gift-contents .inner .gift-content.content-wrapping .content-annotation {
    padding-right: 0;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-description {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px; /* 140% */
    color: var(--text-color, #222);
    margin-top: 8px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-annotation {
    /* JP_span_medium */
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 16px; /* 160% */
    letter-spacing: -0.03em;
    color: var(--text-color, #222);
    margin-top: 10px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(1) {
    width: calc(100% - 400px);
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(1) .wrapping-thumb {
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(1) .wrapping-thumb img {
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(1) .btn {
    margin-top: 20px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 400px;
    padding-left: 40px;
    box-sizing: border-box;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item {
    width: calc(50% - 5px);
    background-color: #FFF;
    border-radius: 6px 6px 6px 6px;
    padding-bottom: 20px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item:nth-of-type(1) {
    position: relative;
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item:nth-of-type(1) .content-detail {
    padding-left: 20px;
    padding-right: 20px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item:nth-of-type(1) .content-detail .content-item-name {
    margin-top: 0px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item:nth-of-type(1) .item-thumb {
    position: relative;
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item:nth-of-type(1) .item-thumb::before {
    content: "";
    display: block;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item:nth-of-type(1) .item-thumb img {
    width: 100%;
    height: auto;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item .item-thumb {
    width: 100%;
    background-color: #F2F2F2;
    border-radius: 6px 6px 0px 0px;
    overflow: hidden;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item .item-thumb img {
    width: 100%;
    border-radius: 6px 6px 0px 0px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item .content-detail {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item .content-detail .content-item-name {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 22px;
    color: #000;
    text-align: center;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item .content-detail .content-item-caption {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.01em;
    line-height: 20px;
    text-align: center;
    color: #000;
    text-align: left;
    margin-top: 10px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item .content-detail .content-item-caption span {
    display: block;
    margin-top: 10px;
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item:nth-of-type(2) {
    margin-top: 10px;
    margin-right: 10px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item:nth-of-type(3) {
    margin-top: 10px;
  }
  #gift-contents .inner .gift-content.content-option {
    margin-top: 42px;
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(1) {
    display: flex;
    flex-direction: row;
    padding-right: 40px;
    width: 556px;
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(1) .content-item {
    border-radius: 6px;
    background-color: #FFFFFF;
    padding-bottom: 20px;
    width: calc((100% - 26px) / 3);
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(1) .content-item img {
    border-radius: 6px 6px 0px 0px;
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(1) .content-item .content-item-name {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.01em;
    line-height: 20px;
    text-align: left;
    color: #000;
    padding-top: 20px;
    padding-left: 22px;
    padding-right: 22px;
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(1) .content-item + .content-item {
    margin-left: 13px;
    width: calc((100% - 26px) / 3);
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(2) {
    max-width: calc(100% - 556px);
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(2) .content-detail-button {
    margin-top: 20px;
  }
  #gift-contents .inner .gift-content.content-steps {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  #gift-contents .inner .gift-content.content-steps .content-box:nth-of-type(1) {
    max-width: 565px;
    padding-top: 10px;
  }
  #gift-contents .inner .gift-content.content-steps .content-box:nth-of-type(1) .content-name {
    margin-top: 10px;
  }
  #gift-contents .inner .gift-content.content-steps .content-box:nth-of-type(1) .content-description {
    margin-top: 10px;
    padding-right: 0px;
  }
  #gift-contents .inner .gift-content.content-steps .content-box:nth-of-type(2) {
    position: absolute;
    top: -7px;
    right: 16px;
    width: 288px;
    height: 233px;
  }
  #gift-contents .inner .gift-content.content-steps .content-box:nth-of-type(2) img {
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 63px;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .content-detail-button {
    width: 250px;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .btn:nth-of-type(1) {
    margin-right: 5px;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .btn:nth-of-type(1) a {
    background-color: var(--accent-color, #ff322d);
    color: #fff;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .btn:nth-of-type(1) a:hover {
    background-color: #fff;
    color: var(--accent-color, #ff322d);
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .btn:nth-of-type(2) {
    margin-left: 5px;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .btn:nth-of-type(2) a {
    background-color: #fff;
    color: var(--accent-color, #ff322d);
    border-color: #fff;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .btn:nth-of-type(2) a:hover {
    background-color: var(--accent-color, #ff322d);
    color: #fff;
    border-color: var(--accent-color, #ff322d);
  }
  #gift-contents + * {
    margin-top: 20px;
  }
  #gift-contents h3 > *, #gift-contents h2 > * {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .wrap .border {
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-color, #ccc);
  }
  .wrap .border + * {
    margin-top: 0 !important;
  }
  .wrap.top {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }
  .wrap.top > *:not(.mv):not(.border) {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  .wrap.middle {
    background-color: var(--background-color, #e8e8e8);
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: hidden;
  }
  .wrap.middle > * {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .wrap.middle + * {
    margin-top: 20px;
  }
  .wrap.middle .anchor-list a {
    border-color: #fff;
  }
  .wrap .mv {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .wrap .mv-texts {
    width: 100%;
    box-sizing: border-box;
    order: 2;
    margin-top: 15px;
  }
  .wrap .mv-title {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: var(--text-color, #222);
  }
  .wrap .mv-text {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    margin-top: 15px;
    color: var(--text-color, #222);
  }
  .wrap .mv-text-open {
    text-align: left;
  }
  .wrap .mv-text-open.is-open {
    display: none;
  }
  .wrap .mv-text.is-open {
    display: block;
  }
  .wrap .mv-update {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.03em;
    margin-top: 15px;
    color: var(--sub-text-color, #999);
  }
  .wrap .mv-link {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.04em;
    margin-top: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: var(--accent-color, #ff322d);
    transition: opacity 0.3s ease;
  }
  .wrap .mv-link span {
    display: block;
    width: 14px;
    height: 14px;
    background-color: var(--accent-color, #ff322d);
    border-radius: 50%;
    position: relative;
  }
  .wrap .mv-link span::after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 4px;
    top: 5px;
  }
  .wrap .mv-image {
    width: 100%;
    order: 1;
  }
  .wrap .mv-image img {
    width: 100%;
    height: auto;
  }
  .wrap .anchor {
    width: 100%;
    margin-top: 30px;
  }
  .wrap .anchor-title {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.03em;
  }
  .wrap .anchor-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: flex-start;
    gap: 10px;
  }
  .wrap .anchor-list li {
    width: calc((100% - 20px) / 3);
  }
  .wrap .anchor-list a {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    color: var(--accent-color, #ff322d);
    background-color: #fff;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.04em;
    padding: 10px 8px 23px;
    border-radius: 6px;
    text-align: center;
    border: #ccc 1px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
    position: relative;
  }
  .wrap .anchor-list a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-right: 2px solid var(--accent-color, #ff322d);
    border-bottom: 2px solid var(--accent-color, #ff322d);
    transform: rotate(45deg);
    display: block;
    transition: border 0.3s ease;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 10px;
  }
  .wrap .description {
    margin-top: 30px;
  }
  .wrap .description-inner {
    padding: 30px;
    background-color: #f0f0f0;
    box-sizing: border-box;
  }
  .wrap .description-title {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.03em;
    color: var(--text-color, #222);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .wrap .description-title::before {
    content: "";
    display: block;
    width: 22px;
    height: 26px;
    background-color: var(--accent-color, #ff322d);
    -webkit-mask-image: url("../images/m_template/ico_mood.svg");
            mask-image: url("../images/m_template/ico_mood.svg");
    flex-shrink: 0;
  }
  .wrap .description-text {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    margin-top: 25px;
  }
  .wrap .description-link {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.04em;
    margin-top: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: var(--accent-color, #ff322d);
    transition: opacity 0.3s ease;
  }
  .wrap .description-link span {
    display: block;
    width: 14px;
    height: 14px;
    background-color: var(--accent-color, #ff322d);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
  }
  .wrap .description-link span::after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 4px;
    top: 5px;
  }
  .wrap .texts {
    margin-top: 30px;
  }
  .wrap .texts h2 {
    margin-top: 30px;
    color: var(--text-color, #222);
  }
  .wrap .texts h2 span + span {
    margin-top: 5px;
  }
  .wrap .texts h2 span.sub {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.04em;
  }
  .wrap .texts h2 span.main {
    display: block;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.03em;
  }
  .wrap .texts h2.mood {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.03em;
    color: var(--text-color, #222);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .wrap .texts h2.mood::before {
    content: "";
    display: block;
    width: 22px;
    height: 26px;
    background-color: var(--accent-color, #ff322d);
    -webkit-mask-image: url("../images/m_template/ico_mood.svg");
            mask-image: url("../images/m_template/ico_mood.svg");
    flex-shrink: 0;
  }
  .wrap .texts h2 + p {
    margin-top: 20px;
  }
  .wrap .texts h3 {
    margin-top: 30px;
    color: var(--text-color, #222);
  }
  .wrap .texts h3 span + span {
    margin-top: 10px;
  }
  .wrap .texts h3 span.sub {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.04em;
  }
  .wrap .texts h3 span.main {
    display: block;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.03em;
  }
  .wrap .texts h3 + p {
    margin-top: 15px;
  }
  .wrap .texts h4 {
    margin-top: 30px;
    color: var(--text-color, #222);
  }
  .wrap .texts h4 span + span {
    margin-top: 10px;
  }
  .wrap .texts h4 span.sub {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.04em;
  }
  .wrap .texts h4 span.main {
    display: block;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    /* 133.333% */
    letter-spacing: 0.03em;
  }
  .wrap .texts h4 + p {
    margin-top: 15px;
  }
  .wrap .texts p {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: 0.02em;
    margin-top: 30px;
    color: var(--text-color, #222);
  }
  .wrap .texts > *:first-child {
    margin-top: 0 !important;
  }
  .wrap .links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 30px;
  }
  .wrap .links a {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: var(--accent-color, #ff322d);
    transition: opacity 0.3s ease;
  }
  .wrap .links a span {
    display: block;
    width: 14px;
    height: 14px;
    background-color: var(--accent-color, #ff322d);
    border-radius: 50%;
    position: relative;
  }
  .wrap .links a span::after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 4px;
    top: 5px;
  }
  .wrap .links a:hover {
    opacity: 0.5;
  }
  .wrap .ranking {
    margin-top: 30px;
  }
  .wrap .ranking .splide__slide {
    border-radius: 6px;
    overflow: hidden;
  }
  .wrap .ranking .splide__slide--col {
    background: #FFF;
  }
  .wrap .ranking .splide__track {
    z-index: 1;
  }
  .wrap .ranking-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  .wrap .ranking-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
  .wrap .ranking-texts {
    padding: 10px;
  }
  .wrap .ranking-texts > *:first-child {
    margin-top: 0 !important;
  }
  .wrap .ranking-rank {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    color: var(--accent-color, #ff322d);
    margin-top: 5px;
  }
  .wrap .ranking-title {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    color: var(--text-color, #222);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    margin-top: 5px;
  }
  .wrap .ranking-brand {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    color: var(--sub-text-color, #999);
    margin-top: 5px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
  }
  .wrap .ranking-price {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-color, #222);
    letter-spacing: 0.02em;
    margin-top: 5px;
  }
  .wrap .ranking .tags {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 5px;
  }
  .wrap .ranking .tags .tag {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 9px;
    letter-spacing: -0.1em;
    font-weight: 400;
    line-height: 16px;
    /* 160% */
    padding: 1px 4px 0 4px;
    border-radius: 3px;
    background-color: #eee;
  }
  .wrap .ranking .splide__arrow {
    width: 25px;
    height: 25px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 2px #ccc;
    z-index: 3;
    opacity: 1;
  }
  .wrap .ranking .splide__arrow:disabled {
    opacity: 0;
  }
  .wrap .ranking .splide__arrow::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--accent-color, #ff322d);
    border-bottom: 2px solid var(--accent-color, #ff322d);
    transform: rotate(-45deg);
    position: absolute;
    left: 8px;
    top: 8px;
  }
  .wrap .ranking .splide__arrow--next {
    right: -12px;
  }
  .wrap .ranking .splide__arrow--prev {
    left: -12px;
  }
  .wrap .ranking .splide__arrow--prev::after {
    transform: rotate(135deg);
    left: 10px;
  }
  .wrap .comment {
    display: block;
  }
  .wrap .comment-items {
    width: 100%;
    display: block;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  .wrap .comment-items > * {
    margin-bottom: 10px;
    width: 100%;
  }
  .wrap .comment-items + * {
    margin-top: 30px;
  }
  .wrap .comment-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
  }
  .wrap .comment-conciergeBox {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease, padding-top 0.2s ease;
    padding-top: 0px;
  }
  .wrap .comment-conciergeBox-inner {
    padding: 20px 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    position: relative;
  }
  .wrap .comment-conciergeBox-inner::before {
    content: "";
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 6px;
    -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
            clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: absolute;
    top: -6px;
    left: 43px;
  }
  .wrap .comment-conciergeBox .concierge {
    margin-top: 20px;
  }
  .wrap .comment-conciergeBox .title {
    color: var(--accent-color, #ff322d);
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 10px;
    letter-spacing: 0.02em;
  }
  .wrap .comment-conciergeBox .text {
    color: var(--text-color, #222);
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    margin-top: 5px;
  }
  .wrap .comment-conciergeBox .user {
    color: var(--text-color, #222);
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    margin-top: 5px;
  }
  .wrap .comment-conciergeBox.is-open {
    padding-top: 10px;
  }
  .wrap .comment-image {
    width: 144px;
    height: 144px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
  }
  .wrap .comment-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
  .wrap .comment-texts {
    padding-right: 10px;
    padding-bottom: 26px;
    position: relative;
  }
  .wrap .comment-texts > *:first-child {
    margin-top: 0 !important;
  }
  .wrap .comment-rank {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: var(--accent-color, #ff322d);
    margin-top: 10px;
  }
  .wrap .comment-title {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--text-color, #222);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    margin-top: 1px;
  }
  .wrap .comment-brand {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 18px;
    color: var(--text-color, #222);
    margin-top: 1px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
  }
  .wrap .comment-price {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-color, #222);
    letter-spacing: 0.02em;
    margin-top: 1px;
  }
  .wrap .comment-links {
    display: flex;
    margin-top: 12px;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .wrap .comment-links .comment-item {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    color: var(--accent-color, #ff322d);
    transition: opacity 0.3s ease;
  }
  .wrap .comment-links .comment-item:not(.comment-open) span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color, #ff322d);
    border-radius: 50%;
    position: relative;
  }
  .wrap .comment-links .comment-item:not(.comment-open) span:after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 3px;
    top: 4px;
  }
  .wrap .comment-links .comment-item.comment-open span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color, #ff322d);
    border-radius: 50%;
    position: relative;
  }
  .wrap .comment-links .comment-item.comment-open span::after {
    content: "";
    width: 5px;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .wrap .comment-links .comment-item.comment-open span::before {
    content: "";
    width: 5px;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .wrap .comment-links .comment-item.comment-open.is-open {
    opacity: 0.5;
  }
  .wrap .comment-links .comment-item.comment-open.is-open span::before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .wrap .comment .tags {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 6px;
  }
  .wrap .comment .tags .tag {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 9px;
    letter-spacing: -0.1em;
    font-weight: 400;
    line-height: 16px;
    /* 160% */
    padding: 1px 4px 0 4px;
    border-radius: 3px;
    background-color: #eee;
  }
  .wrap .products {
    margin-top: 30px;
    width: calc(100% + 30px);
    margin-left: -15px;
    position: relative;
  }
  .wrap .products > .splide {
    padding-left: 15px;
    width: 72%;
    position: static;
  }
  .wrap .products .splide__slide {
    border-radius: 6px;
    overflow: hidden;
    background: #FFF;
  }
  .wrap .products .splide__track {
    z-index: 1;
    overflow: visible;
  }
  .wrap .products-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  .wrap .products-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
  .wrap .products-texts {
    padding: 10px;
  }
  .wrap .products-texts > *:first-child {
    margin-top: 0 !important;
  }
  .wrap .products-title {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    color: var(--text-color, #222);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    margin-top: 2px;
  }
  .wrap .products-brand {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    color: var(--text-color, #222);
    margin-top: 2px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
  }
  .wrap .products-comment {
    color: #999;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    margin-top: 2px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
  }
  .wrap .products-price {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-color, #222);
    letter-spacing: 0.02em;
    margin-top: 2px;
  }
  .wrap .products .tags {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 2px;
  }
  .wrap .products .tags .tag {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 9px;
    letter-spacing: -0.1em;
    font-weight: 400;
    line-height: 16px;
    /* 160% */
    padding: 1px 4px 0 4px;
    border-radius: 3px;
    background-color: #eee;
  }
  .wrap .products .splide__arrow {
    width: 25px;
    height: 25px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 2px #ccc;
    z-index: 3;
    opacity: 1;
  }
  .wrap .products .splide__arrow:disabled {
    opacity: 0;
  }
  .wrap .products .splide__arrow::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--accent-color, #ff322d);
    border-bottom: 2px solid var(--accent-color, #ff322d);
    transform: rotate(-45deg);
    position: absolute;
    left: 8px;
    top: 8px;
  }
  .wrap .products .splide__arrow--next {
    right: 5px;
  }
  .wrap .products .splide__arrow--prev {
    left: 5px;
  }
  .wrap .products .splide__arrow--prev::after {
    transform: rotate(135deg);
    left: 10px;
  }
  .wrap .article {
    margin-top: 20px;
  }
  .wrap .article-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  .wrap .article-item {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    /* 133.333% */
    text-decoration-line: underline;
    color: var(--text-color, #222);
  }
  .wrap .article-item a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
  }
  .wrap .article-item a::before {
    content: "";
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    display: block;
    background-color: var(--accent-color, #ff322d);
    margin-top: 4px;
  }
  .wrap .article-inner {
    position: relative;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .wrap .article-btn {
    position: absolute;
    width: 100%;
    height: 70px;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, var(--background-color, #e8e8e8) 91%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
  }
  .wrap .article-btn p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    /* 128.571% */
    letter-spacing: 0.04em;
    color: var(--accent-color, #ff322d);
    text-decoration: none;
  }
  .wrap .article-btn p span {
    width: 14px;
    height: 14px;
    background-color: var(--accent-color, #ff322d);
    border-radius: 50%;
    display: block;
    position: relative;
  }
  .wrap .article-btn p span::after {
    content: "";
    width: 7px;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .wrap .article-btn p span::before {
    content: "";
    width: 7px;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .wrap .article-btn.is-open {
    position: relative;
  }
  .wrap .article-btn.is-open p span::before {
    display: none;
  }
  .wrap .faq-question {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px; /* 137.5% */
    color: var(--text-color, #222);
  }
  .wrap .faq-question span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--accent-color, #ff322d);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }
  .wrap .faq-question span::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("../images/m_template/ico_question.svg");
  }
  .wrap .faq-answer {
    margin-top: 15px;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px; /* 166.667% */
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--text-color, #222);
  }
  .wrap .faq-answer a {
    display: block;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }
  .wrap .faq-answer a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--text-color, #222);
    border-bottom: 1px solid var(--text-color, #222);
    display: block;
    transform: rotate(-45deg);
  }
  .wrap .faq-border {
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-color, #ccc);
  }
  .wrap > .inner > *:first-child {
    margin-top: 0 !important;
  }
  .wrap:last-child {
    margin-bottom: 20px;
  }
  #gift-contents {
    max-width: 100%;
    background-color: var(--background-color, #e8e8e8);
  }
  #gift-contents .inner {
    width: calc(100% - 30px);
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #gift-contents .inner .section-head {
    font-family: "TTNormsPro-Bold", sans-serif;
    font-weight: normal;
    font-size: 22px;
    line-height: 30px;
    text-align: left;
    color: var(--accent-color, #ff322d);
    text-transform: uppercase;
  }
  #gift-contents .inner .section-description {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 24px;
    text-align: left;
    color: #222;
    margin-top: 10px;
  }
  #gift-contents .inner .gift-content .content-title {
    font-family: "TTNormsPro-Bold", sans-serif;
    font-weight: normal;
    font-size: 22px;
    line-height: 30px;
    text-align: left;
    color: var(--accent-color, #ff322d);
    margin-top: 15px;
  }
  #gift-contents .inner .gift-content .content-name {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    color: var(--text-color, #222);
    margin-top: 5px;
  }
  #gift-contents .inner .gift-content .content-name .en {
    font-family: "TTNormsPro-Bold", sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
  }
  #gift-contents .inner .gift-content .content-description {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: -0.03em;
    line-height: 20px;
    text-align: left;
    color: var(--text-color, #222);
    margin-top: 10px;
  }
  #gift-contents .inner .gift-content .content-annotation {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: -0.03em;
    line-height: 16px;
    text-align: left;
    color: var(--text-color, #222);
    margin-top: 10px;
  }
  #gift-contents .inner .gift-content .content-detail-button {
    margin-top: 20px;
  }
  #gift-contents .inner .gift-content .content-detail-button a {
    padding-top: 14px;
    padding-bottom: 14px;
    background-color: transparent;
    border: 1px solid var(--accent-color, #ff322d);
    color: var(--accent-color, #ff322d);
    border-radius: 6px;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 18px;
    text-align: center;
    width: 200px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(1) .wrapping-thumb {
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(1) .wrapping-thumb img {
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item {
    width: calc(50% - 5px);
    background-color: #FFF;
    border-radius: 6px 6px 6px 6px;
    box-sizing: border-box;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item:first-of-type {
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item .item-thumb {
    width: 100%;
    border-radius: 6px 6px 0px 0px;
    overflow: hidden;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item .item-thumb img {
    width: 100%;
    border-radius: 6px 6px 0px 0px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item .content-detail {
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item .content-detail .content-item-name {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 18px;
    text-align: center;
    color: var(--text-color, #222);
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item .content-detail .content-item-caption {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.01em;
    line-height: 20px;
    text-align: left;
    color: var(--text-color, #222);
    overflow: hidden;
    margin-top: 10px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item:nth-of-type(2) {
    margin-top: 10px;
    margin-right: 10px;
  }
  #gift-contents .inner .gift-content.content-wrapping .content-box:nth-of-type(2) .content-item:nth-of-type(3) {
    margin-top: 10px;
  }
  #gift-contents .inner .gift-content.content-option {
    margin-top: 30px;
    display: flex;
    flex-direction: column-reverse;
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(1) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    margin-top: 29px;
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(1) .content-item {
    width: calc(50% - 5px);
    background-color: #FFF;
    border-radius: 6px 6px 6px 6px;
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(1) .content-item .item-thumb img {
    width: 100%;
    border-radius: 6px 6px 0px 0px;
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(1) .content-item .content-item-name {
    font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.01em;
    line-height: 20px;
    text-align: left;
    color: var(--text-color, #222);
    overflow: hidden;
    padding: 20px 20px 30px 20px;
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(1) .content-item:nth-of-type(1) {
    margin-right: 10px;
  }
  #gift-contents .inner .gift-content.content-option .content-box:nth-of-type(1) .content-item:nth-of-type(3) {
    margin-top: 10px;
    margin-right: 10px;
  }
  #gift-contents .inner .gift-content.content-steps {
    margin-top: 30px;
  }
  #gift-contents .inner .gift-content.content-steps .content-box:nth-of-type(2) {
    display: none;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner .gift-steps {
    margin-top: 28px;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner .gift-steps picture {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  #gift-contents .inner .gift-content.content-steps .content-inner .gift-steps picture.sp {
    display: none;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #gift-contents .inner .gift-content.content-steps .content-inner .gift-steps picture.pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #gift-contents .inner .gift-content.content-steps .content-inner .gift-steps picture img {
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner .gift-steps svg {
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .btn:nth-of-type(1) {
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .btn:nth-of-type(1) a {
    background-color: var(--accent-color, #ff322d);
    color: #fff;
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .btn:nth-of-type(1) a:hover {
    background-color: #fff;
    color: var(--accent-color, #ff322d);
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .btn:nth-of-type(2) {
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .btn:nth-of-type(2) a {
    background-color: #fff;
    color: var(--accent-color, #ff322d);
    border-color: #fff;
    width: 100%;
  }
  #gift-contents .inner .gift-content.content-steps .content-inner:last-of-type .btn:nth-of-type(2) a:hover {
    background-color: var(--accent-color, #ff322d);
    color: #fff;
    border-color: var(--accent-color, #ff322d);
  }
  #gift-contents + * {
    margin-top: 20px;
  }
  #gift-contents h3 > *, #gift-contents h2 > * {
    display: block;
  }
}