/***************************************************
 * reset
 ***************************************************/
:root {
    --white: #fff;
    --font-color: #333;
    --tag-color: #575757;
    --cv-color: #005DAF;
    --button-color: #28284B;
    --backgroundgray-color: #D4D4DB;
    --backgroundblue-color: #CCDFEF;
    --backgroundcopy-color: #7A849D;
    --font-size-base: 1.6rem;
    --font-size-s: 1.4rem;
    --font-size-l: 2rem;
    --font-size-ll: 2.4rem;
    --font-size-lll: 3.2rem;
    --font-size-xl: 3.5rem;
    --font-size-xll: 8rem;
}
*,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a {
    color: var(--cv-color);
    cursor: revert;
    transition: 0.3s;
}
a:hover {
    opacity: .75;
}
ol,
ul {
    list-style: none;
}
img {
    width: 100%;
    height: auto;
}

/*- common -*/
html {
    font-size: 62.5%;
	scroll-behavior: smooth;
    scroll-padding-top: 60px;
}
body {
    -webkit-text-size-adjust: 100%;
    color: var(--font-color);
    font-size: var(--font-size-base);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    background-color:hsla(0,0%,100%,1);
    background-image:
    radial-gradient(at 2% 70%, hsla(64,100%,97%,1) 0px, transparent 50%),
    radial-gradient(at 51% 51%, hsla(8,0%,100%,1) 0px, transparent 50%),
    radial-gradient(at 43% 100%, hsla(206,63%,88%,1) 0px, transparent 50%),
    radial-gradient(at 86% 99%, hsla(67,92%,95%,1) 0px, transparent 50%),
    radial-gradient(at 100% 66%, hsla(168,62%,91%,1) 0px, transparent 50%),
    radial-gradient(at 0% 99%, hsla(206,63%,88%,1) 0px, transparent 50%),
    radial-gradient(at 3% 46%, hsla(189,88%,92%,1) 0px, transparent 50%),
    radial-gradient(at 0% 1%, hsla(96,21%,95%,1) 0px, transparent 50%),
    radial-gradient(at 100% 0%, hsla(232,91%,90%,1) 0px, transparent 50%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
img {
    vertical-align: bottom;
    max-inline-size: 100%;
    max-block-size: 100%;
}

/*- br -*/
.c-br--pc {
    display: block;
}
.c-br--sp {
    display: none;
}

/*- main -*/
.l-main {
    width: 100%;
}

/*- l-inner -*/
.l-inner {
    max-width: 920px;
    padding: 0 min(20px, 4vw);
    margin: 0 auto;
}
/*- title -*/
.c-titleH2 {
    font-size: var(--font-size-ll);
    text-align: center;
    height: min(80px, 10vw);
    padding-top: min(10px, 2vw);
    margin-bottom: min(70px, 10vw);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.c-titleH2--archive {
    background: url(../img/h2_archive.png) center no-repeat;
    background-size: contain;
}
.c-titleH2--link {
    background: url(../img/h2_link.png) center no-repeat;
    background-size: contain;
}
.c-titleH2--outline {
    background: url(../img/h2_outline.png) center no-repeat;
    background-size: contain;
}
.c-titleH2--timeTable {
    margin-bottom: min(30px, 6vw);
    background: url(../img/h2_timetable.png) center no-repeat;
    background-size: contain;
}
.l-inner--dx,
.l-inner--ai {
    padding-top: min(80px, 12vw);
    scroll-margin-top: min(70px, 14vw);
}
.c-titleH2--timeTable--dx {
    padding: 0 0 min(15px, 3vw);
    margin: 0 0 min(40px, 6vw);
    background: url(../img/h2_dxstrategy.png) center no-repeat;
    background-size: contain;
}
.c-titleH2--timeTable--ai {
    padding: 0 0 min(15px, 3vw);
    margin: 0 0 min(40px, 8vw);
    background: url(../img/h2_artificial.png) center no-repeat;
    background-size: contain;
}
.c-titleH2--afterevent {
    background: url(../img/h2_afterevent.png) center no-repeat;
    background-size: contain;
}
.c-titleH2--howto {
    background: url(../img/h2_howtojoin.png) center no-repeat;
    background-size: contain;
}

/*- link -*/
.c-link {
    color: var(--white);
    font-size: var(--font-size-l);
    font-weight: bold;
    text-decoration: none;
    width: fit-content;
    height: 65px;
    padding: 0 min(60px, 12vw);
    margin: 0 auto;
    border-radius: 35px;
    background: var(--cv-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.c-link--black {
    background: var(--button-color);
}
.c-link::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) rotate(45deg);
}
.c-link::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%) rotate(45deg);
}
.c-link--no {
    opacity: .6;
}
.c-link--no::before,
.c-link--no::after {
    display: none;
}

/*- sticky -*/
.l-wrapper {
    position: relative;
}
.p-sticky {
    width: min(120px, 20vw);
    height: auto;
    position: fixed;
    bottom: 0;
    right: -100vw;
    z-index: 10;
    opacity: 0;
    transition: 0.2s;
}
.p-sticky.js-sticky--active {
    position: fixed;
    bottom: 0;
    right: 0;
    opacity: 1;
}

/*- gradient -*/
.c-gradient--start,
.c-gradient--end {
    position: relative;
}
.c-gradient--start {
    padding-top: min(140px, 17vw) !important;
}
.c-gradient--end {
    padding-bottom: min(140px, 17vw) !important;
}
.c-gradient--start::before {
    content: "";
    height: min(100px, 12vw);
    width: 100%;
    background: var(--white)fff;
    background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.c-gradient--end::after {
    content: "";
    height: min(100px, 12vw);
    width: 100%;
    background: var(--white)fff;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

/***************************************************
 * header
 ***************************************************/
.l-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .5);
}
.l-header__inner {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-header__logo {
    padding: 0 min(20px, 4vw);
    display: flex;
    flex: 1;
}
.p-header__logoContents {
    display: flex;
}
.c-header__logoLink {
    display: flex;
    align-items: center;
}
.c-header__logoImg--mri {
    max-height: 60px;
    width: auto;
}
.c-header__logoImg--dxday {
    max-height: 28px;
    width: auto;
}
.p-header__navList {
    display: flex;
    gap: min(20px, 4vw);
}
.p-header__navLink {
    color: var(--font-color);
    text-decoration: none;
    height: 60px;
    display: flex;
    align-items: center;
}
.p-header__navLink--app {
    color: var(--white);
    padding: 0 70px 0 50px;
    background: var(--cv-color);
    clip-path: polygon(30px 0%, 100% 0%, 100% 100%, 0% 100%);
}
.p-header__navLink--no {
    opacity: .6;
}
.p-header__navLink--app::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--white);
    border-right: 1px solid var(--white);
    display: inline-block;
    position: absolute;
    right: 50px;
    transform: rotate(45deg);
}
.p-header__navLink--app::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--white);
    border-right: 1px solid var(--white);
    display: inline-block;
    position: absolute;
    right: 40px;
    transform: rotate(45deg);
}
.p-header__navLink--no::before,
.p-header__navLink--no::after {
    display: none;
}
.p-header__navButton--toggle {
    display: none;
}
.p-header__spLink {
    display: none;
}

