@charset "UTF-8";
        
/* ロゴ */

.logo {
    width: clamp(10.625rem, 8.750rem + 5.556vw, 13.75rem);
}

.logo__link {
    display: block;
}

.logo__img {
    width: 100%;
    height: auto;
}

.header__logo {
    margin-left: 20px;
}

.footer__logo {
    width: clamp(11.875rem, 10.000rem + 5.556vw, 15rem);

    @media(max-width: 1090px) {
        align-self: center;
    }

    @media(max-width: 540px) {
        align-self: flex-start;
    }
}



/* header */

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9999;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;


    @media(max-width: 840px) {
        height: 72px;
    }

    @media(max-width: 540px) {
        height: 64px;
    }
}

/* btn */

.btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-left: 40px;
    margin-right: 20px;

    @media(max-width: 840px) {
        display: none;
    }
}

.hamburger-btns {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 40px;

    @media(max-width: 540px) {
    	display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
    }
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 200px;
    display: flex;
    align-items: center;
    color: #fff;
    background: #244e8f;
    border: 1px solid transparent;
    border-radius: calc(infinity * 1px);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.14);
    gap: 10px;
    padding-top: 12.5px;
    padding-bottom: 12.5px;
    transition: all 0.3s ease;

    &:hover {
        color: #244e8f;
        background: #fff;
        border-color: currentColor;
    }
}

.btn--alert {
    background: #d54253;

    &:hover {
        color: #d54253;
        background: #fff;
        border-color: currentColor;
    }
}

.btn-arrow {
    filter: invert(98%) sepia(98%) saturate(8%) hue-rotate(167deg) brightness(102%) contrast(102%);
    width: 5px;
    font-weight: 500;
    margin-left: 8px;
}

.btn:hover .btn-arrow {
    filter: none;
}

.btn--hamburger {
    width: 100%;
    max-width: 200px;
    padding-top: 9.5px;
    padding-bottom: 9.5px;

    @media(max-width: 540px) {
        width: 100%;
        max-width: 300px;
        padding-top: 14.5px;
        padding-bottom: 14.5px;
    }
}

.btn--form {
    width: 430px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
    margin-top: 40px;
    margin-inline: auto;

    &:hover {
        color: #fff;
        background-color: #d54253;
        opacity: 0.6;
    }

    @media(max-width: 840px) {
        margin-top: 8px;
    }

    @media(max-width: 540px) {
        width: 280px;
        margin-top: 24px;
    }
}


/* グローバルナビゲーション */

.global-nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    border-bottom: 1px solid #fff;

    @media(max-width: 840px) {
        display: none;
    }
}

.global-nav__item {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #142b4e;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.14);
    transition: all 0.3s ease;
    position: relative;
}

.global-nav__item--hover:hover {
    background: #244e8f;
}

.global-nav__link {
    display: block;
    font-size: 14px;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
}

.global-nav__link--arrow {
    &::after {
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        background-image: url(../img/arrow.svg);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        filter: invert(100%) sepia(5%) saturate(82%) hue-rotate(103deg) brightness(114%) contrast(100%);
        transform: rotate(90deg);
        margin-left: 8px;
    }


}

.global-nav__item {

    &:nth-of-type(4) .global-nav__link--arrow::after,
    &:nth-of-type(5) .global-nav__link--arrow::after,
    &:nth-of-type(6) .global-nav__link--arrow::after {
        content: none;
    }
}

.sub-nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sub-nav__item {
	position: relative;
    background: rgba(36, 78, 143, 0.9);

    &:not(:last-child) {
		border-bottom: 1px solid #fff;
        margin-bottom: 1px;
    }

    &:hover {
        background: rgba(36, 78, 143, 0.7);
    }
}

.global-nav__item:hover .sub-nav__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.global-nav__item>.sub-nav__link {
    display: inline-block;
    padding: 10px 15px;
}

.sub-nav__link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    padding-top: 14px;
    padding-right: 30px;
    padding-bottom: 14px;
    padding-left: 30px;
}

.sub-nav__img {
    width: 10px;
    aspect-ratio: 1;
    filter: invert(100%) sepia(5%) saturate(82%) hue-rotate(103deg) brightness(114%) contrast(100%);
}

.sub-nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background-color: #fff;
    z-index: 1000;
}

.global-nav__item:hover>.sub-nav__list {
    display: block;
}


.sub-sub-nav__list {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    background: rgba(4, 41, 96, 0.9);
    z-index: 1100;
}

.sub-nav__item:hover>.sub-sub-nav__list {
    display: block;
	width: 100%;
}

.sub-sub-nav__list {
    width: 100vw;
}

.sub-sub-nav__item {
    background: rgba(36, 78, 143, 0.7);;
	&:hover {
		background: rgba(4, 41, 96, 1);
	}
	&:not(:last-child) {
        margin-bottom: 1px;
    }
}

.sub-sub-nav__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 14px;
    padding-right: 30px;
    padding-bottom: 14px;
    padding-left: 30px;
}

.sub-sub-nav__img {
    width: 10px;
    aspect-ratio: 1;
    filter: invert(100%) sepia(5%) saturate(82%) hue-rotate(103deg) brightness(114%) contrast(100%);
}

/* ハンバーガーメニュー */

.hamburger__menu {
    display: none;
    width: 72px;
    aspect-ratio: 1;
    background: #142b4e;

    @media(max-width: 840px) {
        display: grid;
        place-content: center;
    }

    @media(max-width: 540px) {
        width: 64px;
    }
}

.hamburger__inner {
    display: grid;
    grid-template-rows: repeat(3, auto);
	align-items: center;
    justify-content: center;
    gap: 5px;
    height: 40px;

    @media(max-width: 540px) {
        height: 34px;
    }
}

.hamburger__text {
    align-self: flex-end;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;

    @media(max-width: 540px) {
        font-size: 12px;
		letter-spacing: normal;
    }
}

.hamburger__line {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #fff;
    transition: transform 0.3s ease;

    @media(max-width: 540px) {
        height: 2px;
    }
}

.hamburger__menu.active .hamburger__line:nth-child(2) {
    transform: translateY(6px) rotate(20deg);

    @media(max-width: 540px) {
        transform: translateY(5px) rotate(20deg);
    }
}

.hamburger__menu.active .hamburger__line:nth-child(3) {
    transform: translateY(-5px) rotate(-20deg);

    @media(max-width: 540px) {
        transform: translateY(-4px) rotate(-20deg);
    }

}

.hamburger-nav {
    width: 100%;
    height: 100vh;
    background-color: #142b4e;
    display: none;
    overflow-y: scroll;
}

.hamburger-nav.active {
    display: none;

    @media(max-width: 840px) {
        display: block;
    }
}

.hamburger-nav__list {
    text-align: center;
    display: grid;
    grid-template-rows: repeat(8, auto);
}

.hamburger-nav__item {
    border-bottom: 1px solid #233c62;
}

.hamburger-nav__link {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding-top: 24px;
    padding-bottom: 24px;

    @media(max-width: 540px) {
        font-size: 16px;
        font-weight: 500;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

/* パンくずリスト */

.breadcrumb {
    height: 40px;
    padding: 0 30px;
    border-top: 1px solid transparent;

    @media(max-width: 1090px) {
        padding: 0 20px;
    }

    @media(max-width: 840px) {
        height: 50px;
    }

    @media(max-width: 540px) {
        height: auto;
        padding: 8px 16px;
    }
}

.breadcrumb--custom-bg {
	background: #f7f7f7;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    margin: 10px 0;

    @media(max-width: 540px) {
        flex-wrap: wrap;
    }
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;

    &:not(:last-child)::after {
        content: "｜";
        margin: 0 8px;
        color: #142b4e;
    }

    &:not(:first-child) {
        font-weight: 400;
    }

    @media(max-width: 540px) {
        align-items: normal;
        font-size: 12px;
    }
}


.breadcrumb__link {
    color: #0d1e5f;

    &:hover {
        opacity: 0.8;
    }
}

.breadcrumb__list:last-child {
    color: #8e8e8e;
    font-weight: bold;
}

/* 固定ページタイトル */

.page-title__container {
    display: grid;
    align-items: center;
    height: 250px;
    background: linear-gradient(90deg, #142B4E 0%, #244E8F 100%);

    @media(max-width: 840px) {
        height: auto;
    }
}

.page-title__wrapper {
    padding: 40px 80px;

    @media(max-width: 1090px) {
        padding: 40px 40px;
    }

    @media(max-width: 840px) {
        padding: 50px 30px;
    }

    @media(max-width: 540px) {
        padding: 36px 20px;
    }
}

.page-title {
    color: #fff;
    font-size: 42px;
    font-weight: 500;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;

    @media(max-iwdth: 840px) {
        font-size: 32px;
    }

    @media(max-width: 540px) {
        font-size: 24px;
    }
}

.page-title__excerpt {
	white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-top: 16px;

    @media(max-width: 840px) {
        margin-top: 12px;
    }

    @media(max-width: 540px) {
        font-size: 13px;
        line-height: 1.6;
    }
}

.page-title__excerpt-no {
    display: none;
}

/* contact */

.contact {
    margin-top: 80px;
    margin-bottom: 120px;

    @media(max-width: 1090px) {
        margin-bottom: 100px;
    }

    @media(max-width: 840px) {
        margin-top: 70px;
        margin-bottom: 80px;
    }

    @media(max-width: 540px) {
        margin-top: 50px;
        margin-bottom: 70px;
    }
}

.form {
    margin-top: 50px;

    @media(max-width: 840px) {
        margin-top: 40px;
    }

    @media(max-width: 540px) {
        margin-top: 30px;
    }
}

.contact__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    color: #142b4e;
    font-size: 32px;
    font-weight: 700;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;

    &::after {
        content: '';
        display: block;
        width: 100px;
        height: 3px;
        background-color: #142b4e;

        @media(max-width: 540px) {
            width: 60px;
        }
    }

    @media(max-width: 840px) {
        font-size: 24;
    }

    @media(max-width: 540px) {
        font-size: 20px;
        letter-spacing: -0.04em;
        gap: 16px;
    }
}

.contact_desc {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;
    margin-top: 40px;

    @media(max-width: 540px) {
        text-align: left;
        font-weight: 500;
        line-height: 1.6;
        margin-top: 30px;
    }
}

.pc-only {
    display: block;

    @media(max-width: 540px) {
        display: none;
    }
}

.contact__annotation {
    text-align: center;
    color: #d54253;
    font-weight: 700;
    line-height: 1.8;
    margin-top: 30px;
}

.wp-block-contact-form-7-contact-form-selector {
	width: 90%;
    margin: 0 auto;
}

.form__inner {
    width: min(100%, 888px);
    margin-inline: auto;
}

.form__annotation {
    text-align: center;
    max-width: 657px;
    font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-inline: auto;
}

.form__item {
    display: grid;
    grid-template-columns: 21.171171% 1fr;
    grid-template-rows: auto;
    align-items: flex-start;
    gap: 34px;

    &:nth-of-type(1) {
        margin-top: 30px;

        @media(min-width: 768px) {
            margin-top: 50px;
        }
    }

    &:not(:last-of-type) {
        margin-bottom: 20px;
    }

    @media(max-width: 840px) {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
    }
}

.form__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    gap: 5px;
}

.label-required {
    display: inline-block;
    color: #d54253;
    font-size: 16px;
    font-weight: 700;
}

.label-required--not {
    color: #474747;
    background-color: #EDEDED;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    height: 50px;
    background-color: #f5f5f5;
    border: 1px solid #757575;
    padding: 10px;

    &:active {
        border-color: #244e8f;
    }
}

input[type="checkbox"] {
    appearance: auto !important;
    transform: scale(2, 2) translateX(-5px);
}

textarea {
    width: 100%;
    height: 220px;
    background-color: #f5f5f5 !important;
    border: 1px solid #757575 !important;
    padding: 10px !important;

    &:active {
        border-color: #244e8f;
    }
}

.agree {
    font-weight: 600;
    margin-left: 20px;
}

.privacy-policy__text {
    font-weight: 400;
    margin-top: 5px;
}

.privacy-policy__link {
    color: #0047ff;
}

.form__btn-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.form__icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    &::after {
        content: '';
        display: block;
        width: 5px;
        aspect-ratio: 1;
        background-image: url(../img/arrow.svg);
        filter: invert(48%) sepia(83%) saturate(4450%) hue-rotate(328deg) brightness(87%) contrast(90%);
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translate(0, -50%);
    }
}

.form-btn__wrapper {
    display: grid;
    place-self: center;
    width: 100%;
    max-width: 430px;
    margin-top: 40px;
    margin-inline: auto;
    position: relative;

    &:hover {
        opacity: 0.6;
    }

    @media(max-width: 840px) {
        margin-top: 8px;
    }

    @media(max-width: 540px) {
        max-width: 280px;
        margin-top: 24px;
    }
}

.form-btn__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);

    &::after {
        content: "";
        width: 10px;
        aspect-ratio: 1 / 2;
        background-color: #d54253;
        clip-path: polygon(43% 16%, 100% 50%, 43% 80%, 84% 50%);
    }
}

.form-btn {
    text-align: center;
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.03em;
    background-color: #d54253;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: calc(infinity * 1px);
    padding-top: 15px;
    padding-bottom: 15px;
}

span.wpcf7-spinner {
    display: none;
}



/* footer */

.footer {
    padding-top: 100px;

    @media(max-width: 540px) {
        padding-top: 0;
    }
}

.footer-nav__group {
    background-color: #f8f8f8;
    padding: 40px;
}

.footer-nav__lists {
    width: 836px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-inline: auto;
}

.footer-title {
    color: #757575;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 26px;

    @media(max-width: 540px) {
        margin-bottom: 16px;
    }
}

.footer-title__link--center {
    color: #142b4e;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;

    &:hover {
        opacity: 0.5;
    }
}

.footer-title__img-wrapper {
    position: relative;

    &::before {
        content: '';
        display: block;
        width: 22px;
        height: 22px;
        border: 1px solid #142b4e;
        border-radius: 50%;
    }
}

.footer-title__img {
    width: 5px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-nav__list:nth-of-type(1) .footer-nav__body {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    row-gap: 10px;
    column-gap: 40px;

    @media(max-width: 540px) {
        grid-template-columns: auto;
        grid-template-rows: auto auto auto;
    }
}

.footer-nav__list:nth-of-type(2) .footer-nav__body {
    display: grid;
    grid-template-areas:
        "item1 item2"
        "item3 ."
        "item4 .";
    row-gap: 10px;
    column-gap: 40px;

    @media(max-width: 540px) {
        grid-template-areas:
            "item1"
            "item2"
            "item3"
            "item4";
    }
}

.footer-nav__list:nth-of-type(3) .footer-nav__body {
    display: grid;
    grid-template-columns: repeat(2, auto);
    row-gap: 10px;
    column-gap: 40px;

    @media(max-width: 540px) {
        grid-template-columns: auto;
        grid-template-rows: auto auto auto;
    }
}

.footer-nav__list:nth-of-type(4) .footer-nav__body {
    display: grid;
    grid-auto-flow: row;
    row-gap: 10px;
}

.footer-nav__list:nth-of-type(2) .footer-nav__item:nth-of-type(1) {
    grid-area: item1;
}

.footer-nav__list:nth-of-type(2) .footer-nav__item:nth-of-type(2) {
    grid-area: item3;
}

.footer-nav__list:nth-of-type(2) .footer-nav__item:nth-of-type(3) {
    grid-area: item4;
}

.footer-nav__list:nth-of-type(2) .footer-nav__item:nth-of-type(4) {
    grid-area: item2;
}

.footer-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s ease;

    &:hover {
        opacity: 0.5;
    }
}

.footer-nav__img {
    width: 7px;
    aspect-ratio: 1 / 2;
}

.footer__container:nth-of-type(2) {
    display: grid;
    grid-template-columns: 1fr auto;
    border-top: 1px solid #e6e6e6;
    padding-top: 60px;
    padding-right: 80px;
    padding-bottom: 40px;
    padding-left: 80px;
    margin-top: 100px;

    @media(max-width: 1090px) {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        justify-content: center;
        gap: 30px;
    }

    @media(max-width: 540px) {
        justify-content: flex-start;
        padding-top: 50px;
        padding-right: 20px;
        padding-bottom: 40px;
        padding-left: 20px;
        margin-top: 0;
    }
}

