@charset "UTF-8";

/*==============================================================================================
●共通
==============================================================================================*/
* {
    box-sizing: border-box;
}

* a {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

* a:hover {
    transition: all 0.2s ease-in-out;
}

:root {
    --color-black-1: #0e172f;
    --color-black-2: #1a1a1a;

    --color-gray-1: #f5f5f5;
    --color-gray-2: #e6e6e6;
    --color-gray-3: #b3b3b3;
    --color-gray-4: #dddddd;

    --color-white-1: #ffffff;

    --color-blue-1: #c3e9f0;
    --color-blue-2: #92c8e2;
    --color-green-1: #57fdb9;
    --color-red-1: #ec7c84;
    --color-yellow-1: #fff000;


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

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

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_title_b {
    font-family: "halcom-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 700;
}

.font_title_m {
    font-family: "halcom-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 500;
}


/*/////////////////////////ヘッダー///////////////////////*/
header {}

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

body {
    margin: 0;
}

/* メインコンテンツ：押し出し対応 */
.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: 998;
    display: none;
}

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

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

.hamburger {
    width: 90px;
    height: 90px;
    background: var(--color-yellow-1);
    border-radius: 0 0 0 30px;
    padding: 32px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease-in-out;
}

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

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

.hamburger span {
    display: block;
    height: 2px;
    background-color: var(--color-black-1);
    border-radius: 2px;
}

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

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

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

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

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

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

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

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

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

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

.spmenuFooter {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    font-size: 0.7rem;
    margin-bottom: 30px;
}

.spmenuSns {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.8rem;
}

.spmenuSns a:hover {
    opacity: 0.5;
}

/*/////////////////////////フッター///////////////////////*/
footer {
    width: 100%;
    color: var(--color-black-1);
    background-color: var(--color-blue-1);
    font-size: 0.8em;
    border-radius: 30px 0 0 0;
}

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

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

.fmenus {
    display: flex;
    gap: 30px;
}

.fmenuL {
    display: flex;
    flex-direction: column;
}

.footerLogo {
    width: 100%;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerLogo img {
    width: 130px;
    height: auto;
}

.fmenu {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
}

.fmenu2 {
    font-size: 0.8em;
}

.copyright {
    font-size: 10px;
    opacity: 0.5;
}

.fmenuR {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fLink {
    width: 100%;
    border-radius: 15px;
    border: 1px solid var(--color-black-1);
    background-color: var(--color-white-1);
    display: flex;
    gap: 15px;
}

.fmenu3 a:hover,
.fLink:hover {
    color: var(--color-black-1);
    opacity: 0.5;
}

.fLink>div {
    width: 50%;
}

.fLink>div:first-child {
    display: flex;
    align-items: end;
}

.fLink>div:first-child img {
    width: 100%;
    height: auto;
}

.fLink>div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
}

.fLink>div:last-child h5 {
    margin-bottom: 0.5em;
}

/*/////////////////////////共通レイアウト///////////////////////*/
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: 1em;
}

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


/*/ページ基本タグ設定/*/
.pagesBaceContent :is(h1, h2, h3, h4, h5, h6) {
    line-height: 1.4em;
    margin: 1em 0;
}

.pagesBaceContent a:link,
.pagesBaceContent a:visited {
    text-decoration: underline;
    color: var(--color-red-1);
}

.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;
}

.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);
}


/*ボタン*/
.button-wrap-right {
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}

.button {
    background-color: var(--color-black-1);
    padding: 5px 30px 5px 20px;
    border-radius: 9999px;
    font-size: 0.7em;
    line-height: 0.7em;
    height: 3.5em;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/arrow-right.png);
    background-repeat: no-repeat;
    background-position: right 10px center;
}

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

.button:hover {
    transition: all 0.2s ease-in-out;
    background-position: right 7px center;
    background-image: url(../img/arrow-right2.png);
    color: var(--color-yellow-1) !important;
}

.container {
    margin: 50px auto;
}

/*SWIPER*/
.swiper {
    width: 100%;
    margin-top: 30px;
}

.swiper-wrapper {
    align-items: stretch;
}

#featureslide .swiper-slide {
    height: auto !important;
    min-width: 250px;
    max-width: 400px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

#featureslide .swiper-slide:hover {
    opacity: 0.7;
}

#featureslide .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.swiper-pagination {
    position: relative !important;
}

.swiper-pagination-bullets {
    position: static;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    margin: 0 0 0 10px !important;
    background: var(--color-red-1) !important;
}

.swiper-pagination-bullet:first-child {
    margin: 0 !important;
}


/*パンくず*/
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.6em;
    margin-bottom: 10px;
}

.breadcrumb>ul {
    display: inline-block;
}

