@charset "UTF-8";

/*==============================================================================================
●共通
==============================================================================================*/
a {
    transition: all 0.2s ease-in-out;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.05em;
    -webkit-overflow-scrolling: touch;
}

:root {
    --color-black-1: #222222;
    --color-black-2: #555555;

    --color-gray-1: #f8f8f8;
    --color-gray-2: #e6e6e6;
    --color-gray-3: #b3b3b3;
    --color-gray-4: #999999;
    --color-gray-5: #f1f1f1;

    --color-white-1: #ffffff;

    --color-red-1: #ff6c5f;
    --color-red-2: #ffefec;
    --color-red-3: #ff8989;

    --color-red-gradient: linear-gradient(to bottom, #ffaa98 0%, #ff988c 70%, #ff6c5f 100%);

    --color-yellow-1: #ffaf41;
    --color-yellow-2: #fff9e6;
    --color-yellow-3: #ffeeb6;

    --color-blue-1: #2760ff;
    --color-blue-2: #dcf3ff;

    --width-pc: 1200px;
    --width-tb: 90%;
    --width-sp: 90%;

    --margin-pc: calc((100% - var(--width-pc)) /2);
    --margin-sp: calc((100% - var(--width-sp)) /2);
    --default-gap: 20px;
}

body {
    color: var(--color-black-1);
    background: var(--color-white-1);
    width: 100%;
}

a:link,
a:visited {
    color: var(--color-black-1);
    text-decoration: none;
}

a:hover {
    color: var(--color-red-1);
}

.font_titles {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

/* ==== 共通スタイル ==== */

body {
    margin: 0;
}


/*/////////////////////////ヘッダー///////////////////////*/
.headers {
    width: 100%;
    background: var(--color-red-gradient);
}

.header-menu-wrap {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 0;
    box-shadow: 5px 0 7px rgba(10, 10, 10, 0.2);
}

.header-menu {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 20px;
    margin: 0 auto;
    align-items: center;
}

.headerlogo img {
    max-height: 45px;
    width: auto;
}

.site_description {
    text-align: left;
    font-size: 16px;
    letter-spacing: normal;
    color: var(--color-red-1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    line-height: 1.2;
    margin-top: 5px;
}

.site_description span {
    font-size: 1.5em;
    display: inline-block;
}

.header-menu ul {
    list-style: none;
    display: flex;
    font-size: 0.8rem;
    justify-self: end;
}

.header-menu ul li {
    position: relative;
    padding: 0 1rem;
}

.header-menu ul li a {
    display: flex;
    align-items: center;
}

.headerlogo:hover,
.header-menu ul li a:hover {
    opacity: 0.8;
}

.header-menu ul li a img {
    height: 0.8rem;
    margin-right: 0.5rem;
}

.header-menu ul li:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background-color: rgba(10, 10, 10, 0.1);
}

.header-menu ul li:last-child::after {
    content: none;
}


/* メインコンテンツ：押し出し対応 */
.main-content {
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.main-content.shifted {
    transform: translateX(-300px);
}

/* メニュー背景のオーバーレイ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 498;
    display: none;
}

.menu-overlay.show {
    display: block;
}

/* ハンバーガー */
.menu-container {
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 500;
}

.hamburger {
    width: 60px;
    height: 85px;
    padding: 32px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 501;
    transition: transform 0.3s ease-in-out;
}

.hamburger.hide {
    transform: translateX(100px);
    opacity: 0;
    pointer-events: none;
}

.hamburger:hover span {
    background-color: var(--color-black-1);
}

.hamburger span {
    display: block;
    height: 2px;
    background-color: var(--color-red-1);
    border-radius: 2px;
    box-shadow: 0 0 0px 1px rgba(255, 255, 255, 0.4);
}

/* メニュー本体 */
.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: auto;
    min-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-white-1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 30px;
    z-index: 499;
}

.menu.open {
    transform: translateX(0);
}

/* ✕ ボタン */
.close-btn {
    font-size: 40px;
    height: 1em;
    line-height: 1em;
    font-weight: bold;
    color: var(--color-black-1);
    text-align: right;
    cursor: pointer;
}

/* メニューリスト */
.menu a {
    text-decoration: none;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.menu ul li a {
    display: flex;
    align-items: center;
}

.menu ul li a img {
    min-width: 30px;
    height: 0.8rem;
    margin-right: 0.5rem;
}

.menu ul li {
    margin: 1em 0;
    text-align: center;
    font-size: 0.9rem;
}

.menu ul li a,
.spmenuFooter a {
    color: var(--color-black-1);
}

.close-btn:hover,
.menu a:hover {
    color: var(--color-red-1);
}

.spmenuLogo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.spmenuLogo img {
    max-width: 100px;
}

.spmenuFooter {
    display: flex;
    font-size: 0.7rem;
    margin: 30px 0;
    padding-top: 1rem;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border-top: 1px solid rgba(10, 10, 10, 0.1);
}

/*/////////////////////////フッター///////////////////////*/
footer {
    width: 100%;
    position: relative;
    border-top: 1px solid var(--color-black-2);
}

footer a:link,
footer a:visited {
    color: var(--color-black-2);
}

footer a:hover {
    color: var(--color-red-1);
}

.fmenus {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    gap: 50px;
}

.flogo {
    width: 100px;
}

.trlogo {
    width: 200px;
}

.trlogo a img {
    transition: all 0.2s ease-in-out;
}

.trlogo a:hover img {
    opacity: 0.8;
}

.flogo img,
.trlogo img {
    width: 100%;
    height: auto;
}

.fmenus-r-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.fmenus-r-wrap ul {
    display: flex;
    gap: 1.5em;
}

.fmenus-copyright {
    font-size: 0.6rem;
    text-align: right;
}


/*/////////////////////////共通レイアウト///////////////////////*/
h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.8em;
}

h4 {
    font-size: 1.5em;
}

h5 {
    font-size: 1.3em;
}

h6 {
    font-size: 0.7em;
}

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


/*/ページタグ設定/*/
.pagesBaceContent {}

.pagesBaceContent a:link,
.pagesBaceContent a:visited {
    text-decoration: underline;
}

.pagesBaceContent :is(h1, h2, h3, h4, h5, h6) {
    line-height: 1.4em;
}

.pagesBaceContent :is(p, ul, ol) {
    margin: 1em 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.pagesBaceContent :is(em, i) {
    font-style: italic;
}

.pagesBaceContent ul li,
.accordion-body-inner ol li {
    list-style: disc;
    margin: 0.8em 0;
    list-style-position: outside;
    margin-left: 20px;
}

.pagesBaceContent ol li,
.accordion-body-inner ol li {
    list-style: decimal;
    margin: 0.8em 0;
    list-style-position: outside;
    margin-left: 20px;
}

.pagesBaceContent hr {
    width: 100%;
    height: 1px;
    border-top: 1px solid var(--color-gray-2);
    margin: 60px 0;
}

.pagesBaceContent img {
    max-width: 100%;
    height: auto;
    margin: 3em auto;
    display: block;
}

.pagesBaceContent table {
    width: 100%;
    border-collapse: collapse;
}

.pagesBaceContent :is(th, td) {
    border: 1px solid var(--color-gray-3);
    padding: 8px;
    text-align: left;
}

.pagesBaceContent thead {
    background-color: var(--color-gray-1);
}

.supplementary {
    font-size: 10px;
}

/*/////////////サブメニュー/////////////*/
.submenu {
    position: fixed;
    background: #fff;
    border: 1px solid var(--color-black-2);
    padding: 1em;
    z-index: 9999;
    box-shadow: 0 0 5px rgb(0 0 0 / 5%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.submenu.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.submenu ul {
    display: flex;
    align-items: center;
    list-style: none;
}

.submenu ul li a:hover img {
    opacity: 0.5;
}



/*/////////////ボタン/////////////*/
.pagebottombutton-wrap {
    display: flex;
    justify-content: center;
    margin: 50px auto;
}

.button,
.button2 {
    padding: 20px 30px;
    font-size: 0.8rem;
    line-height: 0.8rem;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    font-weight: 500;
    box-sizing: border-box;
}

.button {
    background-color: var(--color-gray-1);
}

.button2 {
    min-width: 100px;
    background-color: var(--color-black-1);
    color: var(--color-white-1);
}

.button:link,
.button:visited {
    color: var(--color-black-1);
    text-decoration: none;
}

.button2:link,
.button2:visited {
    color: var(--color-white-1);
    text-decoration: none;
}

.button:hover,
.button2:hover {
    transition: all 0.2s ease-in-out;
    color: var(--color-red-1);
}

/*/////////////youtube/////////////*/
.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.youtube iframe {
    width: 100%;
    height: 100%;
}



/*/////////////////////////トップページ///////////////////////*/

.header-kv-wrap {
    width: 100%;
    height: calc(100% - 85px);
    background-image: url("../img/kv-bg.png");
    background-repeat: repeat;
    background-position: center center;
    background-size: 1000px auto;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.header-kv {
    margin: 0px auto;
    display: grid;
    grid-template-columns: 20% 1fr auto;
    gap: 20px;
}

[class^="header-kv"] :is(p, h1, h2, h3, h4, h5, h6) {
    margin-bottom: 1em;
}

.header-kv0,
.header-kv1 {
    background-color: var(--color-white-1);
    border-radius: 15px;
    padding: 20px;
    color: var(--color-red-1);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    font-weight: 500;
}

.header-kv1 img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 2rem;
}

.header-kv0 a:link,
.header-kv0 a:visited,
.header-kv1 a:link,
.header-kv1 a:visited {
    color: var(--color-yellow-1);
}

.header-kv2 {
    background-color: var(--color-red-1);
    border-radius: 15px;
    padding: 20px;
    color: var(--color-white-1);
    display: flex;
    flex-direction: column;
    font-weight: 500;
}

.header-kv2 a:link,
.header-kv2 a:visited {
    color: var(--color-yellow-3);
}

.header-kv0 a:hover,
.header-kv1 a:hover,
.header-kv2 a:hover {
    text-decoration: underline;
}

.header-kv2 p {
    font-size: 0.8rem;
}

.header-kv3 {
    display: flex;
    align-items: center;
}

.header-kv3 a {
    width: 100%;
    border: 3px solid var(--color-red-1);
    background-color: var(--color-white-1);
    border-radius: 9999px;
    padding: 20px;
    color: var(--color-red-1);
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
    box-shadow: 0 0 6px 3px rgba(50, 0, 0, 0.1);
}

.header-kv3 a:hover {
    border: 3px solid var(--color-white-1);
    background-color: var(--color-red-1);
    color: var(--color-white-1);
}


.device-wraper {
    margin: 0 auto;
}

.toplist {
    margin: 100px 0;
}

.contentTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contentTitle span {
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    font-weight: 400;
}

.contentTitle span.lottery {
    color: var(--color-red-1);
}

.contentTitle span.booth {
    color: var(--color-yellow-1);
}

.registIcon {
    width: 46px;
    height: 60px;
    background-color: var(--color-black-1);
    mask: url('../img/icon-registration.svg') no-repeat center / contain;
    -webkit-mask: url('../img/icon-registration.svg') no-repeat center / contain;
}

.lotteryIcon {
    width: 66px;
    height: 70px;
    background-color: var(--color-red-1);
    mask: url('../img/icon-lottery.svg') no-repeat center / contain;
    -webkit-mask: url('../img/icon-lottery.svg') no-repeat center / contain;
}

.boothIcon {
    width: 61px;
    height: 70px;
    background-color: var(--color-yellow-1);
    mask: url('../img/icon-booth.svg') no-repeat center / contain;
    -webkit-mask: url('../img/icon-booth.svg') no-repeat center / contain;
}

.memberIcon {
    width: 81px;
    height: 60px;
    background-color: var(--color-black-1);
    mask: url('../img/icon-member.svg') no-repeat center / contain;
    -webkit-mask: url('../img/icon-member.svg') no-repeat center / contain;
}

.questionsIcon {
    width: 60px;
    height: 60px;
    background-color: var(--color-black-1);
    mask: url('../img/icon-questions.svg') no-repeat center / contain;
    -webkit-mask: url('../img/icon-questions.svg') no-repeat center / contain;
}

.contactIcon {
    width: 81px;
    height: 60px;
    background-color: var(--color-black-1);
    mask: url('../img/icon-contact.svg') no-repeat center / contain;
    -webkit-mask: url('../img/icon-contact.svg') no-repeat center / contain;
}

.contentDescription {
    font-size: 0.8rem;
    color: var(--color-black-1);
}

.topListWrap {
    display: flex;
    flex-wrap: wrap;
    gap: var(--default-gap);
    margin: 100px 0 50px 0;
}

.ListWrap {
    border: 1px solid var(--color-black-2);
    background-color: var(--color-white-1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ListWrap:after {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    width: 20px;
    height: 20px;
    background-image: url(../img/corner_w.png);
    z-index: 2;
}

.ListWrap:has(.ColorLotteryBG)::after {
    background-image: url(../img/corner_r.png);
}

.ListWrap:has(.ColorBoothBG)::after {
    background-image: url(../img/corner_y.png);
}

.ListEvent,
.ListPeriod {
    padding: var(--default-gap);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ListEvent {
    flex: 1;
}

.ListEvent h6,
.ListEvent .ListDate,
.ListEvent h3 {
    line-height: 1.4em;
    transition: all 0.2s ease-in-out;
}

.ListDate {
    width: 95%;
    font-size: 0.8rem;
}

.ColorLotteryBG {
    background-color: var(--color-red-2);
}

.ColorBoothBG {
    background-color: var(--color-yellow-2);
}

.ColorLotteryBG h6 {
    color: var(--color-red-1);
}

.ColorBoothBG h6 {
    color: var(--color-yellow-1);
}

.ListPeriod {
    position: relative;
}

.ListPeriod:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(var(--default-gap) - 0px);
    width: 8px;
    height: 15px;
    background-color: var(--color-black-2);
    mask: url(../img/arrow.svg) no-repeat center / contain;
    -webkit-mask: url(../img/arrow.svg) no-repeat center / contain;
    transition: right 0.3s ease;
    z-index: 1;
}

.ListWrap:hover .ListPeriod:after {
    background-color: var(--color-red-1);
    right: calc(var(--default-gap) - 5px);
}

.ListWrap:hover .ListEvent h3 {
    color: var(--color-red-1);
}

.lotterySingleData,
.lotterySingleForm,
.lottery-hero {
    margin: 0 auto;
}

.lotterySingleData.ListWrap:hover .ListEvent h3,
.boothSingleData.ListWrap:hover .ListEvent h3 {
    color: inherit !important;
}

.ListWrap:hover {
    color: var(--color-black-1);
}

.centerLink {
    display: flex;
    justify-content: center;
}

.topSeparator {
    width: 100%;
    height: 100px;
    padding: 100px 0;
    margin-top: 100px;
    background: var(--color-red-gradient);
    position: relative;
    overflow: hidden;
}

.topSeparator:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/kv-bg.png");
    background-repeat: repeat;
    background-position: center center;
    background-size: 1000px auto;
    background-attachment: fixed;
}

.topNews {
    margin: 100px 0;
    border-top: 1px solid var(--color-black-2);
}

.topNewsWrap {
    margin: 50px auto;
}

.topNewsWrap ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--color-black-2);
    margin: 1em 0;
    padding: 0;
}

.topNewsWrap ul li {
    border-top: 1px solid var(--color-black-2);
    position: relative;
}

/* 矢印 */
.topNewsWrap ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(var(--default-gap) - 0px);
    width: 8px;
    height: 15px;
    background-color: var(--color-black-2);
    mask: url(../img/arrow.svg) no-repeat center / contain;
    -webkit-mask: url(../img/arrow.svg) no-repeat center / contain;
    transition: right 0.3s ease, background-color 0.3s ease;
    z-index: 1;
}

.topNewsWrap ul li:hover::after {
    background-color: var(--color-red-1);
    right: calc(var(--default-gap) - 5px);
}

.topNewsWrap ul li a {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 1.5em calc(var(--default-gap) + 20px) 1.5em 0;
    text-decoration: none;
}

.topNewsWrap ul li a span {
    color: var(--color-black-2);
    white-space: nowrap;
}




/*/////////////////////////ページ///////////////////////*/

.pageWrap {
    margin: 100px 0;
}

.pageTitles {
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: 0.05em;
}

.pageContentWrap,
.pageBase {
    margin: 100px 0;
}

.pageContentWrap {
    border-bottom: 1px solid var(--color-black-2);
}

.pageContentWrap h4 {
    margin-bottom: 5px;
    border-bottom: 1px solid var(--color-black-2);
}

.pageContent {
    margin: 50px 0;
}

.pageTitles img {
    height: 60px;
    width: auto;
    margin-bottom: 0.5em;
}

.pageTitles h5 {
    height: 50px;
}

.registForm {
    border: 1px solid var(--color-black-2);
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto 50px auto;
}

.registForm:last-child {
    margin-bottom: 0;
}

.registForm ul {
    margin-bottom: 2em;
}

.registForm ul li {
    list-style: decimal;
    list-style-position: inside;
}

.registar_card_notice {
    margin: 30px auto;
    text-align: center;
    max-width: 400px;
}

.registar_card_notice img {
    width: 100%;
    height: auto;
}

.privacy-content ul li {
    list-style: disc;
    list-style-position: outside;
}




/*番号抽選*/

.lotterySingleWrap,
.boothSingleWrap {
    display: flex;
    gap: 50px;
}

.boothSingleWrap {
    flex-direction: column;
}

.lotterySingleDetail {
    padding: var(--default-gap);
    font-size: 0.8em;
}

.table-data-style,
.table-data-style2 {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.table-data-style th,
.table-data-style td {
    border: 1px solid var(--color-gray-2);
    padding: 10px;
}

.table-data-style th {
    background: var(--color-gray-1);
    white-space: nowrap;
    font-weight: 500;
    font-size: 0.9em;
}

.table-data-style2 tr {
    border-bottom: 1px solid var(--color-black-1);
}

.table-data-style2 tr:last-child {
    border-bottom: none;
}

.table-data-style2 th {
    text-align: left;
    white-space: nowrap;
    padding: 1em 1em 1em 0;
    vertical-align: top;
    width: 1px;
    font-weight: 500;
}

.table-data-style2 td {
    text-align: left;
    padding: 1em;
    vertical-align: top;
}


.lotterySingleDetailLeft {
    padding-top: var(--default-gap);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.2em;
    margin: 1em 0;
}

.lotterySingleDetailLeft span:first-child {
    font-size: 2rem;
    color: var(--color-red-1);
    margin-bottom: 0.3rem;
}

.lotterySingleDetailLeft span:last-child {
    font-size: 0.6rem;
    font-weight: 400;
}

.lotterySingleUser {
    padding: var(--default-gap);
    font-size: 0.8em;
    border-top: 1px solid var(--color-black-2);
}

.lottery-hero {
    margin-bottom: 50px;
    padding: var(--default-gap);
    border: 1px solid var(--color-black-2);
}

.lottery-hero h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: wrap;
    line-height: 1.6em;
    margin: 1em 0 2em;
}

.lottery-hero h5 span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.2em;
    background-color: var(--color-red-1);
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    aspect-ratio: 1 / 1;
    min-height: 2.5rem;
}


.lottery-hero h6 {
    font-size: 1rem;
    color: var(--color-red-1);
    margin-bottom: 1em;
}

.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--color-blue-2);
    color: var(--color-blue-1);
    font-size: 12px;
    border: 1px solid var(--color-blue-1);
}