.footer__inner:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__inner:nth-of-type(2) {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    gap: 40px;
    justify-self: flex-end;
    align-self: flex-end;

    @media(max-width: 1090px) {
        text-align: center;
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        justify-self: center;
        align-self: center;
        gap: 24px;
    }

    @media(max-width: 540px) {
        text-align: left;
        justify-self: flex-start;
        align-self: flex-start;
    }
}


.footer__text {
    text-align: left;
    font-size: 13px;

    @media(max-width: 1090px) {
        text-align: center;
    }

    @media(max-width: 540px) {
        text-align: left;
    }
}


.privacy-policy {
    font-size: 13px;
    text-decoration: underline !important;
}

/* 無料相談室 */

.consultation__img {
	display: grid;
	place-self: center;
    margin-top: 120px;
    @media(max-width: 1090px) {
        margin-top: 100px;
    }

    @media(max-width: 840px) {
        margin-top: 80px;
    }

    @media(max-width: 540px) {
        margin-top: 50px;
    }
}

.consultation__img:hover {
	opacity: 0.6;
}

.consultation-btn__wrapper {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.consultation-btn {
    color: #fff;
    width: 100%;
    max-width: 430px;
    background: #d54253;
    box-shadow: 0px 4px 0px #b91e30;
    border-radius: calc(infinity * 1px);
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
    &:hover {
        opacity: 0.6;
        transform: translateY(4px);
        box-shadow: none;
    }
    @media(max-width: 540px) {
        max-width: 100%;
    }
}

.consultation-btn__icon-wrapper {
    display: inline-block;
    width: 18px;
    aspect-ratio: 1;
    position: absolute;;
    right: 16px;
}

.consultation-btn__icon {
    width: 100%;
}

.consultation__media {
    @media(max-width: 840px) {
        flex-direction: column !important;
    }
}

.consultation-media {
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 60px;
    background-color: #eaeef2;
    padding: 40px;
    margin-top: 120px;
    margin-inline: auto;

    @media(max-width: 1090px) {
        gap: 40px;
    }

    @media(max-width: 840px) {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        padding: 30px;
        margin-top: 80px;
    }

    @media(max-width: 540px) {
        margin-top: 60px;
    }
}

.consultation-media__img-wrapper {
    order: 2;
    width: 100%;
    max-width: 400px;
    height: 230px;

    @media(max-width: 840px) {
        max-width: 100%;
    }
}

.consultation-media__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.consultation-media__body {
    order: 1;
}

.consultation-media__title {
    color: #244e8f;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;

    @media(max-width: 1090px) {
        line-height: 1.5;
    }

    @media(max-width: 540px) {
        font-size: 18px;
    }
}

.consultation-media__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 16px;

    @media(max-width: 840px) {
        margin-top: 22px;
    }

    @media(max-width: 540px) {
        font-size: 14px;
        line-height: 1.6;
    }
}

.consultation__heading {
    color: #142b4e;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    font-size: 32px;
    font-weight: 700;

    @media(max-width: 840px) {
        font-size: 24px;
    }

    @media(max-width: 540px) {
        font-size: 20px;
        letter-spacing: -0.04em;
    }
}

.consultation__heading--catch {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    place-self: center;
    margin-top: 100px;

    &::after {
        content: '';
        display: block;
        width: 100px;
        height: 3px;
        background-color: #142b4e;

        @media(max-width: 540px) {
            width: 60px;
        }
    }

    @media(max-width: 840px) {
        margin-top: 80px;
        gap: 24px;
    }

    @media(max-width: 540px) {
        margin-top: 60px;
        gap: 16px;
    }
}


.br-1090 {
    display: none;

    @media(max-width: 1090px) {
        display: block;
    }
}

/* suggest */

.suggest {
	width: min(100% - 80px, 1120px);
	margin-inline: auto;
}

.suggest-card__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;

    @media(max-width: 1090px) {
        gap: 10px;
    }

    @media(max-width: 840px) {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        margin-top: 40px;
    }
    @media(max-width: 540px) {
        margin-top: 30px;
    }
}

.suggest-card__item {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #244e8f;
    padding-top: 20px;
    padding-right: 18px;
    padding-bottom: 20px;
    padding-left: 18px;
}

.suggest__check {
    display: inline-block;
    width: 25px;
    height: 15px;
    align-self: center;
    border-left: 4px solid #D54253;
    border-bottom: 4px solid #D54253;
    transform: rotate(-45deg) translateY(-5px);
}

.suggest-card__text {
    font-size: 18px;
    font-weight: 700;

    @media(max-width: 1090px) {
        font-size: 17px;
    }
}

.suggest__text {
    text-align: center;
    color: #142b4e;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    &:first-of-type {
        margin-top: 40px;
    }
    @media(max-width: 540px) {
        text-align: left;
        font-size: 20px;
    }
}

/* casestudy */

.casestudy {
	width: min(100% - 80px, 1120px);
	margin-inline: auto;
}

.casestudy__explanation {
    font-weight: 500;
    line-height: 1.8;

    @media(max-width: 840px) {
        font-size: 15px;
    }

    @media(max-width: 540px) {
        font-size: 14px;
        line-height: 1.6;
    }

    &:first-of-type {
        margin-top: 16px;
    }
}

/* accordion */

.accordion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 60px;

    @media(max-width: 840px) {
        margin-top: 30px;
    }

    @media(max-width: 540px) {
        margin-top: 36px;
        gap: 10px;
    }
}

.accordion__item {
    width: 100%;
    max-width: 850px;
    border: 0px solid #d9e1e4;
    border-radius: 8px;;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
}

.accordion__head {
    display: flex;
    justify-content: space-between;
    background-color: #f5fafd;
    border: 1px solid transparent;
    padding-top: 14px;
    padding-right: 30px;
    padding-bottom: 14px;
    padding-left: 30px;

    @media(max-width: 840px) {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    @media(max-width: 540px) {
        padding-top: 8px;
        padding-right: 8px;
        padding-bottom: 8px;
        padding-left: 8px;
    }

    &:hover {
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
        border-color: #242481;
    }
}

.accordion__head.open.accordion__head:hover {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion__heading {
    color: #244e8f;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;

    @media(max-width: 840px) {
        font-size: 14px;
        line-height: 1.5;
    }
}

.accordion__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #d4d4d4;
    border-radius: 50%;
    background-color: #fff;

    &::after {
        content: '';
        display: inline-block;
        width: 10px;
        height: 10px;
        background: #333;
        clip-path: polygon(0 0, 100% 0%, 50% 100%);
        transition: transform 0.3s ease;
		@media(max-width: 840px) {
        width: 5px;
        height: 5px;
    }
    }

    @media(max-width: 840px) {
        width: 20px;
        height: 20px;
    }
}

.accordion__head.open .accordion__icon::after {
    transform: rotate(-180deg);
}

.accordion__head:hover .accordion__icon {
    border: 1px solid #262626;
}

.accordion__body {
    display: none;
    background-color: #fff;
    border-radius: 6px;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;

    @media(max-width: 840px) {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    @media(max-width: 840px) {
        padding-top: 8px;
        padding-right: 8px;
        padding-bottom: 8px;
        padding-left: 8px;
    }
}

.accordion__head.open .accordion__body {
    display: block;
}

.accordion__item:has(.accordion__body[aria-hidden="true"]) {
    margin-bottom: 0;
}

.accordion__text {
    font-weight: 500;
    line-height: 1.6;

    @media(max-width: 840px) {
        font-size: 13px;
    }
}

.casestudy__text {
    font-weight: 500;
    line-height: 1.8;

    &:nth-of-type(4) {
        margin-top: 77px;

        @media(max-width: 840px) {
            margin-top: 46px;
        }

        @media(max-width: 540px) {
            margin-top: 16px;
        }
    }

    @media(max-width: 540px) {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* flow */

.flow {
	width: min(100% - 80px, 1120px);
	margin-inline: auto;
    margin-top: 100px;

    @media(max-width: 540px) {
        margin-top: 80px;
    }
}

.flow__list {
    display: grid;
    grid-template-columns: repeat(5, auto);
    grid-template-rows: auto;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;

    @media(max-width: 1090px) {
        gap: 20px;
    }

    @media(max-width: 840px) {
        grid-template-columns: auto;
        grid-template-rows: repeat(5, auto);
        gap: 6px;
        margin-top: 30px;
    }
}

.flow__item {
    text-align: center;

    &:nth-of-type(odd) {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 200px;

        @media(max-width: 540px) {
            width: 100%;
        }
    }
}

.flow__img-wrapper {
    width: 172px;
    aspect-ratio: 1;
    background-color: #f2faff;
    border-radius: 40px;
    padding: 45px;
}

.flow__img {
    width: 100%;
}


.flow__text {
    text-align: left;
}

.flow__number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    aspect-ratio: 1;
    color: #fff;
    font-size: 20px;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    background: #244e8f;
    border-radius: 50%;
    margin-top: -12.5px;
}

.flow__title {
    color: #142b4e;
    font-weight: 700;
    margin-top: 20px;
}

.flow__text {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 16px;
}

.flow__arrow {
    display: inline-block;
    width: 36px;
    height: 53px;
    background: #CBCBCB;
    clip-path: polygon(0 28%, 36.4% 28%, 36.4% 0, 100% 50%, 36.4% 100%, 36.4% 72%, 0 72%);

    @media(max-width: 840px) {
        transform: rotate(90deg);
    }
}

.flow__text-large {
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    text-align: center;
    color: #142b4e;
    font-size: 24px;
    font-weight: 700;
    margin-top: 60px;

    @media(max-width: 1090px) {
        font-size: 32px;
    }

    @media(max-width: 840px) {
        font-size: 30px;
    }

    @media(max-width: 540px) {
        font-size: 22px;
        margin-top: 48px;
    }
}

/* casestudy flow 背景 */

.case-flow-bg-blue {
    width: 100vw;
    padding-top: 120px;
    padding-right: calc(50vw - 50%);
    padding-bottom: 160px;
    padding-left: calc(50vw - 50%);
    margin-top: 120px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);

    @media(max-width: 1090px) {
        padding-top: 100px;
        padding-bottom: 100px;
        margin-top: 100px;
    }

    @media(max-width: 840px) {
        padding-top: 80px;
        padding-bottom: 80px;
        margin-top: 80px;
    }

    @media(max-width: 540px) {
        padding-top: 70px;
        padding-bottom: 70px;
        margin-top: 50px;
    }
}

.consultation-contact {
	width: min(100% - 80px, 1120px);
	margin-inline: auto;
    padding-top: 120px;

    @media(max-width: 1090px) {
        padding-top: 100px;
    }

    @media(max-width: 840px) {
        padding-top: 80px;
    }

    @media(max-width: 540px) {
        padding-top: 70px;
    }
}



/* 無料経営相談窓口 */

.consultation-contact__heading {
    text-align: center;
    color: #142b4e;
    font-size: 40px;
    font-weight: 700;

    @media(max-width: 540px) {
        font-size: 30px;
    }
}

.form--consultation {
    border: 1px solid #757575;
    padding: 50px;
    @media(max-width: 840px) {
        padding: 30px;
    }

    @media(max-width: 540px) {
        padding: 15px;
    }
}

.form__item--consultation {
    border-bottom: 1px dotted #7A7A7A;
    padding-bottom: 20px;
	margin-top: 0 !important;
}

.consultation-contact__annotation {
	color: #d54253;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* qa ご質問 */

.qa {
	width: min(100% - 80px, 1120px);
	margin-inline: auto;
}

.qa .consultation__heading:nth-of-type(2) {
    margin-top: 80px;
    @media(max-width: 540px) {
        margin-top: 40px;
    }
}

.consultation__heading {
    font-size: 28px;
    font-weight: 700;
    @media(max-width: 840px) {
       font-size: 24px;
    }
}

.qa {
    padding-top: 120px;

    @media(max-width: 1090px) {
        padding-top: 100px;
    }

    @media(max-width: 840px) {
        padding-top: 80px;
    }

    @media(max-width: 540px) {
        padding-top: 70px;
    }
}

.qa__list {
    border-top: 1px solid #c0c0c0;
    border-left: 1px solid #c0c0c0;
    margin-top: 30px;
}

.qa__item {
    display: grid;
    grid-template-columns: 30% 70%;
    grid-template-rows: auto;
    border-bottom: 1px solid #c0c0c0;

    @media(max-width: 840px) {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
    }

}

.qa__head {
    font-size: 14px;
    font-weight: 400;
    border-right: 1px solid #c0c0c0;
    padding: 20px;

    @media(max-width: 840px) {
        font-size: 15px;
        font-weight: 700;
    }
}

.qa__text {
    font-size: 14px;
    font-weight: 400;
    padding: 20px;
    border-right: 1px solid #c0c0c0;

    @media(max-width: 840px) {
        font-size: 15px;
        border-top: 1px solid #c0c0c0;
    }
}

/* サービスについて

====================================================*/

/* philosophy */

.philosophy {
    width: 100vw;
    padding: 100px calc(50vw - 50%);
    margin: 0 calc(50% - 50vw);

    @media(max-width: 840px) {
        padding: 80px calc(50vw - 50%);
    }
}

.philosophy__inner {
	width: min(100% - 40px, 1120px);
	margin-inline: auto;
}

.philosophy__heading {
    text-align: center;
    color: #e4f0ff;
    font-size: 110px !important;
    font-weight: 600;
    font-family: "Outfit", "Inter", "Manrope", "Urbanist", "Noto Sans", "Arial", sans-serif;
    position: relative;
    z-index: 1;

    @media(max-width: 1090px) {
        font-size: 80px !important;
    }

    @media(max-width: 840px) {
        font-size: 54px !important;
    }

    @media(max-width: 540px) {
        font-size: 34px !important;
    }


    &::after {
        content: 'Digital＆の企業理念';
        display: block;
        width: max-content;
        color: #142b4e;
        font-size: 30px;
        font-weight: 700;
        font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;

        @media(max-width: 1090px) {
            top: 25%;
        }

        @media(max-width: 840px) {
            top: 90%;
        }

        @media(max-width: 540px) {
            font-size: 28px;
        }
    }
}

.philosophy__heading-sub {
    text-align: center;
    color: #142b4e;
    font-size: 28px;
    font-weight: 700;
    margin-top: 32px;

    @media(max-width: 540px) {
        font-size: 20px;
    }
}

.philosophy__desc {
    width: 100%;
    max-width: 700px;
    color: #142b4e;
    line-height: 1.8;
    margin-top: 32px;
    margin-inline: auto;

    @media(max-width: 840px) {
        max-width: 100%;
    }

    @media(max-width: 540px) {
        font-size: 14px;
        line-height: 1.6;
    }
}




.philosophy__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;

    @media(max-width: 840px) {
        gap: 10px;
    }

    @media(max-width: 540px) {
        margin-top: 36px;
    }
}

.philosophy__item {
    width: calc((100% / 3) - 20px);
    background-color: #fff;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
    padding: 10px;

    @media(max-width: 840px) {
        width: calc((100% / 2) - 10px);
    }
}

.philosophy__item:nth-of-type(5) {
    @media(max-width: 840px) {
        width: 100%;
    }
}


.philosophy__head {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    width: 100%;
    color: #fff;
    background: linear-gradient(10deg, #a18129 0%, #d5bc6d 30%, #dec678 47%, #d4bb6c 67%, #a18129 100%);
    padding-top: 5.4px;
    padding-bottom: 5.4px;
}

.philosophy__head--annotation {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    vertical-align: text-top;
}

.philosophy__body {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.philosophy__img-wrapper {
    width: 115px;
    aspect-ratio: 1;

    @media(max-width: 1090px) {
        width: 90px;
    }

    @media(max-width: 840px) {
        width: 70px;
    }

    @media(max-width: 540px) {
        width: 60px;
    }
}

.philosophy__img {
    width: 100%;
}

.philosophy__text-wrapper {
    text-align: center;
}

.philosophy__text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.06;

    @media(max-width: 840px) {
        font-size: 20px;
    }

    @media(max-width: 540px) {
        font-size: 14px;
    }
}

.philosophy__text--large {
    font-size: 60px;
    font-weight: 600;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    letter-spacing: -0.02em;
    background: linear-gradient(10deg, #a18129 0%, #d5bc6d 30%, #dec678 47%, #d4bb6c 67%, #a18129 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

    @media(max-width: 1090px) {
        font-size: 46px;
    }

    @media(max-width: 840px) {
        font-size: 42px;
    }

    @media(max-width: 540px) {
        font-size: 28px;
    }
}

.philosophy__annotation-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;

    @media(max-width: 1090px) {
        gap: 10px;
    }

    @media(max-width: 880px) {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
    }

    @media(max-width: 540px) {
        margin-top: 20px;
    }
}

.philosophy__annotation {
    color: #6a6a6a;
    font-size: 13px;
    font-weight: 300;
}

/* offer Digital＆の提供サービス */

.bg-grey {
    background: #f5f5f5;
    width: 100vw;
    padding: 120px calc(50vw - 50%);
    margin: 0 calc(50% - 50vw);

    @media(max-width: 840px) {
        padding: 80px calc(50vw - 50%);
    }
}

.offer__heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: #142b4e;
    font-size: 42px;
    font-weight: 700;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;

    @media(max-width: 1090px) {
        font-size: 32px;
    }

    @media(max-width: 840px) {
        font-size: 30px;
        gap: 24px;
    }

    &::after {
        content: '';
        display: inline-block;
        background: #142b4e;
        width: 100px;
        height: 3px;
    }
}

.offer__list {
	width: min(100% - 40px, 1120px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    place-content: center;
    margin-top: 60px;
	margin-inline: auto;
    @media(max-width: 840px) {
        grid-template-columns: auto;
        margin-top: 40px;
    }
}

.offer__item {
    display: grid;
    grid-template-rows: subgrid;
    transition: opacity 0.3s;

    &:hover {
        opacity: 0.8;
    }

    @media(max-width: 840px) {
        width: 100%;
        max-width: 520px;
    }
}


.offer__link {
    display: block;
    background: #eaeef2;
    border: 1px solid #244e8f;
    padding: 40px;
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;

    @media(max-width: 1090px) {
        padding: 30px;
    }

    @media(max-width: 840px) {
        padding: 40px;
    }

    @media(max-width: 540px) {
        background-size: 120px;
        background-position: top right;
        padding: 25px;
    }

    &::before {
        content: '';
        display: inline-block;
        width: 30px;
        aspect-ratio: 1;
        background: linear-gradient(135deg, #244e8f 49%, rgba(36, 78, 143, 0) 49%);
        position: absolute;
        top: 0;
        left: 0;
    }
}

.offer__img-wrapper {
    width: 200px;
    aspect-ratio: 1;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;

    @media(max-width: 540px) {
        width: 120px;
    }
}

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

.offer__body {
    position: relative;
    z-index: 1;
}

.offer__title {
    color: #244e8f;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;

    @media(max-width: 540px) {
        font-size: 18px;
    }
}

.offer__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 16px;

    @media(max-width: 540px) {
        font-size: 14px;
        line-height: 1.6;
    }
}

.offer__check-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    aspect-ratio: 1;
    background: #244e8f;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.offer__check {
    width: 5px;
    height: 10px;
    filter: invert(100%) sepia(0%) saturate(7484%) hue-rotate(24deg) brightness(109%) contrast(101%);
    object-fit: cover;
    transform: rotate(90deg);
}

.offer__check-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    aspect-ratio: 1;
    background: #244e8f;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    bottom: 20px;
    transition: background 0.3s ease;
}

.offer__check {
    width: 5px;
    height: 10px;
    filter: invert(100%) sepia(0%) saturate(7484%) hue-rotate(24deg) brightness(109%) contrast(101%);
    object-fit: cover;
    transform: rotate(90deg);
}

.offer__item:hover .offer__check-wrapper {
    background: transparent;
}

.offer__item:hover .offer__check {
    filter: none;
}

/* feature */

.feature {
    margin-top: 120px;

    @media(max-width: 1090px) {
        font-size: 32px;
    }

    @media(max-width: 840px) {
        margin-top: 100px;
    }

    @media(max-width: 540px) {
        margin-top: 80px;
    }
}

.feature__heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: #142b4e;
    font-size: 32px;
    font-weight: 700;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;

    @media(max-width: 1090px) {
        font-size: 32px;
    }

    @media(max-width: 840px) {
        font-size: 30px;
        gap: 24px;
    }

    @media(max-width: 540px) {
        font-size: 20px;
        gap: 16px;
    }

    &::after {
        content: '';
        display: inline-block;
        background: #142b4e;
        width: 100px;
        height: 3px;
    }
}

