@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* ===========================================================

	Title: global.css
	Created: 2022-12-27

=========================================================== */
/*

	body
	header
	global-menu__navigation
	aside
	topicpath
	contents-style
	btPageTop
	footer


=========================================================== */
/* ===========================================================

font-family: 'Lato', sans-serif;
font-family: 'Noto Sans JP', sans-serif;

Lato
Regular 400
Bold 700
Black 900

Noto Sans Japanese
Regular 400
Medium 500
Bold 700

    @media (min-width: 768px){
    }
    @media (min-width: 1200px){
    }

=========================================================== */
/* ===========================================================

	body

=========================================================== */
body {
    font-family: 'Noto Sans JP', 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    font-weight: 400;
    color: #000;
    text-align: center;
    font-size: 15px;
    font-size: 1.5rem;
    height: 100%;
    overflow: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt"1;
}

@media all and (-ms-high-contrast:none) {
    body {
        font-family: "メイリオ", Meiryo, "游ゴシック", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    }
}

html * {
    max-height: 999999px;
}

::selection {
    background: #1B58A7;
    color: #ffffff;
}

/* for Firefox */
::-moz-selection {
    background: #1B58A7;
    color: #ffffff;
}

/* ===========================================================

	header

=========================================================== */
.global-header {}

/* global-header__logo
----------------------------------------------------------- */
.global-header__logo {
    position: fixed;
    z-index: 100;
    top: 0;
    padding: 16px;
}
.global-header__logo-color {
    transition: all 0.1s ease-out;
}

/*.global-header__logo-color {
    fill: #000;
}
body.js-hamburger--open .global-header__logo-color {
    fill: #fff;
}*/
.global-header__logo-color,
body.js-hamburger--open .global-header__logo-color,
body.js-top-header.js-hamburger--open .global-header__logo-color {
    fill: #fff;
}

.color-switched .global-header__logo-color {
    fill: #000;
}

/* ===========================================================

	hamburger-menu

=========================================================== */
.hamburger-menu {
    top: 0;
    right: 0;
    position: fixed;
    z-index: 99;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .hamburger-menu {}
}

.js-hamburger--open .hamburger-menu {
    width: 100vw;
    min-height: 100vh; /* Fallback */
    min-height: calc(var(--vh, 1vh) * 100);
}

.hamburger-menu__button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 6px;
    z-index: 100;
    transition: all 0.25s;
}
.js-top-header .hamburger-menu__button {}

.hamburger-menu__button {
    width: 100px;
    height: 100px;
}
.hamburger-menu__bg {
    position: fixed;
    top: -64px;
    left: 0;
    content: "";
    width: 100%;
    height: 0;
    display: flex;
    z-index: 98;
    transition: height 0s linear 1s;
}
.hamburger-menu__bg svg {
    width: 100%;
}
body:not(.js-hamburger--open) .hamburger-menu__bg {
    animation: menu--close 0.75s cubic-bezier(.77, 0, .175, 1) 0s 1 normal both;
}
body.js-hamburger--open .hamburger-menu__bg {
    animation: menu--open 0.75s cubic-bezier(.77, 0, .175, 1) 0s 1 normal both;
}
/*.hamburger-menu::after {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 0;
    background-color: #000;
    background-color: #1B58A7;
    display: flex;
    z-index: 98;
    transition: height 0s linear 1s;
}
body:not(.js-hamburger--open) .hamburger-menu::after {
    animation: menu--close 0.75s cubic-bezier(.77, 0, .175, 1) 0s 1 normal both;
}*/
@keyframes menu--close {
    0% {
        top: -64px;
        height: 150%;
    }
    to {
        top: 100%;
        height: 0;
    }
}
/*body.js-hamburger--open .hamburger-menu::after {
    animation: menu--open 0.75s cubic-bezier(.77, 0, .175, 1) 0s 1 normal both;
}*/
@keyframes menu--open {
    0% {
        top: -64px;
        height: 0;
    }
    to {
        height: 150%;
        top: -64px;
    }
}

/* ===========================================================

	hamburger-menu__navigation

=========================================================== */
.hamburger-menu__navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    min-height: 100vh; /* Fallback */
    min-height: calc(var(--vh, 1vh) * 100);
    opacity: 0;
    transition: all 0.4s linear;
    visibility: hidden;
    overflow-y: scroll
}

.js-hamburger--open .hamburger-menu__navigation {
    opacity: 1;
    transition: all 0.4s linear 0.4s;
    z-index: 99;
    visibility: visible;
}