.lotterypending {
    color: var(--color-red-1);
}

.lotterySingleUserDetail {
    padding: var(--default-gap);
    border: 1px solid var(--color-black-2);
    border-radius: 15px;
}

.lotterySingleForm {
    padding: var(--default-gap);
    background-color: var(--color-red-2);
    border: 1px solid var(--color-red-3);
}

.lotterySingleForm h3 {
    color: var(--color-red-1);
    text-align: center;
    margin-bottom: 50px;
}

.lotterySingleForm form {
    margin-top: 50px;
}

#form.lotterySingleForm input[type=submit] {
    color: var(--color-white-1);
    background: var(--color-red-1);
    border: 2px solid var(--color-red-1);
}

#form.lotterySingleForm input[type=submit]:hover {
    background-color: var(--color-white-1);
    color: var(--color-red-1);
    border: 2px solid var(--color-red-1);
}


/*ブース選択*/

.BoothSingleDetailWrap {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: var(--default-gap);
}

.BoothSingleDetail {
    font-size: 0.8em;
}

.boothSingleSelect {
    border: 1px solid var(--color-black-2);
    background-color: var(--color-yellow-2);
}

.boothSingleSelect1 {
    padding: var(--default-gap);
    display: flex;
    flex-direction: column;
    gap: var(--default-gap);
    border-top: 1px solid var(--color-black-2);
}