.feature__img-wrapper {
    display: grid;
    place-self: center;
    margin-top: 30px;

    @media(max-width: 840px) {
        margin-top: 24px;
    }

    @media(max-width: 540px) {
        margin-top: 16px;
    }
}

.feature__img {
    width: 100%;
}

.feature__heading-sub {
    text-align: center;
    color: #142b4e;
    font-size: 32px;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    margin-top: 60px;

    @media(max-width: 540px) {
        font-size: 20px;
        margin-top: 42px;
    }
}

.feature__heading-sub--large {
    font-size: 72px;
    font-weight: 700;

    @media(max-width: 540px) {
        font-size: 36px;
    }
}

.feature__list {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 28px;
	padding: 0 20px;
    margin-top: 50px;
    margin-inline: auto;

    @media(max-width: 840px) {
        gap: 8px;
        margin-top: 36px;
    }

    @media(max-width: 540px) {
        margin-top: 24px;
    }
}

.feature__title {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #142b4e;
    font-size: 26px;
    font-weight: 500;

    @media(max-width: 540px) {
        font-size: 20px;
    }
}

.feature__item {
    display: flex;
    flex-direction: row;
    align-items:  first baseline;
    gap: 25px;
}

/* 4つの特徴 */

.feature__number {
    color: #244e8f;
    display: block;
    font-size: 42px;
    font-weight: 700;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;

    @media(max-width: 840px) {
        font-size: 34px;
    }
}

.feature__text {
	font-size: 15px;
    font-weight: 400;
    margin-top: 24px;

    @media(max-width: 540px) {
        font-size: 14px;
        line-height: 1.8;
        margin-top: 18px;
    }
}

/* service-cta */

.service-cta__heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: -16px;
}

.service-cta__heading-sub {
    width: 100%;
    max-width: 585px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    background: #142b4e;
    ;
    border-radius: calc(infinity * 1px);
    padding-top: 4px;
    padding-bottom: 4px;
    margin-inline: auto;

    @media(max-width: 840px) {
        max-width: 430px;
        font-size: 18px;
    }

    @media(max-width: 540px) {
        font-size: 13px;
    }
}

.service-cta__heading-main {
    color: #142b4e;
    font-size: 34px;
    font-weight: 700;

    @media(max-width: 840px) {
        font-size: 24px;
    }

    @media(max-width: 540px) {
        font-size: 22px;
    }
}

.service-cta__heading-main--accent {
    color: #d54253;;
}

.service-cta__img {
	width: 820px;
    max-width: 100%;
    margin-top: 40px;
	margin-inline: auto;
    transition: opacity 0.3s ease;
    @media(max-width: 540px) {
        margin-top: 20px;
    }
    &:hover {
        opacity: 0.6;
    }
}

/* overview DIGITAL&のサービス概要 */

.overview {
    width: 100vw;
    padding: 120px calc(50vw - 50%) 160px;
	margin-top: 120px;
    margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);

    @media(max-width: 840px) {
        padding: 80px calc(50vw - 50%) 80px;
		margin-top: 80px;
    }
    @media(max-width: 540px) {
        padding: 70px calc(50vw - 50%) 70px;
		margin-top: 70px;
    }
}

.overview__heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: #142b4e;
    font-size: 42px;
    font-weight: 700;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;

    @media(max-width: 1090px) {
        font-size: 32px;
    }

    @media(max-width: 840px) {
        font-size: 30px;
        gap: 24px;
    }

    &::after {
        content: '';
        display: inline-block;
        background: #142b4e;
        width: 100px;
        height: 3px;
    }
}

.overview__list {
	width: min(100% - 80px, 1120px);
    display: flex;
    flex-direction: column;
    gap: 25px;
	margin-inline: auto;
    margin-top: 60px;

    @media(max-width: 840px) {
        margin-top: 40px;
    }

    @media(max-width: 540px) {
        gap: 40px;
        margin-top: 30px;
    }
}


.overview__item {
    background: #fff;
    padding: 30px;

    @media(max-width: 540px) {
        padding: 20px;
    }

    &:hover {
        opacity: 0.6;
    }
}

.overview__content, .overview__link {
    display: grid;
    grid-template-columns: 310px 1fr;
    grid-template-rows: auto;
    gap: 40px;

    @media(max-width: 840px) {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }
}

.overview__body {
    display: flex;
    flex-direction: column;
}

.overview__title {
    background: #244e8f;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    padding-top: 8px;
    padding-right: 12px;
    padding-bottom: 8px;
    padding-left: 12px;

    @media(max-width: 540px) {
        font-size: 20px;
    }
}

.overview__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 16px;

    @media(max-width: 540px) {
        font-size: 14px;
        line-height: 1.6;
    }
}

.overview__arrow-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #244e8f;
    font-size: 18px;
    font-weight: 500;
    margin-left: auto;
}

.overview__arrow {
    width: 30px;
    aspect-ratio: 1;
}

/* Technology

====================================================*/


.tech-title__area {
    display: grid;
    place-content: center;
    height: 640px;
    background-image: url('http://digitaland.co.jp/wp-content/uploads/2025/03/page-title-bg-tech-scaled.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    @media(max-width: 840px) {
        height: 600px;
    }

    @media(max-width: 540px) {
        height: 500px;
    }
}

.tech-title {
    color: #fff;
    display: grid;
    place-content: center;
    text-align: center;
}

.tech-logo {
    width: 350px;
    margin-inline: auto;

    @media(max-width: 840px) {
        width: 280px;
    }

    @media(max-width: 540px) {
        width: 200px;
    }
}

.tech-logo__img {
    width: 100%;
}

.tech-title__main {
    font-family: "Cormorant", "Garamond", "Baskerville", "Times New Roman", serif;
    font-size: 97px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: -20px;

    @media(max-width: 1090px) {
        margin-top: -24px;
    }

    @media(max-width: 840px) {
        font-size: 72px;
        margin-top: -14px;
    }

    @media(max-width: 540px) {
        font-size: 56px;
        margin-top: -10px;
    }
}

.tech-title__sub {
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-top: 22px;

    @media(max-width: 1090px) {
        font-size: 22px;
        letter-spacing: 0.12em;
        margin-top: 11px;
    }

    @media(max-width: 840px) {
        letter-spacing: 0.03em;
    }

    @media(max-width: 540px) {
        font-size: 14px;
        letter-spacing: 0.03em;
        margin-top: 9px;
    }
}

.vertical-line {
    display: grid;
    justify-self: center;
    display: block;
    color: #fff;
    border-left: 1px solid #fff;
    width: 1px;
    height: 50px;
    margin-top: 64px;
	margin-inline: auto;

    @media(max-width: 840px) {
        margin-top: 90px;
    }

    @media(max-width: 540px) {
        margin-top: 70px;
    }
}

.tech-text {
    display: grid;
	justify-content: center;
    justify-self: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.35em;
    margin-top: 20px;

    @media(max-width: 540px) {
        font-size: 14px;
    }
}

/* tech-section-heading */

.tech-section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    @media(max-width: 840px) {
        gap: 24px;
    }

    @media(max-width: 540px) {
        gap: 16px;
    }

    &::after {
        content: '';
        display: block;
        background-image: url(http://test.local/wp-content/uploads/2025/03/tech-section-heading__line.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100px;
        height: 6px;
        @media(max-width: 840px) {
            width: 70px;

        }
    }
}

.tech-section-heading__sub-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 16px;

    @media(max-width: 840px) {
        gap: 20px;
    }

    @media(max-width: 540px) {
        gap: 10px;
    }
}

