@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

html {
    scroll-behavior: smooth;
}

.sp {
    display: none!important;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    margin: 0;
    padding: 0;
}

.serif {
    font-family: "Noto Serif JP", serif;
}

a {
    text-decoration: none;
    transition: 0.5s;
}
video {
    width: 100vw;
    height: 100%;
    object-fit: cover;
}


ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header {
    width: 120px;
    height: 120px;
    border-radius: 0 0 0 20px;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    transition: 0.5s;
    overflow: hidden;
}

header.wide {
    width: 300px;
}

header.acitve {
    background-color: rgb(255, 255, 255, 0.7);
    height: 100vh;
    border-radius: 0;
}

header menu ul {
    margin-top: 120px;
}

header menu ul li {
    text-align: center;
    margin: 3vh 0;
    font-size: 25px;
}

header menu a {
    color: #000;
    transition: 0.3s;
}

header menu a:hover {
    opacity: 0.7;
}

header menu {
    position: relative;
    margin: 0;
    padding: 0;
}

header menu .box {
    width: 70px;
    height: 70px;
    position: relative;
    margin: 25px 25px 25px auto;
}

header menu .box span {
    display: inline-block;
    width: 70px;
    height: 7px;
    background-color: #000;
    position: absolute;
    transition: 0.3s;
    border-radius: 3.5px;
}

header menu .box span:first-child {
    top: 0;
    left: 0;
}

header menu .box span:first-child.open {
    rotate: 45deg;
    top: 31.5px
}


header menu .box span:nth-child(2) {
    top: 31.5px;
    left: 0;
}

header menu .box span:nth-child(2).open {
    opacity: 0;
}

header menu .box span:last-child {
    bottom: 0;
    left: 0;
}

header menu .box span:last-child.open {
    rotate: -45deg;
    bottom: 31.5px
}

header menu .link {
    width: fit-content;
    margin: 20vh auto 0;
    display: flex;
    align-items: center;
}

header menu .link img {
    margin: 0 10px;
}

.side .link {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    top: 50%;
    left: 0px;
    z-index: 1000;
    transform: translate(-75px, -50%) rotate(-90deg);
}

.side .link a {
    display: inline-block;
    margin: 0 15px;
    transition: 0.3s;
}

.side .link a:hover {
    opacity: 0.7;
}

.side .link img {
    max-height: 27px;
}

.side .link .bar {
    position: absolute;
    top: 13px;
    right: 0;
    width: 8vh;
    height: 2px;
    background-color: #000;
    transform: rotate(180deg);
    transform-origin: right center;
}

.side .link .follow {
    position: absolute;
    top: 0;
    right: calc(-100px - 8vh);
}

section {
    position: relative;
    height: 100vh;
}

.inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(auto, auto, auto, auto);
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

#s01 .background-image {
    background-image: url(../images/section01.jpg);
}

#s01 .content img {
    height: 100vh;
}


#s02 .background-image {
    /* background-image: url(../images/section02.jpg); */
    background: #666666;
    background-position: right bottom;
}

#s02 .content {
    position: relative;
}

#s02 .content .menu {
    position: absolute;
    top: 50vh;
    left: 10%;
    transform: translateY(-50%);
}

#s02 h2 {
    font-size: 85px;
    font-weight: 500;
    margin: 30px 0;
}

#s02 li {
    margin: 15px 0;
}

#s02 li a {
    color: #000;
    display: flex;
    align-items: center;
}

#s02 li a:hover {
    color: #fff;
}

#s02 .date {
    display: inline-block;
    margin-right: 30px;
}

#s02 .tag {
    display: inline-block;
    margin-right: 30px;
    background-color: #000;
    color: #fff;
    width: 100px;
    text-align: center;
    font-size: 11px;
    padding: 1px 0 3px;
}

a.button {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-size: 24px;
    margin-top: 20px;
    width: 180px;
    text-align: center;
    padding: 1px 0 3px;
}