.boothSingleSelect1:first-child {
    border-top: none;
}

.boothSingleSelect1>* {
    margin-left: auto;
    margin-right: auto;
}

.boothSingleSelect1>*:not(h4) {
    width: 100%;
}

.boothSingleSelect h4 {
    margin: 50px auto;
}

h4.booth-step::before {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.6em;
    height: 1.6em;
    background: var(--color-black-1);
    color: var(--color-white-1);
    border-radius: 50%;
    font-size: 0.9em;
    font-weight: 700;
    margin-right: 0.5em;
}

h4.step1::before {
    content: "1";
}

h4.step2::before {
    content: "2";
}

h4.step3::before {
    content: "3";
}

h4.step4::before {
    content: "4";
}

.boothStep1Form form {
    display: flex;
    gap: var(--default-gap);
    align-items: center;
    margin: 0 auto;
}

.boothStep1Form form label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.boothStep1Form form label span {
    white-space: nowrap;
}

.boothStep1Form form label input {
    flex: 1;
    min-width: 0;
}

.boothConfirmed {
    width: 100%;
    border: 1px solid var(--color-black-2);
    background-color: var(--color-white-1);
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
}

.boothConfirmed span {
    color: var(--color-yellow-1);
    font-size: 1.2em;
    margin: 0 0.5em;
}