/***************************************************
 * headertimeTable
 ***************************************************/
.p-timeTableMenu--title {
    padding: min(35px, 7vw) 0 0;
    background: rgba(204, 223, 239, .8);
}
.p-timeTableMenu {
    padding: min(15px, 3vw) 0;
    background: rgba(204, 223, 239, .8);
    position: sticky;
    top: 0; /* JSで上書きされる */
    z-index: 5;
    transition: transform 0.3s ease;
}

.p-timeTableMenu.sticky-exit {
    transform: translateY(-100%);
}
.p-timeTableMenu__list {
    display: flex;
    justify-content: space-between;
    gap: min(20px, 4vw);
}
.p-timeTableMenu__listContents {
    width: 100%;
}
.p-timeTableMenu__listLink {
    color: #fff;
    font-size: var(--font-size-ll);
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    line-height: 1;
    padding: min(10px, 2vw) min(40px, 8vw) min(10px, 2vw) min(20px, 4vw);
    border-radius: max(50%, 9999px);
    display: block;
    position: relative;
}
.p-timeTableMenu__listLink::after {
    content: "";
    color: #fff;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: min(20px, 4vw);
    transform: translateY(-70%) rotate(135deg);
}
.p-timeTableMenu__listContents--aug .p-timeTableMenu__listLink {
    border: 2px solid #1E9D55;
    background: url(../img/timetable_dxbtn.png);
    background-size: cover;
}
.p-timeTableMenu__listContents--sep .p-timeTableMenu__listLink {
    border: 2px solid #6330AE;
    background: url(../img/timetable_aibtn.png);
    background-size: cover;
}
.p-timeTableMenu__listText {
    font-size: var(--font-size-l);
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.p-timeTableMenu__listContents--aug .p-timeTableMenu__listText {
    color: #1E9D55;
}
.p-timeTableMenu__listContents--sep .p-timeTableMenu__listText {
    color: #6330AE;
}

/***************************************************
 * mv
 ***************************************************/
.l-mv {
    width: 100%;
    padding: min(160px, 20vw) 0 min(100px, 12vw);
    background-image: url(../img/mv_wave.png), url(../img/mv_bg.png);
    background-position:  center -180px, center;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, cover;
    position: relative;
    overflow: hidden;
}
.l-mv .l-inner {
    max-width: 920px;
    position: relative;
    z-index: 1;
}
.l-mv__contents {
    padding-top: min(30px, 6vw);
}
.l-mv__title,
.l-mv__contents {
    text-align: center;
}
.l-mv__contents .c-link {
    text-shadow: 0px 2px 2px rgba(0, 0, 0, .5);
    border: 4px solid var(--white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
}
.l-mv__contents .c-link::before,
.l-mv__contents .c-link::after {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .5));
}
.c-mv__title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.c-mv__text {
    font-size: var(--font-size-lll);
    font-weight: 600;
    margin: min(30px, 6vw) 0 min(10px, 2vw);
}
.c-mv__text span {
    font-size: 60%;
}
.c-mv__text--bottom {
    font-size: var(--font-size-l);
    font-weight: 600;
    max-width: 55vw;
    margin: 0 auto min(30px, 6vw);
}
.l-mv__keynote {
    position: absolute;
    bottom: min(100px, 20vw);
    right: 0;
    z-index: 1;
}
.l-mv__keynoteImg {
    min-width: 150px;
    max-width: 350px;
    width: 22vw;
    height: auto;
}