.breadcrumb>ul>li {
    display: inline-block;
}

.breadcrumb>ul>li:not(:last-of-type)::after {
    content: ">";
    margin: 0.6em;
    color: var(--color-gray-3);
}

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

.breadcrumb>ul>li:last-of-type a:link,
.breadcrumb>ul>li:last-of-type a:visited {
    color: var(--color-black-1);
}

.breadcrumb a:hover,
.breadcrumb>ul>li:last-of-type a:hover {
    color: var(--color-red-1);
}


/*/////////////////////////ページネーション///////////////////////*/
.pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    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 {
    display: block;
    width: auto;
    text-decoration: none;
    text-align: center;
    line-height: 1em;
}

.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-red-1);
    font-variation-settings: "ital" 0, "wght" 500;
}

/* 前へ */
.pagination a.prev,
.pagination a.next {
    width: 56px;
    height: 56px;
    aspect-ratio: 1;
    border: 1px solid var(--color-gray-3);
    border-radius: 50%;
    position: relative;
    box-sizing: border-box;
}

.pagination a.prev::before,
.pagination a.next::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 1px solid var(--color-gray-3);
    border-left: 1px solid var(--color-gray-3);
}

.pagination a.prev::before {
    transform: translate(-50%, -50%) rotate(-45deg);
    left: calc(50% + 3px);
}

.pagination a.next::before {
    transform: translate(-50%, -50%) rotate(135deg);
    left: calc(50% - 3px);
}

.pagination .prev-placeholder,
.pagination .next-placeholder {
    width: 56px;
    height: 56px;
}

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

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

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



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

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


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

.kv-wrap {
    margin: 50px auto 150px auto;
}

.kv {
    position: relative;
    width: 100%;
    background-color: var(--color-blue-1);
    border-radius: 30px;
}

.kv-head {
    display: flex;
    align-items: center;
    padding: 25px;
}

.kv-head-logo {
    display: inline-block;
    will-change: transform;
}


.kv-head-logo img {
    width: 100px;
    height: auto;
}

.kv-head-menu {
    display: flex;
    gap: 25px;
    font-size: 0.8rem;
    margin-right: 100px;
}

.kv-head-menu .active:link,
.kv-head-menu .active:visited {
    color: var(--color-red-1);
}