.boothTxt {
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 0.8rem;
}

.boothNext {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.boothNext::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 15px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    mask: url('../img/arrow.svg') no-repeat center;
    mask-size: contain;
    background: var(--color-black-1);
}

.boothTime {
    border: 1px solid var(--color-black-2);
    background-color: var(--color-white-1);
    display: flex;
    flex-direction: column;
}

.boothTime1 {
    background-color: var(--color-yellow-1);
    padding: var(--default-gap);
    font-weight: 500;
}

.boothTime1 span {
    font-size: 10px;
    margin-left: 1em;
}

.boothTime2 {
    padding: var(--default-gap);
    display: flex;
    flex-direction: column;
    font-size: 0.8em;
}

.boothTime3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: var(--default-gap) auto;
    font-size: 0.8em;
}

.txtylw {
    color: var(--color-yellow-1);
    font-size: 1.5em;
    margin-bottom: 1em;
}

.boothSelect {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boothSelectDescription {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boothSelectStatus {
    display: flex;
    gap: 10px;
    margin: var(--default-gap) auto;
}

.boothSelectStatus span {
    border: 1px solid var(--color-black-2);
    padding: 10px;
    border-radius: 3px;
}

.available {
    background: var(--color-white-1);
}

.pending {
    background-color: var(--color-yellow-1);
}

.unavailable {
    background-color: var(--color-gray-4);
    color: var(--color-white-1);
}

.boothSelectDescription a {
    text-decoration: underline;
}

#booth-grid {
    display: grid;
    gap: 10px;
    margin: 100px auto;
}

.boothCell {
    user-select: none;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--color-black-2);
    border-radius: 3px;
    cursor: pointer;
}

#boothMap {
    border: 1px solid var(--color-black-2);
    padding: var(--default-gap);
    background-color: var(--color-white-1);
    display: flex;
    flex-direction: column;
    gap: var(--default-gap);
    align-items: center;
}

#boothMap:hover {
    border: 1px solid var(--color-red-1);
}

#boothMap img {
    max-width: 800px;
    width: 100%;
    height: auto;
}

.boothSingleForm {
    border-top: 1px solid var(--color-black-2);
    background-color: var(--color-yellow-1);
}