a.button:hover {
    background-color: #000;
    color: #fff;
}

#s03 {
    position: relative;
}


#s03 .background-image {
    background-image: url(../images/section03.jpg);
}


#s03 .content {
    position: relative;
    color: #fff;
}

#s03 .content .menu {
    position: absolute;
    top: 50vh;
    left: 10%;
    transform: translateY(-50%);
}

#s03 h2 {
    font-size: 85px;
    font-weight: 500;
    margin: 30px 0;
}

#s03 .content .menu p {
    font-size: 24px;
    line-height: 1.8;
}

.popup {
    padding: 6%;
    position: absolute;
    width: 68%;
    max-width: 1080px;
    height: 60vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255, 0.7);
    transition: 0.5s;
}

.opacity {
    opacity: 0;
    top: 52%
}

.hidden {
    display: none;
}

.wrap {
    height: 100%;
    overflow-y: auto;
}



.close {
    position: absolute;
    top: 20px;
    right: 20px;
}



#s03 .note .grid {
    display: grid;
    gap: 6%;
    grid-template-columns: auto auto;
}

#s03 .note .grid>img {
    width: 100%;
    max-width: auto;
}

#s03 .note .flex {
    display: flex;
    align-items: start;
}


#s03 .note a {
    transition: 0.3s;
    display: block;
    margin-top: 8px;
    margin-left: 20px;
}

#s03 .note a:hover {
    opacity: 0.7;
}

#s03 .note h3 {
    font-size: 36px;
    font-weight: 400;
    margin-top: 0;
}

#s03 .note span {
    display: inline-block;
    margin: 4px 0;
}

#s03 .note span:first-child {
    width: 120px;
}

#s03 .note p {
    margin-top: 35px;
    line-height: 1.8;
}


#s04 .background-image {
    background-image: url(../images/section04.jpg);
}

#s04 .content {
    position: relative;
    color: #fff;
}

#s04 .content .menu {
    position: absolute;
    top: 50vh;
    left: 10%;
    transform: translateY(-50%);
}

#s04 h2 {
    font-size: 85px;
    font-weight: 500;
    margin: 30px 0;
}

#s04 .content .menu p {
    font-size: 24px;
    line-height: 1.8;
}

#s04 .schedule span {
    display: inline-block;
}

#s04 .schedule .date {
    width: 100px;
    margin-bottom: 50px;
}

#s04 .schedule .place {
    width: 210px;
}

#s04 .schedule .time {
    width: 120px;
}

.dl {
  display: flex;
  margin-bottom: 50px;
}
.dl dt {
  width: 35%;
}
.dl dd {
  width: 65%;
  line-height: 30px;
}



#s05 .background-image {
    background-image: url(../images/section05.jpg);
}

#s05 .content {
    position: relative;
    color: #fff;
}

#s05 .content .menu {
    position: absolute;
    top: 50vh;
    right: 10%;
    transform: translateY(-50%);
    text-align: right;
}

#s05 h2 {
    font-size: 85px;
    font-weight: 500;
    margin: 30px 0;
}

#s05 .content .menu p {
    font-size: 24px;
    line-height: 1.8;
}

#s05 .works {
    border: 0;
    width: 40vw;
    max-width: 700px;
    height: 176px;
    display: block;
    margin-bottom: 40px;
}

#s05 a.button {
    margin-left: 40px;
}

#s05 .goods .grid {
    display: grid;
    gap: 6%;
    grid-template-columns: 43fr 56fr;
}

#s05 .goods .grid>img {
    width: 100%;
    max-width: 430px;
}


#s05 .goods h3 {
    font-size: 36px;
    font-weight: 400;
    margin-top: 0;
}

#s05 .goods li {
    margin: 10px 0;
}

#s05 .goods p {
    margin: 50px 0;
}

#s05 .goods a.button {
    margin-left: 0;
}



