@charset "UTF-8";

/* BASE
------------------------- */
:root {
    /* メインカラー */
    --mainColor: #ad0000;
    /* サブカラー */
    --subColor: #efeeee;
    /* フォーム背景色 */
    --formColor: #ad0000;
    /* テキストカラー */
    --mainTxtColor: #2a2b2c;
    /* 2つの値の大きい方が指定される (横幅)*/
    --contentWidth: max(500px, 20vw);
    --white: #ffffff;
    --black: #2a2b2c;
    --blue: #162d7b;
    --red: #ad0000;
    --yellow: #fff2ac;
    --gray: #666666;
    --gray2: #cfcccc;
    --gray3: #f9f9f9;
    --notcieGray: #8a8a8a;
    --gold: #6f5213;
}

a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: var(--gray);
}

html {
    font-size: min(1vw, calc(var(--contentWidth) / 100));
    overflow-x: hidden;
}

body {
    background-image: url("../img/bg.jpg");
    background-size: 100% auto;
    background-repeat: repeat;
    background-position: top center;
    background-attachment: fixed;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-size: 4.5rem;
    line-height: 1.5;
    color: var(--mainTxtColor);
    margin: 0;
}

* {
    box-sizing: border-box;
}

img {
    width: 100%;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}

.img_50 {
    width: 50%;
    margin: 0 auto;
}

.img_80 {
    width: 80%;
    margin: 0 auto;
}

.img_90 {
    width: 90%;
    margin: 0 auto;
}

.logo_img {
    width: 90%;
    margin: 0 auto;
}

a {
    text-decoration: underline;
    color: revert;
}

#contents {
    background: #fff;
    max-width: var(--contentWidth);
    margin-inline: auto;
    box-shadow: 0 0 20rem 0 rgba(87, 87, 87, 0.3);
}

.r {
    color: var(--red);
}

.y {
    color: var(--yellow);
}

.y2 {
    color: var(--gold);
}

.blue {
    color: var(--blue);
}

.or {
    color: var(--mainColor);
}

.g {
    color: var(--subColor);
}

.wht {
    color: #fff;
}

.b {
    font-weight: bold;
}

.b600 {
    font-weight: 600;
}

.b900 {
    font-weight: 900;
}

.u {
    text-decoration: underline;
}

.italic {
    font-style: italic;
}

.red-text {
    background: linear-gradient(135deg, #7d0000 0%, #ad0000 50%, #7d0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text {
    background: linear-gradient(135deg, #f6c368 0%, #fff5bf 50%, #f6c368 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg_wht {
    background-color: #fff;
    padding: 5rem 3rem;
}

/* ----------------------
font-size
---------------------- */
.small40 {
    font-size: 40%;
}

.small50 {
    font-size: 50%;
}

.small60 {
    font-size: 60%;
}

.small70 {
    font-size: 70%;
}

.small80 {
    font-size: 80%;
}

.small85 {
    font-size: 85%;
}

.small90 {
    font-size: 90%;
}

.small95 {
    font-size: 95%;
}

.large110 {
    font-size: 110%;
}

.large115 {
    font-size: 115%;
}

.large120 {
    font-size: 120%;
}

.large125 {
    font-size: 125%;
}

.large130 {
    font-size: 130%;
}

.large145 {
    font-size: 145%;
}

.large150 {
    font-size: 150%;
}

.large160 {
    font-size: 160%;
}

.large170 {
    font-size: 170%;
}

.large180 {
    font-size: 180%;
}

.large190 {
    font-size: 190%;
}

.large200 {
    font-size: 200%;
}

.large250 {
    font-size: 250%;
}

.large270 {
    font-size: 270%;
}

/* line-height */
.lh_11 {
    line-height: 1.1;
}

.lh_12 {
    line-height: 1.2;
}

.lh_13 {
    line-height: 1.3;
}

.lh_14 {
    line-height: 1.4;
}

/* text-align */
.txt_c {
    text-align: center;
}

.txt_r {
    text-align: right;
}

.txt_l {
    text-align: left;
}

.bottom {
    margin-bottom: 1rem;
}

.bottomx2 {
    margin-bottom: 2rem;
}

.bottomx3 {
    margin-bottom: 3rem;
}

.bottomx4 {
    margin-bottom: 4rem;
}

.bottomx5 {
    margin-bottom: 5rem;
}

.bottomx6 {
    margin-bottom: 6rem;
}

.bottomx7 {
    margin-bottom: 7rem;
}

.bottomx8 {
    margin-bottom: 8rem;
}

.bottomx9 {
    margin-bottom: 9rem;
}

.bottomx10 {
    margin-bottom: 10rem;
}

.bottomx11 {
    margin-bottom: 11rem;
}

.bottomx12 {
    margin-bottom: 12rem;
}

.bottomx15 {
    margin-bottom: 15rem;
}

.bottomx20 {
    margin-bottom: 20rem;
}

.mark_y {
    background: linear-gradient(transparent 70%, var(--yellow) 50%);
}

.mark_r {
    font-weight: bold;
    background: var(--red);
    color: #fff;
    padding: 1rem 2rem 1.8rem;
    display: inline-block;
    line-height: 1;
}

.mark_r2 {
    background: linear-gradient(transparent 95%, var(--red) 50%);
}

.arrow {
    display: inline-block;
    border-style: solid;
    border-width: 30px 25px 0 25px;
    border-color: var(--red) transparent transparent transparent;
    margin: 3rem auto;
}

.arrow2 {
    width: 1.4em;
    height: 1.4em;
    border: 4px solid;
    border-color: transparent transparent #c52022 #c52022;
    transform: rotate(-45deg);
    margin: 0rem auto 7rem;
    position: relative;
    animation: move-y 1s infinite alternate ease-in-out;
}

.notice {
    padding-top: 3rem;
    font-size: 2.4rem;
    color: #989898;
    letter-spacing: 1px;
    position: relative;
}

.notice li {
    position: relative;
    padding-left: 3rem;
    display: inline-block;
}

.notice li::before {
    content: "\203B";
    position: absolute;
    left: 0;
}

.serif {
    font-family: "Noto Serif JP", "serif";
    letter-spacing: -0.5px;
}

.indent {
    padding-left: 1em;
    text-indent: -1em;
}

/*--------prihead--------*/
#scheader {
    z-index: 100;
    position: sticky;
    top: 0;
    width: 100.1%;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    background: var(--mainTxtColor);
    color: #fff;
    padding: 2rem 0;
    line-height: 1;
}

#scheader .countdown {
    padding: 1rem 0;
    margin: 0 auto;
    line-height: 1.2;
    /* Retained specific line-height */
    font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic,
        "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
        "ＭＳ Ｐゴシック", sans-serif, monospace;
}

