@charset "UTF-8";
/* Reset By Normalize */
@import url(reset.css);

@font-face {
    font-family: Poppins Light;
    font-weight: 300;
    src: url(../../fonts/Poppins-Light.ttf) format("truetype");
}

@font-face {
    font-family: poppins;
    font-weight: 400;
    src: url(../../fonts/Poppins-Regular.ttf) format("truetype"), url(../../fonts/Poppins-Regular.otf) format("opentype");
}

@font-face {
    font-family: poppins Medium;
    font-weight: 500;
    src: url(../../fonts/Poppins-Medium.ttf) format("truetype");
}

@font-face {
    font-family: poppins Bold;
    font-weight: 700;
    src: url(../../fonts/Poppins-Bold.ttf) format("truetype");
}

:root {
    color-scheme: light;
    --color-bg: light-dark(#fff, #141414);
    --color-base: #FF8200;
    --color-base-light: #ffb332;
    --color-txt: #636363;
    --color-second: #281400;
    --color-title: #000;
    --color-form-placeholder: #D3D3D3;
    --font-size-base: 16px;
    --font-size-pc-base: 16px;
    --font-size-m-base: 16px;
    --font-size-title: 3.375rem;
    --font-size-subtitle: 2rem;
    --font-size-txt: 1.6875rem;
    --font-size-txtsm: 1.25rem;
    --font-size-content: 1.125rem;
    --font-size-button: 1.375rem;
    --font-size-prompt: 0.8rem;
    --font-size-label: 0.75rem;
    --font-size-title-m: 2rem;
    --font-size-subtitle-m: 1.25rem;
    --font-size-txt-m: 1.25rem;
    --font-size-txt-sm: 1.15rem;
    --font-size-content-m: 1rem;
    --font-size-content-s: 0.875rem;
    --font-family-title: Poppins Bold, Helvetica, Tahoma, "Noto Sans KR", "Noto Sans JP", sans-serif, "微軟正黑體", Heiti TC, "メイリオ";
    --font-family-subtitle: Poppins Medium, Helvetica, Tahoma, sans-serif, "微軟正黑體", Heiti TC, "メイリオ";
    --font-family-base: Poppins, Helvetica, Tahoma, sans-serif, "微軟正黑體", Heiti TC, "メイリオ";
    --font-family-content: poppins Light, Helvetica, Tahoma, sans-serif, "微軟正黑體", Heiti TC, "メイリオ";
    --lineHeight-title: 1em;
    --lineHeight-title-m: 1.15em;
    --lineHeight-subtitle: 1.25em;
    --lineHeight-txt: 1em;
    --lineHeight-content: 1.5em;
    --lineHeight-prompt: 1.5em;
    --font-weight-title: 700;
    --font-weight-subtitle: 500;
    --font-weight-base: 400;
    --font-weight-content: 300;
    --margin-header-pc: 90px;
    --margin-header-mobile: 48px;
    --margin-content-bottom: 40px;
}

/* ================= 頁面框架設定 ================= */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-moz-selection {
    background: var(--color-base);
    color: #fff;
}

*::selection {
    background: var(--color-base);
    color: #fff;
}

html,
body {
    background: none;
    line-height: 1.5em;
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-base);
    font-size: var(--font-size-m-base);
    -webkit-text-size-adjust: none;
    overflow-x: hidden;
}

@media only screen and (min-width: 768px) {

    html,
    body {
        font-size: var(--font-size-pc-base);
    }
}

html:is(.dark) *,
body:is(.dark) * {
    color-scheme: dark;
}

.wrapper {
    width: 100%;
}

.container {
    margin: 0 auto;
    position: relative;
}

h1 {
    display: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

/* ================= 活動主資訊 ================= */
/* ================= image設定 ================= */
.img-responsive {
    max-width: 100%;
}

.img-border {
    border: 3px solid #fff;
}

.img-radius {
    border-radius: 15px;
}

.img-block {
    display: block;
    margin: 0 auto;
}

/* ================= text設定 ================= */
.txt-center {
    text-align: center;
}

.txt-left {
    text-align: left;
}

.txt-right {
    text-align: right;
}

.txt-indent-3em {
    display: block;
    margin-left: 3em;
    text-indent: -3em;
}

.txt-indent-4em {
    display: block;
    margin-left: 4em;
    text-indent: -4em;
}

.txt-indent-5em {
    display: block;
    margin-left: 5em;
    text-indent: -5em;
}

/* ================= 文字設定 ================= */
.f-danger {
    color: rgb(255, 80, 80);
}

.f-fun {
    color: #f7f40a;
}

.f-primary {
    color: #007bff;
}

.f-success {
    color: #28a745;
}

.f-info {
    color: #17a2b8;
}

.f-beauty {
    color: #da199d;
}

.f-light {
    color: #fff;
}

.f-wraning {
    color: #ffc107;
}

.f-dark {
    color: #000;
}

.f-secondary {
    color: #868e96;
}

.f-base {
    color: var(--color-base);
}

.f-bold {
    font-weight: bold;
}

.f-lg {
    font-size: 1.2em;
}

.f-sm {
    font-size: 0.8em;
}