@charset "utf-8";

/* -------------------
共通
------------------- */

:root {
    --color-blue-primary: #074d9a;
    --color-blue-secondary: #074D9A;
    --color-blue-tertiary: #1B95E0;
    --color-blue-gray: #F4F7F9;
    --color-white: #fff;
    --color-gray-light: #E5EAF0;
    --color-black: #333;
	--color-red: #FC1901;
    --font-noto-sans-jp: "Noto Sans JP", sans-serif;
    --linear-gradient: linear-gradient(90deg, #074D9A 0%, #1B95E0 100%);
}
* {
    font-family: var(--font-noto-sans-jp);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

main {
    padding-top: 104px;
}
@media screen and (max-width: 720px) {
    main {
        padding-top: 70px;
    }
    
}
.mt-xxs {
    margin-top: 4px !important;
}
.mt-xs {
    margin-top: 8px !important; /* 4 + 4 */
}
.mt-sm {
    margin-top: 16px !important; /* 8 + 8 */
}
.mt-md {
    margin-top: 24px !important; /* 16 + 8 */
}
.mt-lg {
    margin-top: 48px !important; /* 24 + 24 */
}
.mt-xl {
    margin-top: 80px !important; /* 48 + 32 */
}
.mt-xxl {
    margin-top: 128px !important; /* 80 + 48 */
}
.mb-xxs {
    margin-bottom: 4px !important;
}
.mb-xs {
    margin-bottom: 8px !important; /* 4 + 4 */
}
.mb-sm {
    margin-bottom: 16px !important; /* 8 + 8 */
}
.mb-md {
    margin-bottom: 24px !important; /* 16 + 8 */
}
.mb-lg {
    margin-bottom: 48px !important; /* 24 + 24 */
}
.mb-xl {
    margin-bottom: 80px !important; /* 48 + 32 */
}
.mb-xxl {
    margin-bottom: 128px !important; /* 80 + 48 */
}

@media screen and (max-width: 720px) {
    .mt-xxs {
        margin-top: 2px !important;
    }
    .mt-xs {
        margin-top: 4px !important;
    }
    .mt-sm {
        margin-top: 8px !important;
    }
    .mt-md {
        margin-top: 12px !important;
    }
    .mt-lg {
        margin-top: 24px !important;
    }
    .mt-xl {
        margin-top: 40px !important;
    }
    .mt-xxl {
        margin-top: 64px !important;
    }
    .mb-xxs {
        margin-bottom: 2px !important;
    }
    .mb-xs {
        margin-bottom: 4px !important;
    }
    .mb-sm {
        margin-bottom: 8px !important;
    }
    .mb-md {
        margin-bottom: 12px !important;
    }
    .mb-lg {
        margin-bottom: 24px !important;
    }
    .mb-xl {
        margin-bottom: 40px !important;
    }
    .mb-xxl {
        margin-bottom: 64px !important;
    }
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.d-flex {
    display: flex !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

@media (max-width: 720px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: calc(100% - 2%);
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-sm-1 {
        flex: 0 0 calc(8.333333% - 2%);
        max-width: calc(8.333333% - 2%);
    }
    .col-sm-2 {
        flex: 0 0 calc(16.666667% - 2%);
        max-width: calc(16.666667% - 2%);
    }
    .col-sm-3 {
        flex: 0 0 calc(25% - 2%);
        max-width: calc(25% - 2%);
    }
    .col-sm-4 {
        flex: 0 0 calc(33.333333% - 2%);
        max-width: calc(33.333333% - 2%);
    }
    .col-sm-5 {
        flex: 0 0 calc(41.666667% - 2%);
        max-width: calc(41.666667% - 2%);
    }
    .col-sm-6 {
        flex: 0 0 calc(50% - 2%);
        max-width: calc(50% - 2%);
    }
    .col-sm-7 {
        flex: 0 0 calc(58.333333% - 2%);
        max-width: calc(58.333333% - 2%);
    }
    .col-sm-8 {
        flex: 0 0 calc(66.666667% - 2%);
        max-width: calc(66.666667% - 2%);
    }
    .col-sm-9 {
        flex: 0 0 calc(75% - 2%);
        max-width: calc(75% - 2%);
    }
    .col-sm-10 {
        flex: 0 0 calc(83.333333% - 2%);
        max-width: calc(83.333333% - 2%);
    }
    .col-sm-11 {
        flex: 0 0 calc(91.666667% - 2%);
        max-width: calc(91.666667% - 2%);
    }
    .col-sm-12 {
        flex: 0 0 calc(100% - 2%);
        max-width: calc(100% - 2%);
    }
    .flex-sm-column {
        flex-direction: column !important;
        gap: 4vw;
    }
}

@media (min-width: 721px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: calc(100% - 2%);
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-md-1 {
        flex: 0 0 calc(8.333333% - 2%);
        max-width: calc(8.333333% - 2%);
    }
    .col-md-2 {
        flex: 0 0 calc(16.666667% - 2%);
        max-width: calc(16.666667% - 2%);
    }
    .col-md-3 {
        flex: 0 0 calc(25% - 2%);
        max-width: calc(25% - 2%);
    }
    .col-md-4 {
        flex: 0 0 calc(33.333333% - 2%);
        max-width: calc(33.333333% - 2%);
    }
    .col-md-5 {
        flex: 0 0 calc(41.666667% - 2%);
        max-width: calc(41.666667% - 2%);
    }
    .col-md-6 {
        flex: 0 0 calc(50% - 2%);
        max-width: calc(50% - 2%);
    }
    .col-md-7 {
        flex: 0 0 calc(58.333333% - 2%);
        max-width: calc(58.333333% - 2%);
    }
    .col-md-8 {
        flex: 0 0 calc(66.666667% - 2%);
        max-width: calc(66.666667% - 2%);
    }
    .col-md-9 {
        flex: 0 0 calc(75% - 2%);
        max-width: calc(75% - 2%);
    }
    .col-md-10 {
        flex: 0 0 calc(83.333333% - 2%);
        max-width: calc(83.333333% - 2%);
    }
    .col-md-11 {
        flex: 0 0 calc(91.666667% - 2%);
        max-width: calc(91.666667% - 2%);
    }
    .col-md-12 {
        flex: 0 0 calc(100% - 2%);
        max-width: calc(100% - 2%);
    }
    .flex-md-column {
        flex-direction: column !important;
        gap: 4vw;
    }
}

@media (min-width: 1241px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: calc(100% - 2%);
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-lg-1 {
        flex: 0 0 calc(8.333333% - 2%);
        max-width: calc(8.333333% - 2%);
    }
    .col-lg-2 {
        flex: 0 0 calc(16.666667% - 2%);
        max-width: calc(16.666667% - 2%);
    }
    .col-lg-3 {
        flex: 0 0 calc(25% - 2%);
        max-width: calc(25% - 2%);
    }
    .col-lg-4 {
        flex: 0 0 calc(33.333333% - 2%);
        max-width: calc(33.333333% - 2%);
    }
    .col-lg-5 {
        flex: 0 0 calc(41.666667% - 2%);
        max-width: calc(41.666667% - 2%);
    }
    .col-lg-6 {
        flex: 0 0 calc(50% - 2%);
        max-width: calc(50% - 2%);
    }
    .col-lg-7 {
        flex: 0 0 calc(58.333333% - 2%);
        max-width: calc(58.333333% - 2%);
    }
    .col-lg-8 {
        flex: 0 0 calc(66.666667% - 2%);
        max-width: calc(66.666667% - 2%);
    }
    .col-lg-9 {
        flex: 0 0 calc(75% - 2%);
        max-width: calc(75% - 2%);
    }
    .col-lg-10 {
        flex: 0 0 calc(83.333333% - 2%);
        max-width: calc(83.333333% - 2%);
    }
    .col-lg-11 {
        flex: 0 0 calc(91.666667% - 2%);
        max-width: calc(91.666667% - 2%);
    }
    .col-lg-12 {
        flex: 0 0 calc(100% - 2%);
        max-width: calc(100% - 2%);
    }
}

div > img {
    width: 100%;
    display: block;
}

/* lightbox */

/* .lb-image {
    min-width: 20vw !important;
    max-width: 80vw !important;
    width: auto !important;
    height: auto !important;
} */

/* -------------------
ヘッダー
------------------- */
header {
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    height: 104px;
}

.header-navigation {
    display: flex;
    width: 100%;
    padding: 0 48px;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    gap: 24px;
    /* background-color: var(--color-white); */
}

.nav-left-section {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-shrink: 0;
    height: 100%;
}

.logo-container {
    display: flex;
    width: 307px;
    width: clamp(218px, 16vw, 307px);
    height: auto;
    align-items: center;
    gap: 4px;
}

.company-logo {
    object-fit: contain;
    width: 100%;
    transition: 0.2s;
}
.company-logo:hover {
    opacity: 0.8;
    transition: 0.2s;
}

.navigation-links {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--color-blue-primary);
    transition: color 0.2s ease;
    height: 100%;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 0;
    height: 4px;
    border-radius: 3px;
    background-color: var(--color-blue-primary);
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 40%;
}

.link-text {
    font-family: var(--font-noto-sans-jp);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-blue-primary);
    line-height: 20px;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-right-section {
    display: flex;
    align-items: center;
    gap: 24px;
    width: auto;
    flex-shrink: 0;
    position: relative;
}

.action-buttons {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    width: auto;
}

.primary-button {
    display: flex;
    height: 56px;
    min-width: 80px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 40px;
    background-color: var(--color-blue-primary);
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    background-color: var(--color-blue-tertiary);
}

.primary-button:active {
    transform: translateY(0);
}

.secondary-button {
    display: flex;
    width: auto;
    height: 56px;
    min-width: 80px;
    padding: 20px 28px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 40px;
    border: 2px solid var(--color-blue-primary);
    background-color: var(--color-white);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
    cursor: pointer;
}

.secondary-button:hover {
    background-color: var(--color-blue-gray);
    border: 2px solid var(--color-blue-tertiary);
}
.secondary-button:hover .mail-icon path {
    fill: var(--color-blue-tertiary);
}

.cart-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mail-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.button-text {
    font-family: var(--font-noto-sans-jp);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 20px;
    letter-spacing: 0.1px;
}

.primary-button .button-text {
    color: var(--color-white);
}

.secondary-button .button-text {
    color: var(--color-blue-primary);
}
.secondary-button:hover .button-text {
    color: var(--color-blue-tertiary);
}

.mobile-menu-toggle {
    display: none;
    color: var(--color-blue-primary);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    padding: 0px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 36px;
}
.mobile-menu-label {
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .header-navigation {
        padding: 20px 32px;
    }

    .nav-left-section {
        gap: 30px;
    }

    .navigation-links {
        gap: 30px;
        display: none;
    }

    .link-text {
        font-size: 14px;
    }

    .nav-right-section {
        width: auto;
        gap: 16px;
    }

    .primary-button {
        height: 48px;
        padding: 12px 16px;
    }

    .secondary-button {
        height: 48px;
        padding: 16px 20px;
    }

    .button-text {
        font-size: 14px;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    .action-buttons {
        gap: 16px;
    }
}

@media (max-width: 720px) {
    header {
        height: 70px;
    }
    .header-navigation {
        padding: 14px 20px;
    }

    .nav-left-section {
        justify-content: space-between;
    }

    .company-logo {
        width: 200px;
        height: auto;
    }

    .navigation-links {
        display: none;
    }

    .action-buttons {
        display: none;
    }
}

/* mega menu */
.mega-menu-container {
    position: absolute;
    top: 104px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
    display: none;
}
.mega-menu-container.active {
    display: flex;
}
.mega-menu-area {
    padding-top: 32px;
}
.mega-menu {
    display: flex;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    gap: 0;
}

.mega-menu-title {
    padding: 64px 50px;
    background: var(--linear-gradient);
}
.mega-menu-en {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-white);
    display: block;
    margin-bottom: 20px;
}

.mega-menu-text {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-white);
    display: block;
    margin-bottom: 54px;
}

.mega-menu-image {
    width: 384px;
    height: 200px;
}

.mega-menu-content {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 0 124px;
}
#dropdown-individual .mega-menu-content {
    flex-direction: column;
    gap: 40px;
}

.mega-menu-content ul {
    display: grid;
	align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
}

#dropdown-individual .mega-menu-content ul {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
}