.kv-cloud {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: auto;
    z-index: 2;
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.kv-catch {
    z-index: 2;
    position: absolute;
    transform: translate(-50%, -50%);
    letter-spacing: 0.3em;
    font-feature-settings: "palt";
}

.kv-catch h3 {
    letter-spacing: 0.3em;
    margin-bottom: 0.2em;
}

.kv-p1,
.kv-p2,
.kv-p3 {
    z-index: 2;
    position: absolute;
    transform: translate(-50%, 0%);
    bottom: -30px;
}

.kv-p2 {
    left: 63%;
}

.kv-p3 {
    left: 85%;
}

.kv-p1 img,
.kv-p2 img,
.kv-p3 img {
    object-fit: cover;
}

.kv-lines-wrapper {
    z-index: 2;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    aspect-ratio: 100/20;
}

.kv-lines-wrapper2 {
    position: relative;
}

.kv-lines {
    background-image: url(../img/kv_lines.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    aspect-ratio: 100/20;
    position: relative;
    opacity: 1;
    clip-path: inset(0 100% 0 0);
}

.kv-items {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    overflow: visible !important;
}

.kv-itemsSet {
    height: auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    transform: translate(-50%, -50%);
}

.kv-itemsSet img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.kv-items1 {
    top: 62%;
    left: 3%;
}

.kv-items2 {
    top: 75%;
    left: 20%;
}

.kv-items3 {
    top: 83%;
    left: 30%;
}

.kv-items4 {
    top: 85%;
}

.kv-items5 {
    top: 90%;
    left: 50%;
}

.kv-items6 {
    top: 45%;
    left: 75%;
}

.kv-items7 {
    top: 0%;
    left: 97%;
}

.kv-btm {
    width: 90%;
    height: 30px;
    background-color: var(--color-blue-1);
    border-radius: 9999px;
    z-index: 1;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.kv-etc {
    width: 100%;
    z-index: 3;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.kv-etcIn {
    width: 100%;
    height: 100%;
    position: relative;
}

.kv-etc span {
    position: absolute;
    display: block;
    height: 5px;
    border: 1px solid var(--color-black-1);
    background-color: var(--color-white-1);
    border-radius: 9999px;
}

.kv-etc span:first-child {
    width: 10%;
    top: 30%;
    left: 2%;
}

.kv-etc span:nth-child(2) {
    width: 25%;
    bottom: 20%;
    left: 10%;
}

.kv-etc span:nth-child(3) {
    width: 12%;
    top: 30%;
    left: 20%;
}

.kv-etc span:nth-child(4) {
    width: 20%;
    bottom: 40%;
    left: 45%;
}

.kv-etc span:nth-child(5) {
    width: 12%;
    top: 30%;
    left: 65%;
}

.kv-etc span:nth-child(6) {
    width: 7%;
    bottom: 40%;
    left: 78%;
}

.kv-etc span:nth-child(7) {
    width: 10%;
    bottom: 20%;
    left: 88%;
}

.top-sec1 {
    width: 100%;
    margin: 50px 0;
    display: flex;
    gap: 50px;
}

.top-sec1-wrap:last-child {
    background-color: var(--color-blue-1);
}

.top-news-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-titles :is(p, h1) {
    line-height: 1em;
}

.top-titles h1 {
    margin-bottom: 10px;
}

.top-titles p {
    font-size: 10px;
    opacity: 0.8;
}

.titleAnimation {
    display: inline-block;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
}

.titleAnimation span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.top-news-list {
    margin-top: 20px;
}

.top-news-list li,
.top-news-etc {
    border-top: 1px solid var(--color-black-1);
    padding: 20px 0;
}

.top-news-list li>a>div {
    font-size: 0.8rem;
    color: var(--color-gray-3);
}

.top-news-list li>a>div span {
    font-size: 10px;
    margin-right: 20px;
    color: var(--color-black-1);
}

.top-news-list li>a>div span::before,
.topEventList>div>a .topEventListDate::before,
.topEventList>div>div .topEventListDate::before {
    content: "⚫︎";
    margin-right: 2px;
}

.top-news-list li>a>div span.topnewsinfo::before,
.NewsCat:has(span.newsinfo)::before {
    color: var(--color-yellow-1);
}

.top-news-list li>a>div span.topnewsevent::before,
.NewsCat:has(span.newsevent)::before {
    color: var(--color-red-1);
}

.top-news-etc {
    font-size: 10px;
}

.top-news-etc h6 {
    display: flex;
    align-items: center;
    line-height: 1em;
    margin-bottom: 1em;
}

.top-news-etc h6::before {
    content: url(../img/icon_caution.png);
    margin-right: 2px;
}

.top-feature {
    padding: 30px 0 10px 30px;
}

.top-sec2 {
    margin: 100px 0;
}

.top-sec2-wrap {
    display: flex;
    margin: 20px auto;
    gap: 30px;
}

.topEventTitle {
    display: flex;
    justify-content: space-between;
}

.topEventTitleImg {
    width: 70%;
}

.topEventTitleImg img {
    width: 100%;
    object-fit: cover;
}

.topEventList {
    display: flex;
    gap: 10px;
}

.topEventList>div {
    border-radius: 15px;
    border: 1px solid var(--color-black-1);
    display: block;
    padding: 5px;
}

.topEventList>div>a,
.topEventList>div>div {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid var(--color-black-1);
    display: block;
    padding: 20px;
    position: relative;
}

.topEventList a h5,
.topEventList div h5 {
    line-height: 1.4em;
}

.topEventList a span {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: url(../img/othersite.png) no-repeat;
}


.topEventList>div>a .topEventListDate.saturday::before {
    color: var(--color-blue-2);
}

.topEventList>div>a .topEventListDate.holiday::before,
.topEventList>div>div .topEventListDate.holiday::before {
    color: var(--color-red-1);
}


.top-sec3 {
    width: 100%;
    margin: 200px 0;
}

#photoslide.swiper {
    overflow: visible !important;
}

#photoslide .swiper-slide {
    width: 400px;
    max-width: none;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

#photoslide .swiper-slide.swiper-slide-active {
    z-index: 10;
}

#photoslide .slide-inner {

    width: 100%;
    height: 100%;
    background-color: var(--color-white-1);
    transform: scale(1);
    transition: transform 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

#photoslide .slide-inner img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 15px;
    overflow: hidden;
}

#photoslide .swiper-slide.swiper-slide-active .slide-inner {
    background-color: var(--color-blue-1);
    transform: scale(1.5);
}




/*/////////////////////////ページ///////////////////////*/
.pageheader {
    margin: 0 auto;
    padding: 30px;
    background-color: var(--color-blue-1);
    border-radius: 0 0 30px 30px;
    display: flex;
    align-items: center;
}

.phlogo {
    width: 100px;
    height: auto;
    aspect-ratio: 1;
    background: url(../img/logo.png) no-repeat center center / cover;
}

.pageTitle {
    font-size: 3.5rem;
}

.pageTitle2 {
    font-size: 3rem;
}

/*/開催日程/*/
.EventSubmenu {
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
}