.boothSingleFormWrap {
    padding: var(--default-gap);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boothForm {
    margin: var(--default-gap) 0;
    max-width: 300px;
}

.boothForm label {
    font-weight: 500;
}

/*会員情報*/
.memberDetail {
    border: 1px solid var(--color-black-2);
    padding: var(--default-gap);
    border-radius: 15px;
    margin: var(--default-gap) auto;
}

.memberDetailTitle {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.memberDetailTitle2 {
    display: flex;
    gap: 10px;
    font-size: 1.2em;
    align-items: center;
}

.memberDetailTitle2 .memberIcon {
    width: 38px !important;
    height: 28px !important;
}

.memberDetailData {
    margin: var(--default-gap) 0;
    font-size: 0.9em;
    border-top: 1px solid var(--color-black-2);
}

.memberDetailData-list,
.memberDetailData-list2,
.memberDetailData-list3 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}

.memberDetailData-list form>div {
    margin-bottom: 0px;
}

.info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 1em;
    padding: var(--default-gap) 0;
    border-bottom: 1px solid var(--color-black-2);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row-form {
    grid-template-columns: 180px auto 250px 250px;
}

.info-th {
    font-weight: bold;
    white-space: nowrap;
}

.info-td {
    display: flex;
    flex-direction: column;
    font-weight: 500;
}

/* 上下センタリング */
.info-row,
.info-td {
    vertical-align: middle;
}

.memberDetailData-list-description {
    font-size: 0.6rem !important;
    color: var(--color-gray-4);
}

.memberSuccess {
    border: 1px solid var(--color-blue-1);
    background-color: var(--color-blue-2);
    color: var(--color-blue-1);
    padding: 10px;
    border-radius: 5px;
    grid-column: 1 / -1;
}

.memberAlart {
    border: 1px solid var(--color-yellow-1);
    background-color: var(--color-yellow-2);
    color: var(--color-yellow-1);
    padding: 10px;
    border-radius: 5px;
    grid-column: 1 / -1;
}

.info-row>.info-td:nth-child(2) {
    font-size: 1.4em;
    font-weight: 500;
}

.memberAssignedNum {
    background-color: var(--color-red-1);
    font-size: 0.9em;
}

.memberBoothNum {
    background-color: var(--color-yellow-1);
    font-size: 0.9em;
}

.memberAssignedNum h5,
.memberBoothNum h5 {
    font-size: 1.1rem;
}

.memberNumHistoryWrap {
    background: var(--color-gray-5);
}

.memberNumHistory {
    padding: 20px 0;
}

.memberNumHistory h5 {
    font-size: 1em;
}

.trsys-logout {
    margin: 100px auto;
    max-width: 200px;
}

.memberDetailData-list2,
.memberDetailData-list3 {
    border-top: 1px solid var(--color-black-2);
    border-bottom: 1px solid var(--color-black-2);
    margin-top: var(--default-gap);
}

.memberDetailData-list2 .info-row,
.memberDetailData-list3 .info-row {
    background-color: var(--color-white-1);
}

.memberDetailData-list2 .info-row:first-of-type {
    background-color: var(--color-red-2);
}

.memberDetailData-list3 .info-row:first-of-type {
    background-color: var(--color-yellow-2);
}

.memberDetailData-list2 .info-row>.info-td:nth-child(2),
.memberDetailData-list3 .info-row>.info-td:nth-child(2) {
    font-size: 1em;
    font-weight: normal;
}

.AssignedNum {
    display: none;
}

.memberDetailData-list2 .info-row .info-td:last-of-type,
.memberDetailData-list3 .info-row .info-td:last-of-type {
    font-weight: 600;
}

.memberDetailData-list2 .info-row:nth-child(odd):not(:first-child),
.memberDetailData-list3 .info-row:nth-child(odd):not(:first-child) {
    background: var(--color-gray-1);
}

.memberLotteryNums {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
}

.memberLotteryNums-main {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-red-1);
}

.memberLotteryNums-sub {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.memberLotteryNums-cross {
    display: inline-block;
    padding: 0 4px;
    color: var(--color-gray-3);
    text-decoration: line-through;
}

.trsys-logout {
    margin: 100px auto;
    max-width: 200px;
}







/*よくある質問*/

.faq {
    margin: 100px auto;
}

.faq a:link,
.faq a:visited {
    color: var(--color-red-1);
}

.faq a:hover {
    color: var(--color-black-1);
}

.faq-wrap {
    border-top: 1px solid var(--color-black-1);
}

.questionsContent :is(h6, p, ul, ol) {
    margin: 1em 0;
}

.questionsContent p:first-of-type {
    margin-top: 0 !important;
}

.accordion {
    width: 100%;
    border-bottom: 1px solid var(--color-black-1);
    overflow: hidden;
    margin: 10px 0;
    position: relative;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px;
    font-weight: 600;
    background: #fff;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}

.accordion-header>div {
    width: calc(100% - 50px);
}

.accordion-header div::before {
    content: 'Q';
    color: var(--color-black-1);
    margin-right: 1em;
    font-size: 1.2em;
}

.accordion-icon {
    position: absolute;
    min-width: 20px;
    height: 20px;
    aspect-ratio: 1;
    color: var(--color-gray-4);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.accordion-icon::after {
    content: '';
    width: 20px;
    height: 20px;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='black' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='black' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
    background-color: var(--color-gray-4);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.accordion-header.active .accordion-icon {
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center center;
}

/* アニメーションに必要な構造変更 */
.accordion-body {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
    padding: 0 15px;
    line-height: 1.6;
}

.accordion-body-inner {
    padding: 15px 0;
    display: flex;
}

.accordion-body-inner>div {
    font-size: 0.9em;
}

.accordion-body-inner::before {
    content: 'A';
    color: var(--color-red-1);
    margin-right: 1em;
    font-size: 1.2em;
    line-height: 1.2em;
    font-weight: 600;
}

.otherPagesWrap {
    margin: 50px 0;
}






/*/////////////////////////お問い合わせ///////////////////////*/
.form-contents {
    max-width: 800px;
    margin: 100px auto;
    border: 1px solid var(--color-black-2);
    border-radius: 15px;
    padding: 50px;
}

#form {
    font-size: 0.9em;
    letter-spacing: 0.1em;
}

form>div {
    margin-bottom: 30px;
}

form>div:last-child {
    margin-bottom: 0px;
}

::placeholder,
#form select {
    color: var(--color-gray-3);
}

#form a:link,
#form a:visited {
    text-decoration: underline;
}

#form h5 {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: 500;
}

#form h5 span {
    line-height: 1em;
}

#form h5 span::before {
    content: "必須";
    color: var(--color-white-1);
    background-color: var(--color-red-1);
    font-size: 10px;
    font-weight: 400;
    padding: 2px 5px;
    border-radius: 5px;
    display: inline-block;
    min-width: 2.5em;
    text-align: center;
}

#form .read-policy {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

#form p {
    margin: 10px 0px;
}

#form input[type=text],
#form input[type=email],
#form input[type=tel],
#form input[type=password],
#form select {
    width: 100%;
}

