@charset "utf-8";

.article {
  width: 250px;
  margin: 0 auto;
  padding-top: 90px;
}

/* セクション全体の調整 */
.section-illu {
    padding: 60px 20px 20px 20px;
    text-align: center;
    background-color: var(--white); /* 背景色は好みで調整してな */
}

/* タイトル周りの装飾（＼ イラストはこちら ／） */
.sec-title {
    display: inline-block;
    position: relative;
    font-size: 12px;
    color: var(--pink); /* ピンク系 */
    margin: 0 40px;
    font-weight: normal;
}

.sec-title::before,
.sec-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 13px;
    height: 1px;
    background-color: var(--pink);
}

.sec-title::before {
    left: -40px;
    transform: rotate(45deg); /* 左側の＼ */
}

.sec-title::after {
    right: -40px;
    transform: rotate(-45deg); /* 右側の／ */
}

/* ボタンを横に並べるボックス */
.btnBox {
    display: flex;
    justify-content: center;
    gap: 55px;
    margin: 16px 0 40px 0;
}

/* ボタン共通の基本設定 */
.btn01 a, .btn02 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100px;
    padding: 7px 0 8px 14px;
    text-decoration: none;
    font-size: 12px;
    border-radius: 2px;
    transition: 0.3s;
    position: relative;
}

.btn02 a {
  padding: 7px 0 8px 20px;
}



/* 右側の小さな三角形（▶︎）を疑似要素で作る */
.btn01 a::after, .btn02 a::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 5px;
    margin-right: 7px;
    margin-top: 1px;
}

/* 全年齢向けボタン（ピンク） */
.btn_01a {
    color: var(--txt_black);
    border: 2px solid var(--pink);
}

.btn_01a::after {
    border-color: transparent transparent transparent var(--pink);
}

.btn_01a:hover {
    background-color: var(--white);
}

/* 成人向けボタン（青緑） */
/* HTMLが「成人向け」になってたけど画像は「R-18」やったから、
   文字数はことちゃんの好みで調整してな！ */
.btn_02a {
    color: var(--blue); /* 青緑系 */
    border: 2px solid var(--blue);
}

.btn_02a::after {
    border-color: transparent transparent transparent var(--blue);
}

.btn_02a:hover {
    background-color: var(--white);
}

/* アテンション（注意書き）の淡々としたスタイル */
.attemtion {
    font-size: 10px;
    color: #5e5e5e;
    max-width: 254px;
    margin: 40px auto 0;
    text-align: left; /* 倉庫っぽい淡々とした左寄せ */
}


.sns {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
  margin-top: 40px;
}

.sns_x {
  width: 24px;
  height: 25px;
}

.sns_b {
  width: 30px;
  height: 25px;
}


/* fadeInクラスがついている要素は、開いた瞬間にアニメーション開始 */
.fadeIn {
    animation: simpleFadeIn 1s ease-out forwards;
}

@keyframes simpleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 20px下から */
    }
    100% {
        opacity: 1;
        transform: translateY(0);    /* 元の位置へ */
    }
}