.tech-section-heading__sub {
    font-family: "Cormorant", "Garamond", "Baskerville", "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.01em;
    background: linear-gradient(90deg, #00b3ff 0%, #c983ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-section-heading__icon-wrapper {
    width: 44px;
    aspect-ratio: 1;

    @media(max-width: 540px) {
        width: 34px;
    }
}

.tech-section-heading__icon {
    width: 100%;
}

.tech-section-heading__main {
    text-align: center;
	color: #fff;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.7;


    @media(max-width: 840px) {
        font-size: 24px;
    }

    @media(max-width: 540px) {
        font-size: 20px;
        letter-spacing: -0.04em;
    }
}

/* tech-important */

.tech-important {
    padding-top: 140px;
    padding-bottom: 140px;

    @media(max-width: 1090px) {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    @media(max-width: 840px) {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    @media(max-width: 540px) {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.tech-important__inner {
    width: min(100% - 80px, 1040px);
    margin-inline: auto;
}

.tech-important__content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    margin-top: 50px;

    @media(max-width: 1090px) {
        gap: 40px;
    }

    @media(max-width: 840px) {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        gap: 30px;
        margin-top: 40px;
    }

    @media(max-width: 540px) {
        gap: 40px;
        margin-top: 30px;
    }
}

.tech-important__list {
    display: grid;
    grid-template-rows: auto;
    gap: 10px;
}

.tech-important__item {
    text-align: center;
    width: 440px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    color: #fff;
    background: rgba(30, 62, 67, 0.9);
    box-shadow: 0px 0px 12px #1892a3;
    padding-top: 20px;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-left: 10px;

    &:nth-of-type(2) {
        background: rgba(40, 26, 71, 0.9);
        box-shadow: 0px 0px 12px #8057d9;
    }

    &:nth-of-type(3) {
        background: rgba(65, 18, 17, 0.9);
        box-shadow: 0px 0px 12px #cc6262;
    }

    @media(max-width: 840px) {
        width: 100%;
    }
}

.tech-important__head {
    width: 183px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    border-right: 1px solid #fff;

    @media(max-width: 1090px) {
        line-height: 1.5;
    }

    @media(max-width: 840px) {
        font-size: 16px;
    }

    @media(max-width: 540px) {
        gap: 40px;
        border-right: none;

    }
}

.tech-important__body {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;

    @media(max-width: 540px) {
        font-size: 13px;
        line-height: 1.6;

    }
}

.tech-important__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;

    @media(max-width: 840px) {
        font-size: 15px;
    }

    @media(max-width: 540px) {
        font-size: 14px;
        line-height: 1.8;
    }
}

.tech-important__text-large {
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 60px;

    @media(max-width: 1090px) {
        font-size: 32px;
    }

    @media(max-width: 840px) {
        font-size: 20px;
        margin-top: 40px;
    }

    @media(max-width: 540px) {
        font-size: 18px;
        letter-spacing: -0.04em;
    }
}

/* tech-utilization */

.tech-utilization {
    padding-top: 140px;
    padding-bottom: 140px;

    @media(max-width: 1090px) {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    @media(max-width: 840px) {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    @media(max-width: 540px) {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.tech-utilization__inner {
    width: min(100% - 80px, 1120px);
    margin-inline: auto;
}

.tech-utilization__img {
    margin-top: 50px;
    @media(max-width: 840px) {
        margin-top: 40px;
    }

    @media(max-width: 540px) {
        margin-top: 30px;
    }
}

.tech-utilization__text {
    width: 100%;
    max-width: 760px;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    margin-top: 50px;
    margin-inline: auto;
    @media(max-width: 840px) {
        font-size: 15px;
        margin-top: 30px;
    }

    @media(max-width: 540px) {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* tech-mechanisms */

.tech-mechanisms {
    padding-top: 140px;
    padding-bottom: 40px;

    @media(max-width: 1090px) {
        padding-top: 120px;
    }

    @media(max-width: 840px) {
        padding-top: 80px;
    }

    @media(max-width: 540px) {
        padding-top: 70px;
    }
}

.tech-mechanisms__img {
    margin-top: 50px;

    @media(max-width: 840px) {
        margin-top: 40px;
    }

    @media(max-width: 540px) {
        margin-top: 30px;
    }
}

.tech-mechanisms__inner {
    width: min(100% - 80px, 1120px);
    margin-inline: auto;
}

.tech-mechanisms__text {
    width: 100%;
    max-width: 760px;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    margin-top: 50px;
    margin-inline: auto;

    @media(max-width: 840px) {
        font-size: 15px;
        margin-top: 30px;
    }

    @media(max-width: 540px) {
        font-size: 14px;
        line-height: 1.8;
    }
}

.tech-mechanisms__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    margin-top: 80px;

    @media(max-width: 840px) {
        grid-template-columns: auto;
        gap: 30px 60px;
        margin-top: 72px;
    }

    @media(max-width: 540px) {
        gap: 40px 60px;
        margin-top: 60px;
    }
}

.tech-mechanisms__head {
    text-align: center;
    color: #5061f5;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;

    @media(max-width: 1090px) {
        line-height: 1.5;
    }

    @media(max-width: 540px) {
        font-size: 17px;
    }
}

.tech-mechanisms__body {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    margin-top: 24px;

    @media(max-width: 840px) {
        font-size: 15px;
        margin-top: 22px;
    }

    @media(max-width: 540px) {
        font-size: 14px;
        line-height: 1.8;
    }
}

.tech-mechanisms__bg {
    transform: translateY(-1px);
}

/* 会社概要

====================================================*/

/* mission */

.mission__heading {
    color: #fff;
    text-align: center;
    font-size: 110px;
    font-weight: 600;

    @media(max-width: 1090px) {
        font-size: 80px;
    }

    @media(max-width: 840px) {
        font-size: 84px;
    }

    @media(max-width: 540px) {
        font-size: 64px;
    }

    &::after {
        content: 'ミッション';
        display: block;
        color: #142b4e;
        font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
        font-size: 30px;
        font-weight: 700;
        margin-top: -98px;

        @media(max-width: 1090px) {
            margin-top: -74px;
        }
    
        @media(max-width: 840px) {
            margin-top: -46px;
        }
    
        @media(max-width: 540px) {
            margin-top: -41px;
        }
    }
}

/* 会社概要

====================================================*/

/* mission */

.mission {
    padding-top: 100px;
    padding-right: 0;
    padding-bottom: 100px;
    padding-left: 0;

    @media(max-width: 840px) {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    @media(max-width: 540px) {
        padding-top: 50px;
        padding-bottom: 60px;
    }
}

.mission__heading {
    color: #fff;
    text-align: center;
    font-size: 110px;
    font-weight: 600;

    @media(max-width: 1090px) {
        font-size: 80px;
    }

    @media(max-width: 840px) {
        font-size: 84px;
    }

    @media(max-width: 540px) {
        font-size: 64px;
    }

    &::after {
        content: 'ミッション';
        display: block;
        color: #142b4e;
        font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
        font-size: 30px;
        font-weight: 700;
        margin-top: -98px;

        @media(max-width: 1090px) {
            margin-top: -74px;
        }

        @media(max-width: 840px) {
            margin-top: -46px;
        }

        @media(max-width: 540px) {
            margin-top: -41px;
        }
    }
}

.mission__desc {
    text-align: center;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin-top: 80px;

    @media(max-width: 1090px) {
        letter-spacing: 0.05em;
        margin-top: 50px;
    }

    @media(max-width: 840px) {
        font-size: 26px;
    }

    @media(max-width: 540px) {
        font-size: 18px;
        margin-top: 36px;
    }
}

.mission__sub-heading {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: center;
    width: 100%;
    max-width: 900px;
    color: #fff;
    background: #142b4e;
    clip-path: polygon(2% 0, 98% 0, 100% 50%, 98% 100%, 2% 100%, 0% 50%);
    padding: 8px;
    margin-top: 70px;
    margin-inline: auto;

    @media(max-width: 540px) {
        margin-top: 50px;
    }
}

.mission__sub-heading-main {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;

    @media(max-width: 840px) {
        font-size: 15px;
    }
}

.mission__sub-heading-sub {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;

    @media(max-width: 540px) {
        font-size: 11px;
    }
}

.mission__img {
    margin-top: -200px;
}

.mission-contents {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto;;
    justify-content: center;
    gap: 50px;
    margin-top: -120px;
    @media(max-width: 1090px) {
        gap: 30px;
    }

    @media(max-width: 840px) {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
    }

    @media(max-width: 540px) {
        gap: 40px;
    }
}

.mission-content__heading {
    color: #b0b0b0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.13em;

    @media(max-width: 540px) {
        font-size: 18px;
    }
}

.mission-content__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.mission-content__head {
    font-family: "Cormorant", "Garamond", "Baskerville", "Times New Roman", serif;
    color: #142b4e;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.12em;

    @media(max-width: 540px) {
        font-size: 24px;
    }
}

.mission-content__body {
    color: #333;
    font-size: 22px;
    letter-spacing: 0.05em;
    margin-top: 10px;
    margin-left: 50px;
    @media(max-width: 540px) {
        font-size: 18px;
        margin-left: 20px;
    }
}

.mission-media__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.mission-media__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    @media(max-width: 540px) {
        gap: 15px;
    }
}

.mission-media__title {
    color: #142b4e;
    font-size: 24px;
    letter-spacing: 0.05em;
    @media(max-width: 540px) {
        font-size: 20px;
    }
}

.mission-media__title-sub {
    font-family: "Cormorant", "Garamond", "Baskerville", "Times New Roman", serif;
    color: #acb8ca;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
    @media(max-width: 540px) {
        font-size: 12px;
    }
}

/* goals */


.goals {
    padding-top: 100px;
    padding-bottom: 100px;

    @media(max-width: 840px) {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    @media(max-width: 540px) {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.goals-media {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 80px;
    width: min(100% - 60px, 1120px);
    margin-inline: auto;

    @media(max-width: 1090px) {
        gap: 40px;
    }

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

.goals-media__img-wrapper {
    width: 100%;
	max-width: 100%;
    height: 310px;

    @media(max-width: 1090px) {
        height: 250px;
    }

    @media(max-width: 840px) {
        width: 540px;
        height: 290px;
    }

    @media(max-width: 540px) {
        height: 180px;
    }
}

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

.goals-media__title-sub {
    color: #142b4e;
    font-family: "Cormorant", "Garamond", "Baskerville", "Times New Roman", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;

    @media(max-width: 840px) {
        font-size: 36px;
    }

    @media(max-width: 540px) {
        font-size: 20px;
    }
}

.goals-media__title-main {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 4px;

    @media(max-width: 540px) {
        font-size: 18px;
    }
}

.goals__text {
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.1;
    margin-top: 40px;

    @media(max-width: 540px) {
        font-size: 14px;
        letter-spacing: 0.05em;
        margin-top: 30px;
    }
}

/* company */

.company {
    width: min(100% - 60px, 1120px);
    margin-inline: auto;
}

.company__heading-main {
    font-family: 'Lora', 'Merriweather', 'Cormorant', 'Georgia', serif;
    color: #142b4e;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 0.07em;

    @media(max-width: 840px) {
        font-size: 36px;
    }
}

.company__heading-sub {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-top: -8px;

    @media(max-width: 840px) {
        font-size: 18px;
    }
}

.company-list {
	width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
	margin-inline: auto;
}

.company-list__inner {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    border-bottom: 1px solid #959595;
    position: relative;

    @media(max-width: 540px) {
        grid-template-columns: 90px 1fr;
    }

    &::before {
        content: '';
        display: block;
        width: 150px;
        height: 3px;
        background-color: #142b4e;
        position: absolute;
        left: 0;
        bottom: -2px;

        @media(max-width: 540px) {
            width: 90px;
        }
    }
}

.company-list__head {
    color: #324e79;
    font-size: 16px;
    font-weight: 700;
    padding-left: 10px;
    padding-bottom: 20px;
}

.company-list__body {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 18px;
}

/* access */

.access {
    width: min(100% - 60px, 950px);
    margin-inline: auto;
    padding-top: 100px;
    padding-bottom: 80px;

    @media(max-width: 840px) {
        padding-bottom: 20px;
    }

    @media(max-width: 540px) {
        padding-top: 60px;
        padding-bottom: 80px;
    }
}

.access__heading {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: left;

    @media(max-width: 540px) {
        text-align: center;
        font-size: 24px;
    }
}

.access-map {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    background: #edf0f3;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    margin-top: 16px;
    margin-inline: auto;

    @media(max-width: 1090px) {
        gap: 40px;
        padding-top: 30px;
        padding-right: 40px;
        padding-bottom: 30px;
        padding-left: 40px;
    }

    @media(max-width: 840px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-top: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
    }

    @media(max-width: 540px) {
        align-items: center;
        gap: 20px;
        padding-top: 20px;
        padding-right: 10px;
        padding-bottom: 20px;
        padding-left: 10px;
        margin-top: 20px;
    }
}

.access-map__head {
    width: 40%;

    @media(max-width: 840px) {
        width: 100%;
    }
}

.access-map__title {
    color: #313131;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.25em;

    @media(max-width: 540px) {
        font-size: 24px;
    }
}

.access-map__text {
    color: #000;
    line-height: 2;
    margin-top: 26px;

    @media(max-width: 540px) {
        margin-top: 18px;
    }

    @media(max-width: 540px) {
        font-size: 13px;
        letter-spacing: -0.01em;
        margin-top: 12px;
    }
}

.frame {
    width: 60%;
    max-width: 100%;
    overflow: hidden;

    @media(max-width: 840px) {
        width: 100%;
    }
}

.frame iframe {
    width: 100%;
    height: 200px;
}

/* 組織・メンバー

====================================================*/

.team__title-main {
    font-family: 'Lora', 'Merriweather', 'Cormorant', 'Georgia', serif;
    font-size: 48px;
    font-weight: 400;
    height: auto;
    letter-spacing: 0.07em;

    @media(max-width: 840px) {
        font-size: 36px;
    }

    @media(max-width: 540px) {
        font-size: 28px;
    }
}

.team__title-sub {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-top: -8px;

    @media(max-width: 840px) {
        font-size: 18px;
    }

    @media(max-width: 540px) {
        margin-top: 0;
    }
}

/* organization */

.organization {
    padding-top: 80px;
    padding-bottom: 100px;

    @media(max-width: 840px) {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    @media(max-width: 540px) {
        padding-top: 50px;
        padding-bottom: 60px;
    }
}

.organization__inner {
    width: min(100% - 60px, 1120px);
    margin-inline: auto;
}

.organization__img {
    margin-top: 50px;

    @media(max-width: 840px) {
        margin-top: 40px;
    }

    @media(max-width: 540px) {
        margin-top: 20px;
    }
}

/* member */

.member {
    padding-top: 80px;
    padding-bottom: 100px;

    @media(max-width: 840px) {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    @media(max-width: 540px) {
        padding-top: 50px;
        padding-bottom: 80px;
    }
}

.member__inner {
    width: min(100% - 60px, 1120px);
    margin-inline: auto;
}

.member__heading-sub {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.01em;
	margin-top: 50px;

    @media(max-width: 840px) {
        font-size: 24px;
    }

    @media(max-width: 540px) {
        font-size: 20px;
    }

    &::before,
    &::after {
        content: '';
        height: 1px;
        flex-grow: 1;
        background-color: #a3a3a3;
    }
}

.member__heading-sub::before {
    margin-right: 1rem;
}

.member__heading-sub::after {
    margin-left: 1rem;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
	margin-top: 30px;

    @media(max-width: 840px) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media(max-width: 540px) {
        grid-template-columns: auto;
        ;
    }
}

.team-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    border: 5px solid;
    border-image-source: linear-gradient(135deg, #c7dfff 0%, #e1d4fb 34%, #b0d9f0 69%, #e2e2e2 100%);
    border-image-slice: 1;
    border-radius: 4px;
    padding: 4px;
}

.team-card__head {
	text-align: center;
    width: 100%;
    height: 60px;
    display: grid;
    place-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    background: #94855f;
	padding-right: 5px;
	padding-left: 5px;

    @media(max-width: 1090px) {
        font-size: 18px;
    }

    @media(max-width: 840px) {
        font-size: 16px;
    }
}

.team-card__body {
    color: #475464;
    font-size: 14px;
    line-height: 1.9;
    margin-top: 14px;
    margin-right: 16px;
    margin-bottom: 0;
    margin-left: 16px;

    @media(max-width: 1090px) {
        line-height: 1.8;
    }

    @media(max-width: 540px) {
        margin-bottom: 20px;
    }
}

.team-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    width: 100%;
    max-width: 300px;
    border: 2px solid #142b4e;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 70px;
    margin-inline: auto;
    transition: 0.3s ease;

    @media(max-width: 840px) {
        margin-top: 30px;
    }

    @media(max-width: 540px) {
        max-width: 100%;
    }

    &:hover {
        background-color: #142b4e;
        color: #fff;
    }
}

.team-btn__arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #142b4e;
    position: absolute;
    right: 10px;
}

.team-btn:hover .team-btn__arrow-wrapper {
    background-color: #fff;
}


.team-btn__arrow {
    width: 5px;
    aspect-ratio: 1 / 2;
    filter: invert(100%) sepia(80%) saturate(0%) hue-rotate(345deg) brightness(107%) contrast(101%);
}

.team-btn:hover .team-btn__arrow {
    filter: none;
}

/* コラム詳細ページ

====================================================*/

.column-main {
    background-color: #F2F9F9;
    padding-bottom: 140px;
}

.column-header {
    width: min(100% - 60px, 900px);
    padding-top: 60px;
    padding-bottom: 23px;
    margin-inline: auto;

    @media(max-width: 840px) {
        padding-top: 30px;
    }
}

.column-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.column-categories span {
    display: inline-block;
    color: #189D9F;
    font-size: 12px;
    background-color: #fff;
    border: 1px solid #189D9F;
    border-radius: calc(infinity * 1px);
    padding-right: 10px;
    padding-left: 10px;
}

.column-header h1 {
    color: #189D9F;
    font-size: 28px;
    line-height: 1.8;
    margin-top: 20px;

    @media(max-width: 840px) {
        font-size: 20px;
    }
}

.column-main hr {
	margin-bottom: 30px;
}

.column-date-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 35px;
}

.column-date-area span {
	display: flex;
    align-items: center;
    gap: 6px;
}

.column-date-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
	opacity: 0.3;
	margin-top: 10px;
}

.column-date-icon-wrapper {
    display: flex;
    align-items: center;
    width: 12px;
    aspect-ratio: 1;
}

.column-date-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-date-area span:nth-child(2)>span {
    color: #189D9F;
}

.thumbnail {
    height: 410px;

    @media(max-width: 840px) {
        height: 300px;
    }

    @media(max-width: 540px) {
        height: 280px;
    }
}

.thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  width: 100%;
}


.thumbnail__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(10px) brightness(0.7);
  transform: scale(1.1);
  z-index: 0;
}

.thumbnail img {
  position: relative;
  width: 52.63888%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	@media(max-width: 540px) {
		width: 100%;
	}
}

/* 追従ボタン */

.sticky-btn-wrapper {
    position: fixed;
    top: 24vh;
    left: 2vw;
    z-index: 2;
	@media(max-width: 840px) {
		top: 50vh;
	}
}

.sticky-btn {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #fff;
    background-color: #171717;
    border-radius: 4px;
    padding-top: 8px;
    padding-right: 25px;
    padding-bottom: 8px;
    padding-left: 25px;
}

.sticky-btn__arrow {
    width: 7px;
    height: 14px;
    filter: invert(97%) sepia(3%) saturate(11%) hue-rotate(66deg) brightness(105%) contrast(103%);
    transform: rotate(180deg);
}

.sticky-sns-wrapper {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    top: 50%;
    right: 2vw;
    transform: translateY(-50%);
    z-index: 2;
}

.sticky-sns-icon__wrapper {
    width: 40px;
    aspect-ratio: 1;
}

.sticky-sns {
    width: 100%;
}


.column-contents {
    width: min(100% - 60px, 960px);
    background-color: #fff;
    border-radius: 10px;
    margin-inline: auto;
    padding-top: 60px;
    padding-right: 100px;
    padding-bottom: 80px;
    padding-left: 100px;
    margin-top: 50px;

    @media(max-width: 768px) {
        padding-top: 30px;
        padding-right: 50px;
        padding-bottom: 30px;
        padding-left: 50px;
        margin-top: 50px;
    }
}

.column-contents h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: min(100%, 670px);
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-inline: auto;

    @media(max-width: 840px) {
        font-size: 20px;
    }

    @media(max-width: 540px) {
        font-size: 18px;
    }

    &::after {
        content: '';
        display: block;
        background-color: #171717;
        width: 40px;
        height: 5px;
    }
}

.column-contents h3 {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #189D9F;
    padding-bottom: 20px;
    margin-top: 40px;

    @media(max-width: 840px) {
        font-size: 18px;
    }

    @media(max-width: 540px) {
        font-size: 15px;
    }
}

.column-contents p {
	font-size: 16px;
	line-height: 1.8;
	margin: 30px 0;
}

.column-toc {
    width: min(100%, 700px);
    margin-inline: auto;
}

.column-toc h2 {
    display: inline-block;
    border: 1px solid #171717;
    padding-top: 5px;
    padding-right: 25px;
    padding-bottom: 5px;
    padding-left: 25px;
}

.column-toc>ul {
    counter-reset: number;
    margin-top: 30px;
}

.column-toc>ul>li {
    counter-increment: number;
    border-bottom: 1px solid #ccc;
    padding-bottom: 16px;
    padding-left: 5px;
    padding-left: 1em;
    text-indent: -1em;


    &:not(:last-of-type) {
        margin-bottom: 16px;
    }

    &::before {
        content: counter(number)'.';
        font-weight: bold;
    }
}

.column-toc>ul>li>a {
    font-weight: bold;
    transition: color 0.3s ease;

    &:hover {
        color: #189D9F;
    }
}

.column-toc ul ul {
    margin-top: 16px;
    margin-left: 23px;
}

.column-toc ul ul li {
    color: #555;

    &:not(:last-of-type) {
        margin-bottom: 12px;
    }
}

.column-content {
    margin-top: 100px;
}

.column-content h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: min(100%, 670px);
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-inline: auto;

    @media(max-width: 840px) {
        font-size: 20px;
    }

    @media(max-width: 540px) {
        font-size: 18px;
    }

    &::after {
        content: '';
        display: block;
        background-color: #171717;
        width: 40px;
        height: 5px;
    }
}

.column-content h3 {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #189D9F;
    padding-bottom: 20px;
    margin-top: 40px;

    @media(max-width: 840px) {
        font-size: 18px;
    }

    @media(max-width: 540px) {
        font-size: 15px;
    }
}

.column-content>p {
    line-height: 2;
    margin-top: 20px;
}

.column-content>p span:nth-of-type(1) {
    color: #189D9F;
}

.column-content>p span:nth-of-type(2) {
    text-decoration: underline;
}

.column-content>a {
    display: inline-block;
    color: #189D9F;
    text-decoration: underline;
    margin-top: 37px;

    &:hover {
        opacity: 0.8;
    }
}

.column-connection {
    border: 1px solid #189D9F;
    position: relative;
    margin-top: 42px;
}

.column-connection>span {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #fff;
    background-color: #189D9F;
    border-bottom-right-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
}

.column-connection>span img {
    width: 16px;
    aspect-ratio: 1;
}

.column-connection>div {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 26px;
    padding: 30px;

    @media(max-width: 840px) {
        grid-template-columns: auto;
        padding: 20px;
    }
}

.column-connection>div>div:nth-of-type(1)>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-connection>div>div>h4 {
    font-size: 18px;
    font-weight: bold;
}

.column-connection>div>div>p {
    color: #999;
    font-size: 14px;
}

.column-connection>div>div>a {
    color: #189D9F;
    display: flex;
    align-items: center;
    justify-self: flex-end;
    gap: 3px;
    margin-top: 20px;
    transition: opacity 0.3s;

    &:hover {
        opacity: 0.8;
    }
}

.column-connection>div>div>a img {
    justify-self: flex-end;
    width: 24px;
    aspect-ratio: 1;
}

.column-content>figure {
    width: 100%;
}

.column-content>figure {
    width: 100%;
    object-fit: cover;
    margin-top: 40px;
}

.column-content>ul {
    margin-top: 40px;
}

.column-content>ul>li {
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 2;

    &:not(:last-of-type) {
        margin-bottom: 8px;
    }

    &::before {
        content: '';
        display: inline-block;
        width: 7px;
        aspect-ratio: 1;
        background-color: #189D9F;
        border-radius: 50%;
    }
}

.column-content>ol {
    counter-reset: number;
    margin-top: 30px;
}


.column-content>ol>li {
    display: flex;
    align-items: center;
    gap: 15px;
    counter-increment: number;

    &:not(:last-of-type) {
        margin-bottom: 8px;
    }


    &:not(:last-of-type) {
        margin-bottom: 16px;
    }

    &::before {
        content: counter(number)'.';
        color: #189D9F;
        font-weight: bold;
    }
}

table {
    width: 100%;
    margin-top: 40px !important;
}

table, td, th {
    border: 1px solid #D8D8D8;
    border-collapse: collapse;
}

th, td {
    font-size: 16px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 16px !important;
}

th {
    color: #fff;
    background: #189D9F;
}

td {
    background: #F2F9F9;
}

.column-frame {
    background-color: #F2F9F9;
    padding: 40px;
    margin-top: 40px;

    @media(max-width: 540px) {
        padding: 30px;
    }
}

.column-frame>p {
    color: #999;
    line-height: 1.7;
}

.column-btn {
    width: 100%;
    max-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid #171717;
    border-radius: 6px;
    background-color: #fff;
    padding-top: 15px;
    padding-right: 10px;
    padding-bottom: 15px;
    padding-left: 10px;
    margin-top: 50px;
    margin-inline: auto;
    transition: 0.3s ease;

    &:hover {
        background-color: #171717;
        color: #fff;
    }
}

.column-btn__arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #171717;
}

.column-btn:hover .column-btn__arrow-wrapper {
    background-color: #fff;
}

.column-btn__arrow {
    width: 5px;
    aspect-ratio: 1 / 2;
    filter: invert(97%) sepia(3%) saturate(11%) hue-rotate(66deg) brightness(105%) contrast(103%);
}

.column-btn:hover .column-btn__arrow {
    filter: none;
}

.column-recommend {
    width: min(100% - 60px, 1120px);
    margin-top: 140px;
    margin-inline: auto;
}

.column-recommend>h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.125rem, 0.993rem + 0.563vw, 1.5rem);
    font-weight: bold;

    &::before {
        content: '';
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-color: #fff;
        border: 5px solid #189D9F;
        border-radius: 50%;
    }
}

.column-recommend>div {
    background-color: #fff;
    padding-top: 50px;
    padding-right: 76px;
    padding-bottom: 50px;
    padding-left: 76px;
    margin-top: 20px;

    @media(max-width: 1090px) {
        padding-right: 50px;
        padding-left: 50px;
    }

    @media(max-width: 840px) {
        padding-top: 30px;
        padding-right: 30px;
        padding-bottom: 30px;
        padding-left: 30px;
    }
}

.column-recommend>div>ul {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 40px;

    @media(max-width: 1090px) {
        gap: 20px;
    }

    @media(max-width: 840px) {
        grid-template-columns: auto;
        gap: 30px;
    }
}

.column-recommend>div>ul>li {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
}

.column-recommend>div>ul>li>a {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.column-recommend>div>ul>li>a>img {
	width: 100%;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.column-recommend h3 {
    font-size: 18px;
}

.column-recommend>div>ul>li>a>div {
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 20px;
    padding-left: 15px;
}

.column-recommend-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 13px;
}

.column-recommend-categories span {
    display: inline-block;
    color: #189D9F;
    font-size: 11px;
    background-color: #fff;
    border: 1px solid #189D9F;
    border-radius: calc(infinity * 1px);
    padding-right: 10px;
    padding-left: 10px;
}

.column-recommend>div>ul>li>div:nth-of-type(2)>span {
    opacity: 0.3;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}


.column-search {
    width: min(100% - 60px, 1120px);
    margin-top: 140px;
    margin-inline: auto;
}

.column-search>h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    width: 100%;
    max-width: 300px;
    background-color: #189D9F;
    border-radius: 16px;
    padding-top: 13px;
    padding-bottom: 14px;
    position: relative;
    z-index: 1;
}

.column-search>h2 img {
    width: 20px;
    height: 20px;
}

.column-search>h2 span {
    &::after {
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        ;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(-45deg);
        margin-left: 30px;
    }
}



.column-search-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background-color: #fff;
    border-radius: 40px;
    padding-top: 60px;
    padding-right: 100px;
    padding-bottom: 70px;
    padding-left: 100px;
    margin-top: -32px;
    @media(max-width: 840px) {
        padding-right: 50px;
        padding-left: 50px;
    }
    @media(max-width: 540px) {
        grid-template-columns: auto;
        align-items: center;
        justify-content: flex-start;
        gap: 50px;
    }
}


.column-search-area>div>h3>a {
    font-size: clamp(1.125rem, 1.081rem + 0.188vw, 1.25rem);
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;

    &:hover {
        color: #189D9F;
    }

    @media(max-width: 840px) {
        font-size: 25px;
    }
}

.column-search-area>div>ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 25px;
    @media(max-width: 540px) {
        gap: 30px;
    }
}

.column-search-area>div>ul>li {
    display: flex;
    align-items: center;
    gap: 7px;

}

.column-search-area>div>ul>li:hover .column-search-area>div>ul>li::before {
    border-top: 2px solid #189D9F;
    border-right: 2px solid #189D9F;

}

.column-search-area>div>ul>li>a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    text-decoration: underline;

    &:hover {
        color: #189D9F;

        &::before {
            border-top: 2px solid #189D9F;
            border-right: 2px solid #189D9F;
        }
    }

    &::before {
        content: '';
        display: inline-block;
        width: 5px;
        height: 5px;
        border-top: 2px solid #171717;
        border-right: 2px solid #171717;
        transform: rotate(45deg);
    }
}