/***************************************************
 * outline
 ***************************************************/
.l-outline {
    width: 100%;
    padding: min(60px, 7vw) 0;
    background: var(--white);
}
.l-outline__text {
    line-height: 2;
    margin-bottom: min(30px, 6vw);
}
.l-outline__text:nth-last-of-type(1) {
    margin-bottom: 0;
}

/***************************************************
 * timetable
 ***************************************************/
.l-timeTable {
    width: 100%;
    position: relative;
}
.l-timeTable--ai {
    background: rgba(204, 170, 255, 0.25);
}
.p-timeTable__title {
    color: var(--cv-color);
    font-size: var(--font-size-ll);
    font-weight: bold;
    padding: min(10px, 2vw) min(30px, 6vw);
}
.p-timeTable__title--month {
    font-size: var(--font-size-ll);
    font-weight: bold;
    padding: min(10px, 2vw) 0 min(5px, 1vw);
    margin: 0 min(30px, 6vw);
    position: relative;
}
.p-timeTable__title--month::after {
    content: "";
    height: 5px;
    width: 100%;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
}
.p-timeTable__title--aug::after {
    background: transparent linear-gradient(270deg, #1E9D55 0%, #78C499 100%) 0% 0% no-repeat padding-box;
}
.p-timeTable__title--sep::after {
    background: transparent linear-gradient(270deg, #6330AE 0%, #A183CE 100%) 0% 0% no-repeat padding-box;
}
.p-timeTable {
    padding-bottom: min(60px, 12vw);
    display: flex;
    flex-direction: column;
    gap: min(50px, 10vw);
}
.p-timeTable--aug .p-timeTable__title {
    color: #1E9D55;
}
.p-timeTable--sep .p-timeTable__title {
    color: #6330AE;
}
.p-timeTable__info {
    padding: min(30px, 6vw);
    background: var(--white);
    box-shadow: 0 0 8px var(--backgroundblue-color);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: min(20px, 4vw);
}
.p-timeTable__subTitle {
    font-size: var(--font-size-ll);
    word-break: break-all;
}
.p-timeTable__detailList {
    display: flex;
    gap: min(20px, 4vw);
}
.p-timeTable__detailContents {
    display: flex;
    gap: min(20px, 4vw);
}
.p-timeTable__img {
    width: min(130px, 26vw);
    height: auto;
}
.p-timeTable__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: min(5px, 1vw);
}
.c-timeTable__position {
    font-size: var(--font-size-s);
    word-break: break-all;
}
.c-timeTable__position span {
    display: block;
    padding-left: min(14px, 28vw);
}
.c-timeTable__name {
    font-size: var(--font-size-ll);
    font-weight: 600;
}
.c-timeTable__nameHonorific {
    font-size: 70%;
    padding-left: min(10px, 2vw);
    display: inline-block;
}
.c-timeTable__biographyTitle {
    font-size: var(--font-size-base);
}
.p-timeTable__biography + .p-timeTable__detailList {
    padding-top: min(20px, 4vw);
}

/*- tag -*/
.p-tag {
    color: var(--tag-color);
    font-size: var(--font-size-s);
    display: flex;
    gap: min(10px, 2vw);
    flex-wrap: wrap;
}
.c-tag__contents {
    padding: min(2px, .4vw) min(7px, 1.4vw);
    border: 1px solid var(--tag-color);
    border-radius: 4px;
}
.c-tag__span {
    display: flex;
    gap: min(1px, .2vw);
}
.c-tag__span::before {
    content: "#";
}

/*- PDF -*/
.l-timeTable--pdf {
    margin-top: min(60px, 12vw);
}
.p-timeTable__link {
    margin-top: min(40px, 8vw);
}
.p-timeTable__linkText {
    text-align: center;
    padding-bottom: min(60px, 7vw);
}
a + .p-timeTable__linkText {
    padding-top: min(40px, 8vw);
}

/***************************************************
 * howto
 ***************************************************/
.l-howto {
    padding: min(60px, 7vw) 0 min(100px, 12vw);
}
.l-inner--howto {
    padding: min(60px, 12vw) min(30px, 6vw) min(60px, 12vw);
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0px 0px 8px var(--backgroundblue-color);
}
.p-howto__ex {
    margin: min(40px, 8vw) 0;
    display: grid;
    grid-template-columns: min(160px, 32vw) 1fr;
    align-items: center;
    gap: min(60px, 4vw) min(50px, 4vw);
}
.p-howto__exTitle {
    font-size: var(--font-size-l);
    font-weight: 600;
    text-align: center;
    padding: min(20px, 4vw) 0;
    border-radius: 20px;
    background: var(--backgroundblue-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.p-howto__exTitleNote {
    font-size: 80%;
    display: block;
}
.p-howto__exContents strong {
    display: block;
}
.p-howto__exContents p + strong,
.p-howto__exContents em + strong {
    padding-top: min(10px, 2vw);
}
.p-howto__exList {
    display: flex;
    flex-direction: column;
    gap: min(20px, 4vw);
    margin-top: min(20px, 4vw);
}
.p-howto__exText {
    padding-left: min(20px, 4vw);
    position: relative;
}
.p-howto__exText::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}
.p-howto__exEm {
    font-size: var(--font-size-l);
    font-weight: 600;
    font-style: normal;
    display: block;
}
.p-howto__exEm + p {
    padding-top: min(10px, 2vw);
}
.p-howto__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    gap: min(40px, 8vw);
}
.p-howto__listContents {
    padding: min(20px, 4vw);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, .2);
    position: relative;
}
.p-howto__exLink {
    display: flex;
    align-items: center;
}
.p-howto__exLink::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 5px;
    background: url(../img/icon_blank.png) center bottom no-repeat;
    background-size: contain;
    display: inline-block;
}
.c-howto__listTitle {
    font-size: var(--font-size-l);
    text-align: center;
    margin-bottom: min(5px, 1vw);
}
.c-howto__listIcon {
    text-align: center;
    margin-bottom: min(25px, 5vw);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: min(10px, 2vw);
}
.c-howto__listIcon p {
    font-size: var(--font-size-xll);
    line-height: 1;
}
.c-howto__listIcon img {
    width: auto;
    height: min(60px, 12vw);
}
.p-howto__link--timetable {
    padding-bottom: min(80px, 16vw);
}
.p-howto__linkText {
    font-size: 85%;
    text-align: center;
    padding-top: min(20px, 4vw);
}

