@charset "UTF-8";
/* CSS Document */
/*===============================================
共通
===============================================*/
html,
body {
    height: 100%;
    margin: 0 auto;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 0.625rem;
    /*font-size: 0.69444444vw;*/
    background-color: var(--sub);
    line-height: 1.8;
    letter-spacing: 1px;
    color: #000;
}
:root {
    --red: #db0011;
    --blue: #002c86;
    --green: #008b34;
    --yellow: #ffd900;
    --sub: #eee9de;
    --pc: 14.4;
    --sp: 10.24;
}
*:focus {
    outline: none;
}
body {
    display: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
figure,
figcaption,
ul {
    margin: 0;
    padding: 0;
}
img {
    border: 0;
    line-height: 0;
    width: 100%;
    height: auto;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #000;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
a:hover {
    color: #C8C8C8;
}
table {
    border-collapse: collapse;
}
span.text-block {
    display: inline-block;
}
.pc-none {
    display: none;
}
.note {
    text-indent: -1em;
    padding-left: 1em;
}
input {
    font-size: 1.6rem
}
input:focus {
    outline: 0;
}
input[type="button"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
input[type="image"],
textarea,
select {
    -webkit-appearance: none;
    border-radius: 0;
}
input[type="submit"] {
    border: none;
    -webkit-appearance: none;
}
.mg {
    margin: clamp(200px, (250vw/var(--pc)), 250px);
}
.en {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.btn {
    border: 1px solid var(--red);
    line-height: 1;
    display: inline-block;
    width: 250px;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 100px;
}
.btn a {
    display: block;
    color: var(--red);
    padding: 25px 0;
    position: relative;
    border-radius: 100px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    overflow: hidden;
}
.btn a:hover {
    color: #fff;
}
.btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    z-index: -1;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.btn a:hover::before {
    background-color: var(--red);
    -webkit-animation: btn 0.5s 0s both;
    animation: btn 0.5s 0s both;
}
.btn.red {
    background-color: var(--red);
}
.btn.red a {
    color: #fff;
}
.btn.red a:hover {
    color: #fff;
}
.btn.blue {
    background-color: var(--blue);
    border: 1px solid var(--blue);
}
.btn.blue a {
    color: #fff;
}
.btn.blue a:hover {
    color: #fff;
}
.btn.blue a::after {
    background: url("../img/arrow02.svg")no-repeat center center / cover;
}
@-webkit-keyframes btn {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    80% {
        -webkit-transform: translateX(-15%);
        transform: translateX(-15%);
    }
    85% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    90% {
        -webkit-transform: translateX(-5%);
        transform: translateX(-5%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes btn {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    80% {
        -webkit-transform: translateX(-15%);
        transform: translateX(-15%);
    }
    85% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    90% {
        -webkit-transform: translateX(-5%);
        transform: translateX(-5%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.btn a::after {
    content: '';
    background: url("../img/arrow01.svg")no-repeat center center / cover;
    width: 9px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.btn a:hover::after {
    background: url("../img/arrow02.svg")no-repeat center center / cover;
    -webkit-animation: arrow 0.5s 0s both;
    animation: arrow 0.5s 0s both;
}
.btn.red a::after {
    background: url("../img/arrow02.svg")no-repeat center center / cover;
}
@-webkit-keyframes arrow {
    0% {
        opacity: 1;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    49.9% {
        opacity: 0;
        -webkit-transform: translate(20px, -50%);
        transform: translate(20px, -50%);
    }
    50% {
        -webkit-transform: translate(-20px, -50%);
        transform: translate(-20px, -50%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}
@keyframes arrow {
    0% {
        opacity: 1;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    49.9% {
        opacity: 0;
        -webkit-transform: translate(20px, -50%);
        transform: translate(20px, -50%);
    }
    50% {
        -webkit-transform: translate(-20px, -50%);
        transform: translate(-20px, -50%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}
h2.title {
    font-size: clamp(36px, (40vw/var(--pc)), 40px);
    color: #fff;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 385px;
    margin-bottom: clamp(85px, (100vw/var(--pc)), 100px);
}
h2.title span {
    line-height: 0;
    display: block;
}
h2.title p {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    line-height: 1;
    letter-spacing: 3px;
}
.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
.container1200 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.container1000 {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.container800 {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
.container600 {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cls-1 {
    fill: #fff;
}
.cls-2 {
    fill: #db0011;
}
.wrap {
    padding-top: clamp(200px, (250vw/var(--pc)), 250px);
    padding-bottom: clamp(200px, (350vw/var(--pc)), 350px);
    text-align: center;
    width: 100%;
    overflow: hidden;
}
/*==============================================
アニメーション
===============================================*/
.bounce {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}
.bounce.active {
    -webkit-animation: bounce 1s 0.25s forwards;
    animation: bounce 1s 0.25s forwards;
}
@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    55% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    65% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    75% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    85% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes bounce {
    0% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    55% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    65% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    75% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    85% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes bounceIn {
    0% {
        -webkit-transform: scale(0.3, 1);
        transform: scale(0.3, 1);
        opacity: 0;
    }
    40% {
        -webkit-transform: scale(1.1, 0.85);
        transform: scale(1.1, 0.85);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.9, 1);
        transform: scale(0.9, 1);
    }
    60% {
        -webkit-transform: scale(1.1, 0.85);
        transform: scale(1.1, 0.85);
    }
    70% {
        -webkit-transform: scale(0.9, 1);
        transform: scale(0.9, 1);
    }
    80% {
        -webkit-transform: scale(1.1, 0.85);
        transform: scale(1.1, 0.85);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
    }
}
@keyframes bounceIn {
    0% {
        -webkit-transform: scale(0.3, 1);
        transform: scale(0.3, 1);
        opacity: 0;
    }
    40% {
        -webkit-transform: scale(1.1, 0.85);
        transform: scale(1.1, 0.85);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.9, 1);
        transform: scale(0.9, 1);
    }
    60% {
        -webkit-transform: scale(1.1, 0.85);
        transform: scale(1.1, 0.85);
    }
    70% {
        -webkit-transform: scale(0.9, 1);
        transform: scale(0.9, 1);
    }
    80% {
        -webkit-transform: scale(1.1, 0.85);
        transform: scale(1.1, 0.85);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
    }
}
.bounce2.active {
    -webkit-animation: bounce2 1s cubic-bezier(0.25, 0.1, 0.25, 1.0);
    animation: bounce2 1s cubic-bezier(0.25, 0.1, 0.25, 1.0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}
@-webkit-keyframes bounce2 {
    0% {
        -webkit-transform: scale(1) translate(0, 0);
        transform: scale(1) translate(0, 0);
    }
    30% {
        -webkit-transform: scale(1.1, 0.9) translate(0, 0);
        transform: scale(1.1, 0.9) translate(0, 0);
    }
    50% {
        -webkit-transform: scale(0.9, 1.1) translate(0, 0);
        transform: scale(0.9, 1.1) translate(0, 0);
    }
    70% {
        -webkit-transform: scale(1.05, 0.95) translate(0, 0);
        transform: scale(1.05, 0.95) translate(0, 0);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
        transform: scale(1) translate(0, 0);
    }
}
@keyframes bounce2 {
    0% {
        -webkit-transform: scale(1) translate(0, 0);
        transform: scale(1) translate(0, 0);
    }
    30% {
        -webkit-transform: scale(1.1, 0.9) translate(0, 0);
        transform: scale(1.1, 0.9) translate(0, 0);
    }
    50% {
        -webkit-transform: scale(0.9, 1.1) translate(0, 0);
        transform: scale(0.9, 1.1) translate(0, 0);
    }
    70% {
        -webkit-transform: scale(1.05, 0.95) translate(0, 0);
        transform: scale(1.05, 0.95) translate(0, 0);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
        transform: scale(1) translate(0, 0);
    }
}
.bounce3 {
    opacity: 0;
}
.bounce3.active {
    -webkit-animation: bounce3 1s 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.0) forwards;
    animation: bounce3 1s 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.0) forwards;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}
@-webkit-keyframes bounce3 {
    0% {
        opacity: 0;
        -webkit-transform: scale(1) translate(0, 0);
        transform: scale(1) translate(0, 0);
    }
    30% {
        opacity: 1;
        -webkit-transform: scale(1.1, 0.9) translate(0, 0);
        transform: scale(1.1, 0.9) translate(0, 0);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(0.9, 1.1) translate(0, 0);
        transform: scale(0.9, 1.1) translate(0, 0);
    }
    70% {
        opacity: 1;
        -webkit-transform: scale(1.05, 0.95) translate(0, 0);
        transform: scale(1.05, 0.95) translate(0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1) translate(0, 0);
        transform: scale(1) translate(0, 0);
    }
}
@keyframes bounce3 {
    0% {
        opacity: 0;
        -webkit-transform: scale(1) translate(0, 0);
        transform: scale(1) translate(0, 0);
    }
    30% {
        opacity: 1;
        -webkit-transform: scale(1.1, 0.9) translate(0, 0);
        transform: scale(1.1, 0.9) translate(0, 0);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(0.9, 1.1) translate(0, 0);
        transform: scale(0.9, 1.1) translate(0, 0);
    }
    70% {
        opacity: 1;
        -webkit-transform: scale(1.05, 0.95) translate(0, 0);
        transform: scale(1.05, 0.95) translate(0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1) translate(0, 0);
        transform: scale(1) translate(0, 0);
    }
}
.fade {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.fade.active {
    -webkit-animation: fade 0.25s 0.25s forwards;
    animation: fade 0.25s 0.25s forwards;
}
@-webkit-keyframes fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.fade.active#effect1 {
    -webkit-animation: fade 0.25s 1s forwards;
    animation: fade 0.25s 1s forwards;
}
.fade.active#effect2 {
    -webkit-animation: fade 0.25s 1s forwards;
    animation: fade 0.25s 1s forwards;
}
.slideIn svg {
    max-width: 700px;
}
.slideIn #effect1,
.slideIn #effect2 {
    -webkit-transform: translateX(-110%)translateY(200px);
    transform: translateX(-110%)translateY(200px);
    opacity: 0;
}
.slideIn #effect3,
.slideIn #effect4 {
    -webkit-transform: translateX(-110%)translateY(90px);
    transform: translateX(-110%)translateY(90px);
    opacity: 0;
}
.slideIn.active #effect1 {
    -webkit-animation: slideIn 0.5s 0.25s forwards;
    animation: slideIn 0.5s 0.25s forwards;
}
.slideIn.active #effect2 {
    -webkit-animation: slideIn 0.5s 0.5s forwards;
    animation: slideIn 0.5s 0.5s forwards;
}
.slideIn.active #effect3 {
    -webkit-animation: slideIn2 0.5s 1s forwards;
    animation: slideIn2 0.5s 1s forwards;
}
.slideIn.active #effect4 {
    -webkit-animation: slideIn2 0.5s 1.25s forwards;
    animation: slideIn2 0.5s 1.25s forwards;
}
@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: translateX(-110%)translateY(200px);
        transform: translateX(-110%)translateY(200px);
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)translateY(0);
        transform: translateX(0)translateY(0);
    }
}
@keyframes slideIn {
    0% {
        -webkit-transform: translateX(-110%)translateY(200px);
        transform: translateX(-110%)translateY(200px);
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)translateY(0);
        transform: translateX(0)translateY(0);
    }
}
@-webkit-keyframes slideIn2 {
    0% {
        -webkit-transform: translateX(-110%)translateY(90px);
        transform: translateX(-110%)translateY(90px);
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)translateY(0);
        transform: translateX(0)translateY(0);
    }
}
@keyframes slideIn2 {
    0% {
        -webkit-transform: translateX(-110%)translateY(90px);
        transform: translateX(-110%)translateY(90px);
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)translateY(0);
        transform: translateX(0)translateY(0);
    }
}
.scroll {
    position: absolute;
    left: 5%;
    bottom: 5%;
    max-width: 40px;
    z-index: 100;
    -webkit-animation: scrollAnime 3s 0.5s infinite;
    animation: scrollAnime 3s 0.5s infinite;
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
}
@-webkit-keyframes scrollAnime {
    0% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
    40% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    60% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
}
@keyframes scrollAnime {
    0% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
    40% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    60% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
}
/*==============================================
ヘッダー
===============================================*/
header {
    position: relative;
}
header i {
    -webkit-transition: 0.35s;
    transition: 0.35s;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
header.active i {
    width: 100%;
    height: 80px;
    background-color: #fff;
    position: fixed;
    z-index: 999;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}
header h1 {
    position: fixed;
    top: 0;
    left: 20px;
    width: 100%;
    max-width: 170px;
    z-index: 9999;
    -webkit-transition: 0.35s;
    transition: 0.35s;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
header.active h1 {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    top: 20px;
}
header.individual h1 {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    top: 20px;
}
header.individual i {
    width: 100%;
    height: 80px;
    background-color: #fff;
    position: fixed;
    z-index: 999;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}
/*==============================================
index
===============================================*/
main {
    position: relative;
    background-color: #fff;
}
.main-logo {
    width: 90%;
    max-width: 640px;
    position: absolute;
    top: 32%;
    left: 50%;
    -webkit-transform: scale(0.9)translate(-50%, -50%);
    transform: scale(0.9)translate(-50%, -50%);
    z-index: 30;
}
.period {
    font-size: 3rem;
    position: absolute;
    bottom: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    z-index: 20;
}
.visit_date {
    margin-right: 50px;
}
.date_cont {
    padding-bottom: 15px;
    border-bottom: 2px dotted #000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.date_cont a {
    padding-right: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
    position: relative;
}
.date_cont a::after {
    content: '';
    background: url("../img/arrow05.svg")no-repeat center center / cover;
    width: 8.5px;
    height: 15px;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    -webkit-transform: translate(0, -2px);
    transform: translate(0, -2px);
}
.date_cont a:hover {
    color: #000
}
.date_cont a:hover::after {
    -webkit-transform: translateX(10px, -2px);
    transform: translateX(10px, -2px);
}
.tag {
    width: 100%;
    max-width: 70px;
    line-height: 0;
    margin-bottom: 10px;
    position: relative;
}
.visit_date .tag::after {
    content: '';
    background: url("../img/reservation.svg")no-repeat center center / cover;
    width: 75px;
    height: 35px;
    position: absolute;
    top: 0;
    left: 10px;
    -webkit-transform: translate(100%, 50%);
    transform: translate(100%, 50%);
}
.event_date .tag::after {
    content: '';
    background: url("../img/no_reservation.svg")no-repeat center center / cover;
    width: 84px;
    height: 32px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(100%, 50%);
    transform: translate(100%, 50%);
}
.period .days {
    font-weight: 700;
    line-height: 1;
    font-size: clamp(45px, (50vw/var(--pc)), 50px);
    margin-bottom: 15px;
}
.period .days span.week {
    font-size: clamp(25px, (28vw/var(--pc)), 28px);
    margin-left: 0.25em;
    font-weight: 600;
}
.period .days span.bar {
    width: 35px;
    height: 2px;
    background-color: #000;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}
.period .days.flex {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.period .days p.time {
    font-size: 1.6rem;
    margin-left: 20px;
    line-height: 1.3;
}
.period .days p.time span {
    font-weight: 400;
}
.period .place {
    line-height: 1;
    font-size: clamp(22px, (25vw/var(--pc)), 25px);
    font-weight: 600;
}
.period .free {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    width: 100%;
    max-width: 120px;
    line-height: 0;
}
.slider {
    width: 100%;
    position: absolute !important;
    bottom: 0;
    z-index: 10;
}
/*メニュー---------------------------*/
#topAbout {
    position: relative;
    padding: clamp(460px, (520vw/var(--pc)), 520px) 0;
}
#topAbout .copy {
    width: 90%;
    max-width: 760px;
    position: absolute;
    top: 100px;
    left: 20%;
}
#topAbout .copy svg {
    width: 100%;
    height: auto;
}
#topAbout .to {
    width: 100%;
    max-width: 420px;
    position: absolute;
    left: 0;
    bottom: 0;
}
#topAbout .to.bounce2.active {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
#topAbout .text {
    font-size: clamp(18px, (20vw/var(--pc)), 20px);
    position: absolute;
    top: clamp(480px, (520vw/var(--pc)), 520px);
    right: 20%;
    font-weight: 600;
    line-height: 2.4;
    z-index: 100;
}
#topAbout .text p {
    margin-bottom: 70px;
}
/*NEWS---------------------------*/
#topNews {
    padding-bottom: 250px;
    position: relative;
    z-index: 100;
    margin-top: -80px;
    margin-bottom: 80px;
    text-align: center;
}
#topNews::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: polygon(0 0, 100% 12%, 100% 88%, 0% 100%);
    clip-path: polygon(0 0, 100% 12%, 100% 88%, 0% 100%);
    z-index: 50;
}
#topNews::after {
    content: '';
    background: url("../img/mi.svg")no-repeat center center / cover;
    width: 244px;
    height: 412px;
    position: absolute;
    right: 5%;
    bottom: 10%;
    z-index: 100;
}
.news_wrap {
    position: relative;
    z-index: 500;
}
#topNews .flex {
    margin-bottom: 50px;
}
.newsBox {
    width: 27%;
    margin-right: 3%;
    text-align: justify;
}
.newsBox:nth-child(1) {
    width: 40%;
}
.newsBox:nth-child(3) {
    margin-right: 0;
}
.newsBox .thum {
    position: relative;
    line-height: 0;
    margin-bottom: 15px;
}
.newsBox .thum::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 25px 0px 0px;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
}
.newsBox .date {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
}
.newsBox .title {
    color: var(--green);
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 600;
}
.newsBox .text {
    font-size: 1.4rem;
}
/*サブメニュー---------------------------*/
#topSubmen {
    margin-bottom: clamp(80px, (100vw/var(--pc)), 100px);
}
#topSubmen .submnu {
    width: 47%;
    margin-right: 3%;
    text-align: center;
}
#topSubmen .submnu:nth-child(2) {
    margin-right: 0;
}
#topSubmen .thum {
    margin-bottom: 30px;
}
#topSubmen .text {
    font-size: 1.4rem;
    margin-bottom: 50px;
    text-align: justify;
}
#topSubmen .btn {
    margin: 0 auto;
}
#topSubmen h2.title {
    margin-bottom: 20px;
}
#topSubmen h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: #000;
}
/*SNS---------------------------*/
#topSns {
    position: relative;
    padding-top: clamp(120px, (150vw/var(--pc)), 150px);
    margin-bottom: clamp(250px, (350vw/var(--pc)), 350px);
}
#topSns::before {
    content: '';
    background: url("../img/fa.svg")no-repeat center center / cover;
    width: 443px;
    height: 429px;
    position: absolute;
    left: 5%;
    top: 0%;
    z-index: 10;
}
#topSns h2 {
    z-index: 30;
}
#topSns h2.title p {
    color: var(--blue);
}
#topSns .sns_cont {
    position: relative;
    z-index: 30;
}
#topSns .container {
    text-align: center;
}
#topSns .sns_cont {
    margin-bottom: 30px;
}
#topSns .btn {
    margin: 0 auto;
}
/*==============================================
ABOUT
===============================================*/
#about {
    position: relative;
}
.wrap#about {
    padding-top: 0;
}
.wrap h2.title {
    margin-bottom: 30px;
}
.sub-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    position: relative;
    z-index: 50;
    margin-bottom: 80px;
}
h3 {
    font-size: clamp(45px, (50vw/var(--pc)), 50px);
    color: var(--red);
    position: relative;
    margin: 0 auto;
    display: inline-block;
    padding: 0 0 0 0.7em;
    z-index: 10;
    overflow: hidden;
}
h3 span.active {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--sub);
    z-index: -1;
    -webkit-transform: translateY(-50%)translateX(-110%);
    transform: translateY(-50%)translateX(-110%);
    -webkit-animation: bar 0.5s 1s forwards;
    animation: bar 0.5s 1s forwards;
}
@-webkit-keyframes bar {
    0% {
        -webkit-transform: translateX(-110%)translateY(-50%);
        transform: translateX(-110%)translateY(-50%);
    }
    100% {
        -webkit-transform: translateX(0)translateY(-50%);
        transform: translateX(0)translateY(-50%);
    }
}
@keyframes bar {
    0% {
        -webkit-transform: translateX(-110%)translateY(-50%);
        transform: translateX(-110%)translateY(-50%);
    }
    100% {
        -webkit-transform: translateX(0)translateY(-50%);
        transform: translateX(0)translateY(-50%);
    }
}
.white_bg {
    padding-top: clamp(200px, (250vw/var(--pc)), 250px);
    background-color: var(--sub);
    position: relative;
    z-index: 0;
}
.wrap#about .white_bg {
    padding-bottom: clamp(270px, (350vw/var(--pc)), 350px);
    position: relative;
}
.wrap#about .white_bg::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 100%);
}
/*ごあいさつ---------------------------*/
#greeting {
    text-align: justify;
    margin-top: clamp(120px, (150vw/var(--pc)), 150px);
    z-index: 100;
}
.headingTitle {
    font-size: 2rem;
    color: var(--red);
    font-weight: 700;
    margin-bottom: clamp(50px, (80vw/var(--pc)), 80px);
}
.headingTitle::before {
    content: '';
    background: url("../img/headingTitle_red.svg")no-repeat center center / cover;
    display: inline-block;
    margin-right: 20px;
    width: 76px;
    height: 48px;
    vertical-align: middle;
}
#greeting .text {
    font-size: 1.6rem;
    line-height: 2.2;
}
#greeting .text span.text-block {
    margin: 0;
    display: inline-block;
}
#greeting .text span {
    text-align: right;
    display: block;
    margin-top: 1.5em;
}
.aboutImg {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    max-width: 600px;
    z-index: 50;
}
.white_bg #effect1 {
    position: relative;
    z-index: 60;
}
#overview {
    position: relative;
    z-index: 100;
    padding: 100px 0 0;
    text-align: justify;
}
#overview .item {
    color: var(--red);
    font-weight: 700;
    margin-bottom: 80px;
    text-align: right;
}
#overview .item .item_title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-align: left;
}
#overview .item .item_title span {
    font-size: 3.5rem;
    vertical-align: -0.2em;
    margin-right: 20px;
    font-weight: 700;
}
#overview .item .text {
    font-size: 1.5rem;
    color: #000;
    padding-left: 55px;
    font-weight: 500;
    text-align: justify;
}
#overview .item .btn {
    margin-top: 30px;
    margin-left: auto;
}
#operation {
    position: relative;
}
#operation::before {
    content: '';
    background: url("../img/fa.svg")no-repeat center center / cover;
    width: 359px;
    height: 347px;
    position: absolute;
    right: -30%;
    top: 0;
    z-index: -1;
}
#operation .text {
    margin-bottom: 35px;
}
#operation .text div:nth-child(2) {}
#operation .text div:nth-child(3) {
    text-indent: 5em;
}
/*==============================================
NEWS
===============================================*/
#news .container1000 {
    background-color: #fff;
    width: 90%;
    max-width: 1000px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding-bottom: clamp(120px, (150vw/var(--pc)), 150px);
    position: relative;
}
#news .container1000::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 100px 0;
    border-color: transparent var(--sub) transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
}
#news .newshead {
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
}
#news .newshead .sub-title {
    margin-bottom: 0;
}
#news table {
    font-size: 1.6rem;
    text-align: left;
}
#news table tr {
    border: none;
}
#news table th {
    font-size: 1.4rem;
    color: #4d4d4d;
    white-space: nowrap;
    border-bottom: 1px solid #959595;
    width: 1%;
    padding: 3rem 1em 2rem;
    border-right: 10px solid #fff;
}
#news table td {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.8;
    border-bottom: 1px solid var(--green);
}
#news table td a {
    display: block;
    width: 100%;
    position: relative;
    padding: 3rem 4rem 2rem 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#news table td a::after {
    content: '';
    background: url("../img/arrow03.svg")no-repeat center center / cover;
    width: 9px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#news .newshead.single {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