.EventSubmenu li {
    padding: 10px 20px;
    border-radius: 9999px;
    background-color: var(--color-gray-1);
    color: var(--color-black-1);
    font-family: "halcom-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 500;
}

.EventSubmenu li:hover,
.EventSubmenu li.active {
    background-color: var(--color-black-1);
}

.EventSubmenu li a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.EventSubmenu li a:link,
.EventSubmenu li a:visited {
    color: var(--color-black-1);
}

.EventSubmenu li.active,
.EventSubmenu li.active a:link,
.EventSubmenu li.active a:visited,
.EventSubmenu li:hover a:link,
.EventSubmenu li:hover a:visited {
    color: var(--color-gray-1);
}

.ESList,
.NewsList {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ESList {
    margin: 100px 0;
}

.ESList>div,
.NewsList>div,
.pagesWrap>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.ESList>div,
.NewsList>div {
    border-radius: 15px;
    background-color: var(--color-gray-1);
}

.ESListDate {
    font-family: "halcom-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1em;
    gap: 15px;
    border-right: 1px solid var(--color-gray-2);
    letter-spacing: 0em;
}

.ESListDate>h3 {
    font-variation-settings: "ital" 0, "wght" 700;
}

.ESListDate>span {
    letter-spacing: 0.2em;
}

.ESListDate>span.holiday {
    color: var(--color-red-1);
}

.ESListDate>span.saturday {
    color: var(--color-blue-2);
}

.ESListWrap {
    display: flex;
    gap: 30px;
    width: 100%;
}

.ESListTitle {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4em;
}

.ESListTitle>span {
    display: inline-block;
    min-width: 85px;
    text-align: center;
    font-size: 0.8rem;
    border-radius: 5px;
    font-weight: normal;
}

.ESListTitle>span.today {
    color: var(--color-red-1);
    background-color: var(--color-white-1);
}

.ESListTitle>span.cansel {
    color: var(--color-white-1);
    background-color: var(--color-red-1);
}

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

.ESListLink,
.ESListLink2 {
    padding: 20px;
    display: flex;
    align-items: center;
    height: 100%;
    border-radius: 15px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.ESListLink:link,
.ESListLink:visited {
    background-color: var(--color-black-1);
    color: var(--color-white-1);
}

.ESListLink:hover {
    color: var(--color-yellow-1);
}

.ESListLink>span {
    opacity: 0.5;
    font-size: 0.5rem;
    display: flex;
    align-items: center;
    gap: 3px;
}

.ESListLink>span::after {
    content: url(../img/othersite.png);
    height: 12px;
}

.ESListLink2 {
    background-color: var(--color-gray-2);
    color: var(--color-black-1);
    justify-content: center;
}


/*/ご出展の方へ/*/
.participantsWrap {
    display: flex;
    margin: 50px 0;
    align-items: flex-start;
    overflow: visible;
}

.PageSubmenu {
    margin: 0;
}

.participantsContent,
.questionsContent {
    width: 100%;
}

.participantsContent :is(h6, p, ul, ol) {
    margin: 30px 0;
}

.participantsContent h4,
.questionsContent h4 {
    margin-bottom: 30px;
    line-height: 1.4em;
}

.participantsContent h6 {
    list-style-position: outside;
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.participantsContent h6::before {
    content: "";
    display: inline-block;
    width: 100px;
    height: 5px;
    background-color: var(--color-red-1);
    margin-right: 10px;
}

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

.participantsContent hr {
    margin: 60px 0;
}

.questionsContent hr {
    margin: 100px 0;
}

.participantsContent ul li,
.questionsContent ul li {
    list-style: disc;
    margin: 0.8em 0;
    list-style-position: outside;
    margin-left: 20px;
}

.participantsContent ul.cautions li {
    list-style-image: url("../img/list-image.png");
}

.participantsContent a:link,
.participantsContent a:visited,
.participantsContent a[target="_blank"],
.questionsContent a:link,
.questionsContent a:visited {
    color: var(--color-red-1);
    text-decoration: underline;
}

.participantsContent a[target="_blank"]::after,
.questionsContent a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    background-image: url('../img/othersite.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

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

.participantsContent ol li div>span {
    font-size: 10px;
}

.participantsContent ol {
    counter-reset: number;
    list-style: none;
    padding-left: 0;
}

.participantsContent ol li {
    border: 1px solid var(--color-red-1);
    padding: 20px;
    border-radius: 15px;
    margin: 0.8em 0;
    counter-increment: number;
    display: flex;
    align-items: center;
    gap: 10px;
}

.participantsContent ol li::before {
    content: counter(number);
    min-width: 30px;
    height: 30px;
    aspect-ratio: 1;
    line-height: 30px;
    background-color: var(--color-red-1);
    color: var(--color-white-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
}

.participantsContent p.notes {
    font-size: 0.8em;
}

.participantsContent p.notes>span {
    margin-right: 0.3em;
}

.participantsContent .rentalimage {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

.participantsContent .rentalimage>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.participantsContent .rentalimage :is(h5, p) {
    font-size: 1em;
    margin: 0.5em 0;
}

.participantsContent .rentalimage span {
    color: var(--color-gray-3);
    font-size: 0.6em;
}


/*/NEWS/*/
.NewsCat {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
}

.NewsCat::before {
    content: '⚫︎';
}

.NewsCatTitle {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.NewsCatTitle>h4 {
    line-height: 1.4em;
}

.NewsCatTitle>p {
    color: var(--color-gray-3);
    font-size: 0.8em;
}

.pagesWrap,
.pagesWrap2,
.contactWrap {
    width: 100%;
    border: 1px solid var(--color-gray-3);
    border-radius: 30px;
}

.pagesTxt {
    margin-top: 30px;
}

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



/*よくある質問*/
.questionsContent :is(h6, p, ul, ol) {
    margin: 1em 0;
}

.accordion {
    width: 100%;
    border: 1px solid var(--color-gray-3);
    border-radius: 8px;
    overflow: hidden;
    font-family: sans-serif;
    margin: 20px 0;
}

.accordion button {
    color: var(--color-black-1);
}

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

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

.accordion-icon {
    position: absolute;
    width: 2em;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    right: 15px;
    color: var(--color-white-1);
    background: var(--color-black-1);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
    transform: translateY(-50%) rotate(45deg);
    /* ＋ → × */
}

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

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

.otherPagesWrap {
    margin: 50px 0;
}


/* 特定商取引法に基づく表記 */
#scta ul {
    margin: 2em 0;
}

#scta ul,
#scta ul>li {
    display: flex;
    gap: 10px;
}

#scta ul>li {
    flex-direction: column;
    align-items: center;
    background: var(--color-gray-1);
    padding: 30px;
    border-radius: 15px;
    white-space: wrap;
}



/*/////////////////////////お問い合わせ///////////////////////*/
.contactMessage {
    padding: 30px;
    border: 1px dashed var(--color-gray-3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-bottom: 100px;
}

#form {
    font-size: 0.9em;
    letter-spacing: 0.1em;
    background-color: var(--color-white-1);
    border-radius: 30px;
    display: flex;
    flex-flow: column;
}

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

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

#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-3);
    background-color: var(--color-white-1);
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
}

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

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

#form input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

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

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

#form input[type="radio"]+.wpcf7-list-item-label {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1em 0;
    background-color: var(--color-white-1);
    color: var(--color-black-1);
    border: 2px solid var(--color-black-1);
    border-radius: 9999px;
    width: 100%;
    height: 2em;
    padding: 20px;
    transition: background-color .5s;
    cursor: pointer;
    font-weight: 200;
}

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

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

/* チェック後のボタン */
#form input[type="radio"]:checked+.wpcf7-list-item-label {
    background-color: var(--color-black-1);
    color: var(--color-black-1);
    font-weight: 500;
}

#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] {
    height: 50px;
    line-height: 1em;
    cursor: pointer;
    margin: 30px auto 0 auto;
    border-radius: 9999px;
    width: 100%;
    max-width: 500px;
    color: var(--color-white-1);
    background: var(--color-black-1);
    border: 2px solid var(--color-black-1);
}