/***************************************************
 * dxdaylink
 ***************************************************/
.l-dxdaylink {
    text-align: center;
    background: #fff;
    padding: min(20px, 4vw) 0;
}
.c-dxdaylink__text {
    font-size: var(--font-size-l);
    font-weight: bold;
    margin-bottom: min(20px, 4vw);
}

/***************************************************
 * archive
 ***************************************************/
.l-contents--03 {
    padding-top: min(100px, 12vw);
    background: rgba(204, 223, 239, .5);
}
.l-archive {
    padding: 0 0 min(100px, 12vw);
    position: relative;
    z-index: 1;
}
.p-archive__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: min(40px, 8vw);
}
.p-archive__listContents {
    display: flex;
}
.p-archive__listContents__link {
    color: var(--font-color);
    text-decoration: none;
    padding: min(30px, 6vw);
    border-radius: 24px;
    box-shadow: 0px 0px 8px var(--backgroundblue-color);
    display: inline-block;
    background: var(--white);
}
.p-archive__listImg {
    border-radius: 24px;
}
.p-archive__listText {
    line-height: 2;
    margin-top: min(20px, 4vw);
}
.p-archive__listText::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 5px;
    background: url(../img/icon_blank.png) center bottom no-repeat;
    background-size: contain;
    display: inline-block;
}

