:root {
    --red: rgb(191, 76, 76);
    --yellow: rgb(255, 249, 210);
    --text-color: #1f2937;
    --btn-color1: #393d66;
    --btn-color2: #ffffff;
    --link-color: #425775;
    --ac-col: #FF6F00;
    --btn: #FF6F00;
}

body {
    /*font-family: "Zen Kaku Gothic New", sans-serif;*/
    font-family: "Noto Sans JP", sans-serif;

    font-weight: 400;
    font-style: normal;
    color: var(--text-color);
}

.notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background-color: #fff;
    color: rgb(191, 76, 76);
    overflow: hidden;
    z-index: 1000;

}

#close-notice {
    padding: 4px 8px;
    color: #1f2937;
}

#count-down {

    padding: 0 10px;
}

.cart-num {
    display: inline-block;
    /* インラインで隙間を取らずに配置 */
    min-width: 18px;
    /* 1桁でも丸く見えるよう最小幅 */
    padding: 2px 6px;
    /* 上下左右の余白で読みやすさ確保 */
    font-size: 0.75rem;
    /* 本文より一段小さく */
    line-height: 1;
    /* 縦方向センタリングを簡単に */
    font-weight: 700;
    /* 小さくても視認性を確保 */
    color: #fff;
    /* 文字色は白固定 */
    background: #e63946;
    /* 目立つ赤（適宜ブランドカラーに変更） */
    border-radius: 9999px;
    /* 楕円～円を作る */
    text-align: center;
    /* 桁数が増えても中央寄せ */
    margin-right: 4px;
    /* “Cart” テキストとの間隔 */
    vertical-align: top;
    /* ベースラインより少し上に揃える */
}

.nav-header {
    background-color: rgb(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    color: white;
    padding: 10px 0;
    z-index: 1000;
    transition: background-color 0.5s ease;
    font-family: "futura-pt", sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
}

.nav-btn-ct {
    display: flex;
    gap: 10px;
    padding: 0 5px;
}

.nav-header a {
    color: white;

}

#close-nav {
    font-size: x-large;

}

.nav-btn {
    color: white;
    padding: 10px;
    font-size: x-large;
}

.h-logo-ct {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-logo {
    height: 30px;
    object-fit: contain;
    object-position: center;
}

.logo-ct {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.h-logo-icon {
    height: 15px;
    object-fit: contain;
    object-position: center;
}

/*ナヴィゲーション*/
.nav-window {
    background-color: #ffffff;
    width: 85%;
    overflow: auto;
    height: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 2000;
    padding: 20px 30px;
    transition: left 0.4s ease;
}

.nav-window a {
    display: block;
    padding: 15px 0;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color);
    font-size: small;
}

.nav-window ul {
    list-style-type: none;
}

.nav-overlay {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* Safari/iOS */
}

.nav-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;

}

/* ルート要素を相対配置にして動画を敷き詰める */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    /* 好みで調整 */
    overflow: hidden;
}

/* 動画自体を背景のように振る舞わせる */
.hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 余白なくトリミング */
    z-index: -2;
    /* 下層に配置 */
}

/* オーバーレイ（暗めの黒を半透明で） */
.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
    pointer-events: none;
}


.hero_content {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 50px 0;
    pointer-events: visible;
    color: white;
}

.hero_content h2 {
    margin-top: auto;
}

.cta-btn-wp {
    margin-top: auto;
}

.sale-text {
    text-align: center;
    margin: 10px;
}

.hero_content .cta-btn {
    margin-top: auto;
    justify-self: end;
    color: var(--text-color);
    display: block;
    padding: 15px 30px;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: bold;
    border: solid #fff 1px;
    text-decoration: none;
    background-color: rgb(255, 255, 255);
    text-align: center;
}

/**/
.sect {
    padding: 10px;
}

.title-ct {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px 0;


}

.title-ct h3 {
    font-size: x-large;

}

.title-ct .icon {
    height: 15px;

}

.items-ct {
    overflow: auto;
    padding: 10px;

}
@media (max-width:900px) {
    .items-ct::-webkit-scrollbar{
        display: none;
    }
}


.items {
    display: flex;
    gap: 2px;

}

.item-card {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    width: 30%;
    border: solid #ffffff 1px;
    border-radius: 0px;
    line-height: 1rem;
    flex-shrink: 0;
    background-color: #ffffff;
}

.show-all {
    font-family: "futura-pt", sans-serif;
}

.item-ct {
    padding: 2px;
    font-family: "futura-pt", sans-serif;

}

.item-comment {
    font-size: x-small;
    color: var(--red);
    font-weight: 400;
}

.item-info {
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 0;
}

.item-name-1 {
    font-size: small;
    font-weight: 300;

}

.item-price-1 {
    font-size: small;
    line-height: 1em;
    font-weight: normal;
    font-family: "futura-pt", sans-serif;
}

.item-price-dis {
    line-height: 1em;
    color: red;
    font-size: small;
    font-weight: 400;

}

.strike {
    text-decoration: line-through;

}

.sp-label {
    /*font-family: "GFS Didot", serif;*/
    color: white;
    background-color: var(--red);
    font-size: x-small;
    padding: 2px 4px;
    align-self: flex-start;
}

.item-img-1 {
    width: 100%;

    object-fit: cover;
}

.item-btns {
    font-size: small;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 2px 0;

}

.item-btns button {
    padding: 10px 2px;
    border: solid 1px rgb(213, 213, 213);
    background-color: #fff;

}

.purchase-now {
    background-color: var(--red);
    color: white;
}

.item-link {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    text-align: center;
    font-weight: bold;
}