#news .newshead.single h2.title {
    font-size: clamp(18px, (20vw/var(--pc)), 20px);
    max-width: 200px;
    margin: 0 0 clamp(85px, (100vw/var(--pc)), 100px) 0;
}
#single {
    text-align: justify;
    font-size: 1.4rem;
}
#single .date {
    color: #4d4d4d;
    margin-bottom: 20px;
}
#single .title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 50px;
}
#single .contents {
    padding: 75px 0;
    border-top: 1px solid var(--green);
    border-bottom: 1px solid var(--green);
    margin-bottom: 10px;
}
#single .contents p {
    margin-bottom: 1.5em;
}
#single .contents p:nth-last-child(1) {
    margin-bottom: 0;
}
#single .contents img {
    max-width: 480px;
}
.pageView {
    font-size: 1.4rem;
    position: relative;
}
.pageView .review {
    position: absolute;
    left: 0;
}
.pageView .back {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.pageView .next {
    position: absolute;
    right: 0;
}
.pageView .review a::before {
    content: '';
    background: url("../img/arrow03.svg")no-repeat center center / cover;
    display: inline-block;
    width: 7px;
    height: 12px;
    font-size: 1.4rem;
    margin-right: 8px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}
.pageView .next a::after {
    content: '';
    background: url("../img/arrow03.svg")no-repeat center center / cover;
    display: inline-block;
    width: 7px;
    height: 12px;
    font-size: 1.4rem;
    margin-left: 8px;
}
.pageView .review a:hover,
.pageView .back a:hover,
.pageView .next a:hover {
    color: var(--green)
}
/*==============================================
EXHIBITORS
===============================================*/
#exhibitors h3 span.active {
    background-color: #fff;
}
#exhibitors .fade {
    margin-bottom: 30px;
}
#exhibitors .precautions {
    font-size: 1.6rem;
}
#exhibitors .precautions a {
    color: var(--red);
    text-decoration: underline;
}
#note {
    padding-top: 150px;
    margin-top: -150px;
}
#companyList {
    margin: clamp(120px, (150vw/var(--pc)), 150px) auto;
}
#companyList li {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 4%;
    text-align: left;
}
#companyList li:nth-child(4n) {
    margin-right: 0;
}
#companyList li a {
    display: block;
    background-color: #fff;
    color: var(--blue);
    position: relative;
    overflow: hidden;
}
#companyList li a .thum {
    display: block;
    line-height: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
    background-color: #000;
}
#companyList li a .thum img {
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
#companyList li a:hover .thum img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.5;
}
#companyList li a .title {
    font-size: 1.6rem;
    padding: 15px 15px 35px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    font-weight: 500;
    line-height: 1.5;
}
#companyList li a .title p {
    height: 2em;
}
#companyList li a .thum::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 25px 0px 0px;
    border-color: var(--sub) transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
}
#companyList li a .kids {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    max-width: 55px;
}
.comment {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: justify;
    margin-bottom: clamp(80px, (100vw/var(--pc)), 100px)
}
.comment:nth-last-child(1) {
    margin-bottom: 0;
}
.comment .title {
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 1em;
}
.comment .text p {
    margin-bottom: 0.5em;
}
.comment a {
    color: var(--red);
    text-decoration: underline;
}
/*==============================================
EXHIBITORS-single
===============================================*/
#exhibitors_single.wrap {
    overflow: inherit;
    background-color: #fff;
    padding-bottom: 0;
}
#exhibitors_single .intro {
    margin: 0 auto;
    text-align: justify;
    font-size: 1.6rem;
    padding-left: 15%;
    margin-bottom: clamp(120px, (150vw/var(--pc)), 150px);
}
#exhibitors_single .intro .flex {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
#exhibitors_single .ex-logo {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
}
#exhibitors_single .ex-name {
    font-size: clamp(40px, (45vw/var(--pc)), 45px);
    font-weight: 700;
    letter-spacing: 5px;
}
#exhibitors_single .ex-en {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 30px;
}
#exhibitors_single .companyText {
    margin-right: 7.5%;
    max-width: 480px;
}
#exhibitors_single .ex-industry {
    margin-bottom: 80px;
    text-align: left;
}
#exhibitors_single .ex-industry p {
    display: inline-block;
    margin-right: 0.5em;
}
#exhibitors_single .ex-industry p::before {
    content: '#';
    display: inline-block;
}
#exhibitors_single .intro .image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    min-width: 360px;
}
#exhibitors_single .intro .image::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0px 0px;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
}
#exhibitors_single .intro .text {
    margin-bottom: 50px;
}
#exhibitors_single .intro table {
    font-size: 1.3rem;
}
#exhibitors_single .intro table tr {
    border-top: 1px solid #aaaaaa;
}
#exhibitors_single .intro table tr:nth-last-child(1) {
    border-bottom: 1px solid #aaaaaa;
}
#exhibitors_single .intro table th {
    font-weight: normal;
    width: 1%;
    white-space: nowrap;
    padding: 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--sub);
}
#exhibitors_single .intro table td {
    padding: 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
}
#exhibitors_single .intro table td a {
    text-decoration: underline;
}
#schedule-info {
    text-align: justify;
    font-size: 1.6rem;
    background-color: var(--sub);
    padding: clamp(120px, (150vw/var(--pc)), 150px) 0 clamp(250px, (300vw/var(--pc)), 300px);
}
#schedule-info .container1000 {
    background-color: #fff;
    padding: 0 2.5% 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#schedule-info h2 {
    margin-left: 0;
}
#schedule-info .schedulehead {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#schedule-info .flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px;
}
#schedule-info .info {
    width: 40%;
}
#schedule-info .image {
    width: 50%;
    overflow: inherit;
}
#schedule-info .image .company_slider {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}
#schedule-info .visit-contents {
    margin-bottom: clamp(80px, (100vw/var(--pc)), 100px);
}
#schedule-info .visit-contents .title,
#schedule-info .event-contents .title {
    font-size: 1.3rem;
    color: #fff;
    background-color: var(--red);
    display: inline-block;
    padding: 0;
    padding: 0 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    border-radius: 100px;
    font-weight: 500;
    margin-bottom: 15px;
}
#schedule-info .event-contents .title {
    background-color: var(--blue);
}
#schedule-info .visit-contents .year,
#schedule-info .event-contents .year {
    font-size: 1.6rem;
    font-weight: 700;
}
#schedule-info .visit-contents .date,
#schedule-info .event-contents .date {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 30px;
    line-height: 1;
}
#schedule-info .visit-contents .text {
    margin-bottom: 30px;
}
#schedule-info .visit-contents table {
    margin-bottom: 50px;
    font-size: 1.4rem;
    letter-spacing: 0;
}
#schedule-info .visit-contents table a {
    text-decoration: underline;
}
#schedule-info .visit-contents table tr {
    border-bottom: 1px solid #aaa;
}
#schedule-info .visit-contents table tr:nth-child(1) {
    border-top: 1px solid #aaa;
}
#schedule-info .visit-contents table th {
    font-weight: normal;
    width: 1%;
    white-space: nowrap;
    padding: 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: top;
    background-color: #dedef0;
    color: var(--blue);
}
#schedule-info .visit-contents table td {
    padding: 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#schedule-info .event-contents .date {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 20px;
}
#schedule-info .event-contents .text {
    margin-bottom: 30px;
}
#schedule-info .deadline {
    font-weight: bold;
    color: red;
}
/*===============================================
SCHEDULE
===============================================*/
#schedule h3 {
    color: var(--blue);
}
#schedule h3 span.active {
    background-color: #fff;
}
#schedule p.text {
    font-size: 1.4rem;
    margin-top: clamp(50px, (80vw/var(--pc)), 80px);
    margin-bottom: clamp(120px, (150vw/var(--pc)), 150px);
}
#schedule p.text a {
    text-decoration: underline;
}
.scheduleDay {
    max-width: 1000px;
    margin: 0 auto clamp(120px, (150vw/var(--pc)), 150px);
}
.scheduleDay ul li {
    width: 24.25%;
    background-color: #fff;
    margin-right: 1%;
    border-radius: 0 50px 0 0;
    text-align: center;
    position: relative;
}
.scheduleDay ul li::before {
    content: 'Day1';
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
    background-color: var(--red);
    padding: 0em 1.5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
}
.scheduleDay ul li#day2::before {
    content: 'Day2';
    background-color: var(--blue);
}
.scheduleDay ul li#day3::before {
    content: 'Day3';
    background-color: var(--green);
}
.scheduleDay ul li#day4::before {
    content: 'Day4/イベント';
    background-color: var(--yellow);
    color: var(--blue)
}
.scheduleDay ul li:nth-last-child(1) {
    margin-right: 0
}
.scheduleDay ul li span.date {
    font-size: 3.8rem;
    font-weight: 700;
}
.scheduleDay ul li span.week {
    font-size: 2rem;
    font-weight: 500;
    margin-left: 5px;
}
.scheduleDay ul li a {
    display: block;
    border-radius: 0 50px 0 0;
    position: relative;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    padding: 10px 0 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.scheduleDay ul li#day1 a:hover {
    color: var(--red)
}
.scheduleDay ul li#day2 a:hover {
    color: var(--blue)
}
.scheduleDay ul li#day3 a:hover {
    color: var(--green)
}
.scheduleDay ul li#day4 a:hover {
    color: var(--yellow)
}
.scheduleDay ul li a::after {
    content: '';
    background: url("../img/arrow04.svg")no-repeat center center / cover;
    width: 8.5px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%)rotate(90deg);
    transform: translateY(-50%)rotate(90deg);
}
.schedule_wrap {
    padding: clamp(220px, (250vw/var(--pc)), 250px) 0 clamp(220px, (250vw/var(--pc)), 250px);
    position: relative;
}
.schedule_wrap .schedule_icon {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
    background-color: var(--red);
    padding: 0em 1.5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 10px;
}
.schedule_wrap .dateBox {
    position: relative;
    z-index: 20;
    text-align: center;
}
.schedule_wrap .date {
    margin-bottom: 60px;
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
}
.schedule_wrap .date span {
    font-size: 3.5rem;
    font-weight: 700;
    margin-left: 10px;
}
.schedule_wrap .image {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
#scheduleDay1,
#scheduleDay2,
#scheduleDay3,
#scheduleDay4 {
    margin-top: -80px;
}
#scheduleDay1 .schedule_wrap::before,
#scheduleDay3 .schedule_wrap::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 88%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 88%, 0% 100%);
}
#scheduleDay3 .schedule_wrap::before {
    -webkit-clip-path: polygon(0 0, 100% 12%, 100% 88%, 0% 100%);
    clip-path: polygon(0 0, 100% 12%, 100% 88%, 0% 100%);
}
#scheduleDay4 .schedule_wrap {
    padding-bottom: 0;
}
#scheduleDay2 .schedule_wrap .schedule_icon {
    background-color: var(--blue);
}
#scheduleDay3 .schedule_wrap .schedule_icon {
    background-color: var(--green);
}
#scheduleDay4 .schedule_wrap .schedule_icon {
    background-color: var(--yellow);
    color: var(--blue)
}
#scheduleDay1 .image,
#scheduleDay2 .image,
#scheduleDay3 .image,
#scheduleDay4 .image {
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}
#scheduleDay1 .image::before {
    content: '';
    background: url("../img/to2.svg")no-repeat center center / cover;
    width: 198px;
    height: 282px;
    position: absolute;
    left: 5%;
    top: 25px;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: -1;
}
#scheduleDay2 .image::before {
    content: '';
    background: url("../img/mi2.svg")no-repeat center center / cover;
    width: 165px;
    height: 266px;
    position: absolute;
    right: 10%;
    top: 25px;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: -1;
}
#scheduleDay3 .image::before {
    content: '';
    background: url("../img/fu2.svg")no-repeat center center / cover;
    width: 239px;
    height: 231px;
    position: absolute;
    left: 10%;
    top: 25px;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: -1;
}
#scheduleDay4 .image::before {
    content: '';
    background: url("../img/a2.svg")no-repeat center center / cover;
    width: 189px;
    height: 196px;
    position: absolute;
    right: 0%;
    bottom: 0%;
    z-index: -1;
    -webkit-transform: translate(90%, 10%);
    transform: translate(90%, 10%);
}
#scheduleDay4 .image {
    width: 75%;
    max-width: 540px;
}
.schedule_wrap .dateBox .place {
    font-size: 2.5rem;
    font-weight: 700;
    vertical-align: middle;
    display: inline-block;
}
.schedule_wrap .dateBox .place span {
    font-size: 1.3rem;
    vertical-align: 0.35em;
    background-color: #fff;
    padding: 0.25em 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 100px;
    margin-right: 10px;
    letter-spacing: 0;
    line-height: 0;
}
.schedule_wrap .dateBox .place p {
    font-weight: 400;
    font-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
}
#scheduleDay4 .flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 15px;
}
#scheduleDay4 .flex .date {
    margin-bottom: 0;
    margin-right: 30px;
}
#scheduleDay4 .time {
    margin-bottom: 40px;
    font-size: 1.6rem;
    font-weight: 700;
}
#scheduleDay4 .text {
    font-size: 1.4rem;
    font-weight: 500;
}
#scheduleDay4 .dateBox {
    display: inline-block;
    margin-bottom: 60px;
}
#scheduleDay4 .dateBox .free {
    max-width: 80px;
    position: absolute;
    right: 0;
    bottom: 0;
    line-height: 0;
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
}
.schedule_wrap .btn.blue {
    background-color: transparent;
    border: 1px solid var(--blue);
    position: relative;
    z-index: 100;
}
.schedule_wrap .btn.blue a {
    color: var(--blue);
}
.schedule_wrap .btn.blue a:hover {
    color: #fff;
    background-color: var(--blue);
}
.schedule_wrap .btn.blue a::after {
    background: url("../img/arrow04.svg")no-repeat center center / cover;
}
.schedule_wrap .btn.blue a:hover::after {
    background: url("../img/arrow02.svg")no-repeat center center / cover;
    z-index: 200;
}
/*===============================================
ACCESS
===============================================*/
.map-wrap {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto clamp(80px, (100vw/var(--pc)), 100px);
}
#map {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 0 auto;
}
#map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.exhibitors_list.container1000 {
    max-width: 1200px;
}
.exhibitors_list ul.flex {
    font-size: 1.6rem;
    font-weight: 700;
    vertical-align: middle;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5%;
}
.exhibitors_list ul li {
    margin-bottom: 25px;
    text-align: left;
}
.exhibitors_list ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.exhibitors_list ul li a span:nth-child(1) {
    width: 100%;
    max-width: 35px;
    line-height: 0;
}
.exhibitors_list ul li a span:nth-last-child(1) {
    width: 100%;
    max-width: 8px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    line-height: 0;
}
.exhibitors_list ul li a p {
    padding: 0 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.6;
}
.exhibitors_list ul li a:hover span:nth-child(1) {
    -webkit-transition: 0.75s ease-in-out;
    transition: 0.75s ease-in-out;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
.exhibitors_list ul li a:hover span:nth-last-child(1) {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}
/*==============================================
SPONSOR
===============================================*/
#sponsor .container1000 {
    background-color: #fff;
    padding: 0 5% clamp(80px, (100vw/var(--pc)), 100px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    min-height: 1000px;
}
#sponsor .container1000::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 100px 0;
    border-color: transparent var(--sub) transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
}
#sponsor .sponsorhead {
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
}
#sponsor h2 {
    color: var(--blue);
}
#sponsor .sub-title {
    margin-bottom: 0;
}
#sponsor .contaner600 {
    max-width: 600px;
    margin: 0 auto;
}
#sponsor .text {
    font-size: 1.4rem;
    text-align: left;
    margin: 0 auto clamp(80px, (100vw/var(--pc)), 100px);
}
#sponsor ul.mainSponsor {
    margin-bottom: clamp(80px, (100vw/var(--pc)), 100px);
}
#sponsor ul.mainSponsor li {
    width: 32%;
    height: 200px;
    margin-right: 2%;
    margin-bottom: 2%;
    background-color: #969696;
}
#sponsor ul.mainSponsor li:nth-child(3n) {
    margin-right: 0;
}
#sponsor ul.subSponsor li {
    width: 23.5%;
    height: 150px;
    margin-right: 2%;
    margin-bottom: 2%;
    background-color: #969696;
}
#sponsor ul.subSponsor li:nth-child(4n) {
    margin-right: 0;
}
.mainSponsor p {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1em;
}
/*==============================================
お問い合わせ
===============================================*/
#contact .container1000 {
    background-color: #fff;
    padding: 0 5% clamp(80px, (100vw/var(--pc)), 100px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
#contact .container1000::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 100px 0;
    border-color: transparent var(--sub) transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
}
#contact .contacthead {
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
}
#contact .sub-title {
    margin-bottom: 0;
}
#contact .contaner600 {
    text-align: left;
}
#contact .contaner600 > p {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--blue);
    font-weight: 700;
}
#contact .note {
    font-size: 1.4rem;
    margin-bottom: 50px;
}
#contact .note span {
    color: var(--red);
    text-align: right;
    margin-top: 25px;
    display: block;
}
.form {
    font-size: 1.6rem;
}
.form p {
    display: inline-block;
    width: 100%;
}
.form ul {
    margin-bottom: 50px;
}
.form .title {
    color: var(--blue);
    margin-bottom: 0.5em;
}
.form ul.tel li.column input {
    width: 10em;
}
.form .column input,
.form .column textarea {
    border: none;
    background-color: #ebebeb;
    width: 100%;
    padding: 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
}
.form ul.policy li.title {
    color: #000;
}
.form ul.policy li.title a {
    text-decoration: underline;
}
.form ul.policy .column label{
	font-size: 1.4rem;
}
/*チェックボックスカスタム*/
input[type=checkbox] {
    display: none;
}
.checkboxAnime {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 0 5px 30px;
    position: relative;
    width: auto;
}
/*wpの時隠す*/
/*.checkboxAnime::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkboxAnime::after {
    border-right: 6px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    content: '';
    display: block;
    height: 20px;
    left: 7px;
    margin-top: -16px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(.7, .7, 1);
    transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(.7, .7, 1);
    -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    width: 9px;
}
input[type=checkbox]:checked + .checkboxAnime::before {
    border-color: #666;
}
input[type=checkbox]:checked + .checkboxAnime::after {
    opacity: 1;
    -webkit-transform: rotate(45deg) scale3d(1, 1, 1);
    transform: rotate(45deg) scale3d(1, 1, 1);
}*/
/*  --- wp用チェックボックスアニメ --- */
.checkAnime .wpcf7-list-item-label {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.checkAnime .wpcf7-list-item-label::before {
    background: #fff;
    border: 1px solid #5F5F5F;
    border-radius: 3px;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkAnime .wpcf7-list-item-label::after {
    border-right: 6px solid #E6002D;
    border-bottom: 3px solid #E6002D;
    content: '';
    display: block;
    height: 20px;
    left: 7px;
    margin-top: -16px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(.7, .7, 1);
    transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(.7, .7, 1);
    -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    width: 9px;
}
input[type=checkbox]:checked + .wpcf7-list-item-label::before {
    border-color: #ccc;
}
input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    opacity: 1;
    -webkit-transform: rotate(45deg) scale3d(1, 1, 1);
    transform: rotate(45deg) scale3d(1, 1, 1);
}
.wpcf7-radio {
    padding: 5px 0;
}
.wpcf7-radio .wpcf7-list-item label {
    padding: 0 30px 0 0;
}
/*  --- wp用チェックボックスアニメ　ここまで --- */
.send {
    margin: 3rem auto 0;
    text-align: center;
}
input.send-btn {
    border: 1px solid var(--blue);
    line-height: 1;
    display: inline-block;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 100px;
    padding: 20px 0;
    width: 200px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--blue);
    background-color: #fff;
    position: relative;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
input.send-btn:hover {
    background-color: var(--blue);
    color: #fff;
}
.column label {
    margin-right: 1em;
}
.form .column input[type="radio"] {
    border: none;
    background-color: transparent;
    width: auto;
    padding: 0 2em 0 0;
}
input[type="radio"] {
    width: 16px;
    height: 16px;
    border-radius: 100px;
    position: relative;
    vertical-align: -0.17em;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="radio"]::before,
input[type="radio"]::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
}
input[type="radio"]::before {
    background-color: #fff;
    border: 1px solid #5F5F5F;
    height: 16px;
    width: 16px;
    left: 8px;
}
input[type="radio"]::after {
    background-color: var(--blue);
    opacity: 0;
    height: 10px;
    width: 10px;
    left: 12px;
    -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
}
input[type="radio"]:checked::after {
    opacity: 1;
}
input[type="radio"]:checked::before {
    border: 1px solid #ccc;
}
label.raduo-label {
    padding: 0;
}
/*==============================================
フッター
===============================================*/
footer {
    width: 100%;
    padding: 0 0 50px;
    background-color: #fff;
    position: relative;
}
.footer_item {
    width: 100%;
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-99%);
    transform: translateY(-99%);
    line-height: 0;
}
.footer_cont.flex {
    padding: 0 5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.footer_cont .logo {
    max-width: 240px;
    margin-right: 80px;
}
.footer_cont .footer_menu {
    font-size: 1.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer_cont .footer_menu ul.footer_menuItem {
    margin-right: 50px;
}
.footer_cont .footer_menu ul.footer_menuItem li:nth-last-child(1) {
    margin-bottom: 0;
    margin-top: auto;
}
.footer_cont .footer_menu ul.footer_menuItem li a::before {
    content: '';
    width: 15px;
    height: 1px;
    background-color: #000;
    display: inline-block;
    margin-right: 5px;
    vertical-align: 0.35em;
}
.footer_cont .footer_menu ul.footer_menuItem:nth-last-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer_cont .footer_menu ul.footer_menuSns {
    line-height: 0;
}
.footer_cont .footer_menu ul.footer_menuSns li {
    display: inline-block;
    margin-right: 1em;
    max-width: 25px;
    width: 100%;
}
.footer_cont .footer_menu ul.footer_menuSns li a::before {
    display: none;
}
.pagetop {
    position: absolute;
    right: 5%;
    top: 0;
    width: 10%;
    min-width: 70px;
    max-width: 100px;
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
.pagetop:hover {
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
}
.copyright {
    text-align: right;
    padding: 0 5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.2rem;
    margin-top: 15px;
}
/*==============================================
プライバシーポリシー
===============================================*/
#policy .container1000 {
    background-color: #fff;
    padding: 0 5% clamp(80px, (100vw/var(--pc)), 100px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    min-height: 1000px;
}
#policy .container1000::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 100px 0;
    border-color: transparent var(--sub) transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
}
#policy .sponsorhead {
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
}
#policy h2.title {
    font-size: 30px;
    white-space: nowrap;
    color: var(--blue)
}
#policy h3 {
    margin-bottom: 150px;
}
#policy .container1000 {
    font-size: 1.4rem;
    text-align: justify;
}
#policy .title {
    margin-bottom: 1em;
    font-size: 2rem;
    font-weight: bold;
}
#policy .text {
    margin-bottom: 50px;
}
#policy .text p {
    margin-bottom: 1.5em;
}
#policy .text p.note {
    margin-bottom: 0.5em;
}
/*==============================================
404
===============================================*/
.notfound-wrap {
    min-height: 800px;
    position: relative;
}
.notfound {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.notfound img {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin-bottom: 50px;
}
.notfound p {
    font-size: 1.6rem;
    margin-bottom: 80px;
    text-align: left;
}
.notfound .more {
    margin: 0 auto;
    display: inline-block;
}
.notfound a {
    background-color: #646464;
    color: #fff;
    padding: 1em 2em;
    font-size: 1.4rem;
    margin: 0 auto;
}
/*==============================================
画面の横幅が1024pxまで
===============================================*/
@media only screen and (max-width:1024px) {
    #companyList li {
        width: 32%;
    }
    #companyList li:nth-child(2n) {
        margin-right: 2%;
    }
    #companyList li:nth-child(3n) {
        margin-right: 0;
    }
    #companyList li:nth-child(4n) {
        margin-right: 2%;
    }
    #companyList li:nth-child(12n) {
        margin-right: 0;
    }
}
/*==============================================
画面の横幅が820pxまで
===============================================*/
@media only screen and (max-width:820px) {
    .sp-none {
        display: none;
    }
    .pc-none {
        display: block;
    }
    .btn {
        width: 200px;
        font-size: 1.3rem;
    }
    .btn a {
        padding: 20px 0;
    }
    .btn a::after {
        width: 8px;
        height: 14px;
    }
    h2.title {
        font-size: clamp(26px, (40vw/var(--sp)), 40px);
        max-width: 260px;
        margin-bottom: clamp(60px, (80vw/var(--sp)), 80px);
    }
    .container {
        max-width: 640px;
        padding: 0;
    }
    .container800 {
        max-width: 640px;
        padding: 0;
    }
    .container600 {
        max-width: 640px;
        padding: 0;
    }
    .flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cls-1 {
        fill: #fff;
    }
    .cls-2 {
        fill: #db0011;
    }
    .wrap {
        padding-top: clamp(150px, (200vw/var(--sp)), 200px);
        padding-bottom: clamp(80px, (200vw/var(--sp)), 200px);
    }
    input[type="submit"] {
        margin-left: 0;
    }
    /*==============================================
アニメーション
===============================================*/
    .scroll {
        max-width: 30px;
    }
    /*==============================================
ヘッダー
===============================================*/
    header h1 {
        max-width: 120px;
    }
    header.active i,
    header.individual i {
        height: 60px;
    }
    /*==============================================
index
===============================================*/
    .main-logo {
        width: 70%;
        max-width: 480px;
        top: 27.5%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .period {
        width: calc(80% - 30px);
        margin-left: 15px;
        max-width: 480px;
        font-size: 2.2rem;
        bottom: 5%;
        display: block;
    }
    .visit_date {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .date_cont {
        padding-bottom: 15px;
        line-height: 0;
    }
    .date_cont a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .date_cont a::after {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    .tag {
        max-width: 50px;
        margin-bottom: 0;
        margin-right: 15px;
        min-width: 50px;
    }
    .visit_date .tag::after {
        width: 60px;
        height: 28px;
        top: 0;
        left: 0;
        -webkit-transform: translate(50%, -90%);
        transform: translate(50%, -90%);
    }
    .event_date .tag::after {
        width: 68px;
        height: 26px;
        top: 0;
        left: 0;
        -webkit-transform: translate(50%, -90%);
        transform: translate(50%, -90%);
    }
    .period .days {
        font-size: clamp(26px, (40vw/var(--sp)), 40px);
        margin-bottom: 5px;
    }
    .period .days span.week {
        font-size: clamp(16px, (22vw/var(--sp)), 22px);
    }
    .period .days span.bar {
        width: 25px;
        margin: 0 5px;
    }
    .period .days.flex {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .period .days p.time {
        font-size: 1.2rem;
        margin-left: 15px;
    }
    .period .place {
        font-size: clamp(14px, (22vw/var(--sp)), 22px);
    }
    .period .free {
        -webkit-transform: translate(10%, -100%);
        transform: translate(10%, -100%);
        max-width: clamp(75px, (150vw/var(--sp)), 150px);
    }
    .slider {
        width: 100%;
        position: absolute !important;
        bottom: 0;
        z-index: 10;
    }
    .slider img {
        width: 250%;
    }
    /*About---------------------------*/
    #topAbout {
        padding: clamp(300px, (450vw/var(--sp)), 450px) 0 clamp(150px, (250vw/var(--sp)), 250px);
    }
    #topAbout .copy {
        width: 60%;
        max-width: 400px;
        top: 100px;
        left: 35%;
    }
    #topAbout .to {
        width: 30%;
        max-width: 240px;
        left: 0;
        bottom: inherit;
        top: 100px;
    }
    #topAbout .text {
        font-size: clamp(16px, (18vw/var(--sp)), 18px);
        top: 0;
        right: inherit;
        width: 100%;
        padding: 0 5%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        line-height: 2;
        position: relative;
        max-width: 640px;
        margin-left: auto;
        text-align: center;
    }
    #topAbout .text p {
        margin-bottom: 50px;
        text-align: justify;
    }
    /*NEWS---------------------------*/
    #topNews {
        padding-bottom: 100px;
        text-align: center;
    }
    #topNews::before {
        -webkit-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
        clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
    }
    #topNews::after {
        display: none;
    }
    #topNews .container {
        max-width: 420px;
    }
    #topNews .flex {
        margin-bottom: 35px;
        display: block;
    }
    .newsBox {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 25px;
    }
    .newsBox:nth-child(1) {
        width: 100%;
    }
    .newsBox:nth-child(3) {
        margin-right: 0;
    }
    .newsBox .thum {
        margin-bottom: 10px;
    }
    .newsBox .thum::before {
        border-width: 20px 20px 0px 0px;
    }
    .newsBox .date {
        font-size: 1.2rem;
    }
    .newsBox .title {
        font-size: 1.6rem;
    }
    /*サブメニュー---------------------------*/
    #topSubmen {
        margin-bottom: clamp(60px, (80vw/var(--sp)), 80px);
    }
    #topSubmen .container {
        max-width: 420px;
    }
    #topSubmen .flex {
        display: block;
    }
    #topSubmen .submnu {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 50px;
    }
    #topSubmen .thum {
        margin-bottom: 15px;
    }
    #topSubmen .text {
        margin-bottom: 35px;
    }
    /*SNS---------------------------*/
    #topSns {
        position: relative;
        padding-top: 0;
        margin-bottom: clamp(150px, (250vw/var(--sp)), 250px);
    }
    #topSns::before {
        display: none;
    }
    #topSns h2 {
        z-index: 30;
    }
    #topSns h2.title p {
        color: var(--blue);
    }
    #topSns .sns_cont {
        position: relative;
        z-index: 30;
    }
    /*==============================================
ABOUT
===============================================*/
    .wrap h2.title {
        margin-bottom: 20px;
    }
    .sub-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    h3 {
        font-size: clamp(22px, (35vw/var(--sp)), 35px);
        padding: 0 0 0 20px;
    }
    h3 span.active {
        height: 12px;
    }
    .white_bg {
        padding-top: clamp(150px, (200vw/var(--sp)), 200px);
    }
    .wrap#about .white_bg {
        padding-bottom: clamp(100px, (150vw/var(--sp)), 150px);
    }
    .wrap#about .white_bg::before {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 97%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 97%, 0% 100%);
    }
    /*ごあいさつ---------------------------*/
    #greeting {
        margin-top: clamp(80px, (100vw/var(--sp)), 100px);
    }
    .headingTitle {
        font-size: 1.8rem;
    }
    .headingTitle::before {
        margin-right: 15px;
        width: 50px;
        height: 31.5px;
    }
    #greeting .text {
        font-size: 1.4rem;
        line-height: 1.8;
    }
    .aboutImg {
        display: none;
    }
    #overview {
        position: relative;
        z-index: 100;
        padding: 100px 0 0;
        text-align: justify;
    }
    #overview .item {
        margin-bottom: 50px;
        text-align: center;
    }
    #overview .item .item_title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1;
    }
    #overview .item .item_title span {
        font-size: 2.2rem;
        vertical-align: 0em;
        margin-right: 10px;
    }
    #overview .item .text {
        font-size: 1.4rem;
        padding-left: 0;
    }
    #overview .item .btn {
        margin-top: 30px;
    }
    #operation::before {
        display: none;
    }
    #operation .text {
        margin-bottom: 1em;
    }
    #operation .text.flex {}
    /*==============================================
NEWS
===============================================*/
    #news.wrap {
        padding-top: clamp(200px, (250vw/var(--sp)), 250px);
    }
    #news .container1000 {
        padding-bottom: clamp(100px, (200vw/var(--sp)), 200px);
    }
    #news .container1000::before {
        border-width: 0 45px 45px 0;
    }
    #news table {
        font-size: 1.4rem;
    }
    #news table th {
        padding: 15px 0.25em 0;
        display: block;
        width: 100%;
        border: none;
    }
    #news table td {
        font-size: 1.4rem;
        line-height: 1.6;
        display: block;
        padding-bottom: 1em;
        width: 100%;
    }
    #news table td a {
        padding: 0 4rem 0 0;
    }
    #news .newshead.single h2.title {
        font-size: clamp(16px, (18vw/var(--sp)), 18px);
        max-width: 180px;
        margin: 0 0 clamp(0, (50vw/var(--sp)), 50px) 0;
    }
    #single .date {
        margin-bottom: 1em;
    }
    #single .title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    #single .contents {
        padding: 50px 0;
    }
    /*==============================================
EXHIBITORS
===============================================*/
    #exhibitors .precautions {
        font-size: 1.4rem;
        padding: 0 5%;
        text-align: justify;
    }
    #companyList {
        margin: clamp(80px, (100vw/var(--sp)), 100px) auto 50px;
    }
    #companyList li {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 4%;
        text-align: left;
    }
    #companyList li:nth-child(2n) {
        margin-right: 0;
    }
    #companyList li:nth-child(3n) {
        margin-right: 2%;
    }
    #companyList li:nth-child(4n) {
        margin-right: 0;
    }
    #companyList li:nth-child(6n) {
        margin-right: 0;
    }
    #companyList li a {
        display: block;
        background-color: #fff;
        color: var(--blue);
        position: relative;
        overflow: hidden;
    }
    #companyList li a .thum {
        background-color: transparent;
    }
    #companyList li a:hover .thum img {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    #companyList li a .title {
        font-size: 1.4rem;
        padding: 10px 10px 35px 10px;
        letter-spacing: 0;
    }
    #companyList li a .kids {
        max-width: 50px;
    }
    .comment {
        margin-bottom: 35px;
    }
    .comment .title {
        font-size: 1.6rem;
        margin-bottom: 0.5em;
    }
    .comment .text p {
        margin-bottom: 0.5em;
    }
    /*==============================================
EXHIBITORS-single
===============================================*/
    #exhibitors_single .intro {
        font-size: 1.4rem;
        padding-left: 5%;
        padding-right: 5%;
        margin-bottom: clamp(120px, (150vw/var(--sp)), 150px);
    }
    #exhibitors_single .intro .flex {
        display: block;
    }
    #exhibitors_single .ex-logo {
        max-width: 240px;
        margin-bottom: 20px;
    }
    #exhibitors_single .ex-name {
        font-size: clamp(22px, (28vw/var(--sp)), 28px);
        letter-spacing: 2px;
    }
    #exhibitors_single .ex-en {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    #exhibitors_single .companyText {
        margin-right: 0%;
        margin-bottom: 50px;
    }
    #exhibitors_single .ex-industry {
        margin-bottom: 50px;
        font-size: 1.2rem;
        text-align: left;
    }
    #exhibitors_single .intro .image {
        width: 100%;
        min-width: inherit;
    }
    #exhibitors_single .intro .image::before {
        border-width: 30px 30px 0px 0px;
    }
    #exhibitors_single .intro .text {
        margin-bottom: 50px;
    }
    #exhibitors_single .intro table {
        font-size: 1.2rem;
    }
    #schedule-info {
        text-align: justify;
        font-size: 1.4rem;
        padding: clamp(120px, (150vw/var(--sp)), 150px) 0 clamp(120px, (150vw/var(--sp)), 150px);
    }
    #schedule-info .container1000 {
        padding: 0 5% 50px;
    }
    #schedule-info .flex {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        display: block;
    }
    #schedule-info .info {
        width: 100%;
    }
    #schedule-info .image {
        width: 100%;
    }
    #schedule-info .image .company_slider {
        position: relative;
        top: 0;
    }
    #schedule-info .visit-contents {
        margin-bottom: clamp(60px, (80vw/var(--sp)), 80px);
    }
    #schedule-info .visit-contents .title,
    #schedule-info .event-contents .title {
        margin-bottom: 10px;
    }
    #schedule-info .visit-contents .date,
    #schedule-info .event-contents .date {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
    #schedule-info .event-contents {
        margin-bottom: 50px;
    }
    #schedule-info .visit-contents .text {
        margin-bottom: 20px;
    }
    #schedule-info .visit-contents table {
        margin-bottom: 30px;
        font-size: 1.3rem;
    }
    #schedule-info .visit-contents table tr {
        border-bottom: none;
    }
    #schedule-info .visit-contents table tr:nth-child(1) {
        border-top: none
    }
    #schedule-info .visit-contents table th {
        display: block;
        width: 100%;
        padding: 0.5em 1em;
    }
    #schedule-info .visit-contents table td {
        display: block;
        width: 100%;
        padding: 0.5em 1em 1em;
    }
    #schedule-info .event-contents .date {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
    #schedule-info .event-contents .text {
        margin-bottom: 20px;
    }
    #schedule-info .visit-contents .btn,
    #schedule-info .event-contents .btn {
        margin: 0 auto;
    }
    /*===============================================
SCHEDULE
===============================================*/
    #schedule p.text {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: clamp(80px, (100vw/var(--sp)), 100px);
    }
    .scheduleDay {
        max-width: 480px;
        padding: 0 5%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0 auto clamp(80px, (100vw/var(--sp)), 100px);
    }
    .scheduleDay ul li {
        width: 48.75%;
        margin-right: 2.5%;
        border-radius: 0 30px 0 0;
        margin-bottom: 25px;
    }
    .scheduleDay ul li::before {
        font-size: 1.2rem;
        left: 10%;
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
    }
    .scheduleDay ul li:nth-child(2) {
        margin-right: 0
    }
    .scheduleDay ul li:nth-last-child(1) {
        margin-right: 0
    }
    .scheduleDay ul li span.date {
        font-size: clamp(25px, (30vw/var(--sp)), 30px);
    }
    .scheduleDay ul li span.week {
        font-size: 1.6rem;
    }
    .scheduleDay ul li a {
        border-radius: 0 30px 0 0;
        padding: 10px 0 0 0;
    }
    .scheduleDay ul li a::after {
        width: 8.5px;
        height: 15px;
        right: 20px;
    }
    .schedule_wrap {
        padding: clamp(80px, (1000vw/var(--sp)), 100px) 0 clamp(100px, (150vw/var(--sp)), 150px);
    }
    .schedule_wrap .schedule_icon {
        font-size: 1.6rem;
    }
    .schedule_wrap .date {
        margin-bottom: 30px;
        font-size: clamp(35px, (45vw/var(--sp)), 45px);
    }
    .schedule_wrap .date span {
        font-size: clamp(22px, (28vw/var(--sp)), 28px);
    }
    .schedule_wrap .image {
        max-width: 640px;
    }
    #scheduleDay1,
    #scheduleDay2,
    #scheduleDay3,
    #scheduleDay4 {
        margin-top: -60px;
    }
    #scheduleDay1 .schedule_wrap::before,
    #scheduleDay3 .schedule_wrap::before {
        -webkit-clip-path: polygon(0 0, 100% 0%, 100% 92%, 0% 100%);
        clip-path: polygon(0 0, 100% 0%, 100% 92%, 0% 100%);
    }
    #scheduleDay3 .schedule_wrap::before {
        -webkit-clip-path: polygon(0 0, 100% 8%, 100% 92%, 0% 100%);
        clip-path: polygon(0 0, 100% 8%, 100% 92%, 0% 100%);
    }
    #scheduleDay1 .image::before {
        width: 99px;
        height: 141px;
        top: 15px;
    }
    #scheduleDay2 .image::before {
        width: 82.5px;
        height: 133px;
        top: 15px;
        right: 5%;
    }
    #scheduleDay3 .image::before {
        width: 119.5px;
        height: 115.5px;
        top: 15px;
        left: 5%;
    }
    #scheduleDay4 .image::before {
        width: 94.5px;
        height: 83px;
        position: absolute;
        right: 0%;
        bottom: 0;
        -webkit-transform: translate(35%, 90%);
        transform: translate(35%, 90%);
        z-index: -1;
    }
    .schedule_wrap .dateBox .place {
        font-size: clamp(16px, (22vw/var(--sp)), 22px);
    }
    .schedule_wrap .dateBox .place span {
        font-size: 1.2rem;
        vertical-align: 0.25em;
    }
    #scheduleDay4 .flex {
        margin-bottom: 15px;
        display: block;
    }
    #scheduleDay4 .flex .date {
        margin-bottom: 10px;
        margin-right: 0;
    }
    #scheduleDay4 .time {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    #scheduleDay4 .text {
        padding: 0 5%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    #scheduleDay4 .dateBox {
        display: inline-block;
        margin-bottom: 35px;
    }
    #scheduleDay4 .dateBox .free {
        max-width: 60px;
        position: absolute;
        right: 5%;
        bottom: inherit;
        top: 0;
        line-height: 0;
        -webkit-transform: translateY(25%);
        transform: translateY(25%);
    }
    /*===============================================
ACCESS
===============================================*/
    .map-wrap {
        margin: 0 auto clamp(50px, (80vw/var(--sp)), 80px);
    }
    .exhibitors_list ul li {
        margin-bottom: 15px;
    }
    @media only screen and (max-width:667px) {
        #map {
            padding-bottom: 75%;
        }
        .exhibitors_list ul.flex {
            font-size: 1.4rem;
            gap: 0%;
        }
        .exhibitors_list ul li {
            width: 100%;
            margin-bottom: 15px;
        }
        .exhibitors_list ul li a span:nth-child(1) {
            max-width: 25px;
        }
    }
    /*==============================================
SPONSOR
===============================================*/
    #sponsor .container1000 {
        min-height: 350px;
    }
    #sponsor .container1000::before {
        border-width: 0 45px 45px 0;
    }
    #sponsor .text {
        margin: 0 auto clamp(60px, (80vw/var(--sp)), 80px);
    }
    #sponsor ul.mainSponsor {
        margin-bottom: clamp(60px, (80vw/var(--sp)), 80px);
    }
    #sponsor ul.mainSponsor li {
        width: 48%;
        height: 120px;
    }
    #sponsor ul.mainSponsor li:nth-child(2n) {
        margin-right: 0;
    }
    #sponsor ul.mainSponsor li:nth-child(3n) {
        margin-right: 2%;
    }
    #sponsor ul.subSponsor li {
        width: 32%;
        height: 80px;
    }
    #sponsor ul.subSponsor li:nth-child(3n) {
        margin-right: 0;
    }
    #sponsor ul.subSponsor li:nth-child(4n) {
        margin-right: 2%;
    }
    .mainSponsor p {
        font-size: 1.6rem;
    }
    /*==============================================
お問い合わせ
===============================================*/
    #contact .container1000::before {
        border-width: 0 45px 45px 0;
    }
    #contact .sub-title {
        margin-bottom: 0;
    }
    #contact .contaner600 > p {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    #contact .note {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    #contact .note span {
        margin-top: 15px;
    }
    .form ul {
        margin-bottom: 25px;
    }
    .send {
        margin: 3rem auto 0;
        text-align: left;
    }
    input.send-btn {
        font-size: 1.2rem;
        padding: 20px 0;
        width: 180px;
    }
    input.send-btn:hover {
        background-color: var(--blue);
        color: #fff;
    }
    /*==============================================
プライバシーポリシー
===============================================*/
    #policy .container1000::before {
        border-width: 0 45px 45px 0;
    }
    #policy h2.title {
        font-size: 20px;
    }
    #policy h3 {
        margin-bottom: 150px;
    }
    #policy .sub-title {
        margin-bottom: 0;
    }
    #policy .container1000 {
        font-size: 1.3rem;
    }
    #policy .title {
        font-size: 1.6rem;
        margin-bottom: 0.5em;
        line-height: 1.6;
    }
    #policy .text {
        margin-bottom: 35px;
    }
    /*==============================================
404
===============================================*/
    .notfound-wrap {
        min-height: 500px;
        width: 90%;
        margin: 0 auto;
    }
    .notfound p {
        font-size: 1.4rem;
        line-height: 1.8;
    }
    .notfound img {
        width: 100%;
        max-width: 200px;
        margin-top: 0;
    }
    /*==============================================
フッター
===============================================*/
    footer {
        padding: 0 0 30px;
        white-space: nowrap;
    }
    .footer_cont.flex {
        padding: 0 5%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .footer_cont .logo {
        max-width: clamp(150px, (200vw/var(--sp)), 200px);
        margin-bottom: 25px;
        margin-top: 25px;
    }
    .footer_cont .footer_menu {
        font-size: 1.2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer_cont .footer_menu ul.footer_menuItem:nth-child(3) {
        margin-top: 0.75em;
    }
    .footer_cont .footer_menu ul.footer_menuItem {
        margin-right: 25px;
    }
    .footer_cont .footer_menu ul.footer_menuItem li {
        margin-bottom: 0.75em;
    }
    .footer_cont .footer_menu ul.footer_menuItem li a::before {
        width: 10px;
        height: 1px;
        vertical-align: 0.25em;
    }
    .footer_cont .footer_menu ul.footer_menuItem li:nth-last-child(1) {
        margin-top: auto;
        margin-bottom: 0;
    }
    .footer_cont .footer_menu ul.footer_menuSns li {
        max-width: 20px;
        margin-bottom: 0 !important;
        line-height: 0;
    }
    .pagetop {
        max-width: 75px;
    }
    .pagetop:hover {
        -webkit-transform: translateY(-30%);
        transform: translateY(-30%);
    }
    .copyright {
        font-size: 1.2rem;
        margin-top: 15px;
        letter-spacing: 0;
    }
}
@media only screen and (max-width:450px) {
    .footer_menuSns {
        margin-top: 15px;
    }
    .copyright {
        margin-top: -18px;
    }
}