/* コラムページ一覧

====================================================*/

.page-column-bg {
    background-color: #F2F9F9;
}

.column-nav {
    background-color: #189D9F;
    padding-top: 16.5px;
    padding-bottom: 16.5px;
}

.column-nav__list {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
	grid-template-rows: auto;
    width: 100%;
    max-width: 1008px;
    margin-inline: auto;
	@media(max-width: 840px) {
		grid-template-columns: repeat(3, 1fr);
		grid-template-row: auto auto;
		gap: 30px;
	}
	@media(max-width: 540px) {
		grid-template-columns: repeat(2, 1fr);
		grid-template-row: auto auto auto;
		gap: 30px;
	}
}

.column-nav__item {
    border-left: 1px solid #27B5B7;
    transition: opacity 0.3s ease;

    &:last-of-type {
        border-right: 1px solid #27B5B7;
    }

    &:hover {
        opacity: 0.8;
    }
}


.column-nav__link {
    display: block;
    color: #fff;
    font-size: 14px;
}

.column-nav__icon-wrapper {
    align-self: center;
    justify-self: center;
    display: block;
    width: 50px;
    height: 30px;
    margin-bottom: 6px;
	margin-inline: auto;
}

.column-nav__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.column-keywords {
    display: flex;
    flex-direction: row;
    align-items: center;
	flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.column-keywords__icon {
    width: 15px;
    aspect-ratio: 1;
    object-fit: cover;
}

.column-keywords__title {
    display: flex;
    align-items: center;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    font-weight: bold;
    gap: 3px;
}

.column-keywords__text {
    color: #189D9F;
    font-size: 12px;
    background-color: #fff;
    border: 1px solid #189D9F;
    border-radius: calc(infinity * 1px);
}

.column-keywords__arrow {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-top: 1px solid #189D9F;
    border-right: 1px solid #189D9F;
    transform: rotate(135deg);
}

.column-keywords__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 6.5px;
    padding-right: 15px;
    padding-bottom: 7.5px;
    padding-left: 15px;
}

.column-narrowdown__container {
	position: relative;
	margin-top: 50px;
	@media(max-width: 540px) {
		margin-top: 100px;
	}
}

.column-narrowdown__reset {
	position: absolute;
	top: 0;
	left: 330px;
	@media(max-width: 540px) {
		top: -35px;
		left: 0;
	}
}

.column-narrowdown__reset > a {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
}

.column-narrowdown {
    margin-top: 50px;
}


.column-narrowdown__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    width: 300px;
    max-width: 100%;
    background-color: #189D9F;
    border-radius: 16px;
    padding-top: 13px;
    padding-bottom: 14px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.column-narrowdown__icon {
    width: 20px;
    height: 20px;
}

.column-narrowdown__arrow::after {
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(135deg);
        margin-left: 30px;
        transition: transform 0.3s ease;
}

.column-narrowdown__title.open>.column-narrowdown__arrow::after {
    transform: rotate(310deg);
}


.column__date-icon {
	width: 16px;
	aspect-rario: 1;
}

.column-narrowdown-area {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background-color: #fff;
    border-radius: 40px;
    padding-top: 60px;
    padding-right: 100px;
    padding-bottom: 70px;
    padding-left: 100px;
    margin-top: -15px;

    @media(max-width: 840px) {
        padding-right: 50px;
        padding-left: 50px;
    }

    @media(max-width: 540px) {
        grid-template-columns: auto;
        align-items: center;
        justify-content: flex-start;
        gap: 50px;
    }
}

.column-narrowdown__title.open .column-narrowdown-area {
    display: grid;
}


.column-narrowdown__heading-link {
    font-size: 30px;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;

    &:hover {
        color: #189D9F;
    }

    @media(max-width: 840px) {
        font-size: 25px;
    }
}

.column-narrowdown__btn-area {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.column-narrowdown__inner {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	@media(max-width: 540px) {
		grid-template-columns: auto;
	}
}

.column-narrowdown__list {
    display: grid;
    gap: 10px;
    margin-top: 25px;

    @media(max-width: 540px) {
        gap: 30px;
    }
}

.column-narrowdown__item {
    display: flex;
    align-items: center;
    gap: 7px;

}

.column-narrowdown__item:hover .column-search-area>div>ul>li::before {
    border-top: 2px solid #189D9F;
    border-right: 2px solid #189D9F;

}

.column-narrowdown__link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    text-decoration: underline !important;

    &:hover {
        color: #189D9F;

        &::before {
            border-top: 2px solid #189D9F;
            border-right: 2px solid #189D9F;
        }
    }

    &::before {
        content: '';
        display: inline-block;
        width: 5px;
        height: 5px;
        border-top: 2px solid #171717;
        border-right: 2px solid #171717;
        transform: rotate(45deg);
    }
}

/* ページネーション */


.pagination{
  list-style-type: none;
  padding-left: 0;
  margin: 30px 0;
}

.pagination,
.pagination li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
	gap: 6px;
}

.pagination a {
	text-decoration: none;
  border-left-width: 0;
  min-width:36px;
  min-height:36px;
	color: #189D9F;
    font-size: 20px;
    line-height: 1.85;
    border: 1px solid #189D9F;
    background: #fff;
    padding: 7px 18px;
}

.pagination li:not([class*="current"]) a:hover {
  background-color: #eee;
}

.pagination li:first-of-type a {
  border-left-width: 1px;
}

