@charset "utf-8";


@media screen and (min-width: 481px){
body {
    width: 100%;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* ヘッダー */
header {
    width: 100%;
    background-color: #ffffff;
    height: 80px;
}
#headerContentsBlock {
    width: 70%;
    display: flex;
    margin: 0 auto;
}
#mainlogo {
    margin-top: 20px;
}
#shop_login {
    display: flex;
    margin-left: auto;
}
#onlineShop {
    margin-top: 25px;
    margin-right: 60px;
  }
#login {
    margin-top: 15px;
}

/* ナビゲーション（PC用） */
  nav {
    height: 45px;
    background-color: #cdc3ca;
  }
nav ul {
    display: table;
    margin: 0 auto;
    padding: 0;
    width: 70%;
    text-align: center;
}
nav li {
    font-family: 'system-ui', sans-serif;
    display: table-cell;
    min-width: 50px;
    padding-top: 11px;
    padding-bottom: 7px;

}
nav a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #555;
    font-size: 20px;
}
nav li.current {
    border-bottom: 4px solid #ffffff;
}
nav li:hover {
    color: #f636ff;
    border-bottom: 4px solid #f636ff;
}
.mobile-only {
    display: none;
}

/* ランキングエリア */
.rankingArea {
    width: 100%;
    max-width: 910px;
    margin: 0 auto;
}
h1 {
    font-size: 50px;
    margin: 50px 0 70px 0;
    text-align: center;
}

/* ルーレットのCSS */
.rotate {
    overflow: hidden;
    width: 100%;
}
.rotate00 {
    display: flex;
    animation: rotateimg 40s linear infinite;
    will-change: transform;
}
.rotate:hover .rotate00 {
    animation-play-state: paused;
}
.rotate-item {
    width: 260px;
    margin: 0 30px;
    padding-top: 5px; /* ← 余裕スペース */
    flex-shrink: 0;
    text-align: left;
}
.rotate-item img {
    width: 100%;
    transition: transform 0.3s ease ;
}
.rotate-item:hover img {
    transform: translateY(-4px);
}
@keyframes rotateimg {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(-2300px); /* 10個 × 300px（=260+20×2） */
    }
}
/* ルーレットのCSSここまで */

.n1 {
    font-size: 14px;
    margin-top: 20px;
    letter-spacing: -0.03em;
}
.n2 {
    font-size: 19px;
    margin-top: 7px;
    line-height: 1.5;
}
.n3 {
    font-size: 18px;
    margin-top: 10px;
}
.rotate .n3 span {
    font-size: 14px;
    margin-left: -2px;
}
.banner {
    text-align: center;
    margin-top: 150px;
}

/* 各商品紹介 */
.p_set {
    margin: 200px 0;
}
h2 {
    display: flex;
}
.re_h2,.re {
    display: none;/* PC版は非対応 */
}
.no {
    font-size: 23px;
    margin-top: 15px;
    margin-right: 5px;
}
.number {
    font-size: 67px;
    font-weight: 300;
}
.name {
    font-size: 33px;
    margin-left: 20px;
    margin-top: -3px;
}
.name span {
    font-size: 17px;
}
.product {
    display: flex;
    margin-top: 80px;
}
.productImg img {
    width: 320px;
    position: absolute;/* .r_button用 */
}
.productImg>img {
    filter: drop-shadow(2px 2px 2px rgba(175, 175, 175, 0.5));
}
.r_button img {
    width: 110px;
    position: relative;/* .r_button用 */
    top: 230px;
    left: 230px;
}
.productText {
    margin-left: auto;
    width: 530px;
    height: 320px;
    position: relative;
}
h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.55;
}
.productText .r_t1 {
    font-size: 20px;
    line-height: 1.7;
    text-align: justify;
    margin-top: 15px;
}
.productText .r_t2 {
    font-size: 17px;
    margin-top: 10px;
}
.productText .r_t3 {
    font-size: 25px;
    position: absolute;
    right: 0;
}
.productText .r_t3 span {
    font-size: 16px;
    margin-left: -3px;
}
.r_t2,.r_t3 {
    position: absolute;
    bottom: 0;
}

/* ポイント */
.point {
    margin-top: 80px;
}
.r_waku {
    position: relative;
}
.pointSet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}
.po {
    margin: 0 20px;
}
.pointImg img {
    width: 170px;
}
.mark img {
    width: 20px;
    margin-top: 6px;
}
.check {
    display: flex;
    margin-top: 18px;
}
.check .r_pText {
    width: 360px;
    font-size: 17px;
    margin-left: 7px;
    line-height: 1.7;
}

/* ハンバーガーアイコン（スマホのみ） */
.hamburger {
    display: none;
  }
  
  /* フッター */
  footer {
    width: 100%;
    height: 40px;
    background-color: #cdc3ca;
    text-align: center;
    padding-top: 5px;
    font-size: 20px;
  }
}
/* PC ここまでまで */

/* ページトップへ戻るボタンを押したときの動きがスムーズになります */
html {
    scroll-behavior: smooth;
}

.backTop{
    position: fixed;
    top: 85%;
    right: 40px;
}




