@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    background-image: url(../img/kansai/background.jpg);
    background-repeat: repeat-y;
    background-position-x: center;
}

@media only screen and (max-width: 1200px) {
    background-size: cover;
}

.lang {
    width: 40px;
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 5px;
    border-radius: 4px;
}

.lang a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.lang .dropdown {
    transition: opacity 0.3s ease-out;
    opacity: 0;
}

.lang .dropdown a:hover {
    filter: brightness(0.8);
    transition: 0.3s;
}

.lang:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.lang:hover .dropdown {
    opacity: 1;
}

@media only screen and (max-width: 1200px) {
    .lang {
        top: 10px;
        right: 10px;
        width: 30px;
    }
}

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 75px 0;
    gap: 20px;
}

@media only screen and (max-width: 1200px) {
    .header {
        margin: 50px 0;
        gap: 15px;
    }
}

.slogan span {
    color: #ffffff;
    letter-spacing: 0.6rem;
    font-size: 1.15rem;
}

@media only screen and (max-width: 1200px) {
    .slogan span {
        font-size: 1rem;
    }
}

.brand a {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.brand a img {
    width: 25%;
}

.wrapper {
    background-color: rgba(255, 255, 255, 0.75);
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

@media only screen and (max-width: 1200px) {
    .wrapper {
        margin-bottom: 30px;
    }
}

.navigation {
    background-color: rgba(255, 255, 255, 0.5);
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation .hamburger {
    display: none;
}

.navigation .dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation .dropdown .close {
    display: none;
}

.navigation .dropdown ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 65px 30px 45px 120px;
}

.navigation .dropdown ul li {
    list-style: none;
    margin-right: 70px;
}

.navigation .dropdown ul li a {
    font-size: 1.15rem;
    letter-spacing: 0.75rem;
    text-decoration: none;
    color: #333;
}

.navigation .dropdown ul li a:hover {
    transition: 0.3s;
    font-weight: 600;
}

.navigation .dropdown ul li.active {
    font-weight: 600;
}

.navigation .shop {
    margin: 65px 120px 45px 30px;
}

.navigation .shop a {
    font-size: 1.15rem;
    letter-spacing: 0.75rem;
    text-decoration: none;
    color: #F90604;
}

.navigation .shop a:hover {
    transition: 0.3s;
    font-weight: 600;
    filter: brightness(0.8);
}

@media only screen and (max-width: 1200px) {
    .navigation {
        margin: 20px 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .navigation .hamburger {
        display: flex;
        margin: -10px 0 -20px 20px;
        font-size: 2.5rem;
    }

    .navigation .hamburger a {
        color: #333;
        transition: 0.3s;
    }

    .navigation .hamburger a:hover  {
        filter: brightness(0.8);
    }

    .navigation .dropdown ul {
        margin: 30px 40px;
    }

    .navigation .dropdown ul li {
        display: none;
    }

    .navigation .dropdown ul li a {
        font-size: 1rem;
        letter-spacing: 0.5rem;
    }

    .navigation .dropdown {
        transition: opacity 0.3s ease-out;
        opacity: 0;
    }

    .navigation .dropdown.active {
        opacity: 1;
        position: absolute;
        background-color: #ffffff;
        width: 75%;
        height: 100vh;
        display: flex;
        align-items: flex-start;
        top: 0;
        bottom: 0;
    }

    .navigation .dropdown.active ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navigation .dropdown.active ul li {
        display: flex;
        margin: 10px 0;
        padding: 0 0 10px;
        width: 100%;
    }

    .navigation .dropdown.active ul li:not(.navigation .dropdown.active ul li:last-child) {
        border-bottom: 1px solid #eee;
    }

    .navigation .dropdown.active .close {
        display: flex;
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 2rem;
    }

    .navigation .dropdown.active .close a {
        transition: 0.3s;
        color: #333;
    }

    .navigation .dropdown.active .close a:hover {
        filter: brightness(0.8);
    }

    .navigation .shop {
        margin: 0 20px 0 0;
    }
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.footer a {
    color: #333;
    text-decoration: none;
    font-size: 2rem;
}

.footer a:hover {
    transition: 0.3s;
    filter: brightness(0.8);
}

.footer a:not(.footer a:last-child) {
    margin-right: 50px;
}

.footer a i {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    padding: 5px;
}

@media only screen and (max-width: 1200px) {
    .footer {
        margin-bottom: 30px;
    }
}

/* home */

/* home - section-1 */
.home .section-1 {
    margin: 0 60px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.home .section-1 .cover img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.home .section-1 .content {
    margin-top: 30px;
    grid-column: span 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .section-1 .content i {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    padding: 5px;
    font-size: 2.5rem;
    margin-right: 10px;
}

.home .section-1 .content p {
    text-align: center;
    color: #333;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
}

.home .section-1 .content a {
    text-decoration: none;
    color: #333;
}

.home .section-1 .content a:hover {
    transition: 0.3s;
    text-decoration: underline;
}

@media only screen and (max-width: 1200px) {
    .home .section-1 {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 30px 30px;
        gap: 15px;
    }

    .home .section-1 .content p {
        font-size: 0.8rem;
    }

    .home .section-1 .cover-1 {
        order: 1;
    }

    .home .section-1 .cover-2 {
        order: 2;
    }

    .home .section-1 .cover-3 {
        order: 4;
    }

    .home .section-1 .cover-4 {
        order: 5;
    }

    .home .section-1 .content {
        margin-top: 0;
        order: 3;
        grid-column: span 2;
    }

    .home .section-1 .content i {
        font-size: 2rem;
        margin-right: 5px;
    }
}

/* home - section 2 */
.home .section-2 {
    background-color: rgba(255, 255, 255, 0.5);
    margin-top: 60px;
    padding: 60px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.home .section-2 .content {
    width: 50%;
    color: #333;
}

.home .section-2 .content h2 {
    font-weight: 400;
    letter-spacing: 0.7rem;
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.home .section-2 .content p {
    font-size: 1.2rem;
    text-align: justify;
}

.home .section-2 .content p:not(.home .section-2 .content p:last-child) {
    margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
    .home .section-2 {
        margin-top: 30px;
        padding: 30px 0;
    }

    .home .section-2 .content {
        width: 100%;
        margin: 0 30px;
    }

    .home .section-2 .content h2 {
        letter-spacing: 0.5rem;
        font-size: 1.5rem;
    }

    .home .section-2 .content p {
        font-size: 0.8rem;
    }
}

/* home - section-3 */
.home .section-3 {
    position: relative;
    margin-top: 60px;
}

.home .section-3 img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.home .section-3 .content {
    position: absolute;
    top: 40%;
    left: 5%;
    width: 15%;
    color: #fff;
    text-align: justify;
}

.home .section-3 .content img {
    margin-top: 15px;
}

@media only screen and (max-width: 1200px) {
    .home .section-3 {
        margin-top: 30px
    }

    .home .section-3 .content {
        top: 10%;
        width: 25%;
        font-size: 0.5rem;
    }

    .home .section-3 .content img {
        margin-top: 10px;
    }
}

/* home - section-4 */
.home .section-4 {
    margin: 60px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto;
    grid-column-gap: 50px;
    grid-row-gap: 25px;
}

.home .section-4 .cover {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.home .section-4 .cover img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.home .section-4 .content-1 {
    display: flex;
    justify-content: center;
    align-items: end;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.home .section-4 .content-2 {
    display: flex;
    justify-content: center;
    align-items: start;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.home .section-4 .content {
    color: #333;
}

.home .section-4 .content h2 {
    font-weight: 400;
    letter-spacing: 0.7rem;
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.home .section-4 .content p {
    font-size: 1.2rem;
}

.home .section-4 .content p:not(.home .section-4 .content p:last-child) {
    margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
    .home .section-4 {
        margin: 30px;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-column-gap: 25px;
        grid-row-gap: 25px;
    }

    .home .section-4 .cover {
        grid-column: 1;
        grid-row: 2;
    }

    .home .section-4 .content h2 {
        font-weight: 400;
        letter-spacing: 0.5rem;
        font-size: 1.5rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .home .section-4 .content p {
        font-size: 0.8rem;
    }

    .home .section-4 .content-1 {
        display: flex;
        justify-content: center;
        align-items: end;
        grid-column: 1;
        grid-row: 1;
    }

    .home .section-4 .content-2 {
        display: flex;
        justify-content: center;
        align-items: start;
        grid-column: 1;
        grid-row: 3;
    }
}

/* home - section-5 */
.home .section-5 {
    margin: 30px 60px -30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    align-items: center;
}

.home .section-5 .content {
    color: #333;
}

.home .section-5 .content h3 {
    font-weight: 400;
    letter-spacing: 0.7rem;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.home .section-5 .content h4 {
    font-weight: 400;
    letter-spacing: 0.7rem;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.home .section-5 .content p {
    font-size: 1rem;
    text-align: justify;
}

.home .section-5 .cover {
    text-align: center;
}

.home .section-5 .cover img {
    width: 100%;
    object-fit: cover;
}

.home .section-5 .anchor {
    grid-column: span 3;
    text-align: right;
    margin-top: -120px;
}

.home .section-5 .anchor a {
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
}

.home .section-5 .anchor a:hover {
    font-weight: 500;
    transition: 0.3s;
}

@media only screen and (max-width: 1200px) {
    .home .section-5 {
        margin: 15px 30px 0;
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
    }

    .home .section-5 .content {
        grid-column: 1;
    }

    .home .section-5 .content h3 {
        font-size: 1.2rem;
        letter-spacing: 0.5rem;
    }

    .home .section-5 .content h4 {
        font-size: 1rem;
        letter-spacing: 0.5rem;
    }

    .home .section-5 .content p {
        font-size: 0.8rem;
    }

    .home .section-5 .cover {
        grid-column: 1;
    }

    .home .section-5 .anchor {
        grid-column: 1;
        margin-top: 0;
    }

    .home .section-5 .anchor a {
        font-size: 1.1rem;
    }
}

/* about us */
.about-us {
    margin: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.about-us .content {
    color: #333;
}

.about-us .content p {
    font-size: 1rem;
}

.about-us .content p:not(.about-us .content p:last-child) {
    margin-bottom: 55px;
}

.about-us .cover img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1200px) {
    .about-us {
        margin: 30px;
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }

    .about-us .content {
        font-size: 0.8rem;
    }

    .about-us .content p:not(.about-us .content p:last-child) {
        margin-bottom: 15px;
    }

    .about-us .cover-2 {
        order: 4;
    }

    .about-us .content-2 {
        order: 3;
    }
}

/* collections */
.collections {
    margin: 60px 200px;
    display: grid;
    gap: 15px;
}

.collections .collection {
    background-color: rgba(255, 255, 255, 0.5);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
}

.collections .collection:nth-child(even) .cover {
    order: 2;
}

.collections .collection .cover img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.collections .collection .content {
    display: flex;
    flex-direction: column;
    padding: 40px;
    color: #333;
}

.collections .collection .content .title {
    margin-bottom: 20px;
}

.collections .collection .content .title h3 {
    font-weight: 400;
    letter-spacing: 0.5rem;
    font-size: 1.8rem;
}

.collections .collection .content .description {
    margin-bottom: 20px;
}

.collections .collection .content .description p {
    text-align: justify;
    font-size: 1rem;
}

.collections .collection .content .description p:not(.collections .collection .content .description p:last-child) {
    margin-bottom: 15px;
}

.collections .collection .content .anchor {
    margin-top: auto;
    text-align: right;
}

.collections .collection .content .anchor a {
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
}

.collections .collection .content .anchor a:hover {
    font-weight: 500;
    transition: 0.3s;
}

@media only screen and (max-width: 1200px) {
    .collections {
        margin: 30px;
    }

    .collections .collection {
        grid-template-columns: 1fr;
    }

    .collections .collection:nth-child(odd) .cover {
        order: 2;
    }

    .collections .collection .content {
        padding: 15px;
    }

    .collections .collection .content .title {
        margin-bottom: 10px;
    }

    .collections .collection .content .title h3 {
        font-weight: 400;
        letter-spacing: 0.5rem;
        font-size: 1.4rem;
    }

    .collections .collection .content .description {
        margin-bottom: 10px;
    }

    .collections .collection .content .description p {
        font-size: 0.8rem;
    }

    .collections .collection .content .description p:not(.collections .collection .content .description p:last-child) {
        margin-bottom: 10px;
    }

    .collections .collection .content .anchor a {
        font-size: 1.1rem;
    }
}

/* events */
.events {
    margin: 60px 200px;
    display: grid;
    gap: 15px;
}

.events .event {
    background-color: rgba(255, 255, 255, 0.5);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
}

.events .event:nth-child(even) .cover {
    order: 2;
}

.events .event .cover img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.events .event .content {
    display: flex;
    flex-direction: column;
    padding: 40px;
    color: #333;
}

.events .event .content .title {
    margin-bottom: 20px;
}

.events .event .content .title h3 {
    font-weight: 400;
    letter-spacing: 0.5rem;
    font-size: 1.8rem;
}

.events .event .content .description {
    margin-bottom: 20px;
}

.events .event .content .description p {
    text-align: justify;
    font-size: 1rem;
}

.events .event .content .description p:not(.events .event .content .description p:last-child) {
    margin-bottom: 15px;
}

.events .event .content .anchor {
    margin-top: auto;
    text-align: right;
}

.events .event .content .anchor a {
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
}

.events .event .content .anchor a:hover {
    font-weight: 500;
    transition: 0.3s;
}

@media only screen and (max-width: 1200px) {
    .events {
        margin: 30px;
    }

    .events .event {
        grid-template-columns: 1fr;
    }

    .events .event:nth-child(odd) .cover {
        order: 2;
    }

    .events .event .content {
        padding: 15px;
    }

    .events .event .content .title {
        margin-bottom: 10px;
    }

    .events .event .content .title h3 {
        font-weight: 400;
        letter-spacing: 0.5rem;
        font-size: 1.4rem;
    }

    .events .event .content .description {
        margin-bottom: 10px;
    }

    .events .event .content .description p {
        font-size: 0.8rem;
    }

    .events .event .content .description p:not(.events .event .content .description p:last-child) {
        margin-bottom: 10px;
    }

    .events .event .content .anchor a {
        font-size: 1.1rem;
    }
}

.event-page {
    margin: 60px 200px;
}

.event-page .event {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 40px;
    color: #333;
}

.event-page .event .title {
    margin-bottom: 20px;
}

.event-page .event .title h3 {
    font-weight: 400;
    letter-spacing: 0.5rem;
    font-size: 1.8rem;
}

.event-page .event .description {
    margin-bottom: 20px;
}

.event-page .event .description p {
    text-align: justify;
    font-size: 1rem;
}

.event-page .event .description p:not(.event-page .event .description p:last-child) {
    margin-bottom: 15px;
}

.event-page .event .description p a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.event-page .event .description p a:hover {
    transition: 0.3s;
    text-decoration: underline;
}

.event-page .event .description .cover:not(.event-page .event .description .cover:last-child) {
    margin-bottom: 20px;
}

.event-page .event .description .cover-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.event-page .event .description .cover-group .cover {
    margin-bottom: 0 !important;
}

.event-page .event .description .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-page .event .description .iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.event-page .event .description .iframe-wrapper:not(.event-page .event .description .iframe-wrapper:last-child) {
    margin-bottom: 20px;
}

.event-page .event .description .iframe-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 1200px) {
    .event-page {
        margin: 30px;
    }

    .event-page .event {
        padding: 15px;
    }

    .event-page .event .title {
        margin-bottom: 10px;
    }

    .event-page .event .title h3 {
        font-weight: 400;
        letter-spacing: 0.5rem;
        font-size: 1.4rem;
    }

    .event-page .event .description {
        margin-bottom: 10px;
    }

    .event-page .event .description p {
        font-size: 0.8rem;
    }

    .event-page .event .description p:not(.event-page .event .description p:last-child) {
        margin-bottom: 10px;
    }

    .event-page .event .anchor a {
        font-size: 1.1rem;
    }
}

/* contact */
.contact {
    margin: 60px 200px;
}

.contact .form {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 40px;
    color: #333;
}

.contact .form .title {
    margin-bottom: 20px;
}

.contact .form .title h3 {
    font-weight: 400;
    letter-spacing: 0.5rem;
    font-size: 1.8rem;
}

.contact .form .content .group:not(.contact .form .content .group:last-child) {
    margin-bottom: 15px;
}

.contact .form .content .group label {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact .form .content .group label,
.contact .form .content .group input,
.contact .form .content .group textarea {
    display: block;
}

.contact .form .content .group input,
.contact .form .content .group textarea {
    width: 50%;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    font-family: inherit;
    font-size: inherit;
}

.contact .form .content .group textarea {
    min-height: 200px;
}

.contact .form .content .group img {
    margin-bottom: 5px;
}

.contact .form .content .group button {
    padding: 15px 25px;
    min-width: 15%;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    background: transparent;
}

.contact .form .content .group button[type="reset"] {
    border: 1px solid #333;
}

.contact .form .content .group button[type="reset"]:hover {
    padding: 14px 24px;
    border-width: 2px;
    filter: brightness(0.8);
    cursor: pointer;
}

.contact .form .content .group button[type="submit"] {
    margin-left: 10px;
    color: #F90604;
    border: 1px solid #F90604;
}

.contact .form .content .group button[type="submit"]:hover {
    padding: 14px 24px;
    border-width: 2px;
    filter: brightness(0.8);
    cursor: pointer;
}

.contact .form .content .group ul li {
    list-style: none;
    color: #F90604;
    font-size: 0.8rem;
    margin-top: 5px;
}

@media only screen and (max-width: 1200px) {
    .contact {
        margin: 30px;
    }

    .contact .form {
        padding: 30px;
    }

    .contact .form .title {
        margin-bottom: 10px;
    }

    .contact .form .title h3 {
        font-weight: 400;
        letter-spacing: 0.5rem;
        font-size: 1.4rem;
    }

    .contact .form .content .group label {
        font-size: 0.8rem;
    }

    .contact .form .content .group input,
    .contact .form .content .group textarea {
        width: 100%;
        font-size: 0.7rem;
    }
}

/* alerts */
.alerts .alert {
    padding: 5px 10px;
    margin-bottom: 10px;
    border: 1px solid transparent;
}

.alerts .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alerts .alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}