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


/**
 * ***************************************
 * ページ全体に関わるCSSの設定
 * ***************************************
 */
/* 基本設定 */
body {
    margin: 0;
    font-family: "yu gothic medium", "游ゴシック medium", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ pro w3", "メイリオ", sans-serif;
}
article {
    width: 95%;
    margin: 0 auto;
}
@media (min-width: 768px) {
    article {
        width: 45%;
    }
}
a {
    text-decoration: none;
}
a:hover {
    opacity: 0.8;
}


/**
 * ***************************************
 * 特殊文字
 * ***************************************
 */
.big {
    font-size: 18px;
    font-weight: bold;
}
.y-marker {
    background: #ffffb3;
}
.y-marker20 {
    background: linear-gradient(transparent 20%, #ffffb3 60%);
}
.y-marker60 {
    background: linear-gradient(transparent 60%, #ffffb3 60%);
}
.p-marker {
    background: #f8cce9;
}
.p-marker20 {
    background: linear-gradient(transparent 20%, #cf2e92);
}
.p-marker60 {
    background: linear-gradient(transparent 60%, #cf2e92);
}


/**
 * ***************************************
 * 見出し
 * ***************************************
 */
 h2 {
    padding: 0.5rem 1rem;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #cf2e92 0%, #ffdd83 100%);
    border-image-slice: 1;
    margin-top: 30px;
    font-size: 20px;
}
h3 {
    position: relative;
    padding: 1rem 1rem;
    margin-top: 50px;
    color: #cf2e92;
    border-radius: 0 10px 10px 10px;
    background: #f5c4e2;
    text-align: left;
}
h3:before {
    position: absolute;
    padding: 0 1em;
    top: -24px;
    left: 0;
    height: 24px;
    content: 'POINT';
    color: #fff;
    border-radius: 10px 10px 0 0;
    background: #cf2e92;
    font-size: 15px;
}


/**
 * ***************************************
 * テキスト
 * ***************************************
 */
 p {
    font-size: 16px;
    letter-spacing: 2px;
}
.pr {
    margin-top: -20px;
    color: #c9c7c7;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: right;
}