/* スマホ用スタイル（画面幅480px以下） */
@media screen and (max-width: 480px) {

body {
    font-family: 'Zen+Kaku+Gothic+New', sans-serif;
    background-color: #fff;
}

header {
    background-color: #fff;
    height: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
#headerContentsBlock {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mainlogo img {
    height: 40px;
}
  
#shop_login {
    display: none;
}

.hamburger {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    background: #000;
    border-radius: 1px;
}

/* ナビゲーションの設定（スマホ表示時） */
nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 60px; /* ヘッダーの高さに合わせる */
    left: 0;
    z-index: 1000;
    padding-top: 20px;
    padding-bottom: 20px; /* メニューが画面いっぱいに広がらないように余白を設定 */
}

nav.active {
    display: flex;
}

nav ul {
    width: 100%; /* メニューの横幅を100%にする */
}

nav li {
    display: block;
    list-style: none;
    text-align: center;
    height: 60px;
    padding: 20px 0;
    border-bottom: 1px solid #aaa; /* メニュー項目の間に罫線 */
    background-color: #ffffffe4;
}

nav li:hover {
    background-color: #f685fc;
}

nav li a {
    text-decoration: none;
    color: #3f3e3e;
    font-size: 16px;
}

nav li a:hover {
    color: #ffffff;
    font-weight: 500;
}

nav li.mobile-only {
    display: block;
}

nav li.current {
    background-color: #dddcdc;
}

/* スクロール禁止 */
body.no-scroll {
    overflow: hidden;
}


/* ランキングエリア */
.rankingArea {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}
h1 {
    font-size: 40px;
    margin: 50px 0 60px 0;
    text-align: center;
}

/* ルーレットのCSS */
.rotate {
    overflow: hidden;
    width: 100%;
}
.rotate00 {
    display: flex;
    animation: rotateimg 40s linear infinite;
    will-change: transform;
}
.rotate:hover .rotate00 {
    animation-play-state: paused;
}
.rotate-item {
    width: 260px;
    margin: 0 10px;
    padding-top: 5px; /* ← 余裕スペース */
    flex-shrink: 0;
    text-align: left;
}
.rotate-item img {
    width: 210px;
    transition: transform 0.3s ease ;
}
.rotate-item:hover img {
    transform: translateY(-4px);
}
@keyframes rotateimg {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(-2300px); /* 10個 × 300px（=260+20×2） */
    }
}
/* ルーレットのCSSここまで */

.n1 {
    font-size: 15px;
    margin-top: 20px;
    letter-spacing: -0.03em;
}
.n2 {
    font-size: 20px;
    margin-top: 7px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}
.n3 {
    font-size: 19px;
    margin-top: 10px;
}
.rotate .n3 span {
    font-size: 14px;
    margin-left: -2px;
}
.banner {
    text-align: center;
    margin-top: 100px;
}

/* 各商品紹介 */
.p_set {
    margin: 100px 0;
}
h2 {
    clear: both;
}
.re_h2 {
    font-size: 23px;
    margin-bottom: 10px;/* スマホ用 */
}
.re {
    display: inline;/* スマホ用 */
}
.no,.number {
    display: none;
}
.name {
    font-size: 23px;
    margin-left: 0;
    margin-top: -7px;
    line-height: 1.4;
}
.name span {
    font-size: 14px;
    margin-bottom: 7px;
}
.product {
    margin-top: 40px;
}
.productImg img {
    width: 300px;
    position: absolute;/* .r_button用 */
}
.productImg>img {
    filter: drop-shadow(1.5px 1.5px 1.5px rgba(175, 175, 175, 0.5));
}
.r_button img {
    width: 100px;
    position: relative;/* .r_button用 */
    top: 230px;
    left: 230px;
}
.productText {
    width: 300px;
    text-align: justify;
    margin-top: 250px;
}
h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.55;
}
.br_none {
    display: none;
}
.productText .r_t1 {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 15px;
}
.productText .r_t2 {
    font-size: 16px;
    margin-top: 20px;
}
.productText .r_t3 {
    font-size: 25px;
    position: absolute;
    right: 0;
    margin-right: 20px;
    margin-top: 20px;
}
.productText .r_t3 span {
    font-size: 16px;
    margin-left: -3px;
}

/* ポイント */
.point {
    margin-top: 100px;
}
.r_waku {
    position: relative;
}
.pointSet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.po {
    margin: 40px 0;
}
.pointImg img {
    width: 170px;
}
.mark img {
    width: 20px;
    margin-top: 6px;
}
.check {
    display: flex;
    margin-top: 18px;
}
.check .r_pText {
    width: 250px;
    font-size: 17px;
    margin-left: 7px;
    line-height: 1.7;
}

/* ページトップへ戻るボタンを押したときの動きがスムーズになります */
html {
    scroll-behavior: smooth;
}

.backTop{
    position: fixed;
    top: 85%;
    right: 40px;
}

/* フッター */
footer {
    width: 100%;
    margin: 0 auto;
}
footer p{
    display: block;
    text-align: center;
    padding: 5px 0;
    background-color: #cdc3ca;
}
}