.pagination li.first span,
.pagination li.last span,
.pagination li.previous span,
.pagination li.next span {
  /* screen readers only */
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.pagination li.first a::before,
.pagination li.last a::after,
.pagination li.previous a::before,
.pagination li.next a::after {
  display: inline-block;
  font-family: Fontawesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

.pagination li.first a::before { content: "\f100"; }
.pagination li.last a::after { content: "\f101"; }

.pagination li.previous a::before { content: "\f104"; }
.pagination li.next a::after { content: "\f105"; }

.pagination li.current a {
 color: #FFF;
	font-size: 20px;
    line-height: 1.85;
	border: 1px solid transparent;
	background: #189D9F;
	padding: 7px 18px;
 cursor: default;
 pointer-events: none;
}

.pagination > li:first-child > a {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

@media only screen and ( max-width: 680px ) {
  .pagination li.first,
  .pagination li.last {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .pagination li.previous a { border-left-width: 1px; }
}

@media only screen and ( max-width: 500px ) {
  .pagination li {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .pagination li.current,
  .pagination li.first,
  .pagination li.last,
  .pagination li.previous,
  .pagination li.next{
    position: initial;
    top: initial;
    left: initial;
  }

  .pagination li.previous a { border-left-width: 0; }
}

@media only screen and ( max-width: 400px ) {
  .pagination li.first,
  .pagination li.last {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .pagination li.previous a { border-left-width: 1px; }
}

@media only screen and ( max-width: 240px ) { /* For watches? */
  .pagination li { width: 50%;}

  .pagination li.current {
    order: 2;
    width: 100%;
    border-left-width: 1px;
  }
}

/* コラム一覧カード */

.column-posts {
	margin-top: 83px;
	padding-bottom: 140px;
}

.column-posts__title {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #142b4e;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.04em;
	@media(max-width: 840px) {
		font-size: 20px;
	}
	@media(max-width: 540px) {
		font-size: 18px;
	}
	&::before {
		content: '';
		display: inline-block;
		width: 20px;
		aspect-ratio: 1;
		border: 5px solid #189D9F;
		border-radius: 50%;
		background-color: #fff;
	}
}

.column-post__wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 30px;
	@media(max-width: 1040px) {
		grid-template-columns: repeat(3, 1fr);
	}
	@media(max-width: 840px) {
		grid-template-columns: repeat(2, 1fr);
	}
	@media(max-width: 540px) {
		grid-template-columns: auto;
		align-items: center
	}
}

.column-post {
	background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
}

.column-post>a {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.column-post__thumbnail {
	border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.column-post__body {
	padding: 14px 20px 20px 20px;
}

.column-post__body > h3 {
	font-size: 18px;
}

/* 業種から選ぶ

====================================================*/

.page-title__wrapper--industry {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    place-content: center;
}

.page-title--industry {
    text-align: center;

    @media(max-width: 840px) {
        text-align: left;
    }
}

.industry-bg {
    background: #e5f4ff;
}

.wrapper-industry {
    padding-top: 120px;
    padding-bottom: 120px;

    @media(max-width: 840px) {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.industry-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    color: #142b4e;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    font-size: 36px;
    font-weight: 600;

    @media(max-width: 840px) {
        font-size: 32px;
        gap: 24px;
    }

    @media(max-width: 540px) {
        font-size: 24px;
    }

    &::after {
        content: '';
        display: inline-block;
        ;
        background: #142b4e;
        width: 100px;
        height: 3px;
    }
}

.industry__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 260px));
    place-content: center;
    gap: 20px;
    margin-top: 40px;

    @media(max-width: 540px) {
        grid-template-columns: min(100%, 280px);
        margin-top: 30px;
    }
}

.industry__item {
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: #fff;
    transition: opacity 0.3s ease;

    &:hover {
        opacity: 0.6;
    }
}

.industry__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: #fff;
}

.industry__link--seminar {
	background-color: #edf8ff;
	display: flex;
    flex-direction: column;
    height: 100%;
}


.industry__thumbnail-wrapper {
    width: 100%;
}

.industry__thumbnail {
    width: 100%;
	aspect-ratio: 16 / 9;
    object-fit: cover;
}

.industry__body {
	flex-grow: 1;
    background-color: #fff;
    padding-top: 14px;
    padding-right: 20px;
	padding-bottom: 20px;
    padding-left: 20px;

    @media(max-width: 540px) {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.industry__body > a {
	display: contents;
}

.industry__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.industry__tag {
    color: #7792bd;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    border: 1px solid #dce5e9;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;

    @media(max-width: 540px) {
        padding-right: 8px;
        padding-left: 8px;
    }
}

.industry__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 10px;
}

.industry__excerpt {
    color: #8e8e8e;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 10px;
}

.industry__footer {
	padding: 0 10px 20px;
	margin-top: auto;
}

.industry-btn {
    display: grid;
    place-items: center;
    gap: 30px;
    width: 100%;
    max-width: 330px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: #244e8f;
    border-radius: calc(infinity * 1px);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
    padding-top: 18px;
    padding-bottom: 18px;
    margin-top: 40px;
    margin-inline: auto;
    position: relative;

    &:hover {
        background: #142b4e;
    }
}

.industry-btn-position {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

.industry-btn__arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;

    &::after {
        content: "";
        position: absolute;
        width: 150%;
        height: 150%;
        background: #142b4e;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        transition: transform 0.3s;
        z-index: 0;
    }
}

.industry-btn:hover .industry-btn__arrow-wrapper::after {
    transform: translate(-50%, -50%) scale(0);
}


.industry-btn:hover .industry-btn__arrow-wrapper {
    background: #fff;
}

.industry-btn__arrow {
    width: 5px;
    aspect-ratio: 1 / 2;
    transform: rotate(90deg);
    filter: invert(98%) sepia(98%) saturate(8%) hue-rotate(167deg) brightness(102%) contrast(102%);
    position: relative;
    z-index: 1;
}

.industry-btn:hover .industry-btn__arrow {
    filter: none;
}

.industry-voice {
    margin-top: 100px;

    @media(max-width: 540px) {
        margin-top: 70px;
    }
}

.industry__voice-text {
    color: #244e8f;
    font-size: 12px;
    line-height: 1.6;
    margin: 14px 0px 0px 0px;
}

.industry__tags--mt {
    margin-top: 8px;
}

.industry-report {
    margin-top: 100px;

    @media(max-width: 540px) {
        margin-top: 70px;
    }
}

.industry-report-btn {
    display: grid;
    grid-template-columns: 1fr auto;
    place-items: center;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: #4bbd78;
    box-shadow: 0px 4px 0px #3a9632;
    border-radius: calc(infinity * 1px);
    padding-top: 11.5px;
    padding-bottom: 11.5px;
    margin-top: 16px;
    position: relative;
}

.industry-btn__arrow-wrapper--report {
    border: none;

    &::after {
        content: none;
    }
}

.industry-btn__arrow-wrapper--report .industry-btn__arrow {
    transform: rotate(0);
    filter: invert(62%) sepia(40%) saturate(551%) hue-rotate(91deg) brightness(95%) contrast(91%);
}


.industry-seminar {
    margin-top: 100px;

    @media(max-width: 540px) {
        margin-top: 70px;
    }
}

.industry__item--seminar {
	background: #edf8ff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.industry-seminar__date {
    text-align: center;
    color: #fff;
    background-color: #244e8f;
    padding-top: 4px;
    padding-bottom: 4px;

    @media(max-width: 540px) {
        padding-top: 2px;
        padding-bottom: 2px;
    }
}

.industry-seminar__open {
    text-align: center;
    color: #fff;
    background: #333;
    font-size: 11px;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
}

.industry__body--seminar {
    background: #edf8ff;
    padding-right: 15px;
    padding-left: 15px;
}

.industry-seminar-btn {
    display: grid;
    grid-template-columns: 1fr auto;
    place-items: center;
    width: 100%;
    color: #fff;
    font-size: 15px;
    background: #d54253;
    box-shadow: 0px 4px 0px #b91e30;
    border-radius: calc(infinity * 1px);
    padding-top: 11.5px;
    padding-bottom: 11.5px;
    position: relative;
}

.industry-btn-position--seminar {
    right: 10px;
}

.industry-btn__arrow-wrapper--seminar {
    border: none;

    &::after {
        content: none;
    }
}

.industry-btn__arrow-wrapper--seminar .industry-btn__arrow {
    transform: rotate(0);
    filter: invert(40%) sepia(34%) saturate(2162%) hue-rotate(317deg) brightness(85%) contrast(95%);
}

.industry-seminar__footer {
	margin-top: auto;
	padding: 16px 15px 20px;
}

.industry-solution__thumbnail {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/* テーマから選ぶ

====================================================*/

.page-title__wrapper--theme-category {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    place-content: center;
}

.page-title--theme-category {
    text-align: center;

    @media(max-width: 840px) {
        text-align: left;
    }
}

.theme-category-bg {
    background: #e5f4ff;
}

.wrapper-theme-category {
    padding-top: 120px;
    padding-bottom: 120px;

    @media(max-width: 840px) {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.theme-category-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    color: #142b4e;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    font-size: 36px;
    font-weight: 600;

    @media(max-width: 840px) {
        font-size: 32px;
        gap: 24px;
    }

    @media(max-width: 540px) {
        font-size: 24px;
    }

    &::after {
        content: '';
        display: inline-block;
        ;
        background: #142b4e;
        width: 100px;
        height: 3px;
    }
}

.theme-category__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 260px));
    place-content: center;
    gap: 20px;
    margin-top: 40px;

    @media(max-width: 540px) {
        grid-template-columns: min(100%, 280px);
        margin-top: 30px;
    }
}

.theme-category__item {
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: #fff;
    transition: opacity 0.3s ease;

    &:hover {
        opacity: 0.6;
    }
}

.theme-category__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: #fff;
}

.theme-category__link--seminar {
	background: #edf8ff;
}

.theme-category__thumbnail-wrapper {
    width: 100%;
}

.theme-category__thumbnail {
    width: 100%;
	aspect-ratio: 16 / 9;
    object-fit: cover;
}

.theme-category__body {
	flex-grow: 1;
    background-color: #fff;
    padding-top: 14px;
    padding-right: 20px;
	padding-bottom: 20px;
    padding-left: 20px;

    @media(max-width: 540px) {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.theme-category__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.theme-category__tag {
    color: #7792bd;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    border: 1px solid #dce5e9;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;

    @media(max-width: 540px) {
        padding-right: 8px;
        padding-left: 8px;
    }
}

.theme-category__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 10px;
}

.theme-category__excerpt {
    color: #8e8e8e;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 10px;
}

.theme-category__footer {
	padding: 0 20px 20px;
	margin-top: auto;
}

.theme-category-btn {
    display: grid;
    place-items: center;
    gap: 30px;
    width: 100%;
    max-width: 330px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: #244e8f;
    border-radius: calc(infinity * 1px);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
    padding-top: 18px;
    padding-bottom: 18px;
    margin-top: 40px;
    margin-inline: auto;
    position: relative;

    &:hover {
        background: #142b4e;
    }
}

.theme-category-btn-position {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.theme-category__arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;

    &::after {
        content: "";
        position: absolute;
        width: 150%;
        height: 150%;
        background: #142b4e;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        transition: transform 0.3s;
        z-index: 0;
    }
}

.theme-category-btn:hover .theme-category-btn__arrow-wrapper::after {
    transform: translate(-50%, -50%) scale(0);
}


.theme-category-btn:hover .theme-category-btn__arrow-wrapper {
    background: #fff;
}

.theme-category-btn__arrow {
    width: 5px;
    aspect-ratio: 1 / 2;
    transform: rotate(90deg);
    filter: invert(98%) sepia(98%) saturate(8%) hue-rotate(167deg) brightness(102%) contrast(102%);
    position: relative;
    z-index: 1;
}

.theme-category-btn:hover .theme-category-btn__arrow {
    filter: none;
}

.theme-category-voice {
    margin-top: 100px;

    @media(max-width: 540px) {
        margin-top: 70px;
    }
}

.theme-category__voice-text {
    color: #244e8f;
    font-size: 12px;
    line-height: 1.6;
    margin: 14px 0px 0px 0px;
}

.theme-category__tags--mt {
    margin-top: 8px;
}

.theme-category-report {
    margin-top: 100px;

    @media(max-width: 540px) {
        margin-top: 70px;
    }
}

.theme-category-report-btn {
    display: grid;
    grid-template-columns: 1fr auto;
    place-items: center;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: #4bbd78;
    box-shadow: 0px 4px 0px #3a9632;
    border-radius: calc(infinity * 1px);
    padding-top: 11.5px;
    padding-bottom: 11.5px;
    position: relative;
}

.theme-category-btn__arrow-wrapper--report {
    border: none;

    &::after {
        content: none;
    }
}

.theme-category-btn__arrow-wrapper--report .theme-category-btn__arrow {
    transform: rotate(0);
    filter: invert(62%) sepia(40%) saturate(551%) hue-rotate(91deg) brightness(95%) contrast(91%);
}


.theme-category-seminar {
    margin-top: 100px;

    @media(max-width: 540px) {
        margin-top: 70px;
    }
}

.theme-category__item--seminar {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.theme-category-seminar__date {
    text-align: center;
    color: #fff;
    background-color: #244e8f;
    padding-top: 4px;
    padding-bottom: 4px;

    @media(max-width: 540px) {
        padding-top: 2px;
        padding-bottom: 2px;
    }
}

.theme-category-seminar__open {
    text-align: center;
    color: #fff;
    background: #333;
    font-size: 11px;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
}

.theme-category__body--seminar {
    background: #edf8ff;
    padding-right: 15px;
    padding-left: 15px;
}

.theme-category-seminar-btn {
    display: grid;
    grid-template-columns: 1fr auto;
    place-items: center;
    width: 100%;
    color: #fff;
    font-size: 15px;
    background: #d54253;
    box-shadow: 0px 4px 0px #b91e30;
    border-radius: calc(infinity * 1px);
    padding-top: 11.5px;
    padding-bottom: 11.5px;
    position: relative;
}

.theme-category-btn-position--seminar {
    right: 10px;
}

.theme-category-btn__arrow-wrapper--seminar {
    border: none;

    &::after {
        content: none;
    }
}

.theme-category-btn__arrow-wrapper--seminar .theme-category-btn__arrow {
    transform: rotate(0);
    filter: invert(40%) sepia(34%) saturate(2162%) hue-rotate(317deg) brightness(85%) contrast(95%);
}

/* トップ

====================================================*/

/* アイコン */

.top-icon {
    width: 40px;
    margin-top: 30px;
	margin-inline: auto;
    @media(max-width: 840px) {
        margin-top: 24px;
    }

    @media(max-width: 540px) {
        width: 24px;
        margin-top: 16px;
    }
}

.top-icon--left {
	margin-inline: 0;
	@media(max-width: 840px) {
		margin-inline: auto;
	}
}

/* mainvisual */

.mainvisual {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.mainvisual__slider {
    width: 100%;
    position: relative;
}

.mainvisual__img {
    width: 100%;
}


.prev-arrow,
.next-arrow {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 60px;
    z-index: 1;

    @media(max-width: 840px) {
        display: none !important;
    }
}

.prev-arrow {
    left: 60px;
    transform: rotate(-180deg);
}

.next-arrow {
    right: 60px;
}

/* pickup */

.pickup {
    background-color: #142B4E;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.pickup__heading {
    color: #fff;
    font-size: 20px;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    font-weight: 400;
    letter-spacing: 0.15em;
    background-color: #142B4E;
    padding-top: 17px;
    padding-right: 53px;
    padding-left: 53px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;

    @media(max-width: 540px) {
        font-size: 18px;
    }
}

.prev-arrow--pickup,
.next-arrow--pickup {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.8;
    @media(max-width: 840px) {
        display: none;
    }
}

.prev-arrow--pickup {
    transform: translateY(-50%) rotate(-180deg);
}

.pickup__item {
    margin-right: 20px;
}

/* top achievements */

.top-achievements {
    background-color: #EAEEF2;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: -2;

    @media(max-width: 840px) {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.top-achievements__bg {
    display: grid;
    place-self: center;
    color: #f4f9ff;
    font-size: 110px;
    font-weight: 600;
    width: max-content;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;

    @media(max-width: 1090px) {
        font-size: 80px;
    }

    @media(max-width: 840px) {
        font-size: 54px;
    }

    @media(max-width: 540px) {
        font-size: 34px;
    }
}

.top-achievements__heading {
    display: grid;
    place-self: center;
    color: #142b4e;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    margin-top: 90px;

    @media(max-width: 1090px) {
        margin-top: 65px;
    }

    @media(max-width: 840px) {
        font-size: 30px;
        margin-top: 45px;
    }

    @media(max-width: 540px) {
        font-size: 28px;
        margin-top: 35px;
    }
}

.achievements__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;

    @media(max-width: 840px) {
        gap: 10px;
    }

    @media(max-width: 540px) {
        margin-top: 36px;
    }
}

.achievements__item {
    width: calc((100% / 3) - 20px);
    background-color: #fff;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
    padding: 10px;

    @media(max-width: 840px) {
        width: calc((100% / 2) - 10px);
    }
}

.achievements__item:nth-of-type(5) {
    @media(max-width: 840px) {
        width: 100%;
    }
}


.achievements__head {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    width: 100%;
    color: #fff;
    background: linear-gradient(10deg, #a18129 0%, #d5bc6d 30%, #dec678 47%, #d4bb6c 67%, #a18129 100%);
    padding-top: 5.4px;
    padding-bottom: 5.4px;
}

.achievements__head--annotation {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    vertical-align: text-top;
}

.achievements__body {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.achievements__img-wrapper {
    width: 115px;
    aspect-ratio: 1;

    @media(max-width: 1090px) {
        width: 90px;
    }

    @media(max-width: 840px) {
        width: 70px;
    }

    @media(max-width: 540px) {
        width: 60px;
    }
}

.achievements__img {
    width: 100%;
}

.achievements__text-wrapper {
    text-align: center;
}

.achievements__text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.06;

    @media(max-width: 840px) {
        font-size: 20px;
    }

    @media(max-width: 540px) {
        font-size: 16px;
    }
}

.achievements__text--large {
    font-size: 60px;
    font-weight: 600;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    letter-spacing: -0.02em;
    background: linear-gradient(10deg, #a18129 0%, #d5bc6d 30%, #dec678 47%, #d4bb6c 67%, #a18129 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

    @media(max-width: 1090px) {
        font-size: 46px;
    }

    @media(max-width: 840px) {
        font-size: 42px;
    }

    @media(max-width: 540px) {
        font-size: 32px;
    }
}

.achievements__annotation-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;

    @media(max-width: 1090px) {
        gap: 10px;
    }

    @media(max-width: 880px) {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
    }

    @media(max-width: 540px) {
        margin-top: 20px;
    }
}

.achievements__annotation {
    color: #6a6a6a;
    font-size: 13px;
    font-weight: 300;
}

/* introduction */

.introduction {
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
    background-image: url(http://digitaland.co.jp/wp-content/uploads/2025/03/introduction-bg-scaled.webp);

    @media(max-width: 840px) {
        grid-template-columns: auto;
        grid-template-rows: 1fr 1fr;
        grid-auto-flow: column;
    }
}

.introduction__body {
    width: 63.7681159%;
    justify-self: center;
    align-self: center;
    margin-right: 0;
    padding-left: 60px;

    @media(max-width: 1090px) {
        padding-left: 40px;
    }

    @media(max-width: 840px) {
        width: 100%;
        padding-right: 40px;
    }
}

.introduction__heading {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;

    @media(max-width: 1090px) {
        font-size: 26px;
    }

    @media(max-width: 840px) {
        text-align: center;
    }

    @media(max-width: 540px) {
        font-size: 24px;
    }
}

.introduction__text {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    margin-top: 40px;

    @media(max-width: 1090px) {
        font-size: 14px;
        line-height: 1.8;
        margin-top: 30px;
    }
}

.introduction__btn {
    display: grid;
    grid-template-columns: 1fr 40px;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 42px;
    margin-inline: none;
    transition: background-colo 0.3s ease;

    &:hover {
        color: #fff;
        background-color: #244e8f;
    }

    @media(max-width: 840px) {
        margin-top: 50px;
        margin-inline: auto;
    }

    @media(max-width: 540px) {
        max-width: 100%;
        margin-top: 40px;
    }
}

.introduction__icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
}

.introduction__btn:hover .introduction__icon-wrapper {
    background-color: #fff;
}

.introduction__icon {
    width: 5px;
    aspect-ratio: 1 / 2;
    filter: invert(100%) sepia(0%) saturate(7471%) hue-rotate(5deg) brightness(96%) contrast(103%);
}

.introduction__btn:hover .introduction__icon {
    filter: none;
}

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

/* スライダー */

.slick-list {
	display: grid;
}

/* seminar 一覧 */

.seminar {
    padding-top: 120px;
    padding-bottom: 160px;

    @media(max-width: 840px) {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    @media(max-width: 540px) {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.top-recommend__heading {
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    font-size: 36px;
    font-weight: 500;

    @media(max-width: 840px) {
        font-size: 30px;
    }

    @media(max-width: 540px) {
        font-size: 24px;
    }
}

.top-recommend-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 430px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: #244e8f;
    border: 2px solid transparent;
    border-radius: calc(infinity * 1px);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
    padding-top: 18px;
    padding-bottom: 18px;
    margin-top: 40px;
    margin-inline: auto;
    position: relative;
    transition: background 0.3s ease;

    &:hover {
        background: #fff;
        border-color: #244e8f;
        color: #244e8f;
    }
}

.top-recommend__search-wrapper {
    width: 20px;
    height: 20px;
}

.top-recommend__search {
    width: 100px;
}

.top-recommend__arrow-postion {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.top-recommend-btn-arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #244e8f;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;

    &::after {
        content: "";
        position: absolute;
        width: 150%;
        height: 150%;
        background: #fff;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        transition: transform 0.3s;
        z-index: 0;
    }
}

.top-recommend-btn:hover .top-recommend-btn-arrow-wrapper::after {
    transform: translate(-50%, -50%) scale(0);
}


.top-recommend-btn:hover .top-recommend-btn-arrow-wrapper {
    background: #244e8f;
}

.top-recommend-btn__arrow {
    width: 5px;
    aspect-ratio: 1 / 2;
    position: relative;
    z-index: 1;
}

.top-recommend-btn:hover .top-recommend-btn__arrow {
    filter: invert(98%) sepia(98%) saturate(8%) hue-rotate(167deg) brightness(102%) contrast(102%);
}

.seminar-slider {
	display: grid;
    grid-template-columns: max(100%, 300px);
    margin-top: 100px;
	
	@media(max-width: 840px) {
		margin-top: 70px;
	}

    @media(max-width: 540px) {
        grid-template-columns: max(100%, 280px);
        margin-top: 60px;
    }
}

.seminar-slide {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
	background: #edf8ff;
    transition: opacity 0.3s ease;
	margin-right: 30px;
	
	@media(max-width: 840px) {
		margin-right: 20px;
	}

    @media(max-width: 540px) {
        margin-right: 15px;
    }
    &:hover {
        opacity: 0.6;
    }
}

.seminar__link {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.seminar__thumbnail-wrapper {
    width: 100%;
}

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

.seminar__date {
    text-align: center;
    color: #fff;
    background: #244e8f;
    padding-top: 4px;
    padding-bottom: 4px;
}

.seminar__body {
    background: #edf8ff;
    padding-top: 14px;
    padding-right: 20px;
	padding-bottom: 20px;
    padding-left: 20px;
}

.seminar__open {
    color: #fff;
    background: #333;
    font-size: 13px;
    font-weight: 500;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
}

.seminar__title {
    font-size: 18px;
    line-height: 1.3;
    margin-top: 10px;
}

.seminar__desc {
    color: #8e8e8e;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 10px;
}

.seminar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 8px;
}

.seminar__tag {
    border: 1px solid #dce5e9;
    color: #7792bd;
    font-size: 11px;
    line-height: 1.4;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
}

.seminar__footer {
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	margin-top: auto;
}

.seminar-btn {
    display: grid;
    grid-template-columns: 1fr auto;
    place-items: center;
	gap: 10px;
    width: 100%;
    color: #fff;
    font-size: 15px;
    background: #d54253;
    box-shadow: 0px 4px 0px #b91e30;
    border-radius: calc(infinity * 1px);
    padding-top: 11.5px;
    padding-bottom: 11.5px;
    position: relative;
}

.seminar-btn-position {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.seminar-btn__arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
}

.seminar-btn__arrow {
    width: 5px;
    aspect-ratio: 1 / 2;
    filter: invert(40%) sepia(34%) saturate(2162%) hue-rotate(317deg) brightness(85%) contrast(95%);
}

/* voice　お客様の声一覧 */

.voice {
	background: linear-gradient(to right, #8d9cb2 80%, transparent 80%);
	padding-bottom: 160px;
	@media(max-width: 840px) {
		background: #8d9cb2;
		padding-bottom: 80px;
	}
	@media(max-width: 540px) {
		padding-bottom: 70px;
	}
}

.voice__inner {
	width: min(100% - 40px, 1120px);
    margin-inline: auto;

}

.voice__heading-main {
    color: #94a3bb;
    font-size: 110px;
	font-family: "Outfit", "Inter", "Manrope", "Urbanist", "Noto Sans", "Arial", sans-serif;
	
	@media(max-width: 1090px) {
        font-size: 90px;
    }

    @media(max-width: 840px) {
		text-align: center;
        font-size: 60px;
    }

    @media(max-width: 540px) {
        font-size: 30px;
    }
}

.voice__heading-sub {
    color: #edf3fb;
    font-size: 36px;
    font-weight: 500;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;

    @media(max-width: 840px) {
		text-align: center;
        font-size: 30px;
    }

    @media(max-width: 540px) {
        font-size: 28px;
    }
}

.voice-slider .slick-track {
    padding-bottom: 20px;
}


.voice-slider {
	display: grid;
    grid-template-columns: max(100%, 300px);
    margin-top: 100px;
	
	@media(max-width: 840px) {
		margin-top: 70px;
	}

    @media(max-width: 540px) {
        grid-template-columns: max(100%, 280px);
        margin-top: 60px;
    }
}

.voice-slide {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
	background-color: #fff;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
	margin-right: 30px;
	
	@media(max-width: 840px) {
		margin-right: 20px;
	}

    @media(max-width: 540px) {
        margin-right: 15px;
    }
    &:hover {
        opacity: 0.6;
    }
}

.voice__thumbnail-wrapper {
    width: 100%;
	height: 162px;
	@media(max-width: 540px) {
		height: 152px;
	}
}

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

.voice__date {
    text-align: center;
    color: #fff;
    background: #244e8f;
    padding-top: 4px;
    padding-bottom: 4px;
}

.voice__body {
    background: #fff;
    padding-top: 14px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}

.voice__open {
    color: #fff;
    background: #333;
    font-size: 13px;
    font-weight: 500;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
}

.voice__title {
    font-size: 18px;
    line-height: 1.3;
    margin-top: 10px;
}

.voice__desc {
    color: #8e8e8e;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 10px;
}

.voice__company {
	color: #244e8f;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 14px;
}

.voice__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 8px;
}

.voice__tag {
    border: 1px solid #dce5e9;
    color: #7792bd;
    font-size: 11px;
    line-height: 1.4;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
}



/* report ビジネスリポート一覧 */

.report {
	padding-top: 120px;
	padding-bottom: 160px;
	@media(max-width: 840px) {
	padding-top: 80px;
	padding-bottom: 80px;
	}

    @media(max-width: 540px) {
    padding-top: 70px;
	padding-bottom: 70px;
	}
}

.report__heading {
    color: #142b4e;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    font-size: 36px;
    font-weight: 500;
    @media(max-width: 840px) {
        font-size: 32px;
    }
    @media(max-width: 540px) {
        font-size: 28px;
    }

}

.report-slider {
	display: grid;
    grid-template-columns: max(100%, 300px);
    margin-top: 100px;
	
	@media(max-width: 840px) {
		margin-top: 70px;
	}

    @media(max-width: 540px) {
        grid-template-columns: max(100%, 280px);
        margin-top: 60px;
    }
}

.report-slide {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
	margin-right: 30px;
	
	@media(max-width: 840px) {
		margin-right: 20px;
	}

    @media(max-width: 540px) {
        margin-right: 15px;
    }
    &:hover {
        opacity: 0.6;
    }
}



.report__thumbnail-wrapper {
    width: 100%;
	height: 162px;
	@media(max-width: 540px) {
		height: 152px;
	}
}

.report__link {
	display: flex;
	flex-direction: column;
	height: 100%;
}

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

.report__date {
    text-align: center;
    color: #fff;
    background: #244e8f;
    padding-top: 4px;
    padding-bottom: 4px;
}

.report__body {
    background: #fff;
    padding-top: 14px;
    padding-right: 20px;
	padding-bottom: 20px;
    padding-left: 20px;
}

.report__open {
    color: #fff;
    background: #333;
    font-size: 13px;
    font-weight: 500;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
}

.report__title {
    font-size: 18px;
    line-height: 1.3;
    margin-top: 10px;
}

.report__desc {
    color: #8e8e8e;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 10px;
}

.report__company {
	color: #244e8f;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 14px;
}

.report__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 8px;
}

.report__tag {
    border: 1px solid #dce5e9;
    color: #7792bd;
    font-size: 11px;
    line-height: 1.4;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
}
.report-btn {
    display: grid;
    grid-template-columns: 1fr auto;
    place-items: center;
    gap: 10px;
    width: 100%;
    color: #fff;
    font-size: 15px;
    background: #4bbd78;
    box-shadow: 0px 4px 0px #3a9632;
    border-radius: calc(infinity * 1px);
    padding-top: 11.5px;
    padding-bottom: 11.5px;
    position: relative;
}

.report__footer {
	padding: 0 20px 20px;
	margin-top: auto
}

.report-btn-position {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.report-btn__arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
}

.report-btn__arrow {
    width: 5px;
    aspect-ratio: 1 / 2;
    filter: invert(62%) sepia(9%) saturate(2251%) hue-rotate(91deg) brightness(100%) contrast(97%);
}

/* solution ソリューション一覧 */


.solution-slide {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
	background-color: #fff;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
	margin-right: 30px;
	
	@media(max-width: 840px) {
		margin-right: 20px;
	}

    @media(max-width: 540px) {
        margin-right: 15px;
    }
    &:hover {
        opacity: 0.6;
    }
}

.solution__thumbnail-wrapper {
    width: 100%;
	height: 162px;
	@media(max-width: 540px) {
		height: 152px;
	}
}

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

.solution__body {
    background: #fff;
    padding-top: 14px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}

.solution__title {
    font-size: 18px;
    line-height: 1.3;
    margin-top: 10px;
}

.solution__desc {
    color: #8e8e8e;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 10px;
}

.solution__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 8px;
}

.solution__tag {
    border: 1px solid #dce5e9;
    color: #7792bd;
    font-size: 11px;
    line-height: 1.4;
    padding-top: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-left: 10px;
}

/* top-cta */

.top-cta {
	padding-bottom: 160px;
	@media(max-width: 840px) {
	padding-bottom: 80px;
	}

    @media(max-width: 540px) {
	padding-bottom: 70px;
	}
}

.service-cta__heading--top {
	margin-top: 0;
}

/* policy */

.policy {
	padding-top: 120px;
	padding-bottom: 160px;
	@media(max-width: 840px) {
	padding-top: 80px;
	padding-bottom: 80px;
	}

    @media(max-width: 540px) {
    padding-top: 70px;
	padding-bottom: 70px;
	}
}

.policy__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	color: #142b4e;
    font-size: 36px;
    font-weight: 700;
	font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
	@media(max-width: 840px) {
	gap: 24px;
	}

    @media(max-width: 540px) {
	gap: 16px;
	}
	&::after {
		content: '';
		display: inline-block;
		background: #142b4e;
		width: 100px;
		height: 3px;
	}
}

.policy-media {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 40px;
	&:nth-of-type(1) {
        margin-top: 60px;
        @media(max-width: 840px) {
            margin-top: 40px;
        }
        @media(max-width: 540px) {
            margin-top: 30px;
        }
    }
    &:not(:last-of-type) {
        margin-bottom: 60px;
        @media(max-width: 540px) {
            margin-bottom: 40px;
        }
    }

    @media(max-width: 840px) {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
    }
    @media(max-width: 540px) {
        gap: 20px;
    }
}

.policy-media__img-wrapper {
    width: 270px;

    @media(max-width: 840px) {
        width: 100%;
    }
}

.policy-media__img {
    width: 100%;
    object-fit: cover;
}

.policy-media__heading {
    font-size: 24px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid #c2c2c2;
    padding-bottom: 16px;
    position: relative;

    &::after {
        content: '';
        width: 14%;
        height: 3px;
        background-color: #244e8f;
        position: absolute;
        bottom: -3px;
    }

    @media(max-width: 540px) {
        font-size: 20px;
    }
}

.policy-media__text {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 16px;

    @media(max-width: 540px) {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* カスタム個別詳細

====================================================*/


.custom-detail {
    padding-top: 80px;
    padding-bottom: 120px;
    @media(max-width: 840px) {
        padding-top: 30px;
        padding-bottom: 80px;
    }

    @media(max-width: 540px) {
        padding-top: 20px;
    }
}

.custom-detail__heading {
    color: #142b4e;
	border-bottom: 4px double #142b4e;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.6;
    padding-bottom: 30px;

    @media(max-width: 840px) {
        font-size: 24px;
        line-height: 1.5;
        padding-bottom: 20px;
    }
}

.custom-detail__link-area {
    display: grid;
	grid-template-columns: 1fr auto;
	align-items: flex-start;
	grid-auto-rows: auto;
	gap: 40px;
	margin-top: 20px;
	@media(max-width: 840px) {
		grid-template-columns: auto;
		grid-template-rows: auto auto;
		gap: 12px;
	}
}

.custom-detail__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.custom-detail__tag {
    display: inline-block;
    border: 1px solid #dce5e9;
    border-radius: 4px;
}

.custom-detail__tag-link {
    color: #7792bd;
    font-size: 11px;
    display: inline-block;
    padding: 2px 10px;
}

.custom-detail__link {
    display: flex;
    flex-direction: row;
	align-self: center;
	gap: 10px;
	@media(max-width: 540px) {
		gap: 8px;
	}
}

.custom-detail__link--margin {
	margin-top: 80px;
	@media(max-width: 840px) {
		margin-top: 32px;
	}
}

.custom-detail__sns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #142b4e;
    border-radius: 48px;
    gap: 5px;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
	@media(max-width: 840px) {
		padding-left: 15px;
	}
}

.custom-detail__link-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-right: 6px;
	@media(max-width: 540px) {
		font-size: 11px;
	}
}

.custom-detail__icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 80px;
    height: 30px;
	@media(max-width: 540px) {
		width: 50px;
	}
	&:hover {
		background-color: #f7f7f7;
	}
    &:nth-of-type(1) {
        border-top-left-radius: 48px;
        border-bottom-left-radius: 48px;
    }
    &:nth-of-type(2) {
        border-top-right-radius: 48px;
        border-bottom-right-radius: 48px;
    }
}

.custom-detail__icon {
    width: 20px;
    aspect-ratio: 1;
}

.custom-detail__copy {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #142b4e;
    border-radius: 50%;
    width: 40px;
    aspect-ratio: 1;
}

.custom-detail__copy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    aspect-ratio: 1;
	transition: opacity 0.3s ease;
	&:hover {
		opacity: 0.6;
	}
}

.custom-detail__copy-img {
    width: 15px;
    aspect-ratio: 1;
}

.custom-detail__thumbnail-wrapper {
	margin-top: 40px;
	@media(max-width: 540px) {
		margin-top: 30px;
	}
}

.custom-detail__thumbnail {
	width: 100%;
	object-fit: cover;
}

.custom-detail__content {
	margin-top: 40px;
	@media(max-width: 540px) {
		margin-top: 30px;
	}
}

.custom-detail__content>h2 {
	color: #fff;
	background-color: #142b4e;
	font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    margin: 30px 0px 30px 0px;
    padding: 4px 12px 6px 12px;
	@media(max-width: 840px) {
		font-size: 22px;
	}
	@media(max-width: 540px) {
		font-size: 20px;
		margin: 40px 0px 30px 0px;
	}
}

.custom-detail__content>h3 {
	border-bottom: 1px solid #dfe4e5;
    color: #142b4e;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    margin: 30px 0px 20px 0px;
    padding: 0px 0px 16px 0px;
	@media(max-width: 840px) {
		font-size: 20px;
        padding: 0px 0px 14px 0px;
	}
	@media(max-width: 540px) {
		font-size: 18px;
        margin: 0px 0px 20px 0px;
        padding: 0px 0px 10px 0px;
	}
}

.custom-detail__content>p {
	font-size: 16px;
    line-height: 2;
    margin: 0px 0px 10px 0px;
	@media(max-width: 540px) {
		font-size: 15px;
        line-height: 1.8;
        margin: 0px 0px 30px 0px;
	}
}

.custom-detail__content > ul {
	list-style-type: disc;
}

.custom-detail__content > ol {
	list-style-type: decimal;
}

.custom-detail__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #142b4e;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: #fff;
    border-radius: 2px;
    border: 2px solid #142b4e;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 300px;
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 80px;
    margin-inline: auto;
    transition: background 0.3s ease;

    @media(max-width: 540px) {
		max-width: 100%;
        margin-top: 50px;
    }

    &:hover {
        background: #142b4e;
        color: #fff;
    }
}

.custom-detail__arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #142b4e;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.custom-detail__btn:hover .custom-detail__arrow-wrapper {
    background-color: #fff;
}

.custom-detail__arrow {
    width: 5px;
    aspect-ratio: 1 / 2;
    filter: invert(98%) sepia(98%) saturate(8%) hue-rotate(167deg) brightness(102%) contrast(102%);
}

.custom-detail__btn:hover .custom-detail__arrow {
    filter: invert(13%) sepia(23%) saturate(2866%) hue-rotate(186deg) brightness(97%) contrast(93%);
}

/* ビジネスレポート投稿詳細ページ */

.report-detail-contact__heading {
	text-align: center;
    color: #333;
    font-size: 24px;
    font-weight: 600;

    @media(max-width: 840px) {
        font-size: 30px;
    }

    @media(max-width: 540px) {
        font-size: 24px;
    }
}

.report-detail-contact__heading--accent {
    color: #0ba308;
}

.report-detail-contact__heading--accent-frame {
    color: #fff;
    background: #0ba308;
    border-radius: 4px;
    font-size: 28px;
    font-weight: 600;
    padding-top: 6px;
    padding-right: 12px;
    padding-bottom: 6px;
    padding-left: 12px;
    margin-left: 6px;
    @media(max-width: 840px) {
        margin-top: 10px;
        margin-left: 0;
    }

    @media(max-width: 540px) {
        font-size: 18px;
    }
    
}

.form-rulu__text {
    font-size: 14px;
}

.form-rulu__list {
    margin-top: 10px;
    margin-bottom: 10px;
}

#question-check {
    display: grid;
    grid-template-rows: auto;
    gap: 10px;
	margin-top: 20px;
}

#question-check input[type="checkbox"] {
    transform: scale(1.2) translateX(-10px) !important;
}

.custom-connection__area {
    background: #e5f4ff;
    border-bottom: 1px solid #e6e6e6;
    padding-top: 120px;
    padding-bottom: 120px;

    @media(max-width: 840px) {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    @media(max-width: 540px) {
        font-size: 18px;
    }
}

.custom-connection__area > .wrapper {
	display: flex;
	flex-direction: column;
	gap: 100px;
	 @media(max-width: 540px) {
        gap: 70px;
    }
}

.custom-connection__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    color: #142b4e;
    font-size: 36px;
    font-weight: 600;
    font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;

    @media(max-width: 840px) {
        gap: 24px;
        font-size: 32px;
    }

    @media(max-width: 540px) {
        gap: 16px;
        font-size: 24px;
    }

    &::after {
        content: '';
        display: inline-block;
        background: #142b4e;
        height: 3px;
        width: 100px;

        @media(max-width: 540px) {
            width: 60px;
        }
    }
}



.custom-connection__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
	margin-top: 40px;

    @media(max-width: 540px) {
        margin-top: 20px;
    }
}

