@charset "UTF-8";

#header {
  box-shadow: 0 1px 20px rgba(0,0,0,.2);
}

.page-mv {
    @media screen and (max-width: 767px) {
      padding-top: 9rem;
      margin-top: 4rem;
      display: flex;
      justify-content: center;
      align-items: center;
      background-image: url(../../common/img/page-mv-bg-sp.png);
      background-size: cover;
      min-height: 40vh;
    }

    @media screen and (max-width: 376px) {
        padding-top: 0;
      
    }

     .mv-text-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;

        @media screen and (max-width: 767px) {
          flex-direction: column;
          gap: 3rem;
          align-items: flex-start;
        }

        .common-title.type01 {
            font-size: 5.2rem;
            font-weight: bold;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2.5rem;

            @media screen and (max-width: 767px) {
              font-size: 3.5rem;
              gap: 1rem;
            }

            .title-main {
                letter-spacing: 10px;
                line-height: 1.5;

                @media screen and (max-width: 767px) {
                  letter-spacing: 4px;
                  font-size: 2.8rem;
                  font-family: "Zen Kaku Gothic New", sans-serif;
                }
            }
            
            .title-sub {
                font-size: 2.5rem;
                text-transform: uppercase;
                font-family: "Oswald", sans-serif;
                font-weight: 500;

                @media screen and (max-width: 767px) {
                  font-size: 1.2rem;
                }
            }
        }

        .right-col {
            @media screen and (max-width: 767px) {
              font-size: 1.4rem;
            }
        }
        
        
    }
}

/* Staff List (Interview style) */
.edit-area.staff {
    padding-bottom: 30rem;

    @media screen and (max-width: 767px) {
      padding-bottom: 18rem;
    }
    .staff-inner-box {
        overflow: hidden;
    }
    .int-list {
        /* display: flex;
        flex-wrap: wrap;
        gap: 4.5rem; */

        @media screen and (max-width: 767px) {
            /* flex-direction: column;
            gap: 6rem; */
        }

        .int-item {
            /* width: calc((100% - 9rem) / 3); */

            @media screen and (max-width: 767px) {
                /* width: 100%; */
            }

            .int-link {
                color: var(--font-color);
                display: flex;
                flex-direction: column;
                gap: 3.2rem;

                .int-img-box {
                    position: relative;
                    display: inline-block;

                    img {
                        width: 100%;
                        height: auto;
                        /* aspect-ratio: 4 / 3; */
                        object-fit: cover;
                    }

                    .pos {
                        position: absolute;
                        top: 0;
                        right: 0;
                        /* width: 10rem; */
                        height: 5rem;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background-color: var(--primary-color);
                        color: #fff;
                        font-size: 1.8rem;
                        font-weight: 500;
                        padding: 0 1rem;
                    }
                }

                .int-detail {
                    display: flex;
                    flex-direction: column;
                    gap: 2.6rem;

                    @media screen and (max-width: 767px) {
                        gap: 2rem;
                    }

                    .int-title {
                        font-size: 2.4rem;
                        font-weight: bold;
                        line-height: 1.5;
                        overflow: hidden;
						white-space: nowrap;
						text-overflow: ellipsis;

                        @media screen and (max-width: 767px) {
                            font-size: 2rem;
                            line-height: 1.7;
                        }
                    }

                    .int-main {
                        .int-year {
                            font-size: 1.4rem;
                            margin-right: 1.6rem;
                        }

                        .int-name {
                            font-size: 2.3rem;
                            font-weight: 500;
                            text-transform: uppercase;

                            @media screen and (max-width: 767px) {
                                font-size: 1.8rem;
                            }
                        }
                    }
                }
            }
        }
    }

    .staff-pagination {
        top: 100%;
        margin-top: 6rem;
        .swiper-pagination-bullet-active {
            background: var(--primary-color);
        }
    }

    .navigation.pagination {
            position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    margin-top: 12rem;

    }

    .swiper-button-next, .swiper-button-prev {
        color: var(--primary-color);
        width: 8rem;
        height: 8rem;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin-top: -5rem;
        box-shadow: 0 1px 20px rgba(0, 0, 0, .2);

        @media screen and (max-width: 767px) {
          width: 5rem;
          height: 5rem;
        }

        &::after {
            font-size: 3rem;

            @media screen and (max-width: 767px) {
              font-size: 1.6rem;
            }
        }

    }

    .swiper-button-prev {
        margin-left: -5rem;

        @media screen and (max-width: 767px) {
          margin-left: -2rem;
        }
    }
    .swiper-button-next {
        margin-right: -5rem;

        @media screen and (max-width: 767px) {
          margin-right: -2rem;
        }
    }
}