#form input[type=text],
#form input[type=email],
#form input[type=tel],
#form input[type=password],
#form select,
#form textarea {
    border: 1px solid var(--color-gray-2);
    background-color: var(--color-white-1);
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
}

/*上下間隔*/
.wpcf7-form-control-wrap {
    display: block;
}

/*ラジオボタン＆チェックボックス*/
#form.registForm input[type=radio],
#form.registForm input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

#form .wpcf7-list-item {
    display: block;
}

/* チェック前のボタン */

#form input[type="radio"]+.wpcf7-list-item-label,
#form input[type="checkbox"]+.wpcf7-list-item-label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 10px 0;
}

#form input[type="radio"]+.wpcf7-list-item-label::before,
#form input[type="checkbox"]+.wpcf7-list-item-label::before {
    display: inline-block;
    background-color: var(--color-white-1);
    border: 1px solid var(--color-gray-2);
    content: "";
    min-width: 20px;
    height: auto;
    aspect-ratio: 1;
    margin-bottom: auto;
    margin-right: .5em;
    margin-top: auto;
    transition: background-color .5s;
}

#form input[type="checkbox"]+.wpcf7-list-item-label::before {
    border-radius: 15%;
}

#form input[type="radio"]+.wpcf7-list-item-label::before {
    border-radius: 9999px;
}

/* チェック後のボタン */
#form input[type="radio"]:checked+.wpcf7-list-item-label::before,
#form input[type="checkbox"]:checked+.wpcf7-list-item-label::before {
    background-color: var(--color-red-1);
    box-shadow: inset 0 0 0 3px #fff;
}


/*送信ボタン*/
#form input[type=submit],
#form input[type=button],
#form button[type=submit],
#form button[type=button] {
    height: 50px;
    line-height: 1em;
    cursor: pointer;
    margin: 0 auto;
    border-radius: 9999px;
    width: 100%;
    text-align: center;
    padding: 0 1em;
    color: var(--color-white-1);
    background: var(--color-black-1);
    border: 2px solid var(--color-black-1);
    box-sizing: border-box;
}

#form input[type=submit]:hover,
#form input[type=button]:hover,
#form button[type=submit]:hover,
#form button[type=button]:hover {
    background-color: var(--color-white-1);
    color: var(--color-black-1);
    border: 2px solid var(--color-black-1);
}

.formCount {
    margin: 0 !important;
    padding: 0 !important;
    color: var(--color-gray-3);
    font-size: 10px;
}

.privacy-box {
    background-color: var(--color-gray-1);
    padding: 20px 10px 20px 20px;
    border-radius: 15px;
    width: 100%;
    margin: 0 auto;
}

.privacy-content {
    max-height: 200px;
    overflow-y: auto;
    line-height: 1.6;
    font-size: 0.8rem;
    padding-right: 5px;
}

.privacy-content::-webkit-scrollbar {
    width: 8px;
}

.privacy-content::-webkit-scrollbar-thumb {
    background-color: var(--color-gray-3);
    border-radius: 4px;
}

.formCenter {
    display: flex;
    justify-content: center;
}

#form input[type=button].prev {
    color: var(--color-black-1);
    background-color: var(--color-gray-2);
}

#form input[type=button].prev:hover {
    color: var(--color-black-1);
    background: var(--color-red-2);
}

.confirm-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/*/////////////////////////CF7フォーム///////////////////////*/
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
    min-height: 3em;
    padding: 10px;
}

.wpcf7 input:focus::placeholder,
.wpcf7 textarea:focus::placeholder {
    color: rgba(0, 0, 0, 0)
}

.wpcf7 input:focus::-webkit-input-placeholder,
.wpcf7 textarea:focus::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0)
}

.wpcf7 input[type="checkbox"] {
    width: 25px;
    height: 25px;
}

/* アラート */
.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid var(--color-black-1);
    color: var(--color-black-1);
    border-radius: 10px;
}

.wpcf7 form.init .wpcf7-response-output {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--color-black) !important;
    color: var(--color-black-1);
    background-color: var(--color-black);
    border-radius: 10px;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: var(--color-red-1);
    color: var(--color-red-1);
    border-radius: 10px;
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: var(--color-black);
    color: var(--color-black);
    border-radius: 10px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: var(--color-red-1) !important;
    color: var(--color-red-1);
    border-radius: 10px;
}

.wpcf7-not-valid-tip {
    font-size: small;
}

.screen-reader-response {
    display: none;
}


/*/////////////////////////ページネーション///////////////////////*/
.pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
    font-family: "halcom-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 300;
}

.pagination a:link,
.pagination a:visited {
    color: var(--color-gray-3);
}

.pagination span,
.pagination a {
    text-decoration: none;
    line-height: 1em;
    display: flex;
    align-items: center;
}

.pagination .paginationNum {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5em;
}

/* ページ番号 */
.pagination .pager {}