#form input[type=submit]: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: table;
    width: 100%;
    text-align: center;
}


/*/////////////////////////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;
}




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

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

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

    .pc {
        display: block !important;
    }

    /*/////////////////////////ヘッダー///////////////////////*/


    /*/////////////////////////フッター///////////////////////*/
    footer {
        margin: 100px 0 0 var(--margin-pc);
    }

    .fmenus {
        width: var(--width-pc);
        padding: 100px 0 100px 100px;
    }

    .fmenus>div {
        width: 50%;
    }

    .footerLogo {
        margin-bottom: 60px;
    }


    /*/////////////////////////共通レイアウト///////////////////////*/
    .button-wrap-right {
        width: var(--width-pc);
    }

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

    .pagination {
        font-size: 1.5rem;
    }

    /*/////////////////////////トップページ///////////////////////*/
    .kv-wrap {
        width: var(--width-pc);
    }

    .kv {
        height: 650px;
        margin-bottom: 50px;
    }

    .kv-head {
        justify-content: space-between;
    }

    .kv-cloud {
        width: 1250px;
        background-image: url(../img/kv_cloud.png);
        aspect-ratio: 1000/56;
    }

    .kv-catch {
        top: 50%;
        left: 37%;
    }

    .kv-p1 {
        left: 13%;
    }

    .kv-p1 img,
    .kv-p2 img,
    .kv-p3 img {
        height: 400px;
    }

    .kv-lines-wrapper {
        top: 67%;
        left: 50%;
    }

    .kv-items1,
    .kv-items5 {
        width: 4%;
    }

    .kv-items2 {
        width: 2.5%;
    }

    .kv-items4 {
        width: 3%;
        left: 40%;
    }

    .kv-items3,
    .kv-items6,
    .kv-items7 {
        width: 5%;
    }

    .kv-etc {
        height: 100px;
    }

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

    .top-sec1>div {
        width: 50%;
    }

    .top-sec1-wrap:last-child {
        border-radius: 15px 0 0 0;
    }

    .top-news {
        width: calc(var(--width-pc) /2 - 50px);
        margin: 30px 0 10px auto;
    }

    .top-feature {
        width: 100%;
    }

    .top-sec2-wrap {
        width: var(--width-pc);
    }

    .topEventTitle {
        width: calc(35% - 15px);
        flex-direction: column;
    }

    .topEventList {
        width: calc(65% - 15px);
        flex-wrap: wrap;
    }

    .topEventList>div {
        width: calc(50% - 5px);
    }

    #photoslide .slide-inner {
        border-radius: 30px;
    }

    #photoslide .swiper-slide.swiper-slide-active .slide-inner {
        padding: 20px;
    }

    /*/////////////////////////ページ///////////////////////*/
    .pageheader {
        width: var(--width-pc);
        justify-content: space-between;
    }

    .pageTitle {
        line-height: 1.3em;
    }

    /*/開催日程/*/
    .EventSubmenu li {
        min-width: 150px;
    }

    .ESList>div,
    .NewsList>div,
    .pagesWrap>div {
        padding: 30px;
        gap: 30px;
    }

    .pagesWrap2>div {
        padding: 50px;
    }

    .ESListDate,
    .NewsCat {
        padding-right: 30px;
        min-width: 116px;
    }

    .ESListTitle {
        align-items: center;
    }

    .ESListLink,
    .ESListLink2 {
        aspect-ratio: 1;
        min-width: 85px;
    }

    .ESListLink {
        flex-direction: column;
    }

    .ESListLink>span {
        margin-top: 10px;
    }

    /*/ご出展の方へ/*/
    .participantsWrap {
        gap: 100px;
    }

    .PageSubmenu {
        flex-direction: column;
        gap: 20px !important;
        position: sticky;
        top: 20px;
        z-index: 999;
    }

    .participantsContent .rentalimage>div {
        width: 50%;
    }

    .participantsContent .rentalimage>div>img {
        width: auto;
        max-height: 300px;
    }

    .pagesWrap>div>.NewsCat {
        align-items: flex-start;
        border-right: 1px solid var(--color-gray-1) !important;
    }

    #scta ul>li {
        width: calc(100% / 3);
    }


    /*/////////////////////////お問い合わせ///////////////////////*/
    .contactTxt {
        width: var(--width-pc);
    }

    #form {
        padding: 50px;
    }

    #contactAcademy {
        padding: 100px 50px 50px 50px;
    }

    .academyContactWrap {
        padding: 70px 0;
    }




}


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