.to-sale {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--btn);
    color: white;
    text-align: center;
    margin: 10px 0 0 0;
    font-family: "futura-pt", sans-serif;
    text-decoration: none;
}

/*カルーセル*/
.carousel {
    overflow: hidden;
    position: relative;
}

.carousel button {
    background-color: #fff;
    padding: 10px 4px;
    border: solid #dbdbdb 1px;
    margin: 3px;
    z-index: 1000;
    font-weight: bold;
}

#prev {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#next {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.carousel-wrapper {
    transition: transform 0.7s ease;
    display: flex;

}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.indi {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: solid 1px #333;
}

.active {
    background-color: #333;
}

.carousel-item {
    border: solid #eee 1px;
    min-width: 100%;
}

/**/
.sub-hero {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.sub-hero img {
    width: 100%;
}

.sub-hero .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.desc {
    line-height: 1.7rem;
    padding: 0 20px;
    font-size: small;
}

.story-video {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    object-fit: contain;
    object-position: center;
    z-index: -2;
}

.link1 {
    color: var(--text-color);
    display: block;
    text-align: center;
    font-size: small;
    padding: 10px 0;
}

/*top-menu*/
.top-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 10px 0;
}

.link-img-ct {
    position: relative;
    display: block;

    padding: 0;
    overflow: hidden;
    height: 200px;
}

.link-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    z-index: -2;
}

.link-img-ct .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
    font-family: "futura-pt", sans-serif;
}

.link-text {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    z-index: 200;
}

.sale-banner {
    width: 100%;
    object-fit: contain;
}

/*review*/
.review-summary {
    display: flex;
    align-items: center;
    font-size: small;
    gap: 10px;
}

.stars {
    height: 20px;
}

.star {
    height: 100%;
}

.p-review {
    margin: 0 20px;
    background-color: rgb(255, 253, 240);
    font-size: small;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.p-review h4 {
    font-weight: normal;
}

/*配送*/
.haiso {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.haiso img {
    width: 100%;
    object-fit: contain;
}

/*レビューカルーセル*/
.r-c-wrapper {
    display: flex;
    position: relative;
    margin: 10px 0;
}

.r-c-wrapper button {
    font-weight: bold;
}

#r-prev {
    position: absolute;
    top: 50%;
    left: 10px;
}

#r-next {
    position: absolute;
    top: 50%;
    right: 10px;
}

.r-c-item {
    min-width: 100%;
    padding: 20px 40px;
    background-color: #fafafa;
}

.review-title {
    font-size: 1rem;
}

.review-user {
    font-size: small;
    font-weight: normal;
}

.r-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.review-item {
    color: #666;
}

.r-card {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.1);
    font-size: small;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.r-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.review-date {
    align-self: flex-end;
    font-size: x-small;
}

/*特徴*/
.features {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

.f-title-wp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.f-icon {
    height: 30px;
}

.f-title {
    font-size: 1.4rem;
    font-weight: 500;
}

.f-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.f-desc {
    font-size: small;
    padding: 20px 0;
}

.kome {
    font-size: x-small;
    color: #666;
}

/*モデル*/
/*モデル*/
.item-features {
    padding: 0;
}

.model-ct {
    padding: 10px 30px;
}

.model-img-ct {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.model-img {
    width: 100%;
}

.model-header-wp {
    padding: 20px 0 30px 0;
}

.model-header {
    font-weight: normal;
    font-size: 1rem;
    color: #666;
}

.model-sub-header {
    font-size: 1rem;
    font-weight: normal;
}

.model-caption {
    font-size: small;
    padding: 10px 0;
}

.model-all-item {
    font-size: small;
    color: #666;
    text-decoration: none;
    border-bottom: solid 1px var(--red);
}

.model-all-item::before {
    content: '>';

}

.hanten {
    background-color: var(--text-color);
    color: white;
    padding: 10px 30px;
}

.hanten .model-header,
.hanten .kome,
.hanten .model-all-item {
    color: rgb(215, 215, 215);
    border-color: white;
}


/*フッター*/
footer {
    height: 80vh;
    width: 100%;
    background-color: #333;
    display: flex;
    flex-direction: column;
}

footer .links {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;

    gap: 10px;
}

footer ul {
    list-style-type: none;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-size: x-small;
}

.copy {
    background-color: #333;
    color: white;
    text-align: center;
    font-size: x-small;
    padding: 2px;
}

.fade-target {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-anime {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width:900px) {
    body {
        width: 450px;
        margin: 0 auto;
    }

    .nav-header {
        width: 450px;
        left: 50%;
        transform: translateX(-50%);
    }

 
}

.grid-mag-icon {
    font-size: x-small;
    font-weight: 400;
    color: green;

}

.sale-banner-ct img{
    width: 100%;
}
.stock{
    font-size: x-small;
    color: red;
    text-align: end;
    margin: 0 5px;
}


/*クーポン*/
.coupon-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.coupon-window{
    padding: 20px;
    animation: popup 0.2s ease;
}
#close-coupon{
    color: white;
}
.tkt-ct{
    width: 100%;
    
}
.tkt-ct img{
    width: 100%;
}
#coupon-code{
    display: flex;
    justify-content: center;
    padding: 15px;
    width: 100%;
    border-radius: 4px;
    border: goldenrod solid 8px;
    background-color: #fff;
    font-size: 2rem;
    font-weight: bold;
}
#coupon-code i{
    font-weight: 400;
    margin-left: 5px;
}
@keyframes popup {
    0%{
        transform: scale(0%);
    }
    100%{
        
    }
    
}
.tkt-btn{
    display: block;
    position:fixed;
    bottom: 10px;
    right: 10px;
    height: 30px;
    z-index: 1000;

}
.tkt-btn img{
    height: 100%;
    object-fit: contain;
}