@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

/* 基本設定 */
body {
    margin: 0;
    background-color: #fffcf3;
    font-family: "yu gothic medium", "游ゴシック medium", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ pro w3", "メイリオ", sans-serif;
}
a {
    text-decoration: none;
}
a :hover {
    opacity: 0.8;
}
p{
    font-size: 16px;
    letter-spacing: 2px;
}
/* 特殊文字 */
.strong {
    font-weight: bold;
}
.big {
    font-size: 18px;
}
.big2 {
    font-size: 20px;
}
.red {
    color: red;
}
.pink {
    color: #ff69b4;
}
.blue {
    color: #00bfff;
}
.y-marker {
    background-color: #ffffb3;
}
.p-marker {
    background: linear-gradient(transparent 60%, #f8cce9 60%);
}
/* article */
article {
    width: 95%;
    margin: 0 auto;
}
@media (min-width: 768px) {
    article {
        width: 45%;
    }
}

/* TOP */
.top {
    font-size: 8px;
}

/* hashtag */
.box {
    display: flex;
    justify-content: flex-end;
}
.box_hashtag {
    width: fit-content;
    margin: 5px;
    padding: 3px;
    background-color: black;
}
.box_p {
    text-align: center;
    color: #fff;
    font-size: 14px;
}

/* 見出し */
h1 {
    text-align: left;
    font-size: 22px;
    font-weight: 700;
}
h2 {
    padding: 0.5rem 1rem;
    border-bottom: 3px solid #c6a992;
    margin-top: 30px;
    font-size: 22px;
}
h3 {
    padding: 1rem 1rem;
    border-left: 5px solid #c6a992;
    background: #fff;
    margin-top: 30px;
    font-size: 18px;
}
/* 画像 */
img {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.small {
    width: 70%;
    margin: 0 auto;
}
/* テキスト */
.pr {
    margin-top: -10px;
    text-align: right;
    font-size: 12px;
    letter-spacing: 1px;
}
.sub {
    margin-bottom: -5px;
    font-size: 18px;
    font-weight: bold;
}
.sub2 {
    margin-bottom: -5px;
}
.text {
    font-weight: 300;
    letter-spacing: 0.5px;
}
.text_center {
    margin-top: 30px;
    margin-bottom: 5px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.5px;
}
.text_center_2 {
    margin-top: 5px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.5px;
}
.text_small {
    font-size: 12px;
}
.text_last {
    margin: 30px;
    text-align: center;
    font-size: 14px;
    color: #ff69b4;
}
.text_link {
    text-align: right;
    font-size: 14px;
    color: #00bfff;
}
/* ビデオ */
video {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* 購入ボタン */
.btn {
    margin-top: 50px;
    margin-bottom: 50px;
}
.btn a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 1em 2em;
    width: 280px;
    color: #e9546b;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid #e9546b;
  }
.btn a::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #e9546b;
    border-right: 3px solid #e9546b;
    transform: rotate(45deg);
  }
.btn a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #e9546b;
  }
.btn a:hover::after {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }

/* フッター */
footer {
    text-align: center;
}
footer a {
    font-size: 12px;
    color: #6d6c6c;
}