.unimemo-content-tabs {
    margin-top: 160px;
}

.unimemo-content-tab:nth-of-type(1).is-active~.unimemo-content-tab-presentation {
    -webkit-transform: translateX(0) scaleX(0.5);
    transform: translateX(0) scaleX(0.5);
}

.unimemo-content-tab:nth-of-type(2).is-active~.unimemo-content-tab-presentation {
    -webkit-transform: translateX(50%) scaleX(0.5);
    transform: translateX(50%) scaleX(0.5);
}

.unimemo-content-panel-inner {
    display: none;
}

.unimemo-content-panel-inner.active {
    display: block;
}

.dg-list {
    border-top: 1px solid #ccc;
}

.dg-list li {
    display: none; 
    opacity: 0; 
    transition: opacity 0.5s;
    border-bottom: 1px solid #ccc;
}

.dg-list li.show {
    display: block;
    opacity: 1;
}

.dg-list li a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px 20px 40px;
}

.dg-list li a .left-content {
    width: 20%;
}

.dg-list li a .right-content {
    width: 75%;
}

.product-content-cat {
    color: #fff;
    padding: 0 5px;
    margin-bottom: 10px;
    margin-right: 5px;
    display: inline-block;
    background-color: #fd0d1b;
}

.product-content-cat-gray {
    padding: 0 5px;
    margin-bottom: 10px;
    display: inline-block;
    background-color: #f0f0f0;
}

.product-content-title {
    margin-bottom: 30px;
}

.right-content .icon {
    display: flex;
    gap: 14px;
}

.right-content .icon img {
    width: 7%;
}

.dg-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.loadMoreBtn {
    margin-top: 80px;
}

.loadMoreBtn .page-btn-link-a {
    margin: 0 auto;
}

.notice {
    display: flex;
    gap: 12px;                   /* アイコンとテキストの間隔 */
    align-items: flex-start;     /* アイコンの上端をテキストの上端に揃える */
    border: 1px solid #ddd;
    padding: 14px 16px;
    width: 1000px;
    max-width: 100%;            /* 必要に応じて調整 */
    margin: 0 auto;
    margin-top: 100px;
}

.notice__icon {
    width: 5%;
    margin-top: 5px;
}

.notice__body {
    flex: 1 1 auto;
}

.only-pc {
    display: block;
}

.only-sp {
    display: none;
}

/*detail*/
.page-header-btn {
    padding: 25px;
}

.dg-header-btn {
    display: block;
    background-color: #fd0d1b;
    max-width: 155px;
    /*height: 40px;*/
    border-radius: 22px;
    padding: 2px 50px 10px 50px;
}

.page-btn-link-a.bottom {
    padding: 5px 100px;
    background: #000;
    border-radius: 30px;
}

.footer-wrapper.bottom {
    padding: 60px 0;
}

.footer-wrapper.bottom .footer-legal-items {
    margin-top: 0;
    padding: 0;
}

.footer-wrapper.bottom .footer-legal-items .footer-legal-item {
    margin: 0 auto;
}

.page-container-mobile:has(.slider) {
    position: relative;
}

.slider,
.slider-thumbnail {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slider .swiper-slide img {
    width: auto;
    max-height: 100%;
    margin: 0 auto;
}

.slider-thumbnail .swiper-wrapper {
    margin-top: 100px;
}

.slider-thumbnail .swiper-slide {
  opacity: .5;
  transition: opacity .5s;
  width: 8%;
  cursor: pointer;
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.s-next.swiper-button-next,
.s-prev.swiper-button-prev {
    width: 50px;
    height: 50px;
}

.s-next.swiper-button-next {
    left: calc(100% + 10px);
    right: 0;
}

.s-prev.swiper-button-prev {
    left: -60px;
}

.s-prev .page-btn-arrow-s, .s-next .page-btn-arrow-s {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    right: 0;
}

.slider .page-btn-arrow-s {
    right: auto;
}

.swiper-pagination {
    display: inline-block;
    width: 90px;
    background-color: #f0f0f0;
    border-radius: 20px;
    top: calc(100% + 30px);
    bottom: auto;
    padding: 6px 0;
}

.copyright {
    font-size: 11px;
    margin-top: 80px;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
    /*
    header {
        display: none;
    }

    header.active {
        display: block;
    }
    */

    .unimemo-content-tabs {
        margin-top: 80px;
    }

    .dg-list li a {
        align-items: stretch;
        padding: 20px;
    }

    .dg-list li a .left-content {
        width: 40%;
    }

    .right-content .icon {
       width: 65%;
       gap: 10px;
       flex-wrap: wrap;
    }

    .right-content .icon img {
        width: 28%;
    }

    .product-content-cat {
        margin-bottom: 0;
    }

    .dg-arrow {
        right: 0;
        top: calc(100% - 40px);
    }

    .loadMoreBtn {
        margin-top: 40px;
    }

    .notice {
        width: auto;
        margin-top: 50px;
    }

    .notice__icon {
        width: 35%;
        margin-top: 5%;
    }

    .only-pc {
        display: none;
    }

    .only-sp {
        display: block;
    }

    /*detail*/
    .page-main.detail {
        padding-top: 40px;
    }

    .detail .page-container-mobile {
        padding-left: 0;
        padding-right: 0;
    }

    .prl24-sp {
        padding-left: 24px;
        padding-right: 24px;
    }

    .page-bottom-header-btn.top span {
        padding: 0 15px;
    }

    .footer-wrapper.bottom {
        padding: 30px 0;
    }

    .footer-wrapper.bottom .footer-legal-items .footer-legal-item {
        text-align: center;
    }

    .slider-thumbnail .swiper-slide {
        width: 20%;
    }

    .s-prev .page-btn-arrow-s, .s-next .page-btn-arrow-s {
        width: 35px;
        height: 35px;
    }

    .page-svg-size-24 svg {
        width: 15px;
        height: 15px;
    }

    .s-next.swiper-button-next {
        left: calc(100% - 60px);
        top: calc(100% + 50px);
    }

    .s-prev.swiper-button-prev {
        left: calc(calc(100% - 60px) - 13%);
        top: calc(100% + 50px);
    }

    .swiper-pagination {
        left: 5%;
        top: calc(100% + 35px);
    }

    .copyright {
        margin-top: 40px;
    }

    .unimemo-wrapper {
        margin-bottom: 40px;
    }

    .header-sp-wrapper.detail {
        position: static;
    }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
    .unimemo-content-tabs {
        margin-top: 80px;
    }

    .loadMoreBtn {
        margin-top: 40px;
    }

    .notice {
        width: auto;
        margin-top: 50px;
    }

    .notice__icon {
        width: 18%;
    }

    /*detail*/
    .page-main.detail {
        padding-top: 40px;
    }

    .header-sp-wrapper.detail {
        position: static;
    }

    .page-bottom-header-btn.top span {
        padding: 0 15px;
    }

    .unimemo-wrapper {
        margin-bottom: 40px;
    }

    .swiper-pagination {
        left: 5%;
        bottom: 25%;
    }

    .copyright {
        margin-top: 40px;
    }

    .footer-wrapper.bottom {
        padding: 30px 0;
    }

    .footer-wrapper.bottom .footer-legal-items .footer-legal-item {
        text-align: center;
    }
}