#s06 .background-image {
    background-image: url(../images/section06.jpg);
}

#s06 .content {
    position: relative;
    color: #fff;
}

#s06 .content .menu {
    position: absolute;
    top: 50vh;
    left: 10%;
    transform: translateY(-50%);
}

#s06 h2 {
    font-size: 85px;
    font-weight: 500;
    margin: 30px 0;
}

#s06 .content .menu p {
    font-size: 24px;
    line-height: 1.8;
}


#s07 .background-image {
    background-image: url(../images/section07.jpg);
}

#s07 .content {
    position: relative;
}

#s07 .content .menu {
    position: absolute;
    top: 50vh;
    left: 10%;
    width: 80%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#s07 h2 {
    font-size: 85px;
    font-weight: 500;
    margin: 0px;
}

#s07 a.button {
    background-color: #000;
    color: #fff;
}

#s07 a.button:hover {
    background-color: #fff;
    color: #000;
}

#s07 iframe {
    width: 90vw;
    max-width: 800px;
    margin-top: 30px;
}

#s07 .button.sp{
    display: none;
}

footer {
    height: 100vh;
    background-color: #242424;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer img {
    width: 80%;
    max-width: 468px;
}

@media screen and (max-width:897px) {
    .background-image {
        display: none;
    }

    .pc {
        display: none!important;
    }

    .sp {
        display: block!important;
    }

    .side {
        display: none;
    }

    header,
    .side .link {
        transform: translateZ(0);
        will-change: transform;
    }

    header {
        width: 80px;
        height: 80px;
        border-radius: 0 0 0 10px;
    }

    header.acitve {
        background-color: rgb(255, 255, 255);
        height: 100vh;
        border-radius: 0;
    }

    header.wide {
        width: 100%;
    }

    header menu .box {
        width: 50px;
        height: 50px;
        position: relative;
        margin: 15px 15px 15px auto;
    }

    header menu .box span {
        display: inline-block;
        width: 50px;
        height: 5px;
        border-radius: 2.5px;
    }

    header menu .box span:nth-child(2) {
        top: 23px;
        left: 0;
    }

    header menu .box span:first-child.open {
        rotate: 45deg;
        top: 23px;
    }

    header menu .box span:last-child.open {
        rotate: -45deg;
        bottom: 23px;
    }

    header menu ul {
        margin-top: 20px;
    }




    a.button {
        background-color: #fff;
        font-size: 20px;
        width: 150px;
        padding: 1px 0 3px;
    }

    .inner {
        position: static;
        height: auto;
    }

    .popup {
        padding: 5vh 5% 5%;
        position: absolute;
        width: 80%;
        max-width: 1080px;
        height: 60vh;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgb(255, 255, 255, 0.7);
        transition: 0.5s;
    }

    .close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 20px;
    }

    #s01 {
        background-image: url(../images/section01.jpg);
        background-size: cover;
        background-position: 30% 50%;
    }

    #s01 .content img {
        height: 70vh;
        padding-top: 20px;
    }

    #s02 {
        background-image: url(../images/section02.jpg);
        background-size: cover;
        background-position: 0% 50%;
        height: auto;
    }

    #s02 .content .menu {
        position: static;
        top: 0;
        left: 0;
        transform: translateY(0);
        padding: 5% 5% 10%;
    }

    #s02 h2 {
        font-size: 50px;
        font-weight: 500;
        margin: 20px 0;
    }

    #s02 .date {
        margin-right: 20px;
    }

    #s02 li {
        margin: 12px 0;
        font-size: 12px;
    }

    #s02 .tag {
        margin-right: 20px;
        width: 80px;
        font-size: 10px;
    }

    #s03 {
        background-image: url(../images/section03.jpg);
        background-size: cover;
        background-position: 60% 50%;
        transition: 0.3s;
    }

    #s03 .content .menu {
        position: static;
        transform: translateY(0);
        padding: 5% 5% 10%;
    }

    #s03 h2 {
        font-size: 50px;
        font-weight: 500;
        margin: 20px 0;
    }

    #s03 .content .menu p {
        font-size: 18px;
        line-height: 1.8;
    }

    .popup.note {
        position: static;
        transform: translate(0, 0);
        margin: auto;
        height: 45VH;
    }

    #s03 .note .grid {
        grid-template-columns: 100%;
        gap: 20px;
    }

    #s03 .note h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    #s03 .note a {
        display: none;
    }


    #s04 {
        background-image: url(../images/section04.jpg);
        background-size: cover;
        background-position: 60% 50%;
        transition: 0.3s;
    }

    #s04 h2 {
        font-size: 50px;
        font-weight: 500;
        margin: 30px 0;
    }

    #s04 .content .menu {
        position: static;
        transform: translateY(0);
        padding: 5% 5% 10%;
    }

    #s04 .content .menu p {
        font-size: 18px;
        line-height: 1.8;
    }

    #s04 .schedule li {
        display: grid;
        grid-template-columns: 100px auto;
        margin-top: 30px;
    }

    #s04 .schedule span {
        display: inline-block;
        width: fit-content;
    }

    #s04 .schedule .date {
        width: 100px;
        margin-bottom: 0;
    }

    #s04 .schedule .place {
        width: auto;
    }

    #s04 .schedule .time {
        width: 120px;
        display: none;
    }

    .dl {
      flex-direction: column;
      margin-bottom: 50px;
    }
    .dl dt {
      width: 100%;
      margin-bottom: 10px;
    }
    .dl dd {
      width: 100%;
      margin-inline-start: 130px;
      white-space: nowrap;
    }



    #s05 {
        background-image: url(../images/section05.jpg);
        background-size: cover;
        background-position: 60% 50%;
        transition: 0.3s;
    }

    #s05 .content {
        position: relative;
        color: #000;
    }

    #s05 .content .menu {
        position: static;
        transform: translateY(0);
        padding: 5% 5% 10%;
        text-align: left;
    }

    #s05 h2 {
        font-size: 50px;
        font-weight: 500;
        margin: 30px 0;
    }

    #s05 .content .menu p {
        font-size: 18px;
        line-height: 1.8;
    }

    #s05 .works {
        width: 100%;
        margin-bottom: 0;
    }

    #s05 a.button {
        margin-left: 0;
        display: block;
        margin-top: 30px;
    }

    #s05 .goods .grid {
        gap: 0;
        grid-template-columns: auto;
    }

    #s05 .goods .grid>div {
        margin-bottom: 50px;
    }

    #s05 .goods h3 {
        font-size: 30px;
        font-weight: 400;
        margin-top: 0;
        margin-bottom: 20px;
    }


    #s06 {
        background-image: url(../images/section06.jpg);
        background-size: cover;
        background-position: 50% 50%;
        transition: 0.3s;
    }

    #s06 .bg{
        position: absolute;
        top: 50%;
        left: 50%;
        height: 100%;
        transform: translate(-50%,-50%);
    }

    #s06 .content .menu {
        position: static;
        transform: translateY(0);
        padding: 5% 5% 10%;
    }

    #s06 h2 {
        font-size: 50px;
        font-weight: 500;
        margin: 30px 0;
    }

    #s06 .content .menu p {
        font-size: 18px;
        line-height: 1.8;
    }

    #s07 {
        background-image: url(../images/section07.jpg);
        background-size: cover;
        background-position: 70% 50%;
        transition: 0.3s;
    }

    #s07 .content .menu {
        position: static;
        transform: translateY(0);
        padding: 5% 5% 10%;
    }

    #s07 h2 {
        font-size: 50px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    footer img {
        width: 60%;
    }

    #s07 .button.sp {
        display: inline-block!important;
    }

}