@media screen and (min-width: 450px) and (max-width: 1279px) {
    body {
        overflow-x: hidden;
    }

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

    .tb {
        display: block !important;
    }

    /*/////////////////////////ヘッダー///////////////////////*/





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


    /*/////////////////////////フッター///////////////////////*/
    footer {
        margin: 100px 0 0 var(--margin-sp);
    }

    .fmenus {
        width: 90%;
        padding: 10% 0 10% 10%;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .fmenus>div {
        width: 100%;
        max-width: 400px;
    }

    .footerLogo {
        margin: 30px 0;
    }

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

    .fmenu2,
    .fmenu3 {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }

    /*/////////////////////////共通レイアウト///////////////////////*/
    .button-wrap-right {
        width: var(--width-tb);
    }

    .container {
        width: var(--width-tb);
    }

    .pagination {
        font-size: 1.5rem;
    }

    /*/////////////////////////トップページ///////////////////////*/
    .kv-wrap {
        width: var(--width-tb);
        max-width: 800px;
    }

    .kv {
        height: 700px;
        margin-bottom: 100px;
    }

    .kv-head {
        justify-content: center;
        padding-top: 50px;
    }

    .kv-head-menu {
        display: none;
    }

    .kv-cloud {
        width: 110%;
        background-image: url(../img/kv_cloud.png);
        aspect-ratio: 1000/56;
    }

    .kv-catch {
        width: 80%;
        top: 50%;
        left: 50%;
        font-size: 0.9rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .kv-p1 {
        left: 18%;
    }

    .kv-p1 img,
    .kv-p2 img,
    .kv-p3 img {
        height: 40vw;
        max-height: 300px;
        min-height: 280px;
    }

    .kv-lines-wrapper {
        top: 80%;
        left: 50%;
    }

    .kv-items2,
    .kv-items5 {
        display: none;
    }

    .kv-items1,
    .kv-items7 {
        width: 6%;
    }

    .kv-items4 {
        width: 4%;
        left: 45%;
    }

    .kv-items3,
    .kv-items6 {
        width: 7%;
    }

    .kv-etc {
        height: 70px;
    }

    .top-sec1 {
        flex-direction: column;
    }

    .top-sec1>div {
        width: 100%;
    }

    .top-sec1-wrap:last-child {
        width: 100%;
        margin-left: var(--margin-sp);
        border-radius: 15px 0 0 15px;
    }

    .top-news {
        width: var(--width-tb);
        max-width: 800px;
        margin: 30px auto;
    }

    .top-feature {
        width: calc(100% - var(--margin-sp));
    }

    .top-sec2-wrap {
        width: var(--width-tb);
        flex-direction: column;
    }

    .topEventTitle,
    .topEventList {
        width: 100%;
    }

    .topEventTitle {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
    }

    .topEventTitleImg {
        max-width: 100px;
        margin-right: 30px;
    }

    .topEventList {
        flex-wrap: wrap;
    }

    .topEventList>div {
        width: calc(50% - 5px);
    }

    #photoslide .slide-inner {
        border-radius: 30px;
    }

    #photoslide .swiper-slide.swiper-slide-active .slide-inner {
        padding: 20px;
    }

    /*/////////////////////////ページ///////////////////////*/
    .pageheader {
        width: var(--width-tb);
        justify-content: center;
    }

    .pageTitle {
        line-height: 1.3em;
    }

    /*/開催日程/*/
    .EventSubmenu li {
        min-width: 150px;
    }

    .NewsList,
    .pagesWrap,
    .questionsContent {
        margin: 50px 0;
    }

    .ESList>div,
    .NewsList>div,
    .pagesWrap>div {
        padding: 30px;
        gap: 30px;
    }

    .pagesWrap2>div {
        padding: 30px;
    }

    .pagesWrap>div {
        flex-direction: column;
        gap: 30px;
    }

    .pagesWrap>div>.NewsCat {
        border-bottom: 1px solid var(--color-gray-1) !important;
        padding-bottom: 30px;
    }

    .ESListTitle {
        flex-direction: column;
        align-items: flex-start;
    }

    .ESListDate,
    .NewsCat {
        padding-right: 30px;
        min-width: 116px;
    }

    .ESListWrap {
        flex-direction: column;
    }

    .ESListLink,
    .ESListLink2 {
        min-width: 100%;
        justify-content: center;
    }

    .ESListLink>span {
        margin-left: 10px;
    }

    /*/ご出展の方へ/*/
    .participantsWrap {
        flex-direction: column;
    }

    .participantsContent {
        margin: 50px 0;
        border-top: 1px solid var(--color-gray-2);
        padding-top: 30px;
    }

    .participantsContent .rentalimage {
        flex-direction: column;
    }

    .participantsContent .rentalimage>div {
        width: 100%;
        margin-bottom: 50px;
    }

    .participantsContent .rentalimage>div>img {
        width: auto;
        max-height: 300px;
        margin-bottom: 15px;
    }

    .participantsContent .rentalimage>div>p {
        width: 100%;
        text-align: center;
    }

    #scta ul {
        flex-direction: column;
    }

    #scta ul>li {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    /*/////////////////////////お問い合わせ///////////////////////*/
    .contactTxt {
        width: var(--width-tb);
    }

    #form {
        padding: 30px;
    }


}


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