.custom-connection__inner .seminar-slide,
.custom-connection__inner .report-slide,
.custom-connection__inner .voice-slide,
.custom-connection__inner .solution-slide{
	background-color: #fff;
	margin-right: 0;
	grid-row: span 1;
}

.custom-connection__inner .seminar-slide {
	background-color: #edf8ff;
}

/* 事例・お客様からの声・セミナー一覧 */

.seminar-list {
	background-color: #edf0f3;
	padding: 60px 0 120px;
	@media(max-width: 840px) {
		padding: 60px 0 80px;
	}
	@media(max-width: 540px) {
		padding: 50px 0 80px;
	}
}

.voice-list {
	background-color: #edf0f3;
	padding: 60px 0 120px;
	@media(max-width: 840px) {
		padding: 60px 0 80px;
	}
	@media(max-width: 540px) {
		padding: 50px 0 80px;
	}
}

.search-area__inner {
	width: min(100% - 80px, 900px);
	padding: 80px 0 100px;
	margin-inline: auto;
	@media(max-width: 1090px) {
		padding: 100px 0 80px;
	}
	@media(max-width: 840px) {
		padding: 80px 0 60px;
	}
	@media(max-width: 540px) {
		padding: 50px 0 50px;
	}
}

.search-area__inner--vertical {
	display: grid;
    grid-template-columns: auto auto;
    gap: 40px;
    width: min(100% - 80px, 1120px);
	@media(max-width: 840px) {
		grid-template-columns: auto;
	}
}