.timer_num {
    display: inline-block;
    padding: 0 0.4rem;
    margin: 0 0.4rem;
    border-radius: 3px;
    color: var(--black);
    font-size: 150%;
    background: #fff;
}

video {
    width: 100%;
    vertical-align: bottom;
}

iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/* mv_btn */
.mv_btn {
    text-align: center;
}

.mv_btn a {
    display: inline-block;
    background: #ddd;
    padding: 5px 20px;
    margin: 1rem auto 0;
    border-radius: 30px;
    font-size: 3.5rem;
    text-decoration: none;
    text-align: center;
    color: inherit;
}

/* Footer
------------------------- */
#footer {
    background: #f1f1f1;
    color: var(--black);
}

.footer_logo img {
    max-width: 300px;
}

.footer_txt {
    padding: 0 0 0 2rem;
    font-size: 2rem;
    line-height: 1.9;
}

.footer_txt ul {
    padding: 0;
}

#footer_wrap {
    width: 100%;
    text-align: center;
    padding: 4rem 0 2rem;
    margin: 0 auto;
    font-size: 80%;
    justify-content: center;
}

#footer_wrap li {
    display: inline-block;
    padding: 0 1rem 0;
    border-left: 1px solid #aaa;
}

#footer_wrap li:first-child {
    border: none;
    padding: 0 1em 0 0;
}

.list1 {
    margin: 0 auto 0;
    width: 100%;
    background: #faf9f9;
    padding: 3.5rem 2.7rem 4rem;
}

.list1 li {
    position: relative;
    padding: 0 0 3rem 7rem;
    line-height: 1.4;
    font-weight: 600;
    font-size: 4rem;
}

.list1 li:before,
.list1 li:after {
    content: "";
    position: absolute;
}

.list1 li:before {
    top: 0rem;
    left: .5rem;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 2rem;
    height: 3rem;
    border-right: 3px solid #a40000;
    border-bottom: 3px solid #a40000;
}

.list1 li:after {
    left: 0;
    top: 1rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid #2a2b2c;
    border-radius: 2px;
}

.list1 li:last-child {
    padding-bottom: 0;
}


.emphasized-title {
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    padding: 0 6rem;
    /* 画像分の余白 */
}

.emphasized-title::before,
.emphasized-title::after {
    content: "";
    position: absolute;
    top: 1rem;
    bottom: 0rem;
    width: 6rem;
    /* 画像の横幅に合わせて調整 */
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.emphasized-title::before {
    left: 0;
    background-image: url("../img/left-slash.png");
    /* ←＼の画像パスに置き換えてください */
}

.emphasized-title::after {
    right: 0;
    background-image: url("../img/right-slash.png");
    /* ←／の画像パスに置き換えてください */
}

.balloon {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem 1.2rem;
    font-weight: bold;
    text-align: center;
    border-bottom: 3px solid #2a2b2c;
    background: transparent;
    border-radius: 0;
    line-height: 1.5;
}

/* 吹き出しの「しっぽ」部分 */
.balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #2a2b2c;
}