@media screen and (max-width: 449px) {
    body {
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
    }

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

    .pc {
        display: none !important;
    }

    /*/////////////////////////ヘッダー///////////////////////*/
    header {}



    /*/////////////////////////メニュー///////////////////////*/
    .spmenuFooter {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }




    /*/////////////////////////フッター///////////////////////*/
    footer {
        margin: 100px 0 0 var(--margin-sp);
    }

    .fmenus {
        width: var(--width-sp);
        padding: 30px 0 30px 30px;
        flex-direction: column-reverse;
    }

    .fmenus>div {
        width: 100%;
    }

    .footerLogo {
        margin: 30px 0;
    }

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

    .fmenu2,
    .fmenu3 {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }

    /*/////////////////////////共通レイアウト///////////////////////*/
    .button-wrap-right {
        width: var(--width-sp);
    }

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

    .pagination {
        font-size: 1.2rem;
    }

    /*/////////////////////////トップページ///////////////////////*/
    .kv-wrap {
        width: var(--width-tb);
        max-width: 800px;
    }

    .kv {
        height: 500px;
        margin-bottom: 100px;
    }

    .kv-head {
        justify-content: center;
    }

    .kv-head-menu {
        display: none;
    }

    .kv-cloud {
        width: 110%;
        background-image: url(../img/kv_cloud-sp.png);
        aspect-ratio: 450/54;
    }

    .kv-catch {
        width: 80%;
        top: 50%;
        left: 50%;
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .kv-p1 {
        left: 18%;
    }

    .kv-p1 img,
    .kv-p2 img,
    .kv-p3 img {
        height: 200px;
    }

    .kv-lines-wrapper {
        top: 80%;
        left: 50%;
    }

    .kv-items2,
    .kv-items5 {
        display: none;
    }

    .kv-items1,
    .kv-items4,
    .kv-items7 {
        width: 6%;
    }

    .kv-items4 {
        width: 4%;
        left: 45%;
    }

    .kv-items3,
    .kv-items6 {
        width: 8%;
    }

    .kv-etc {
        height: 40px;
    }

    .top-sec1 {
        flex-direction: column;
    }

    .top-sec1>div {
        width: 100%;
    }

    .top-sec1-wrap:last-child {
        width: 100%;
        margin-left: var(--margin-sp);
        border-radius: 15px 0 0 15px;
    }

    .top-news {
        width: var(--width-tb);
        max-width: 800px;
        margin: 30px auto;
    }

    .top-feature {
        width: calc(100% - var(--margin-sp));
    }

    .top-sec2-wrap {
        width: var(--width-sp);
        flex-direction: column;
    }

    .topEventTitle,
    .topEventList,
    .topEventList>div {
        width: 100%;
    }

    .topEventTitle {
        flex-direction: row-reverse;
        align-items: center;
    }

    .topEventTitleImg {
        max-width: 100px;
        margin-right: 30px;
    }

    .topEventList {
        flex-direction: column;
    }

    #photoslide .slide-inner {
        border-radius: 20px;
    }

    #photoslide .swiper-slide.swiper-slide-active .slide-inner {
        padding: 10px;
    }

    /*/////////////////////////ページ///////////////////////*/
    .pageheader {
        width: var(--width-sp);
        justify-content: center;
    }

    .pageTitle,
    .pageTitle2 {
        line-height: 1em;
        overflow: visible;
    }

    .pageTitle {
        font-size: 3em;
    }

    .pageTitle2 {
        font-size: 2.5em;
    }

    /*/開催日程/*/
    .EventSubmenu li {
        width: calc(50% - 5px);
    }

    .NewsList,
    .pagesWrap,
    .questionsContent {
        margin: 50px 0;
    }

    .ESList>div,
    .NewsList>div {
        padding: 15px;
        gap: 15px;
    }

    .pagesWrap>div,
    .pagesWrap2>div {
        padding: 30px;
    }

    .pagesWrap>div {
        flex-direction: column;
        gap: 15px;
    }

    .pagesWrap>div>.NewsCat {
        border-bottom: 1px solid var(--color-gray-1) !important;
        padding-bottom: 15px;
    }

    .ESListDate,
    .NewsCat {
        padding-right: 15px;
        min-width: 100px;
    }

    .ESListTitle {
        flex-direction: column;
        align-items: flex-start;
    }

    .ESListWrap {
        flex-direction: column;
    }

    .ESListLink,
    .ESListLink2 {
        min-width: 100%;
        justify-content: center;
    }

    .ESListLink>span {
        margin-left: 10px;
    }


    /*/ご出展の方へ/*/
    .participantsWrap {
        flex-direction: column;
    }

    .participantsContent {
        margin: 50px 0;
        border-top: 1px solid var(--color-gray-2);
        padding-top: 30px;
    }

    .participantsContent .rentalimage {
        flex-direction: column;
    }

    .participantsContent .rentalimage>div {
        width: 100%;
        margin-bottom: 50px;
    }

    .participantsContent .rentalimage>div>img {
        width: auto;
        max-height: 250px;
        margin-bottom: 15px;
    }

    .participantsContent .rentalimage>div>p {
        width: 100%;
        text-align: center;
    }

    #scta ul {
        flex-direction: column;
    }

    #scta ul>li {
        width: 100%;
    }

    /*/////////////////////////お問い合わせ///////////////////////*/
    .contactTxt {
        width: var(--width-sp);
    }

    #form {
        padding: 20px;
    }


}