/* 事例・お客様からの声・セミナー一覧 フォーム */

.filter-header {
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-row: auto;
	align-items: center;
	gap: 4px;
	@media(max-width: 540px) {
		grid-template-columns: auto;
		grid-template-rows: auto auto;
	}
}

.filter-title {
	color: #142b4e;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
	font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
	@media(max-width: 840px) {
		font-size: 24px;
	}
	@media(max-width: 540px) {
		font-size: 20px;
	}
}

.filter-form {
	display: grid;
	grid-template-columns: 1fr auto;
}

.filter-form>input[type="text"] {
	height: 35px;
}

.filter-form > button {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #171717;
	width: 44px;
	height: 35px;
}

.filter-form>button>img {
	width: 20px;
}

/* 事例・お客様からの声・セミナー一覧 アコーディオン */

.accordion-area {
	margin-top: 30px;
}

.search__title {
	color: #142b4e;
	font-size: 18px;
	font-weight: 700;
    line-height: 1.4;
	font-family: "Noto Serif JP", "Noto Serif", "Times New Roman", "Georgia", serif;
	margin-bottom: 10px;
}

.accordion-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
	margin-top: 20px;
	@media(max-width: 840px) {
		grid-template-columns: 1fr;
	}
}

.accordion-wrapper--vertical {
	grid-template-columns: auto;
}

.accordion-toggle {
    display: grid;
	grid-template-columns: 1fr auto;
    width: 100%;
    text-align: left;
	color: #142b4e;
    background: #f0f6f9;
    border: 1px solid transparent;
    padding: 6px 12px 6px 20px;
    cursor: pointer;
    font-weight: bold;
	&:hover {
		border: 1px solid #242481;
	}
}

.arrow-circle-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 18px;
	height: 18px;
	background-color: #fff;
	border-radius: 50%;
	border: 1px solid #142b4e;
}

.arrow-circle-wrapper img {
	width: 5px;
	height: 10px;
	transform: rotate(90deg);
	transition: transform 0.3s;
}

.accordion-toggle.active .arrow-circle-wrapper img {
	transform: rotate(270deg);
}

.accordion-children {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
	background: #f8f8f8;
    margin: 0;
    list-style: none;
}

.accordion-children li {
	display: block;
	border-bottom: 1px solid #fff;
	padding: 12px 30px; 
	&:nth-of-type(1) {
		border-top: 1px solid #fff;
	}
}

.accordion-children>li>a {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
}

.accordion-children.open {
    max-height: 500px;
    opacity: 1;
}

.arrow-wrapper {
	display: inline-block;
	width: 5px;
	height: auto;
}

.arrow-wrapper img {
	width: 100%;
	height: auto;
	display: block;
}

.nav-wrapper {
    position: relative;;
 }

.submenu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 55vh;
  background: rgba(4, 41, 96, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 100;
}

.submenu-wrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*------------Column List------------*/
.column-pick {
  background: #FFF;
  width: 100%;
  height: 500px;
  margin-top: 30px;
  margin-bottom: 60px;
  display: flex;
  padding: 40px 0;
}

.column-pick-inner {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
	position: relative;
}

.column-pick-title {
  display: flex;
  align-items: flex-start;
}
.column-pick-title h2 {
  writing-mode: vertical-rl; 
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 3px;
  font-family: 'Noto Serif JP';
  margin-top: 3rem;
}

.column-pick-title img {
	width: 48px;
}

.custom-pickup {
  width: 90%;
  min-height: 350px;
  position: relative;
  overflow: hidden; 
}

.custom-pickup-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  pointer-events: none; 
  transform: translateX(100%);
}

.custom-pickup-item.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.custom-pickup-item.active {
  display: block; 
}

.custom-pickup-inner {
  display: flex;
	flex-direction: row;
  justify-content: space-between;
  position: relative;
	@media(max-width: 540px) {
		flex-direction: column;
	}
}

.custom-pickup-thumb {
  width: 63%;
  max-width: 720px;
  height: fit-content;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  top:0;
  right: 0;
  z-index: -1;
	@media(max-width: 540px) {
		width: 100%;
	}
}

.custom-pickup-thumb img {
  width: 100%;
}

.custom-pickup-text {
	display: flex;
    flex-direction: column;
    width: 49%;
    margin-top: 3rem;
	@media(max-width: 540px) {
		width: 100%;
		margin-top: 10rem;
	}
}

.custom-pickup-title {
	font-size: 32px;
    color: #FFF;
    display: inline-block;
    background-color: #189D9F;
    padding: 1% 5%;
    margin-bottom: 26px;
	@media(max-width: 840px) {
		font-size: 25px;
	}
	@media(max-width: 540px) {
		font-size: 18px;
	}
}

.custom-pickup-cat {
  color: #189D9F;
  border: 1px solid #189D9F;
  border-radius: 32px;
  font-size: 12px;
  width: fit-content;
  padding: 3px 10px;
}

.custom-pickup-date {
  font-size: 13px;
  font-family: 'Noto Serif JP';
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 10px;
}

.custom-pickup-date img {
  width: 12px;
  height: 12px;
}

.column-special {
	width: 80%;
    max-width: 968px;
    margin: 0 auto;
}

.custom-pickup-dots {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  margin-top: 20px;
  position: absolute;
  bottom: 18%;
  left: 10%; 
	@media(max-width: 840px) {
		bottom: 10%;
	}
	@media(max-width: 600px) {
		bottom: 5%;
	}
}

.custom-dot {
  width: 9px;
  height: 9px;
  background-color: #142B4E;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
	@media(max-width: 540px) {
		width: 6px;
		height: 6px;
	}
}

.custom-dot.active {
  background-color: #999;
  width: 80px;
	@media(max-width: 540px) {
		width: 50px;
	}
}

.custom-dot .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #189D9F;
  width: 0%;
  transition: width 5s linear;
}


.special-title-box {
	display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    border-bottom: 1px solid #189D9F;
    margin-bottom: 40px;
}

.special-title-box img {
	width: 138px;
	@media(max-width: 540px) {
		width: 110px;
	}
}

.special-title-box h2 {
	font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Noto Serif JP';
    margin-left: 14px;
    line-height: 2;
}

.special-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px 0 120px;
}

.special-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
  height: 350px;
}

.special-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.special-card .thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.special-card .title {
  font-size: 18px;
  line-height: 1.5;
  margin: 12px;
}

.special-card .meta {
  font-size: 0.9em;
  color: #666;
  margin: 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.date {
 display: flex;
 align-items: center;
 gap: 3px;
}

.meta.date img {
  width: 12px;
  height: 12px;
}

span.category {
  color: #189D9F;
  font-size: 11px;
  border: 1px solid #189D9F;
  border-radius: 15px;
  width: fit-content;
  padding: 2px 10px;
}

.category-section {
  min-width: 90%;
  max-width: 1120px;
  margin-bottom: 60px;
  margin: 0 auto;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
	@media(max-width: 540px) {
		flex-direction: column;
		gap: 30px;
		margin-bottom: 10px;
	}
}

.category-header-left {
  display: flex;
  align-items: center;
}

.category-header-left img {
  width: 76px;
}

.category-header-left h2 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-left: 15px;
}

.category-header a {
  background: #FFF;
  border: 1px solid #171717;
  padding: 17px 34px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
}

.category-header a img {
  width: 20px;
  margin-left: 10px;
}


/* 事例・お客様からの声・セミナー一覧 スライダー */

.summary__slider {
	overflow: hidden;
	background-color: #edf0f3;
	padding: 50px 20px 50px;
}

.summary_list__inner {
	display: grid;
    grid-template-columns: auto;
	grid-template-rows: auto auto;
    justify-content: center;
	height: 100%;
	background-color: #fff;
	margin-right: 20px;
}

.summary_list__thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.summary_list__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	//border-top-left-radius: 10px;
	//border-bottom-left-radius: 10px;
	@media(max-width: 840px) {
	//border-top-right-radius: 10px;	
    //border-bottom-left-radius: 0;
	}
}

.summary_list__text {
	padding: 15px;
}
.summary_list__title {
	color: #142b4e;
	font-size: clamp(1.25rem, 1.190rem + 0.275vw, 1.438rem);
	font-weight: 700;
	line-height: 1.75;
	word-break: auto-phrase;
}

/* デジタルソリューション */

.wp-block-image img {
	width: 100%;
    transform: translateY(-2px);
}