/* ホバー時 & 現在のページ */
.pagination a:hover {
    opacity: .7;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.pagination .current {
    text-shadow: none;
    color: var(--color-black-1);
    font-variation-settings: "ital" 0, "wght" 500;
    font-size: 1.2em;
}

/* 前へ */
.pagination a.prev::after,
.pagination a.next::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12.22 21.6'%3E%3Cpolyline fill='none' stroke='%231a1a1a' stroke-width='2' stroke-miterlimit='10' points='0.71 20.9 10.8 10.8 0.71 0.71'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.pagination a.prev {}

.pagination a.prev::after {
    transform: scaleX(-1);
}

/* 次へ */
.pagination a.next {}

/* 最初へ */
.pagination a.first {}

/* 最後へ */
.pagination a.last {}

/* Page x / y */
.pagination span.page_num {
    display: none;
}




/*==============================================================================================
●PCサイズ
==============================================================================================*/

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

    .sp,
    .tb,
    .tableTb {
        display: none !important;
    }

    .pc {
        display: block !important;
    }

    /*/////////////////////////ヘッダー///////////////////////*/
    .menu-container {
        display: none;
    }

    .header-menu {
        width: var(--width-pc);
    }

    /*/////////////////////////フッター///////////////////////*/



    /*/////////////////////////共通レイアウト///////////////////////*/

    .container,
    .device-wraper {
        width: var(--width-pc);
    }

    /*/////////////サブメニュー/////////////*/
    .submenu {
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        border-right: none;
    }

    .submenu ul {
        flex-direction: column;
        gap: 10px;
    }

    .submenu ul span {
        display: none;
    }

    .submenu ul li img {
        width: 20px;
        height: auto;
    }

    .submenu ul li a {
        position: relative;
    }

    /* ツールチップの基本 */
    .submenu ul li a::after {
        content: attr(data-desc);
        position: absolute;
        right: 150%;
        top: 70%;
        transform: translateY(-50%);
        background: #fff;
        border: 1px solid var(--color-black-2);
        padding: 5px 8px;
        white-space: nowrap;
        font-size: 10px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        border-radius: 4px;
        box-shadow: 0 0px 5px rgb(0 0 0 / 5%);
        z-index: 99999;
    }

    /* hover で表示 */
    .submenu ul li a:hover::after {
        opacity: 1;
        transform: translateY(-50%) translateX(4px);
    }


    /*/////////////////////////トップページ///////////////////////*/
    .header-kv-wrap {
        padding: 100px 0;
    }

    .header-kv {
        width: var(--width-pc);
    }

    .topListWrap>a {
        width: calc((100% - var(--default-gap)) / 2);
    }

    .topNewsWrap ul li a span {
        flex: 0 0 8em;
        margin-right: 1em;
    }

    /*/////////////////////////ページ///////////////////////*/

    .registForm {
        padding: 50px;
    }

    .lotterySingleData,
    .lotterySingleForm {
        width: 50%;
    }

    .lotterySingleDetail ul li span {
        flex: 0 0 8em;
    }

    .lotterySingleUserDetail ul li span {
        flex: 0 0 12em;
    }

    .table-data-style2 tr:first-child th {
        padding: 0 1em 1em 0;
    }

    .table-data-style2 tr:first-child td {
        padding: 0 1em 1em 1em;
    }

    .table-data-style2 tr:last-child th {
        padding: 1em 1em 0 0;
    }

    .table-data-style2 tr:last-child td {
        padding: 1em 1em 0 1em;
    }

    .BoothSingleDetailWrap>div {
        width: 50%;
    }

    .boothStep1Form form {
        width: 50%;
    }

    #booth-grid {
        grid-template-columns: repeat(10, minmax(48px, 1fr));
    }

    .memberDetailData-list2 .info-th:first-child,
    .memberDetailData-list2 .info-td:first-child,
    .memberDetailData-list3 .info-th:first-child,
    .memberDetailData-list3 .info-td:first-child {
        margin-left: 1em;
    }

    .memberDetailData-list2 .info-row,
    .memberDetailData-list3 .info-row {
        grid-template-columns: 1fr 300px;
    }

    .memberDetailData-list2 .info-row>div,
    .memberDetailData-list3 .info-row>div {
        border-right: 1px solid var(--color-black-2);
        padding-right: 8px;
    }

    .memberDetailData-list2 .info-row>div:last-child,
    .memberDetailData-list3 .info-row>div:last-child {
        border-right: none;
    }

    /*/////////////////////////お問い合わせ///////////////////////*/





}


/*==============================================================================================
●タブレットサイズ
==============================================================================================*/