/* hamburger-menu__navigation
----------------------------------------------------------- */
.hamburger-menu__navigation .gn {
    width: 100%;
    height: calc(var(--vh, 1vh) * 100 - 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.hamburger-menu__navigation ul a:link,
.hamburger-menu__navigation ul a:visited {
    color: #fff;
}

.hamburger-menu__navigation .gn li {
    position: relative;
    display: flex;
    width: 100%;
}

.hamburger-menu__navigation .global-menu__navigation__primary {
    font-size: 1.6rem;
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2.0rem;
    letter-spacing: 0.05em;
    padding: 32px;
}

@media (min-width: 768px) {
    .hamburger-menu__navigation .global-menu__navigation__primary {
        font-size: 3.2rem;
    }
}

.hamburger-menu__navigation .global-menu__navigation__primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1B58A7;
    background-color: #5BD4F6;
    color: #1B58A7;
}

.hamburger-menu__navigation .global-menu__navigation__secondary {
    display: none;
}

.hamburger-menu__navigation .global-menu__navigation__secondary {
    background-color: #222;
    display: none !important;
}

.hamburger-menu__navigation .global-menu__navigation__secondary a {
    padding: 16px;
    display: block;
}

/* hamburger
----------------------------------------------------------- */
.hamburger {
    /*position: fixed;
	top: 10px;
	left: 10px;*/
    z-index: 99;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:focus {
    outline: none;
}

.hamburger:hover {
    opacity: 0.8;
}

.hamburger-box {
    width: 48px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 48px;
    height: 2px;
    background-color: rgba(255, 255, 255, 1.00);
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.15s;
    transition-delay: 0.15s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
    background-color: rgba(255, 255, 255, 1.00);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.32s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
    background-color: rgba(255, 255, 255, 1.00);
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
    background-color: rgba(255, 255, 255, 1.00);
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.color-switched .hamburger-inner, .color-switched .hamburger-inner::before, .color-switched .hamburger-inner::after {
    background-color: rgb(0, 0, 0);
}

/* ===========================================================

	topic path

=========================================================== */
.topic-path {
    background-color: #222222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    padding: 16px 16px;
}

.topic-path ol {
    width: 1200px;
    font-size: 1.3rem;
    list-style: none;
    text-align: left;
    line-height: 1.6;
    margin-top: -2px;
}

.topic-path ol li {
    display: inline-block;
}

.topic-path ol li::before {
    content: "/";
    padding: 0 12px;
    color: #ccc !important;
}

.topic-path ol li:first-child::before {
    display: none;
}

.topic-path ol li:first-child a {
    background: url(/assets/img/global/icon__home.png) 50% 50% no-repeat;
    background-size: 10px 12px;
    width: 10px;
    height: 12px;
    /*　Scott Kellum Method */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.topic-path ol a:link, .topic-path ol a:visited {
    text-decoration: none;
}

@media (min-width: 1200px) {
    .topic-path ol li::before {
        padding: 0 24px;
    }
}

/* ===========================================================

	aside

=========================================================== */
aside {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

aside ul {
    font-size: 1.5rem;
    list-style: none;
    text-align: left;
    line-height: 1;
    margin-top: -2px;
    width: 100%;
}

aside li {
    display: block;
    margin-bottom: 2px;
}

aside a:link, aside a:visited {
    text-decoration: none;
    background-color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    text-decoration: none !important;
}

aside a.current {
    background-color: #E62210;
    color: #fff !important;
}

@media (min-width: 1200px) {
    aside {
        padding: 0 16px;
    }

    aside ul {
        width: 1200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    aside li {
        margin-bottom: 0;
    }

    aside a:link, aside a:visited {
        min-width: 192px;
        width: auto;
    }
}

/* ===========================================================

	main

=========================================================== */
main {}

main:after {
    content: "";
    display: block;
    clear: both;
}

article {}

.contents {
    order: 2;
}

aside {
    order: 1;
}

/* ===========================================================

	title

=========================================================== */
.title,
.title::after {
    height: 512px;
}
.title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #1B58A7;
    position: relative;
    overflow: hidden;

}
.title::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    opacity: 0.6;
    background-size: cover;
    background-position: 50% 50%;
}
.is-festival .title::after {
    background-image: url(../img/title/title__festival.jpg);
}
.is-news .title::after {
    background-image: url(../img/title/title__news.jpg);
}
.is-access .title::after {
    background-image: url(../img/title/title__access.jpg);
}
.is-winners .title::after {
    background-image: url(../img/title/title__access.jpg);
}
.title h1 {
    position: relative;
    font-weight: 500;
    letter-spacing: 0.10em;
    line-height: 1.2;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff;
    z-index: 2;
    gap: 8px;
	padding: 0 32px;
}
.title h1 strong {
    font-family: 'Lato', sans-serif;
    font-size: 7.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0);
    letter-spacing: -0.01em;
    z-index: 2;
}
.title h1 strong,
.title h1 span {
    position: relative;
    overflow: hidden;
    animation: title--text 1.25s cubic-bezier(.75, 0, .175, 1) 0s 1 normal forwards;
}
.title h1 strong::after,
.title h1 span::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    background-color: #1B58A7;
    animation: title--effect 1.25s cubic-bezier(.75, 0, .175, 1) 0s 1 normal both;
}
@keyframes title--text {
    0% {
        color: rgba(255, 255, 255, 0);
    }
    51% {
        color: rgba(255, 255, 255, 0);
    }
    100% {
        color: rgba(255, 255, 255, 1);
    }
}
@keyframes title--effect {
    0% {
        width: 0%;
        left: 0%;
    }
    50% {
        width: 100%;
        left: 0%;
    }
    100% {
        left: 100%;
    }
}

/* ===========================================================

	contents

=========================================================== */
.contents {
    background-color: #fff;
    position: relative;
    z-index: 3;
}

/* ===========================================================

	contents-style

=========================================================== */
.contents-style {
    text-align: left;
    margin: 0 auto;
    padding: 64px 32px 64px;
    width: 100%;
    max-width: 1086px;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .contents-style {
        padding: 64px 64px 128px;
    }
}
@media (min-width: 1200px) {
    .contents-style {
        padding: 64px 0 128px;
    }
}
/* ===========================================================

	bt-pagetop

=========================================================== */
.bottom-banner {
	position: fixed;
	left: 0;
	bottom: 0;
	background-color: #000;
	background-color: #1B58A7;
	background-color: rgb(91, 212, 246);
	width: 100%;
	/*padding: 16px;*/
	z-index: 10;
}
.bottom-banner a {
	display: block;
}
.festival-link-list li {
    max-width: 526px;
    margin: 0;
}
.bottom-banner a {
	background-color: #1B58A7;
    color: #fff;
    display: block;
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	border: solid 16px rgb(91, 212, 246);
}
.bottom-banner a:hover {
	background-color: rgb(91, 212, 246);
	background-color: #fff;
	color: #1B58A7;
    text-decoration: none;
	border: solid 16px #1B58A7;
    transform: scale(1.01, 1.01);
}

.bottom-banner a span {
    display: flex;
    align-items: center;
	justify-content: center;
    padding: 16px;
}
@media (min-width: 1200px) {
	.bottom-banner a span {
		min-height: 80px;
		background: url("../img/global/arrow__regular--white.svg") 98% 50% no-repeat;
		padding: 16px 96px 16px 24px;
	}
	.bottom-banner a:hover span {
		background: url(../img/global/arrow__regular--black.svg) 98% 50% no-repeat;
	}
}
/* ===========================================================

	bt-pagetop

=========================================================== */
body .bt-pagetop {
    clear: both;
    width: 50px;
    height: 50px;
    margin: 0;
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.bt-pagetop a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #00127e;
    transition: .2s ease-in-out;
    /*　Scott Kellum Method */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.bt-pagetop a:before {
    content: " ";
    position: absolute;
    top: 22px;
    left: 50%;
    margin: 0 0 0 -10px;
    width: 20px;
    height: 20px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.bt-pagetop a:hover {
    opacity: 0.5;
}

/* ===========================================================

	global-footer

=========================================================== */
.global-footer {
    overflow: hidden;
    background-color: #1B58A7;
    color: #fff;
    position: relative;
    padding-bottom: 64px;
    padding-bottom: 192px;
    z-index: 3;
}
.is-winners .global-footer {
    padding-bottom: 64px;
}

footer a,
footer a:link,
footer a:visited {
    display: block;
    text-decoration: none;
}

footer a:hover {
    opacity: 0.6;
}

/* global-footer__banner
----------------------------------------------------------- */
.global-footer__banner {
    border-top: solid 1px #D6DDE6;
    background-color: #fff;
    padding: 32px;
}

/* footer__navigation
----------------------------------------------------------- */
.footer__navigation {
    padding-top: 64px;
}

.footer__navigation ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 16px 0;
}

.footer__navigation li {
    display: flex;
    align-items: center;
}

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

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

/*footer__navigation--global
----------------------------------------------------------- */
.footer__navigation .footer__navigation--global {
    flex-wrap: wrap;
    line-height: 1.8;
    display: flex;
    flex-direction: row;
    display: none;
}
.footer__navigation .footer__navigation--global li {
}
.footer__navigation .footer__navigation--global a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #fff !important;
}
@media (min-width: 768px) {
    .footer__navigation .footer__navigation--global {
        display: flex;
        gap: 24px;
    }
}


/* copyright
----------------------------------------------------------- */
.copyright {
    display: flex;
    justify-content: center;
}

.copyright small {
    font-size: 1.2rem;
}