@charset "UTF-8";
html {
    width: 100%;
    font-size: 62.5%;
}
body {
    color: #272727;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 200;
    font-size: 1.6rem;
    line-height: 2.1;
    letter-spacing: 0.08em;
    position: relative;    
    opacity: 0;
    transition: opacity 3s;
}
body.is-show {
    opacity: 1;
}
a {
    transition: 0.5s;
}
a:hover {
    opacity: 0.5;
    transition: 0.5s;
}
.br-TB , .br-SP {
    display: none;
}

@media(max-width: 890px) {
    body {
        font-size: 1.4rem;
    }
    .br-TB {
        display: block;
    }
}
@media(max-width: 743px) {
    .br-SP {
        display: block;
    }
}
/*--------------------------------
	header
--------------------------------*/
.header__logo {
    display: block;
    width: 220px;
    margin: 80px auto 24px;
}
.header__logo img {
    width: 100%;
}
@media(max-width : 890px) {
    .header__logo {
        width: 200px;
        margin: 40px auto 16px;
    }
}
@media(max-width : 743px) {
    .header__logo {
        width: 160px;
    }
}
/*--------------------------------
	FV
--------------------------------*/
.FV {
    text-align: center;
    margin-bottom: 104px;
}
.FV__head {
    margin-bottom: 64px;
}
.FV__flyer {
    width: 56%;
    margin: 0 auto;
}
.FV__flyer img {
    width: 100%;
}
.FV__info {
    margin-top: 64px;
}
h1 {
    font-size: 2.8rem;
    font-weight: 200;
    line-height: 1.8;
}
h1 span {
    font-size: 1.4rem;
    display: block;
}
.FV__people {
    margin-top: 2em;
}
.FV__cast , .FV__staff {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1em;
    font-size: 2rem;
}
.FV__caption {
    margin-top: 2em;
    display: flex;
    justify-content: center;
    gap: 2em;
}
.guide__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    gap: 24px;
    font-size: 2.4rem;
    padding: 8px 32px 8px 40px;
    position: relative;
    border: #FEE100 3px solid;
    margin: 40px auto 24px;
}
.guide__link img {
    width: 0.8rem;
    height: auto;
}
.guide__link:hover {
    opacity: 1;
    background: #FEE100;
}
@media(max-width : 890px) {
    .FV__head {
        margin-bottom: 40px;
    }
    .FV__flyer {
        width: 72%;
    }
    .FV__info {
        margin-top: 32px;
    }
    .guide__link {
        gap: 24px;
        font-size: 1.8rem;
        padding: 8px 16px;
        margin: 40px auto 24px;
    }
}
@media(max-width : 743px) {
    .FV {
        margin-bottom: 80px;
    }
    .FV__head {
        width: 91.466%;
        margin: 0 auto 40px;
    }
    .FV__flyer {
        width: 91.466%;
    }
    h1 {
        font-size: 2rem;
    }
    .FV__cast, .FV__staff {
        gap: 1em;
        font-size: 1.4rem;
    }
    .FV__caption {
        flex-direction: column;
        gap: 0;
    }
}
@media(max-width : 500px) {
    .FV__cast {
        width: 250px;
        flex-wrap: wrap;
        margin: 0 auto 1em;
        row-gap: 0;
    }
}
/*--------------------------------
	section title
--------------------------------*/
.section__title {
    margin-bottom: 40px;
}
.section__title h2 {
    font-size: 1.8rem;
    font-weight: 100;
    letter-spacing: 0.2em;
    line-height: 46px;
    color: #fff;
    text-transform: uppercase;
    width: 245px;
    height: 46px;
    text-align: center;
    background-color: #4C4948;
    margin: 0 auto;
    transition: 0.5s clip-path;
}
.animeLeft {
    clip-path: inset(0 100% 0 0);
}
.show {
    clip-path: inset(0 0 0 0);
}
/*--------------------------------
	story
--------------------------------*/
.story {
    padding-top: 88px;
    background-color: #FEE100;
    padding-bottom: 56px;
}
.story__main {
    font-size: 2.4rem;
    font-weight: 100;
    width: 480px;
    height: 140px;
    border-radius: 10px;
    display: grid;
    place-content: center;
    margin: 0 auto 80px;
    text-align: center; 
    position: relative;
    background: #fff;
    border: #C0C0C0 1px solid;
    box-shadow: -16px 16px 0px 0px #FABF03;
}
.neco01 {
    width: 118px;
    position: absolute;
    top: 72px;
    left: -178px;
}
.story__list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 148px;
    margin-bottom: 136px;
}
.story__item {
    width: 320px;
    height: 170px;
    background: #fff;
    border: #C0C0C0 1px solid;
    border-radius: 10px;
    text-align: center;
    position: relative;
}
.story__item span {
    display: block;
    height: 48px;
    line-height: 48px;
    border-bottom: #C0C0C0 1px solid;
}
.story__item h3 {
    font-size: 1.3rem;
    font-weight: 200;
    padding-top: 28px;
}
.item__sub {
    padding: 16px;
    width: max-content;
    position: absolute;
    background: #fff;
    border: #C0C0C0 1px solid;
    border-radius: 10px;
    display: grid;
    place-content: center;
    text-align: left;
}
.item__sub p {
    font-size: 1.0rem;
}
.shadow-green {
    box-shadow: -16px 16px 0px 0px #00ACA0;
}
.shadow-pink {
    box-shadow: -16px 16px 0px 0px #DE6A99;
}
.shadow-purple {
    box-shadow: -16px 16px 0px 0px #925DA3;
}
.A__sub {
    top: calc(100% - 16px);
    left: 16px;
}
.B__sub {
    top: calc(100% - 16px);
    right: 32px;
}
.C__sub {
    top: calc(100% - 16px);
    right: 56px;
}
.story__sub {
    width: 840px;
    height: 210px;
    background: #fff;
    display: grid;
    place-content: center;
    margin: 0 auto 80px;
    text-align: center; 
    position: relative;
    background: #fff;
    border: #C0C0C0 1px solid;
    border-radius: 10px;
    box-shadow: -16px 16px 0px 0px #FABF03;
}
.story__sub--extention {
    position: absolute;
    top: calc(100% - 16px);
    right: 32px;
    width: max-content;
    background: #fff;
    border: #C0C0C0 1px solid;
    border-radius: 10px;
    padding: 4px 12px;
    box-shadow: -16px 16px 0px 0px #FABF03;
}
.neco02 {
    width: 112px;
    position: absolute;
    top: -35px;
    right: -22px;
}
@media(max-width : 1280px) {
    .story__list {
        flex-wrap: wrap;
        width: 800px;
        margin: 0 auto 136px;
        row-gap: 112px;
        column-gap: 148px;
    }
}
@media(max-width : 890px) {
    .neco01 {
        top: 120px;
        left: -122px;
    }
    .story__list {
        width: 500px;
    }
    .story__sub {
        width: 84%;
        height: auto;
        padding: 32px;
        margin: 0 auto 80px;
    }
}
@media(max-width : 743px) {
    .story {
        padding-top: 72px;
    }
    .story__main {
        font-size: 1.6rem;
        width: 320px;
        height: 104px;
        margin: 0 auto 80px;
    }
    .neco01 {
        width: 96px;
        top: 120px;
        left: 80%;
    }
    .story__list {
        width: 375px;
        row-gap: 96px;
    }
    .story__item {
        width: 296px;
        height: 136px;
    }
    .story__item h3 {
        padding-top: 16px;
        line-height: 1.8;
    }
    .story__item.shadow-green {
        margin-right: auto;
        margin-left: 12px;
    }
    .story__item.shadow-purple {
        margin-left: auto;
        margin-right: 4px;
    }
    .item__sub {
        padding: 8px;
    }
    .item__sub p {
        letter-spacing: 0.03em;
    }
    .story__sub {
        width: 72%;
    }
}
/*--------------------------------
	cast
--------------------------------*/
.cast {
    background: #FEE100;
    padding-bottom: 120px;
}
.cast__list {
    list-style: none;
    width: fit-content;
    margin: 0 auto;
    font-size: 2.8rem;
    letter-spacing: 0.14em;
    position: relative;
}
.neco03 {
    width: 72px;
    position: absolute;
    bottom: -30px;
    left: -160px;
}
@media(max-width : 890px) {
    .cast__list {
        font-size: 2.4rem;
    }
    .neco03 {
        bottom: -56px;
        left: -120px;
    }
}
@media(max-width : 743px) {
    .cast {
        padding-bottom: 160px;
    }
    .cast__list {
        font-size: 1.4rem;
    }
    .neco03 {
        width: 56px;
        bottom: -130px;
        left: calc(50% - 28px);
    }
}
/*--------------------------------
	schedule
--------------------------------*/
.schedule {
    background: #FEE100;
    padding-bottom: 160px;
    position: relative;
}
.neco04 {
    width: 156px;
    position: absolute;
    top: 30%;
    right: calc(50% - 480px);
}
.schedule__overview {
    width: 552px;
    margin: 0 auto;
    background: #fff;
    border: #C0C0C0 1px solid;
    border-radius: 10px;
    box-shadow: -16px 16px 0px 0px #FABF03;
    padding: 56px 104px;
    position: relative;
}
.schedule__overview dl {
    margin-bottom: 2em;
    font-feature-settings: "palt";
}
.schedule__overview h2 {
    font-weight: 200;
}
.notice dd{
    display: flex;
    gap: 0.3em;
}
.notice dd::before {
    content: "※";
    display: block;
    width: 1em;
    height: 1em;
}
.period {
    display: flex;
    gap: 0.5em;
}
.schedule__table {
    margin: -40px auto 0;
    background: #fff;
    border-radius: 16px;
    border-spacing: 0;
    border: none;
    border-left: #C0C0C0 1px solid;
    border-top: #C0C0C0 1px solid;
    box-shadow: -16px 16px 0px 0px #FABF03;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}
.schedule__table tr>*{
    border: none;
    border-right: #C0C0C0 1px solid;
    border-bottom: #C0C0C0 1px solid;
}
th,td {
    width: 180px;
    height: 44px;
    font-weight: 200;
    text-align: center;
    line-height: 44px;
}
.schedule__table tr:first-child>*:first-child{
    border-radius: 16px 0 0 0;
}
.schedule__table tr:first-child>*:last-child{
    border-radius: 0 16px 0 0;
}
.schedule__table tr:last-child>*:first-child{
    border-radius: 0 0 0 16px;
}
.schedule__table tr:last-child>*:last-child{
    border-radius: 0 0 16px 0;
}
.schedule__table tr:first-child th:first-child {
    position: relative;
}
.col-header {
    text-transform: uppercase;
    font-size: 1.2rem;
    line-height: 1;
    position: absolute;
    top: 0.8em;
    right: 10%;
}
.row-header {
    text-transform: uppercase;
    font-size: 1.2rem;
    line-height: 1;
    position: absolute;
    bottom: 0.8em;
    left: 10%;
}
.table-lefttop::after {
    content: "";
    display: block;
    width: 80%;
    height: 80%;
    background-image: linear-gradient(
        to right top, transparent calc(50% - 0.5px), #C0C0C0 50%, #C0C0C0 calc(50% + 0.5px), transparent calc(50% + 1px)
    );
    position: absolute;
    top: 10%;
    left: 10%;
}
.day span {
    font-size: 1.3rem;
    vertical-align: super;
}
.schedule__event {
    width: 552px;
    margin: 40px auto;
    background: #fff;
    border: #C0C0C0 1px solid;
    border-radius: 10px;
    box-shadow: -16px 16px 0px 0px #FABF03;
    padding: 56px 104px;
    position: relative;
}
.schedule__event h3 {
    font-weight: 200;
    margin-bottom: 2em;
}
.event__content {
    margin-bottom: 3em;
    font-feature-settings: "palt";
}
.event__content:last-child {
    margin-bottom: 2em;
}
.event__content h4 {
    font-weight: 200;
    line-height: 1.2;
    padding: 0.1em 0.4em;
    width: fit-content;
    border: #C0C0C0 1px solid;
    margin-bottom: 0.5em;
}
.event__content p {
    line-height: 1.5;
}
.event__list {
    list-style: none;
    margin: 0.4em 0;
}
.event__talk {
    margin: 0.4em 0;
}
.event__list li,
.event__talk dt,
.event__talk dd {
    display: flex;
    gap: 0.2em;
}
.event__list li::before,
.event__talk dt::before {
    content: "■";
    display: block;
    width: 1em;
    height: 1em;
}
.event__talk dd::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
}
.event__talk dd {
    font-size: 1.4rem;
    line-height: 1.5;
}
.event__notice {
    list-style: none;
    font-size: 1.4rem;
    margin: 1em 0 0;
    line-height: 1.5;
}
.event__notice li {
    display: flex;
    gap: 0.3em;
}
.event__notice li::before {
    content: "※";
    display: block;
    width: 1em;
    height: 1em;
}
.event__notice li span {
    font-size: 1.4rem;
    display: inline;
}
.event__notice li.none-asterisk::before {
    display: none;
}
.neco05 {
    width: 160px;
    position: absolute;
    right: calc(50% - 380px);
    bottom: 0px;
}
@media(max-width : 890px) {
    .neco04 {
        width: 136px;
        right: 10px;
    }
    .schedule__overview {
        width: 64%;
        padding: 56px 64px;
    }
    th, td {
        width: 144px;
    }
    .schedule__event {
        width: 64%;
        padding: 56px 64px;
    }
}
@media(max-width : 743px) {
    .schedule__overview {
        width: 72%;
        padding: 40px 16px;
    }
    .period { 
        flex-direction: column;
        row-gap: 0;
    }
    .schedule__table {
        width: 91.466%;
    }
    .schedule__event {
        width: 72%;
        padding: 40px 16px;
    }
    .neco05 {
        width: 104px;
        right: 32px;
        bottom: 25px;
    }
}
/*--------------------------------
	staff
--------------------------------*/
.staff {
    background: #FEE100;
    text-align: center;
}
.staff__list {
    margin-bottom: 24px;
}
.staff__kotatsu {
    display: block;
    width: 90%;
    margin: 0 auto;
    line-height: 1;
}
.staff__kotatsu img {
    width: 100%;
}
@media(max-width : 743px) {
    .staff__kotatsu {
        width: 100%;
    }
}
/*--------------------------------
	about
--------------------------------*/
.about {
    margin-top: -1px;
    padding-top: 88px;
    padding-bottom: 160px;
    position: relative;
    overflow: hidden;
    background: url(../img/about_bg_PC.jpg) no-repeat;
    background-size: cover;
    background-position: 50% 0;
}
.about__logo {
    width: 456px;
    padding-top: 56px;
    margin: 0 auto 56px;
}
.about__logo img {
    width: 100%;
}
.about__txt {
    margin-left: calc(50% - 228px);
}
.about__txt01 dl {
    display: flex;
    gap: 3em;
    margin-bottom: 8px;
}
.about__txt01 p {
    padding-top: 40px;
}
.about__txt02 {
    padding-top: 72px;
}
.about__txt02 p {
    margin-bottom: 40px;
}
@media(max-width : 743px) {
    .about {
        padding-top: 168px;
        background: url(../img/about_bg_SP.jpg) no-repeat;
        background-size: cover;
        background-position: 50% 0;
        padding-bottom: 120px;
    }
    .about__logo {
        width: 216px;
        padding-top: 56px;
        margin: 0 auto 56px;
    }
    .about__txt {
        width: 80%;
        margin-left: 12.8%;
    }
    .about__txt01 dl {
        display: block;
        margin-bottom: 8px;
    }
}
/*--------------------------------
	footer
--------------------------------*/
.footer {
    text-align: center;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
}
/*--------------------------------
	animation
--------------------------------*/

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeInAnime{
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeLeftAnime{
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }
.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeRightAnime{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }
.zoomIn {
    animation-name: zoomIn;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes zoomIn{
    from {
        transform:scale(1.05);
        opacity: 0;
    }
    
    to {
        transform:scale(1);
        opacity: 1;
    }
}
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeDownAnime{
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
    
}
.fadeInTrigger, 
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.zoomInTrigger,
.fadeDownTrigger {
    opacity: 0;
}




/*--------------------------------
    page guide
--------------------------------*/
.page__header--logo {
    display: block;
    margin: 24px auto 16px;
    width: 140px;
}
.page__header--logo:hover {
    opacity: 1;
}
@media(max-width : 743px) {
    .page__header--logo {
        margin: 16px auto 8px;
        width: 104px;
    }
}
/*--------------------------------
    page title
--------------------------------*/
.page__title {
    padding: 120px 0 80px;
    background: #FEE100;
    text-align: center;
}
.page__head {
    font-size: 2.4rem;
    margin-top: 0.5em;
}
/*--------------------------------
    page content
--------------------------------*/
.content__wrapper {
    width: 52.777vw;
    max-width: 800px;
    margin: 80px auto;
}
.content__block {
    margin-bottom: 2em;
}
.content__block h3 {
    font-size: 2rem;
    font-weight: 200;
}
.page__notice li {
    display: flex;
    gap: 0.3em;
}
.page__notice li::before {
    content: "※";
    display: block;
    width: 1em;
    height: 1em;
}
.content__list li {
    margin-left: 1em;
}
.strong {
    font-feature-settings: "palt";
    border-bottom: #4C4948 1px solid;
}
@media(max-width : 890px) {
    .page__title {
        padding: 80px 0 40px;
    }
    .content__wrapper {
        width: 88%;
        margin: 40px auto;
    }
}
@media(max-width : 743px) {
    .page__head {
        font-size: 2rem;
    }
    .content__wrapper {
        width: 92%;
    }
    .content__block h3 {
        font-size: 1.8rem;
    }
}
/*--------------------------------
    goods
--------------------------------*/
.goods__img {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.payment {
    display: block;
    width: 320px;
    margin: 0 auto;
}
/*--------------------------------
    link area
--------------------------------*/
.link__area {
    padding: 80px 0 120px;
}
.back__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    gap: 24px;
    font-size: 1.6rem;
    padding: 8px 32px 8px 24px;
    position: relative;
    border: #FEE100 3px solid;
    margin: 0 auto;
}
.back__link img {
    width: 0.8rem;
    height: auto;
    transform: rotate(180deg);
}
.back__link:hover {
    opacity: 1;
    background: #FEE100;
}