@media screen and (min-width: 450px) and (max-width: 1279px) {

    .sp,
    .pc,
    .pcreserve,
    .tablePc {
        display: none !important;
    }

    .tb {
        display: block !important;
    }

    /*/////////////////////////ヘッダー///////////////////////*/
    .header-menu {
        width: var(--width-tb);
    }

    .header-menu ul li {
        display: none;
    }

    /*/////////////////////////スマホメニュー///////////////////////*/


    /*/////////////////////////フッター///////////////////////*/
    footer {
        padding-bottom: 88px;
    }

    .fmenus,
    .fmenus-r-wrap,
    .fmenus-r-wrap ul {
        flex-direction: column;
        align-items: center;
    }

    .fmenus-r-wrap ul {
        gap: 1em;
    }

    /*/////////////////////////共通レイアウト///////////////////////*/
    .container,
    .device-wraper {
        width: var(--width-tb);
    }

    /*/////////////サブメニュー/////////////*/
    .submenu {
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: auto;
        border-right: none;
        border-left: none;
        border-bottom: none;
    }

    .submenu ul {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .submenu ul li a {
        display: flex;
        flex-direction: column;
        gap: 3px;
        align-items: center;
        height: 55px;
    }

    .submenu ul li a img {
        margin-top: auto;
        margin-bottom: auto;
        display: block;
    }

    .submenu ul span {
        display: block;
        font-size: 8px;
        margin-top: auto;
    }

    .submenu ul li img {
        width: auto;
        height: 25px;
    }

    /*/////////////////////////トップページ///////////////////////*/
    .header-kv-wrap {
        padding: 50px 0;
    }

    .header-kv {
        width: var(--width-tb);
        grid-template-columns: 1fr;
        align-items: center;
        max-width: 800px;
    }

    .topListWrap>a {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .topNewsWrap {
        width: 100%;
        max-width: 800px;
    }

    .topNewsWrap ul li a span {
        flex: 0 0 8em;
        margin-right: 1em;
    }


    /*/////////////////////////ページ///////////////////////*/
    .registForm {
        padding: 30px;
    }

    .lotterySingleWrap {
        flex-direction: column;
    }

    .lotterySingleData,
    .lotterySingleForm,
    .lottery-hero,
    .boothSingleWrap,
    .memberDetail,
    .faq {
        width: 100%;
        max-width: 800px;
    }

    .boothSingleWrap {
        margin: 0 auto;
    }

    .lotterySingleDetail ul li span {
        flex: 0 0 8em;
    }

    .lotterySingleUserDetail ul li span {
        flex: 0 0 12em;
    }

    .table-data-style2 tr:first-child th {
        padding: 0 1em 1em 0;
    }

    .table-data-style2 tr:first-child td {
        padding: 0 1em 1em 1em;
    }

    .table-data-style2 tr:last-child th {
        padding: 1em 1em 0 0;
    }

    .table-data-style2 tr:last-child td {
        padding: 1em 1em 0 1em;
    }

    .BoothSingleDetailWrap {
        flex-direction: column;
    }

    .BoothSingleDetailWrap>div:last-child {
        margin-bottom: var(--default-gap);
    }

    .boothStep1Form form {
        flex-direction: column;
    }

    #booth-grid {
        grid-template-columns: repeat(5, minmax(48px, 1fr));
    }

    .info-row,
    .info-row-form,
    .memberDetailData-list2 .info-row,
    .memberDetailData-list3 .info-row {
        grid-template-columns: 1fr;
    }

    .memberDetailData-list2 .info-row,
    .memberDetailData-list3 .info-row {
        gap: 0.5em;
    }

    .memberDetailData-list2 .info-th,
    .memberDetailData-list2 .info-td,
    .memberDetailData-list3 .info-th,
    .memberDetailData-list3 .info-td {
        margin: 0 1em;
    }

    .info-th {
        margin-bottom: 4px;
    }

    .memberDetailData-list2 .info-th,
    .memberDetailData-list3 .info-th {
        display: none;
    }

    .memberDetailData-list2 .info-th:nth-child(2),
    .memberDetailData-list3 .info-th:nth-child(2) {
        display: block;
    }

    .AssignedNum {
        display: inline;
        margin-right: 0.5em;
    }

    .memberDetailData-list2 .info-td,
    .memberDetailData-list3 .info-td {
        flex-direction: row;
        justify-content: flex-start;
    }





    /*/////////////////////////お問い合わせ///////////////////////*/






}


/*==============================================================================================
●スマホサイズ
==============================================================================================*/

@media screen and (max-width: 449px) {
    img {
        max-width: 100%;
        height: auto;
    }

    .sp,
    .tb {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    /*/////////////////////////ヘッダー///////////////////////*/
    .header-menu {
        width: var(--width-sp);
    }

    .header-menu ul li {
        display: none;
    }



    /*/////////////////////////メニュー///////////////////////*/





    /*/////////////////////////フッター///////////////////////*/
    footer {
        padding-bottom: 88px;
    }

    .fmenus,
    .fmenus-r-wrap,
    .fmenus-r-wrap ul {
        flex-direction: column;
        align-items: center;
    }

    .fmenus-r-wrap ul {
        gap: 1em;
    }

    /*/////////////////////////共通レイアウト///////////////////////*/
    .button,
    .button2 {
        width: 100%;
    }

    .container,
    .device-wraper {
        width: var(--width-sp);
    }

    .pagination {
        font-size: 1.2rem;
    }

    /*/////////////サブメニュー/////////////*/
    .submenu {
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: auto;
        border-right: none;
        border-left: none;
        border-bottom: none;
    }

    .submenu ul {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .submenu ul li a {
        display: flex;
        flex-direction: column;
        gap: 3px;
        align-items: center;
        height: 55px;
    }

    .submenu ul li a img {
        margin-top: auto;
        margin-bottom: auto;
        display: block;
    }

    .submenu ul span {
        display: block;
        font-size: 8px;
        margin-top: auto;
    }

    .submenu ul li img {
        width: auto;
        height: 25px;
    }

    /*/////////////////////////トップページ///////////////////////*/
    .header-kv-wrap {
        padding: var(--default-gap) 0;
    }

    .header-kv {
        width: var(--width-sp);
        grid-template-columns: 1fr;
    }

    .header-kv3 a {
        margin: 30px 0;
    }

    .topListWrap>a {
        width: 100%;
        margin: 0 auto;
    }

    .topNewsWrap {
        width: 100%;
    }

    .topNewsWrap ul li a {
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .topNewsWrap ul li a span {
        white-space: nowrap;
    }

    /*/////////////////////////ページ///////////////////////*/
    .registForm {
        padding: 30px;
    }

    .lotterySingleWrap {
        flex-direction: column;
    }

    .lotterySingleData,
    .lotterySingleForm,
    .lottery-hero {
        width: 100%;
        margin: var(--default-gap) auto;
    }

    .lotterySingleDetail ul li,
    .lotterySingleUserDetail ul li {
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .lotterySingleDetail ul li span,
    .lotterySingleUserDetail ul li span {
        white-space: nowrap;
    }

    .table-data-style,
    .table-data-style tbody,
    .table-data-style tr,
    .table-data-style th,
    .table-data-style td,
    .table-data-style2,
    .table-data-style2 tbody,
    .table-data-style2 tr,
    .table-data-style2 th,
    .table-data-style2 td {
        display: block;
        width: 100%;
    }

    .table-data-style tr {
        margin-bottom: 12px;
        border: 1px solid #ddd;
        padding: 10px;
        background: #fff;
        border-radius: 6px;
    }

    .table-data-style2 tr {
        padding: 10px 0;
    }

    .table-data-style2 tr:first-child {
        padding: 0 0 10px 0;
    }

    .table-data-style2 tr:last-child {
        padding: 10px 0 0 0;
    }

    .table-data-style th,
    .table-data-style2 th {
        background: none;
        border: none;
        padding: 0;
        margin-bottom: 4px;
        color: var(--color-black-1);
    }

    .table-data-style td,
    .table-data-style2 td {
        border: none;
        padding: 0;
    }

    .table-data-style tr+tr {
        margin-top: 1em;
    }

    .BoothSingleDetailWrap {
        flex-direction: column;
        align-items: normal;
    }

    .BoothSingleDetailWrap>div:last-child {
        margin-bottom: var(--default-gap);
    }

    .boothStep1Form form {
        flex-direction: column;
    }

    #booth-grid {
        grid-template-columns: repeat(4, minmax(48px, 1fr));
    }

    .info-row,
    .info-row-form,
    .memberDetailData-list2 .info-row,
    .memberDetailData-list3 .info-row {
        grid-template-columns: 1fr;
    }

    .memberDetailData-list2 .info-row,
    .memberDetailData-list3 .info-row {
        gap: 0.5em;
    }

    .memberDetailData-list2 .info-th,
    .memberDetailData-list2 .info-td,
    .memberDetailData-list3 .info-th,
    .memberDetailData-list3 .info-td {
        margin: 0 1em;
    }

    .info-th {
        margin-bottom: 4px;
    }

    .memberDetailData-list2 .info-th,
    .memberDetailData-list3 .info-th {
        display: none;
    }

    .memberDetailData-list2 .info-th:nth-child(2),
    .memberDetailData-list3 .info-th:nth-child(2) {
        display: block;
    }

    .AssignedNum {
        display: inline;
        margin-right: 0.5em;
    }

    .memberDetailData-list2 .info-td,
    .memberDetailData-list3 .info-td {
        flex-direction: row;
        justify-content: flex-start;
    }

}