/***************************************************
 * contact
 ***************************************************/
.l-contact {
    color: var(--white);
    padding: min(50px, 10vw) 0;
    background: rgb(86 84 118 / 50%);
    position: relative;
}
.l-contact::before {
    content: "";
    width: 100%;
    height: 496px;
    background: url(../img/background_white.png) no-repeat center;
    background-size: 2344px;
    display: block;
    position: absolute;
    top: -410px;
    left: 0;
}
.l-contact__contents {
    display: grid;
    grid-template-columns: min(270px, 54vw) 1fr;
    align-items: center;
    justify-content: center;
}
.l-contact__title {
    font-size: var(--font-size-ll);
    height: 100%;
    border-right: 4px solid var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.l-contact__text {
    line-height: 2;
    margin-left: min(70px, 14vw);
    display: flex;
    justify-content: space-between;
}

/***************************************************
 * copy
 ***************************************************/
.l-copy {
    color: var(--white);
    text-align: center;
    padding: min(25px, 5vw) 0;
    background: var(--backgroundcopy-color);
}

/***************************************************
 * SP
 ***************************************************/
 @media screen and (max-width:1000px) {
    html {
        scroll-padding-top: 100px;
    }

    /*- header -*/
    .p-header__nav {
        width: 100%;
        height: 100vh;
        padding-top: min(60px, 12vw);
        background: rgba(0, 0, 0, .8);
        position: fixed;
        z-index: 100;
        top: 0;
        right: -100vw;
        transition: all .3s linear;
    }
    .js-isOpen .p-header__nav {
        right: 0;
        transition: all .3s linear;
    }
    .p-header__navList {
        display: block;
    }
    .p-header__navLink {
        color: var(--white);
        padding: 0 min(50px, 10vw);
        background: none;
        clip-path: none;
    }
    .p-header__navLink--app::before,
    .p-header__navLink--app::after {
        content: none;
    }
    .p-header__navButton--toggle {
        width: 35px;
        height: 35px;
        margin-right: min(20px, 4vw);
        display: block;
        position: relative;
        z-index: 200;
        cursor: pointer;
    }
    .p-header__navButton--toggle span {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: var(--font-color);
        display: inline-block;
        position: absolute;
        right: 0;
        transition: all .3s linear;
    }
    .js-isOpen .p-header__navButton--toggle span {
        background: var(--white);
    }
    .p-header__navButton--toggle span:nth-of-type(1) {
        top: 9px;	
    }
    .p-header__navButton--toggle span:nth-of-type(2) {
        top: 17px;
    }
    .p-header__navButton--toggle span:nth-of-type(3) {
        top: 25px;
    }
    .js-isOpen  .p-header__navButton--toggle span:nth-of-type(1) {
        top: 11px;
        transform: translateY(6px) rotate(-135deg);
        width: 100%;
    }
    .js-isOpen .p-header__navButton--toggle span:nth-of-type(2) {
        opacity: 0;
    }
    .js-isOpen .p-header__navButton--toggle span:nth-of-type(3){
        top: 23px;
        transform: translateY(-6px) rotate(135deg);
        width: 100%;
    }
    .p-header__spLink {
        color: var(--white);
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        padding: 10px;
        background: var(--cv-color);
        display: block;
    }

}
@media screen and (max-width:767px) {
    :root {
        --font-size-base: 1.3rem;
        --font-size-s: 1.2rem;
        --font-size-l: 1.5rem;
        --font-size-ll: 2rem;
        --font-size-lll: 2.2rem;
        --font-size-xl: 2.4rem;
        --font-size-xll: 5rem;
    }

    /*- br -*/
    .c-br--pc {
        display: none;
    }
    .c-br--sp {
        display: block;
    }

    /*- common -*/
    .c-link {
        text-align: center;
        width: 100%;
        padding: 0 40px;
    }
    .c-link::before {
        right: 20px;
    }
    .c-link::after {
        right: 30px;
    }

    /*- mv -*/
    .l-mv {
        background-position: center -85px, center;
        background-size: 300%, cover;
    }
    .c-mv__titleText {
        width: 90%;
    }
    .c-mv__text--bottom {
        max-width: 100%;
    }

    /*- timeTable -*/
    .p-timeTable__detailList {
        flex-wrap: wrap;
    }
    .p-timeTableMenu__listText {
        font-size: var(--font-size-m);
        font-weight: 600;
    }
    .p-timeTableMenu__listLink {
        font-size: var(--font-size-l);
    }
    .p-timeTableMenu__listLink::after {
        width: 10px;
        height: 10px;
    }

    /*- howto -*/
    .p-howto__list {
        display: flex;
        flex-direction: column;
    }
    .c-howto__listIcon {
        margin-bottom: min(10px, 2vw);
    }
    .c-howto__listIcon p {
        font-weight: 600;
        position: absolute;
        top: -25px;
        right: 10px;
    }

    /*- archive -*/
    .l-afterevent::before {
        background-size: 1500px;
        top: 0;
    }
    .p-archive__list {
        display: flex;
        flex-direction: column;
    }

    /*- contact -*/
    .l-contact::before {
        background-size: 1500px;
        top: -310px;
    }
    .l-contact__contents {
        display: block;
    }
    .l-contact__title {
        padding-bottom: min(10px, 2vw);
        border-right: none;
        border-bottom: 4px solid var(--white);
        flex-direction: unset;
        justify-content: flex-start;
        gap: min(20px, 4vw);
    }
    .l-contact__text {
        margin-top: min(20px, 4vw);
        margin-left: 0;
        flex-direction: column;
        gap: min(20px, 4vw);
    }

}