@charset "UTF-8";
/* CSS Document */

.main {
    background-color: #f5f5f5;
    max-width: 1366px;
    margin: auto;
}


.header a {
    padding-bottom: 3px;
    background-image: linear-gradient(#fefefe, #fefefe);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 1px;
    transition: background-size 0.3s;
    opacity: 1;
}

.header a:hover {
    background-position: bottom left;
    background-size: 100% 1px;
}

.wrap {
    animation: fadein 2.2s forwards;
}

@keyframes fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.header-logo-and-title {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

.header-logo-and-title div {
    display: flex;
    text-align: left;
}

.header-logo-and-title img {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 30px;
}

.header-logo-and-title h1 {
    padding: 15px 0px 20px 15px;
    vertical-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fefefe;
}

.header-nav {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1000;
}

.header nav ul {
    display: flex;
    justify-content: flex-end;
}

.header nav ul li {
    padding: 10px;
    font-size: 2.0rem;
}

.header nav ul li a {
    text-decoration: none;
    color: #fefefe;
    font-size: 1.8rem;
}

.header-nav nav ul li span {
    display: none;
}

.header-bg img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.header-bg {
    position: relative;
}

/*
.header-bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, #f5f5f5 0%, rgba(255, 255, 255, 0) 15%);
}
    */

.header-title {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: "Noto Sans JP", sans-serif;
    color: #fefefe;
    text-align: left;
    letter-spacing: 8px;
    position: absolute;
    left: 5%;
    bottom: 10%;
    z-index: 500;
}

@media (max-width:1160px) {

    .header a {
        padding-bottom: 3px;
        background-image: linear-gradient(#f7f6f5, #f7f6f5);
        background-repeat: no-repeat;
        background-position: bottom right;
        background-size: 0 1px;
        transition: background-size 0.3s;
    }

    .header a:hover {
        background-position: bottom left;
        background-size: 100% 1px;
    }

    .wrap {
        animation: fadein 2.5s forwards;
    }

    @keyframes fadein {
        0% {
            opacity: 0
        }

        100% {
            opacity: 1
        }
    }

    .header-logo-and-title {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 1000;
    }

    .header-logo-and-title div {
        display: flex;
        text-align: left;
    }

    .header-logo-and-title img {
        display: block;
        width: 50px;
        height: 50px;
        border-radius: 30px;
    }

    .header-logo-and-title h1 {
        padding: 15px 0px 20px 15px;
        vertical-align: center;
        font-size: 1.8rem;
        font-weight: 600;
        color: #fefefe;
    }

    .header-nav {
        position: relative;
        z-index: 3000;
    }

    .header-nav nav {
        position: absolute;
        right: -18px;
        top: -18px;
        width: 70%;
    }

    .header-nav nav ul {
        display: none;
        list-style: none;
        background-color: #f5f5f5;
        padding-right: 30%;
        height: 101vh;
    }

    .header-nav nav ul li {
        border-bottom: 3px solid #ffffff;
        padding: 35px 0px 25px 35px;
    }

    .header-nav nav ul li:first-child {
        padding-top: 100px;
    }

    .header-nav nav ul li span {
        display: inline;
        font-size: 1.6rem;
    }

    .header-nav nav ul li a {
        font-size: 2.2rem;
        color: #303030;
        display: block;
        padding-top: 5px;
        text-align: center;
        text-decoration: none;
    }

    .hamburger {
        position: absolute;
        top: 10px;
        right: 30px;
        cursor: pointer;
        width: 32px;
        height: 24px;
        z-index: 10000;
    }


    .hamburger span {
        transition: all .3s;
        position: absolute;
        height: 2px;
        background-color: #333;
        width: 100%;
        z-index: 9999;
    }

    .hamburger span:nth-of-type(1) {
        top: 4px;
    }

    .hamburger span:nth-of-type(2) {
        top: 12px;
    }

    .hamburger span:nth-of-type(3) {
        top: 20px;
    }

    .hamburger.open span:nth-of-type(1) {
        top: 10px;
        transform: translateY(6px) rotate(-33deg);
    }

    .hamburger.open span:nth-of-type(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-of-type(3) {
        top: 22px;
        transform: translateY(-6px) rotate(33deg);
    }

    .header-bg img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

    .header-bg {
        position: relative;
        z-index: 1;
    }

    /*.header-bg:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(to top, #f5f5f5 0%, rgba(255, 255, 255, 0) 15%);
        z-index: 2;
    }
    */

    .header-title {
        font-size: 4.5rem;
        font-weight: 800;
        font-family: "Noto Sans JP", sans-serif;
        color: #fefefe;
        text-align: left;
        letter-spacing: 5px;
        line-height: 50px;
        position: absolute;
        left: 5%;
        bottom: 10%;
        z-index: 1000;
    }
}

@media (min-width: 1160px) {
    .header-nav {
        display: block;
    }
}

@media (orientation: landscape) and (max-width: 1000px){
    .hamburger {
        display: none;
    }
}

.section-about {
    padding: 67px 0 0 0;
    margin: 0 auto;
    background-color: #f5f5f5;
}

.section-about__contents {
    display: flex;
    justify-content: center;
}

.section-about img {
    max-width: 240px;
    height: auto;
}

.section-about__description {
    text-align: left;
    padding: 30px;
}

.section-about__description h3 {
    font-size: 2.4rem;
    font-weight: 500;
}

.section-about__description p {
    padding: 50px 0 20px 0;
}

.section-about__description span {
    display: inline-block;
}

.section-about__description a {
    color: #303030;
}

@media (max-width:1160px) {

    .section-about {
        padding-top: 60px;
        margin: 0 auto;
        background-color: #f5f5f5;
    }

    .section-about img {
        max-width: 224px;
        height: auto;
    }

    .section-about__contents {
        display: block;
    }

    .section-about__description {
        text-align: left;
        padding: 30px;
    }

    .section-about__description h3 {
        font-size: 2.4rem;
        font-weight: 500;
        text-align: center;
        line-height: 3.5rem;
    }

    .section-about__description br {
        display: none;
    }

    .section-about__description p {
        padding-top: 50px;
        text-align: center;
    }

    .section-about__description a {
        display: block;
        text-align: center;
}

}

.section-photos {
    max-width: 1040px;
    margin: 0 auto;
}

.secton-photos-title {
    padding: 63px 0px 60px 15px;
    text-align: left;
}


.secton-photos-title h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-event {
    max-width: 1040px;
    margin: 0 auto;
}

.section-event-title {
    padding: 80px 0px 50px 0px;
    text-align: left;
}

.section-event-title h2 {
    font-weight: 500;
    font-size: 2.4rem;
    padding-bottom: 4px;
}

.section-event-title p {
    padding-top: 30px;
    font-size: 1.8rem;
}

.section-event-title span {
    font-size: 2.0rem;
    padding-bottom: 3px;
    border-bottom: 1px solid #303030;
}

.section-event__main-event {
    text-align: left;
    padding: 40px;
}

.section-event__main-event span {
    font-weight: 300;
    padding-left: 1px;
}

.section-event__main-event img {
    max-width: 270px;
    height: 270px;
    object-fit: cover;
    border-radius: 5px;
}

.section-event__main-event h3,
.section-event__main-event2 h3,
.section-event__main-event3 h3 {
    font-size: 2.4rem;
    font-weight: 500;
    padding: 2px 0 10px;
    border-bottom: 1.5px solid #333;
}

.section-event__main-event1,
.section-event__main-event2,
.section-event__main-event3 {
    display: flex;
    margin-bottom: 80px;
    padding: 0px 30px;
}

.section-event__main-event1-description,
.section-event__main-event2-description,
.section-event__main-event3-description {
    padding-left: 40px;
}

.section-event__main-event1-description p,
.section-event__main-event2-description p,
.section-event__main-event3-description p {
    padding-top: 25px;
}

.inview {
    opacity: 0;
    transform: translateY(20px);
    transition: 2.0s;
    transition-delay: 0.1s;
}

.inview.show {
    opacity: 1;
    transform: translateY(0px);
}

.section-event__other-event {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 40px 0px 40px;
}

.section-event__other-event img {
    max-width: 240px;
    height: 240px;
    margin: 0 40px;
    object-fit: cover;
    border-radius: 5px;
}

.section-event__other-event h3 {
    font-size: 1.8rem;
    font-weight: 500;
    padding-top: 20px;
}

.section-event__other-event p {
    padding-top: 10px;
    margin-bottom: 75px;
}

.section-event__plan__pc-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 100;
}

.section-event__plan__phone-img {
    display: none;
}

@media (max-width: 1160px) {

    .section-event-title {
        padding: 80px 0px 50px 30px;
        text-align: left;
    }

    .section-event-title h2 {
        font-weight: 500;
        font-size: 2.4rem;
        padding-bottom: 4px;
    }

    .section-event-title p {
        padding-top: 30px;
        font-size: 1.8rem;
    }

    .section-event-title span {
        font-size: 2.0rem;
        padding-bottom: 3px;
        border-bottom: 1px solid #303030;
    }

    .section-event__main-event {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: left;
        padding: 40px;
    }

    .section-event__main-event br {
        display: none;
    }

    .section-event__delete-p {
        display: none;
    }

    .section-event__main-event span {
        font-weight: 300;
    }

    .section-event__main-event img {
        max-width: 270px;
        height: 270px;
        object-fit: cover;
        border-radius: 5px;
    }

    .section-event__main-event h3,
    .section-event__main-event2 h3,
    .section-event__main-event3 h3 {
        font-size: 2.4rem;
        font-weight: 500;
        padding: 2px 0 10px;
        border-bottom: none;
    }

    .section-event__main-event1,
    .section-event__main-event2,
    .section-event__main-event3 {
        display: block;
        margin-bottom: 80px;
        padding: 0px 30px;
    }

    .section-event__main-event1,
    .section-event__main-event2,
    .section-event__main-event3 {
        text-align: center;
    }

    .section-event__main-event1-description,
    .section-event__main-event2-description,
    .section-event__main-event3-description {
        max-width: 270px;
        padding-left: 0px;
        padding-top: 20px;
        margin: 0 auto;
    }

    .section-event__main-event1-description p,
    .section-event__main-event2-description p,
    .section-event__main-event3-description p {
        padding-top: 0px;
    }

    .inview {
        opacity: 0;
        transform: translateY(20px);
        transition: 2.0s;
        transition-delay: 0.1s;
    }

    .inview.show {
        opacity: 1;
        transform: translateY(0px);
    }

    .section-event__other-event {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 40px 40px 0px 40px;
    }

    .section-event__other-event img {
        max-width: 240px;
        height: 240px;
        margin: 0 40px;
        object-fit: cover;
        border-radius: 5px;
    }

    .section-event__other-event h3 {
        font-size: 1.8rem;
        font-weight: 500;
        padding-top: 20px;
    }

    .section-event__other-event p {
        padding-top: 10px;
        margin-bottom: 75px;
    }

    .section-event__plan__pc-img {
        display: block;
        z-index: 100;
    }

    .section-event__plan__phone-img {
        display: none;
    }
}

@media (max-width:1040px) {
    .section-event__plan__pc-img {
        display: none;
    }

    .section-event__plan__phone-img {
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .section-event__plan__phone-img {
        display: block;
        margin: 0 auto;
        width: 100%;
    }
}

.section-instagram {
    background-color: #f5f5f5;
    padding: 50px 0 65px 0;
}

.section-instagram-title img {
    max-width: 44px;
    height: 44px;
}

.section-instagram-title a {
    text-decoration: none;
    color: #333333;
}

.section-instagram-title h2 {
    font-weight: 500;
    padding-top: 5px;
    margin-bottom: 5px;
}

.section-instagram-title p {
    padding-top: 15px;
    margin-bottom: 35px;
}

.section-instagram-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1040px;
    margin: 0 auto;
}

.section-instagram-img img {
    width: 150px;
    height: 150px;
}

.footer {
    background-color: #dd3646;
    color: #f5f5f5;
    padding-top: 48px;
    padding-bottom: 60px;
}

.footer-contents {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-contents__description {
    padding: 0 40px;
}

.footer-contents-title h3 {
    font-size: 1.8rem;
}

.footer-contents address {
    text-align: left;
    padding: 20px 0px 0px 75px;
    margin-bottom: 40px;
    font-style: normal;
}

.footer-contents address p a {
    color: #fefefe;
}

.footer-contents small {
    padding-left: 25px;
    text-align: left;
}

.footer-contents img {
    max-width: 57px;
    height: 57px;
    border-radius: 50%;
}

.footer-contents-title {
    display: flex;
}

.footer-contents-title h3 {
    padding: 20px;
}

.footer-contents small {
    padding-left: 75px;
}

.footer-contents iframe {
    max-width: 270px;
    height: 270px;
}

.footer-contents__map {
    padding-right: 120px;
}

#page-top {
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #303030;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}

#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}

@media (max-width:1160px) {
    .footer-contents iframe {
        display: none;
    }

}

@media (max-width: 620px) {

    .footer {
        background-color: #dd3646;
        color: #f5f5f5;
        padding-top: 40px;
        padding-bottom: 15px;
    }

    .footer-contents__description {
        padding: 0 35px;
    }

    .footer-contents-title h3 {
        font-size: 1.8rem;
        padding: 0px;
    }

    .footer-contents address {
        text-align: left;
        padding: 35px 0px 0px 0px;
        margin-bottom: 40px;
        font-style: normal;
        font-size: 1.4rem;
    }

    .footer-contents small {
        padding: 0px;
        text-align: left;
        display: block;
        font-size: 1.4rem;
    }

    .footer-contents img {
        display: none;
    }

    .footer-contents__map {
        display: none;
    }

    .footer-contents iframe {
        display: none;
    }

    #page-top {
        position: fixed;
        right: 5px;
        bottom: 20px;
        height: 50px;
        text-decoration: none;
        font-weight: bold;
        transform: rotate(90deg);
        font-size: 90%;
        line-height: 1.5rem;
        color: #303030;
        padding: 0 0 0 35px;
        border-top: solid 1px;
    }

    #page-top::before {
        content: "";
        display: block;
        position: absolute;
        top: -1px;
        left: 0px;
        width: 15px;
        border-top: solid 1px;
        transform: rotate(35deg);
        transform-origin: left top;
    }
}