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

html, body {
    min-height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}

::-webkit-scrollbar {
    display: none;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

.top {
    /*height: 100svh;*/
    background: linear-gradient(90deg, #669900 0%, #008103 100%);
    background-size: cover;
    background-position: center;
    color: #fff;

    @media screen and (max-width: 768px) {
        height: auto;
    }
}

.top__container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    position: relative;
    gap: 0;
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;

    @media screen and (max-width: 912px) {
        flex-direction: column-reverse;
    }
}

.top__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 45px 45px;
    z-index: 10;
    position: relative;
    min-width: 480px;

    @media screen and (max-height: 920px) {
        padding: 125px 45px 45px;
    }

    @media screen and (max-width: 912px) {
        padding: 60px 20px 80px;
        min-width: auto;
    }
}

.top__logo__container {
    @media screen and (max-width: 912px) {
        width: 600px;
        max-width: 100%;
        padding: 20px 0;
    }*
}

.top__logo {
    position: absolute;
    top: 45px;
    left: 45px;
    max-width: 600px;
    width: 185px;
    height: auto;

    @media screen and (max-width: 912px) {
        position: static;
        width: 130px;
        margin-right: auto;
    }
}

.top__group-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    margin-top: 45px;
    margin-right: 20px;

    @media screen and (max-width: 912px) {
        gap: 25px;
        margin-top: 40px;
    }
}

.top__group-logo__item {
    height: 60px;
    width: auto;
    display: block;

    @media screen and (max-width: 912px) {
        height: 45px;
    }
}

.top__group-logo a:first-child .top__group-logo__item {
    height: 28px;
}

.top__right {
    flex: 1;
    display: flex;
    justify-content: center;
    width: calc(max(100svh, 704px) / 16 * 9);

    @media screen and (max-width: 912px) {
      min-height: auto;
      min-width: auto;
      max-width: 100%;
      width: 100%;
    }
}

.top__text__content {
    max-width: 600px;
    color: #fff;
    text-align: center;
}

.top__year {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;

    @media screen and (max-width: 912px) {
        font-size: 36px;
        margin-bottom: 15px;
    }
}

.top__greeting {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;

    @media screen and (max-width: 912px) {
        font-size: 45px;
        margin-bottom: 30px;
    }
}

.top__message {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;

    @media screen and (max-width: 912px) {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px;
    }
}

.top__video__container {
    aspect-ratio: 9 / 16;
    max-height: max(100svh, 704px);
    position: relative;
    overflow: hidden;
    @media screen and (max-width: 1192px) {
      max-height: max(100%, 704px);
    }

    @media screen and (max-width: 912px) {
        height: auto;
        width: 100%;
        min-height: auto;
    }
}

.top__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audio-toggle {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45) center center no-repeat;
    background-size: 26px 26px;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
    z-index: 2;
}

.audio-toggle:hover,
.audio-toggle:focus-visible {
    background: rgba(0, 0, 0, 0.7);
    border-color: #fff;
    outline: none;
    background-repeat: no-repeat;
    background-position: center center;
}

.audio-toggle:active {
    background: rgba(0, 0, 0, 0.85);
}

.audio-toggle.audio-on {
    background-image: url('assets/images/sound-on.svg');
}

.audio-toggle.audio-off {
    background-image: url('assets/images/sound-off.svg');
}
}



.third {
    background-color: #fff;
}

.corporate_image {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    max-width: calc(1920px* 2);
}

.corporate_image_list {
    width: var(--corporate-image-list-width, calc(100% / 3));
    transition: width .2s ease;

    @media screen and (max-width: 768px) {
        width: 100%;
    }
}

.corporate_image_list img {
    width: 100%;
    height: auto;

    @media screen and (max-width: 768px) {
        --corporate-image-list-width: calc(100% / 2);
    }
}

.ttl {
    color: #404040;
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    padding: 30px 0;
    text-align: center;
    text-transform: uppercase;
}

.caption {
    display: block;
    font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 15px;
    padding-top: 12px;
}

.map-wrap {
    margin: 0 auto;
    position: relative;
    padding: 60px 15px;
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, 570px));
    gap: 40px;
    justify-content: center;

    @media screen and (max-width: 768px) {
        grid-template-columns: minmax(auto, 570px);
        gap: 10px;
        padding: 40px 0;
    }
}

.map {
    width: 570px;
    height: 570px;

    @media screen and (max-width: 768px) {
        width: 100%;
        aspect-ratio: 1;
        height: auto;
    }
}

.office_view {
    background: #000;
}
.office_view .slick-prev,
.office_view .slick-next {
    width: 40px;
    height: 40px;
}

.office_view .slick-prev {
    left: 76px;
    z-index: 10;
}

.office_view .slick-next {
    right: 76px;
    z-index: 10;
}

.office_view .slick-prev::before,
.office_view .slick-next::before {
    content: '';
}

.footer {
    background: #000;
    color: #fff;
    padding: 124px 15px;
}

.footer img {
    user-select: none;
    max-width: 100%;
    pointer-events: none;
}

.footer_logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.footer_catch_copy {
    font-size: 14px;
    padding-bottom: 30px;
}
.copyright {
    margin-top: 60px;
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.15rem;
} 
  