.mega-menu-content a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-blue-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    width: 240px;
    font-size: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-gray-light);
    position: relative;
    margin: 0 auto;
}

#dropdown-individual .mega-menu-content a {
    width: 100%;
    max-width: 420px;
}

#dropdown-individual small{
	max-width: 420px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.mega-menu-content a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--color-blue-primary);
    transition: width 0.2s ease;
}

.mega-menu-content a:hover::after {
    width: 100%;
    transition: 0.2s;
}

.mega-menu-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.link-sub-icon {
    display: inherit;
}

.mega-menu-content a:hover {
    color: var(--color-blue-secondary);
}


/* menu modal */
/* .sp-menu-modal {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    height: calc(100vh - 88px);
    display: none;
} */
.sp-menu-modal {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    position: fixed;
    top: 104px;
    left: 0;
    width: 100%;
    height: calc(100vh - 88px);
    display: none;
}

.sp-menu-modal.active {
    display: block;
    animation: fade-in 0.3s ease-in-out forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.sp-menu-modal.active {
    display: block;
    animation: fade-in 0.3s ease-in-out forwards;
}


.menu-link-list {
    background: var(--linear-gradient);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 100%;
    height: fit-content;
    min-height: 100%;
    max-width: 540px;
    margin-left: auto;
    padding-bottom: 40px;
}

.menu-link-list > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

.menu-link-list li {
    border-bottom: 1px solid var(--color-white);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.375;
}

.menu-link-list li > a {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: .1s;
}

.menu-link-list > ul > li > a:hover {
    background: var(--color-blue-secondary);
    transition: .2s;
}

.menu-link-list li > a img {
    display: block;
    width: 22px;
    height: auto;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.link-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.menu-link-list .menu-link-sub {
    height: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
}

.menu-link-list .menu-link-sub.active {
    height: auto;
    visibility: visible;
    transition: max-height 0.4s;
    max-height: 500px;
    overflow: hidden;
}

.menu-link-list .menu-link-sub ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 30px;
}

.menu-link-list .menu-link-sub li > a {
    padding: 0;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
}

.menu-link-list .menu-link-sub li > a:hover {
    text-decoration: underline;
}

.menu-link-list .menu-link-sub ul {
    background-color: var(--color-white);
}

.menu-link-list .menu-link-sub li {
    color: var(--color-blue-primary);
}

.menu-link-list .menu-link-sub li > a > .link-sub-icon img {
    display: block;
    width: 16px;
    height: auto;
    aspect-ratio: 1 / 1;
}

.menu-link-list .primary-button ,
.menu-link-list .secondary-button {
    max-width: 360px;
    width: 90%;
    margin: 0 auto 20px;
    height: 80px;
    gap: 12px;
}
.menu-link-list .primary-button .button-text ,
.menu-link-list .secondary-button .button-text {
    font-size: 16px;
}
.menu-link-list .primary-button {
    background-color: #4DB6AC;
}
@media screen and (max-width: 720px) {
    .sp-menu-modal {
        top: 70px;
    }
    
}

/* -------------------
MV
------------------- */


/* -------------------
フッター
------------------- */
footer {
    width: 100%;
    height: auto;
    padding: 60px 40px 40px;
    background: linear-gradient(81deg, #074D9A 22.24%, #1B95E0 87.96%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
}
.footer-content {
    width: 100%;
    max-width: 1188px;
}
.footer-top {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--fff, #FFF);
}
.footer-menu {
    margin-bottom: 68px;
}
.footer-menu-list {
    display: flex;
    width: 100%;
    height: auto;
    padding-top: 40px;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}
.footer-bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.address-info {
    font-size: 16px;
}
.menu-title {
    display: block;
    margin-bottom: 24px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25em;
}
.footer-submenu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-submenu li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--fff, #FFF);
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.33em; /* 133.333% */
}
li.footer-submenu-sub {
    gap: 4px;
    color: var(--color-blue-gray);
    padding-left: 26px;
}
li.footer-submenu-sub span {
    width: 13px;
    height: 1px;
    background-color: var(--color-white);
}

.footer-submenu li a {
    max-width: 150px;
    font-weight: 500;
}
.footer-submenu li a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.footer-submenu-wrap {
    display: flex;
    flex-direction: row;
    gap: 40px;
}
.footer-bottom {
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word
}

.address-with-icon {
    margin-bottom: 10px;
}
.office-label ,
.contact-label {
    font-weight: 700;
}
.office-label {
    display: flex;
    align-items: center;
    gap: 8px;
}
.company-address {
    display: flex;
    align-items: center;
    gap: 16px;
}
.company-address .address-text,
.contact-numbers .contact-text {
    font-weight: 400;
    font-style: normal;
}
@media (max-width: 960px) {
    footer {
        padding: 40px 20px;
    }
    .footer-menu {
        display: none;
    }
    .address-info {
        font-size: 14px;
    }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 24px;
    }
    .company-address {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        margin-top: 24px;
        font-size: 12px;
    }
}
.content-box {
	background: var(--color-blue-gray);
	border: 2px solid var(--color-gray-light);
    padding: 40px;
    border-radius: 20px;
}
@media (max-width: 768px) {
	.content-box {
		padding: 20px;
	}
}