body {
    position: relative;
}

body::before {
    content: "";
    width: 100%;
    display: block;
    /* height: calc(170px + (338 - 170) * ((100vw - 300px) / (1920 - 300))); */
    height: calc(64px + 108px);
    background-color: var(--primary);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

html {
	scroll-behavior: smooth;
}

.site-width,
.site-w {
    width: 100%;
    max-width: 1400px;
    padding-left: var(--gap16);
    padding-right: var(--gap16);
    margin: 0 auto;
}

.site-header {
    width: 96%;
    height: 80px;
    border-radius: 8px;
    background-color: #fff;
    padding: var(--gap16) 0;
    box-shadow: 0 3px 6px rgba(11 11 11 / 11%);
    margin: 0 auto;
    padding: 22px 28px;
    position: sticky;
    top: 35px;
    z-index: 99;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition-property: width;
    transition-duration: 250ms;
}

.navigation {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
}

.navigation-link {
    font-size: var(--fontSize);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: #000000;
    white-space: nowrap;
}

.navigation-item .navigation-link:focus,
.navigation-item.active .navigation-link {
    color: var(--primary);
}

.navigation-link img {
    margin-right: 10px;
}

.navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.navigation-list + .member-area {
    margin-left: auto;
}

.navigation-item {
    position: relative;
    /* padding: 6px 12px; */
}

.navigation-item:hover .navigation-link,
.navigation-item a:hover {
    color: var(--primary);
}

.navigation-item.hotline {
    margin-left: 11px;
}

.hotline-icon {
    display: grid;
    grid-template-columns: 32px calc(100% - 42px);
    grid-column-gap: 10px;
    /* grid-row-gap: 4px; */
    align-items: center;
    line-height: 1;
    white-space: nowrap;
}

.hotline-icon img {
    grid-row-start: span 2;
}

.hotline-icon small {
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 19px;
    color: #000000;
}

.hotline-icon span {
    font-size: 19px;
    font-weight: 700;
    color: var(--black);
    font-style: normal;
    font-weight: 700;
    font-size: 23px;
    /* line-height: 33px; */
}

.inquiry-button {
    padding: 0 !important;
    margin-left: 22px !important;
}

.inquiry-link {
    color: var(--primary);
    display: block;
    border-radius: 7px;
    text-align: center;
    padding: 10px 20px;
    font-weight: 700;
    border: 2px solid var(--primary);
    font-size: 16px;
    line-height: 23px;
    white-space: nowrap;
}

.inquiry-button .inquiry-link:hover {
    background-color: var(--primary);
    color: #fff;
}

.sub-navigation {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    background-color: #fff;
    box-shadow: 0 3px 12px rgba(11 11 11 / 11%);
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all 250ms ease-in-out;
    z-index: 3;
    min-width: 220px;
}

.navigation-item:hover .sub-navigation {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, 0);
}

.sub-navigation-link {
    display: block;
    padding: var(--gap8) var(--gap14);
}

.member-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.member-area-item {
    padding: 4px 6px;
}

.member-area .button {
    background-color: transparent;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: #153f57;
    background-color: #e9f3f8;
    border-color: #c7dbe4;
}

.member-area .button:hover {
    background-color: transparent;
    color: var(--secondary);
}

.member-area .button-show-search {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    line-height: 30px;
}

.member-area .signup-button {
    padding: var(--gap12) var(--gap18);
    border-radius: var(--gap24);
}

.member-area .signup-button {
    background-color: #ff7900;
    border-color: rgba(255, 121, 0, 0.5);
    color: #fff;
}

.site-logo {
    min-width: 450px;
}

.site-login .button,
.site-search .button {
    background-color: var(--primary-lt);
    color: var(--white);
    border-radius: 0 5px 5px 0;
    padding: 6px;
    min-width: 50px;
}

.site-login .button {
    border-radius: 5px;
}

.loadingIcon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 24px;
    display: block;
    border: 1px solid #888;
    border-right-style: dashed;
    border-top-style: dotted;
    animation: loadingIcon 800ms linear infinite;
}

@keyframes loadingIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* page */
/* Home */
.banner-top {
    position: relative;
    background-color: var(--primary);
    background-image: url('../images/banner-top.svg');
    background-size: 3000px 560px;
    background-position: -210px center;
    padding: 0;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.banner-top-content {
    width: 100% !important;
    max-width: 1800px;
    padding: 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: max-content;
    margin: 0 auto;
    color: #fff;
}

.banner-top-left {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.banner-top-right {
    position: relative;
    /* margin-left: 40px; */
}

.home-txt-top{
    /* margin-bottom:5%; */
}

.visual_left{
    width:36%;
}
.visual_right{
    width:60%;
}

.home-txt-top h2,
.home-banner-desc {
    font-size: 23px;
    line-height: 2;
}

.home-banner-desc span {
    display: block;
}

.home-banner-image-logo {
    margin-bottom: 20px;
    transform: scale(1.2) ;
    transform-origin:center left;
    /* width:40vw;
    height: auto;
    object-fit: contain; */
}

.banner-top-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
}

.banner-top-right-item {
    max-width: calc(150px + (400 - 100) * ((100vw - 300px) / (1920 - 300)));
    transform: translate(2vw, 2vw);
    overflow: hidden;
    background: #fff;
}

.spacer{
    opacity: 0;
}
#slideshow-left {
    max-width: 100%;
    border-radius: 20px;
    transform: translate(3vw, 2vw);
}
.slideshow-left-item,
.slideshow-right-item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    isolation: isolate;
    z-index: 0;
}
.slideshow-left-item img,
.slideshow-right-item img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    transform: scale(1);
    transition: opacity .6s linear, transform 6s linear;
}
.slideshow-left-item.active img,
.slideshow-right-item.active img{
    opacity: 1;
    transform: scale(1.15);
}
.slideshow-left-item {
    border-top-right-radius: 130px;
}

.slideshow-right-item {
    border-top-left-radius: 130px;
}

.banner-top-right-item:first-child {
    position: relative;
    border-top-right-radius: 130px;
}

.banner-top-right-item:nth-child(2) {
    position: relative;
    border-top-left-radius: 130px;
}

.medal {
    position: absolute;
    /* bottom: -60px; */
    bottom: 0;
    left: 0;
    transform: translate(2vw, calc(2vw + 22px));
    /* left: calc(50% - 7vw); */
}

.home-banner-action {
    width: max-content;
    margin: var(--gap24) 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--gap16);
    width: 100%;
}

.home-banner-action-item {
    background-color: var(--secondary);
    color: #fff;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--gap20) var(--gap24);
    width: auto;
    font-size: 18px;
}

.home-banner-action-item:last-child {
    background-color: #fff;
    color: var(--primary);
}

.home-banner-action-item:hover {
    background-color: var(--primary-dk);
    color: #fff;
}

.home-content {
    margin: 0 auto;
    max-width: 1420px;
    display: grid;
    grid-gap: 30px;
}

.homepage-main .home-content {
    gap: 60px;
}

.partner-companies {
    display: grid;
    grid-template-columns: 200px auto;
    grid-gap: 30px;
    align-items: center;

    font-size: 40px;
    color: var(--black);
    font-weight: 800;

    margin: 140px auto 23px auto;
}

.c-secondary {
    color: var(--secondary);
}

.companies-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 43px;
}

.companies-item-top {
    background-color: #f5f5f5;
    border: 1px solid #c8c8c8;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--gap16) var(--gap24) 0 var(--gap24);
    font-size: 20px;
    color: #555;
    font-weight: 600;
    min-height: 160px;
}

/* .companies-box > .companies-item:nth-child(2) span {
    white-space: nowrap;
} */

.companies-item-top img {
    margin-right: 26px;
    height: 131px;
}

.companies-arrow {
    width: 0;
    height: 0;
    border-left: var(--gap12) solid transparent;
    border-right: var(--gap12) solid transparent;
    border-top: var(--gap18) solid var(--primary);
    margin: var(--gap16) auto;
}

.companies-item-bottom {
    background-color: var(--primary);
    border-radius: 12px;
    color: #fff;
    padding: 88px 0;
    font-size: var(--gap24);
    text-align: center;
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 34.75px;
}

.why-choose {
    background-color: #def0fc;
    border-radius: 12px;
    padding: calc(60px + (44 - 22) * ((100vw - 300px) / (1920 - 300)))
        calc(30px + (88 - 30) * ((100vw - 300px) / (1920 - 300)));
    margin: 20px 0;
    width: 100%;
}

.pricepage-wrapper .why-choose {
    height: 118px;
}

.why-choose-title {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
}

.why-choose-content {
    border-radius: 12px;
    margin: var(--gap24) auto 51px auto;
    min-height: 100px;
    background-color: #fff;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: calc(40px + (40 - 20) * ((100vw - 300px) / (1920 - 300)));
    padding: 34px 0 70px 0;
}

.why-choose-content-item {
    width: 72%;
    margin: 0 auto;
    display: grid;
    padding: 0 var(--gap24);
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
}

.why-choose-content-item-header {
    grid-column-start: span 2;

    margin-bottom: var(--gap20);
    font-size: 24px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    line-height: 28.96px;
}

.why-choose-content-item-header span {
    font-size: 16px;
}

.why-choose-content-item-header span > span {
    font-size: 20px;
}

.why-choose-content-item-left,
.why-choose-content-item-right {
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
}

.why-choose-content-item-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    font-weight: 700;
    padding: var(--gap24);
    color: #525252;
}

.why-choose-content-item-left::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 26px solid var(--primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -18px;
}

.why-choose-content-item-left-box {
    display: grid;
    grid-template-columns: 58px auto;
    grid-gap: var(--gap20);
    margin-top: var(--gap16);
}

.why-choose-content-item-left-box span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20.27px;
}

.why-choose-content-item-right {
    background-color: #deeffc;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    font-weight: 800;
    padding: var(--gap24);
    text-align: center;
}

.c-primary {
    color: var(--primary);
}

.seemore {
    width: 90%;
    margin: var(--gap24) auto 0;
    background-color: #fff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 73px;
    font-size: var(--gap18);
    font-weight: 700;
}

.seemore:hover {
    color: #fff;
    background-color: var(--primary) !important;
}

.confidence {
    margin: 0 0 20px 0;
    width: 100%;
}

.confidence-title {
    font-size: 30px;
    font-weight: 800;
}

.confidence-box {
    display: grid;
    grid-template-columns: 1.35fr repeat(2, 1fr);
    border-radius: 200px;
    border: 1px solid #c8c8c8;
    margin-top: 50px;
}

.confidence-box-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 70px 35px 20px;
    position: relative;
    flex-direction: column;
    text-align: center;
    font-size: 18px;
}

.confidence-box-item:nth-child(1),
.confidence-box-item:nth-child(2) {
    border-radius: 200px;
    border-right: 1px solid #c8c8c8;
}

.confidence-box-item img {
    margin-bottom: 32px;
}

.confidence-box-item::before {
    content: "";
    width: 52px;
    height: 52px;
    background-color: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: -28px;
    left: 22%;
    font-size: 30px;
    font-weight: 700;
}

.confidence-box > .confidence-box-item:nth-child(1) {
    padding: 0 50px;
}

.confidence-box-item:nth-child(1)::before {
    content: "1";
}

.confidence-box-item:nth-child(2)::before {
    content: "2";
    left: -10%;
}

.confidence-box-item:nth-child(3)::before {
    content: "3";
    left: -10%;
}

.why-choose-title-2 {
    font-size: 30px;
    font-weight: 900;
    padding-bottom: 16px;
    border-bottom: 2px dotted var(--primary);
}

.why-choose-box-2 {
    display: grid;
    grid-gap: 50px;
}

.why-choose-box-2-item {
    display: grid;
    grid-template-columns: auto calc(
            280px + (520 - 280) * ((100vw - 300px) / (1920 - 300))
        );
    grid-column-gap: var(--gap24);
    align-items: flex-start;
    margin-top: 40px;
}

.why-choose-box-2-item img {
    grid-row-start: span 3;
    background-color: #fff;
    border: 1px solid #c8c8c8;
    border-radius: 12px;
}

.number {
    font-size: calc(44px + (94 - 44) * ((100vw - 300px) / (1920 - 300)));
    color: var(--primary);
    font-weight: 700;
}

.why-choose-box-2-item-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 46.34px;
}

.contactus {
    background-color: var(--secondary);
    padding: 2.5% 6%;
    display: grid;
    grid-template-columns: auto calc(
            280px + (520 - 280) * ((100vw - 300px) / (1920 - 300))
        );
    align-items: flex-start;
    color: #fff;
    border-radius: 12px;
    margin-bottom: 46px;
}

.contactus-img {
    grid-row-start: span 3;
}

.contactus-action {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 23px;
}

.contactus-action .footer-content-hotline {
    line-height: 1;
    padding: 10px 0;
    height: auto;
}

.contactus-action > * {
    height: 66px;
}

.contactus-title {
    font-size: 25px;
    font-weight: 700;
}

.following-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
}

.following-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(11 11 11 / 11%);
    margin-top: 38px;
    padding: 58px 0 0 0;
}

.following-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
}

.following-item-desc {
    color: #888;
    margin-bottom: 10px;
}

.following-item-title {
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 12px;
    font-weight: 700;
}

.following-item-title::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 2px dotted var(--primary);
}

.following-item-title small {
    font-size: 18px;
    margin-right: 10px;
    line-height: 32px;
}

.following-item-sub-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.following-item img {
    margin-top: 32px;
}

.following-item:nth-child(n + 2)::before {
    content: "";
    height: 100%;
    width: 1px;
    display: block;
    background-color: #c8c8c8;
    position: absolute;
    top: 0;
    left: -20px;
}

.following-item:nth-child(4)::before {
    content: none;
}
.following-item-footer {
    grid-column-start: span 3;
    background-color: var(--primary);
    border-radius: 0 0 12px 12px;
    text-align: center;
    color: #fff;
    padding: var(--gap24);
}

.following-item-footer-title {
    font-size: var(--gap20);
    font-weight: 700;
}

.following-item-footer-action {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    width: max-content;
    margin: var(--gap16) auto 0;
}

.following-item-footer-action > * {
    padding: 14px 28px;
}

/* .following-item-footer-action .footer-content-hotline {
    display: flex;
    align-items: center;
    justify-content: center;
} */

.following-item-hotline {
    border: 2px solid #fff;
    border-radius: 7px;

    display: grid;
    grid-template-columns: 32px repeat(2, max-content);
    grid-column-gap: 10px;
    justify-content: center;
    align-items: center;

    line-height: 1;
}

.following-item-hotline img {
    width: 32px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.following-item-hotline small {
    font-size: 12px;
    margin-left: 10px;
}

.following-item-hotline span {
    font-size: 29px;
    font-weight: 700;
    white-space: nowrap;
}

.introduction,
.faq-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.introduction .seemore:hover {
    background-color: var(--primary-dk);
}

.introduction .introduction-header {
    margin-bottom: 48px;
}

.introduction-header {
    font-size: 40px;
    font-weight: 900;
    text-align: left;
    border-bottom: 2px dotted var(--primary);
    padding-bottom: var(--gap16);
    margin-bottom: 36px;
}

.introduction-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 32px;
    font-weight: 600;
    margin-bottom: var(--gap24);
}

.introduction-item-link {
    overflow: hidden;
    position: relative;
    border-radius: 7px;
}

.introduction-item-link::before {
    content: "";
    display: block;
    aspect-ratio: 379 / 258;
}

.introduction-item-link img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 350ms ease-in-out;
    object-fit: cover;
    object-position: center;
}

.introduction-item-link:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.introduction-item-title {
    margin: var(--gap16) 0 var(--gap10);
    color: var(--primary);
}

.introduction .why-choose {
    padding: var(--gap14) var(--gap24);
}

.introduction .why-choose .seemore {
    margin-top: 0;
    width: 90%;
}

.faq-box {
    display: grid;
    grid-gap: 23px;
    margin-bottom: 36px;
}

.faq-item {
    border-radius: 12px;
    background-color: #def0fc;
}

.faq-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(11 11 11 / 11%);
    background-color: #fff;
    cursor: pointer;
    transition: all 250ms ease-in-out;
    font-weight: 700;
    font-size: 24px;
}

.faq-header:hover {
    background-color: #f1f1f1;
}

.faq-header span {
    font-size: 46px;
    font-weight: 900;
    /* margin-right: 6px; */
    display: block;
    /* padding: var(--gap16) var(--gap24); */
    color: var(--secondary);
}

.faq-header div {
    /* padding: 12px 52px 12px 12px; */
    line-height: 34.75px;
}

.faq-content {
    padding: 30px 53px;
    font-size: var(--gap18);
    display: none;
    color: #828282;
    font-weight: 500;
    line-height: 26.06px;
}

/* about */
.aboutpage-content {
    position: relative;
    /* display: grid; */
    margin-top: 100px;
    display: flex;
    gap: 61px;
    padding-right: 30px;
    /* grid-gap: 91px; */
    /* grid-template-columns: 260px calc(100% - 260px - 115px); */
}

.aboutpage .home-content {
    max-width: 1500px;
}

.page-breadcrumb {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 0 40px 5%;
    font-size: 60px;
    color: #fff;
    font-weight: 900;
    line-height: 1.2;
}

.page-breadcrumb small {
    font-size: var(--gap24);
    font-weight: 500;
}

.about-aside {
    display: flex;
    width: 262px;
}

.content-table,
.about-aside > div {
    position: sticky;
    top: 200px;
    z-index: 1;
    left: 0;
}

.about-aside > div {
    height: 100vh;
    width: 1px;
    background-color: #c8c8c8;
    float: right;
    display: inline;
}

.content-table {
    height: min-content;
    margin: 0;
    padding: 0 40px;
    list-style: none;
    display: grid;
    grid-gap: 22px;
}

.content-table > .content-table-item:nth-child(1) {
    margin-bottom: -3px;
}

.content-table a,
.content-table span {
    cursor: pointer;
    user-select: none;
    color: #777;
    font-weight: 700;
    font-size: var(--gap18);
    line-height: 26.06px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-table a:hover,
.content-table span:hover {
    color: var(--black);
}

.about-box-header {
    background-color: #def0fc;
    border-radius: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--secondary);
    padding: 8px 21px;
    margin-top: var(--gap16);
    font-size: 21px;
    font-weight: 700;
    line-height: 30.41px;
}

.about-box-header img {
    margin-right: var(--gap12);
}

.about-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 43.44px;
}

.role-box-top,
.role-step-content,
.aboutpage-content .about-article > p {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 41px;
    line-height: 33px;
}

.about-sub-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34.75px;
    margin-top: 41px;
}

.hrs {
    width: 100%;
    border: none;
    background-color: transparent;
    border-top: 3px dotted var(--primary);
    margin: var(--gap18) 0 40px;
}

.about-box-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 33px;
    margin: 15px 0 40px 0;
}

.about-box-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.about-box-item small {
    display: block;
    width: 84px;
    position: relative;
    border-radius: 50%;
    border: 2px solid #edbb93;
    margin-bottom: var(--gap08);
}

.about-box-item small::before {
    content: "";
    padding-top: 100%;
    display: block;
}

.about-box-item small img {
    width: 52px;
    height: 52px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-box-item-title {
    font-size: 22px;
    line-height: 31.86px;
    font-weight: 700;
}

.hr-line {
    width: 100%;
    margin: var(--gap10) 0;
    height: 1px;
    display: block;
    background-color: #c8c8c8;
}

.about-box-item span {
    display: block;
    width: 100%;

    font-size: var(--gap14);
    line-height: 20.27px;
    text-align: left;
    color: #888;
}

.space {
    display: block;
    height: 60px;
}

.success-story {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 22px;
}

.success-story-item {
    padding: 27px 34px 32px 34px;
    border-radius: 14px;
}

.success-story-content {
    line-height: 27px;
}

.success-story-item,
.reasons-item-header {
    background-color: #deeffc;
}

.success-description {
    padding-top: 20px;
    border-radius: 12px;
}

.success-story-item-title {
    color: var(--primary);
    font-size: 23px;
    font-weight: 700;
    line-height: 23.03px;
    margin-bottom: var(--gap20);
}

.about-article {
    flex-grow: 1;
    flex-shrink: 1;
    width: 0;

    display: flex;
    flex-direction: column;
    gap: 96px;
}

.aboutpage-content .why-choose-content {
    padding: 0;
    margin-top: 40px;
}

.about-article .why-choose-content-item {
    width: 100%;
    padding: 0;
}

.about-article .why-choose-content-item-header {
    justify-content: flex-start;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
}

.about-article .why-choose-content-item-left {
    justify-content: flex-start;
    align-items: flex-start;
}

.about-article .why-choose-content {
    grid-gap: 60px;
}

.why-choose-content-item-right + .why-choose-content-item-left,
.why-choose-content-item-right ~ .why-choose-content-item-right {
    border-top: none;
}

.reasons-item-header {
    color: var(--primary);
    font-size: var(--gap24);
    font-weight: 500;
    padding: 8px 22px;
    border-radius: 5px;
    line-height: 34.75px;
    display: flex;
    gap: 4px;
}

.reasons-item-content {
    margin-top: var(--gap16);
}

.reasons-item-content,
.about-why-choose-item-content {
    line-height: 27px;
}

.reasons-item + .reasons-item {
    margin-top: 40px;
}

.about-article .why-choose {
    padding: 33px 32px 22px 36px;
    border-radius: 5px;
    margin: 31px 0 20px 0;
}

.about-why-choose-item {
    background-color: #fff;
    border-radius: 12px;
}

.about-why-choose-item {
    padding: 25px 29px 33px 34px;
}

.about-why-choose-item + .about-why-choose-item {
    margin-top: var(--gap18);
}

.about-why-choose-item-header {
    font-size: var(--gap24);
    color: var(--primary);
    margin-bottom: var(--gap10);
    font-weight: 500;
    line-height: 34.75px;
}

.about-why-choose-item-content {
    transform: translateX(12px);
}

.about-why-choose-footer {
    text-align: right;
    margin-top: 11px;
}

.role-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 100%;
    align-items: flex-start;
    grid-gap: 60px;
}

.role-box-image {
    background-color: #deeffc;
    padding: var(--gap24);
    grid-row-start: span 2;
}

.role-box-w {
    background-color: #fff;
    border-radius: 12px;
}

.role-arrow {
    width: 111px;
    height: auto;
    margin: var(--gap10) auto;
}

.role-step-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: var(--gap24);
    font-weight: 700;
    line-height: 28.96px;
}

.role-step-header > span {
    border-radius: 5px;
    background-color: var(--primary);
    color: #fff;
    padding: 6px var(--gap14);
    white-space: nowrap;
    margin-right: var(--gap16);
    font-weight: 700;
    display: flex;
    gap: 6px;
}

.role-step-header > span > span {
    text-transform: uppercase;
}

.role-step > * + * {
    margin-top: 40px;
}

.about-footer {
    max-width: 1500px;
    background-color: var(--primary);
    border-radius: 7px;
    padding-top: 10px;
    margin:40px auto 0 ;
}
@media screen and (max-width: 1536px){
    .about-footer {
        width: 88%;
    }

}

.about-footer-content .following-item-footer-action {
    padding: 27px 0 29px 0;
    color: #fff;
    margin: 0 auto;
}

.about-footer-content .footer-content-contact {
    color: var(--primary);
}

.about-footer-content .footer-content-contact:hover {
    color: #fff;
}

.following-item-footer-desc {
    color: #fff;
    display: grid;
    font-size: 25px;
    text-align: center;
    font-weight: 700;
    margin-top: var(--gap20);
    line-height: 36.2px;
}

.following-item-footer-desc small {
    font-size: var(--fontSize);
    font-weight: 500;
    display: block;
    margin-top: 21px;
    line-height: 23px;
}

/* Case */
.case-wrapper {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 100px 30px;
    margin: 45px auto 85px;
}

.case-item {
    display: grid;
    grid-gap: var(--gap16);
}

.case-item-title {
    font-size: var(--fontSize);
    color: var(--primary);
    font-weight: 600;
}

.case-item-desc {
    font-size: 19px;
    font-weight: 600;
}

.case-item-image {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.case-item-image::before {
    content: "";
    padding-top: 56.25%;
    display: block;
}

.case-item-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 350ms ease-in-out;
    object-fit: cover;
    object-position: center;
}

.case-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.case-top {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.case-summary-area {
	max-width: 500px;
	border: 2px solid #d3d3d3;
	padding: 10px 32px;
}

.case-summary-title {
	text-align: center;
	background-color: #2EA7FC;
	color: var(--white);
	font-size: 20px;
    line-height: 50px;
}

.case-summary-subtitle {
	font-size: 16px;
	text-decoration: underline;
	margin-top: 15px;
}

.case-summary-container {
	display: flex;
}

.case-summary-text {
	font-size: 16px;
}

.case-summary-check {
	padding-left: 18px;
	margin-right: 3px;
}

.case-button-area {
	max-width: 500px;
	margin: 40px auto;
}

.case-button-container {
	text-align: center;
	background-color: #eef3f6;
	padding: 20px;
}

.case-button-description {
	font-size: 14px;
	color: #333;
	font-weight: 800;
	margin-bottom: 5px;
}

.case-button {
	display: inline-flex;
	align-items: center;
	background-color: #e87722;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 20px;
	border-radius: 25px;
	text-decoration: none;
	transition: background-color 0.3s;
	word-break: keep-all;
}

.case-button:hover {
	background-color: #d4661e;
}

.case-button span {
	margin-right: 8px;
}

.case-button-arrow {
	padding: 0 4px;
    border-radius: 30px;
	background: var(--white);
    color: var(--secondary);
}

.case-sections-container {
	max-width: 800px;
	margin: 0 auto 80px;
}

.case-section {
	position: relative;
	display: flex;
	align-items: center;
	padding: 20px 0;
}

.case-section::after {
	content: "";
	display: block;
	width: 70%;
	height: 1px;
	background-color: #ddd;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.case-image-placeholder {
	max-width: 300px;
	max-height: 200px;
	border-radius: 8px;
	flex-shrink: 0;
}

.case-section-text-area {
	flex: 1;
	padding: 0 15px;
}

.case-section-text-title {
	margin: 0 0 5px;
	font-size: 20px;
	font-weight: bold;
}

.case-section-text {
	margin: 0;
	font-size: 14px;
}

.case-section:nth-child(odd) {
	flex-direction: row;
}

.case-section:nth-child(even) {
	flex-direction: row-reverse;
}

.related-article-action a:hover{
    background-color: #2EA7FC;
    color: white;
}

.pagination-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.pagination-item {
    margin: 0 var(--gap08);
    display: block;
}

.pagination-link {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    flex-direction: column;
}

.pagination-item.active .pagination-link {
    background-color: #deeffc;
    color: #111;
}

.pagination-frist::after {
    content: "BACK";
    font-size: 10px;
}

.pagination-last::after {
    content: "NEXT";
    font-size: 10px;
}

/* Price */
.price-top {
    font-size: 36px;
    font-weight: 800;
    position: relative;
    height: 306px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 10px;
    margin-left: 50px;
}

.price-top small {
    font-size: var(--fontSize);
    color: #888;
    font-weight: 400;
    margin-top: var(--gap20);
}

.price-top-img {
    position: absolute;
    bottom: 0;
    right: 95px;
}

.pricepage-wrapper {
    padding: 71px 0;
    position: relative;
}

.conciergepage .home-content,
.servicepage .home-content {
    padding-left: 0;
    padding-right: 0;
}

.pricepage-wrapper::before {
    content: "";
    width: 100%;
    height: 86%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #deeffc;
}

.pricepage-content {
    max-width: 1220px;
    margin: 0 auto;
}

.pricepage-content-top,
.pricepage-content-bottom {
    background-color: #fff;
    padding: 86px 81px 47px 81px;
    border-radius: 12px;
    grid-gap: 40px 56px;
    align-items: center;
    box-shadow: 0 3px 12px rgba(11 11 11 / 11%);
}

.pricepage-content-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.pricepage-content-top .why-choose {
    grid-column-start: span 2;
    padding: 22px 70px;
}

.pricepage-content-top-img {
    grid-row-start: span 2;
}

.pricepage-content-top .why-choose .seemore {
    margin-top: 0;
    width: 100%;
}

.pricepage-context-header {
    color: var(--primary);
    font-size: 32px;
    font-weight: 700;
}

.pricepage-context-desc {
    font-size: var(--gap18);
    font-weight: 500;
}

.price-faq {
    font-size: 40px;
    margin-top: 112px;
    margin-bottom: 24px;
    font-weight: 800;
}

.price-button-area {
	max-width: 500px;
	width: 100%;
	margin: 20px auto 50px auto;
}

.price-button-container {
	text-align: center;
	background-color: #eef3f6;
	padding: 20px;
}

.price-button-area p {
	color: #2ea7fc;
    text-align: center;
	margin-bottom: 10px;
}

.price-button {
	width: 250px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: #e87722;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 20px;
	border-radius: 25px;
	text-decoration: none;
	transition: background-color 0.3s;
}

/* service */
.service-wrapper {
    width: 100%;
    max-width: 1165px;
    display: grid;
    grid-gap: var(--gap16);
    margin: 110px auto 0;
}

.service-item {
    border-radius: 12px;
    padding: 30px;
    background-color: #deeffc;
    box-shadow: 0 3px 12px rgba(11 11 11 / 11%);
}

.service-item-step {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    font-weight: 800;
    font-size: 36px;
    width: max-content;
    color: var(--primary);
    line-height: 1;
    border-bottom: 2px dotted var(--primary);
    padding-bottom: var(--gap08);
    margin-bottom: var(--gap16);
}

.service-item-step small {
    margin-right: 6px;
    font-size: var(--gap18);
}

.service-item-content {
    width: 86%;
    margin: 0 auto;
}

.aboutpage-text-content {
    font-size: var(--gap18);
    line-height: 33px;
}

@media (min-width: 1200px) {
    .service-item-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
    }

    .service-item-content-left {
        min-width: 37%;
        margin-left: 36px;
    }

    .service-item-content-right .contactus-action {
        grid-gap: var(--gap16);
        white-space: nowrap;
    }
}

.service-item-content-right-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 46.34px;
}

.service-item-content-right-desc {
    font-size: 18px;
    font-weight: 500;
    color: #828282;
    line-height: 2.1;
}

.service-item-content-right-footer .annotation {
    color: var(--primary);
}

.service-item-content-right-footer .footer-content-hotline img {
    filter: none;
}

.service-item-content-right-footer .footer-content-hotline {
    color: var(--primary);
}

.service-item-content-right {
    display: grid;
    grid-gap: var(--gap16);
}

.arrow-down {
    width: 0;
    height: 0;
    /* border-left: 20px solid transparent;
    border-right: 20px solid transparent;

    border-top: 26px solid var(--primary); */
    border-left: var(--gap12) solid transparent;
    border-right: var(--gap12) solid transparent;
    border-top: var(--gap20) solid var(--primary);
    margin: var(--gap10) auto;

}

.service-item-fotter {
    width: 90%;
    margin: 70px auto;
}

@media screen and (max-width: 1536px){
    .service-item-fotter {
        width: 100%;
    }
}

.service-item-footer-header {
    font-size: 27px;
    color: var(--black);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 800;
}

.service-item-footer-action {
    background-color: var(--primary);
    color: #ffff;
    padding: 45px 50px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(11 11 11 / 11%);
    white-space: nowrap;
}

.service-item-footer-action .following-item-footer-action {
    margin: 0 auto;
}

/* concierge */
.concierge-box {
    width: 92%;
    margin: 10px 10px 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 67px;
}

.concierge-box-sub {
    margin-top: 0px;
}

.concierge-wrapper{
    display: flex;
    justify-content: center;
}

.concierge-item {
    display: grid;
}

.concierge-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: var(--gap18);
}

.concierge-image::before {
    content: "";
    padding-top: 130%;
    display: block;
}

.concierge-image img {
    position: absolute;
    top: 0%;
    left: 0%;
    display: block;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
    transition: all 350ms ease-in-out;
}

.moredetail {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-right-radius: 12px;
    background-color: var(--primary);
    color: #fff;
    z-index: 2;
    position: absolute;
    bottom: 0;
    right: 0;
}

.concierge-item:hover .moredetail {
    background-color: var(--primary-dk);
}

.concierge-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.concierge-jobtitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
    margin-bottom: var(--gap5);
    cursor: pointer;
    color: #A0A0A0;
}

.concierge-name {
    font-size: var(--gap20);
    font-weight: 700;
    line-height: 28.96px;
    margin-bottom: var(--gap10);
    cursor: pointer;
}

.concierge-subname {
    font-size: var(--gap12);
    color: #888;
    cursor: pointer;
    font-weight: 500;
    line-height: 17.38px;
}

.concierge-header {
    font-size: 60px;
    color: var(--primary);
    margin: 90px 0 0px;
    font-weight: 900;
    line-height: 86.88px;
}

.concierge-header + .concierge-box {
    margin-top: 0;
}

.concierge-pop-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 99999;
}

.concierge-pop-wrapper.active {
    display: block;
}

.concierge-pop-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(11 11 11 / 22%);
    z-index: 1;
}

.concierge-pop-content-container {
    width: 90%;
    max-width: 830px;
    position: absolute;
    top: 70px;
    line-height: 29px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.concierge-pop-content .why-choose {
    padding: 16px 24px;
    margin: 53px auto 21px;
}

.concierge-pop-content .why-choose .seemore {
    width: 100%;
    margin: 0;
}

.concierge-pop-content {
    background-color: #fff;
    padding: 60px 40px 0px;
    max-height: 84vh;
    overflow-y: auto;
    width: 100%;
    box-shadow: 0 3px 12px rgba(11 11 11 / 11%);
    border-radius: 12px;
}
.concierge-pop-content img {
    display: block;
    margin:auto;
}

.concierge-pop-close-pop {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -22px;
    user-select: none;
    right: -18px;
    cursor: pointer;
    z-index: 3;
}

.concierge-pop-close-pop:hover {
    background-color: var(--primary-dk);
}

.popcover {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--gap24);
    position: relative;
}

.popcover::before {
    content: "";
    padding-bottom: 56.25%;
    display: block;
}

.popcover img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
}

.pop-content-heading {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    line-height: 20px;
}

.pop-content-jobtitle {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
    color: #A0A0A0;
}

.pop-content-name {
    margin-top: 8px;
    font-size: 27px;
    font-weight: 700;
    line-height: 39px;
    color: #000000;
}

.pop-content-subname {
    margin-top: 6px;
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    color: #828282;
}

.concierge-close-pop {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: max-content;
    margin: 24px auto 67px;
    /* color: var(--primary);s */
    cursor: pointer;
    user-select: none;
}

.concierge-close-pop:hover {
    color: var(--primary-dk);
}

.concierge-close-pop small {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    user-select: none;
}

.concierge-button-area-header {
	max-width: 500px;
	width: 100%;
	margin: 0px auto 20px auto;
}

.concierge-button-area-footer {
	max-width: 500px;
	width: 100%;
	margin: 50px auto;
}

.concierge-button-area-footer p {
	color: #2ea7fc;
    text-align: center;
	margin-bottom: 10px;
}

.concierge-button-container {
	text-align: center;
	background-color: #eef3f6;
	padding: 20px;
}

.concierge-button {
	display: inline-flex;
	align-items: center;
	background-color: #e87722;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 20px;
	border-radius: 25px;
	text-decoration: none;
	transition: background-color 0.3s;
}

.concierge-steps-container {
	display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
	margin: auto;
    width: 850px;
}

.concierge-step-box {
    display: flex;
    align-items: center;
    border: 1px solid #999;
    padding: 15px;
    width: 100%;
    background-color: #fff;
}

.concierge-step-number {
    text-align: center;
    color: #2ea7fc;
    font-weight: bold;
    width: 60px;
}

.concierge-step-label {
    font-size: 14px;
    margin: 0;
}

.concierge-number {
    font-size: 30px;
    margin: 0 0 0;
}

.concierge-divider {
    width: 1px;
    background-color: #999;
    height: 50px;
    margin: 0 15px;
}

.concierge-step-content {
    flex: 1;
}

.concierge-step-content h3 {
    font-size: 16px;
    margin: 0;
    color: #2ea7fc;
    font-weight: bold;
}

.concierge-step-content p {
    font-size: 15px;
    margin: 5px 0 0;
    color: #333;
}

/* ▼マークのスタイル */
.concierge-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #2ea7fc;
    margin: 15px 0;
}

.case-detail-cat {
    font-size: 23px;
    font-weight: 800;
    color: var(--primary);
}

.case-detail-header {
    font-size: 32px;
    font-weight: 600;
    margin-top: 22px;
}

.case-detail {
    width: 100%;
    max-width: 1060px;
    margin: 100px auto;
}

.case-detail-cover {
    border-radius: 12px;
    position: relative;
    margin-top: 60px;
}

.case-detail-cover::before {
    content: "";
    display: block;
    aspect-ratio: 1060 /470;
}

.case-detail-cover img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.case-detail-detail {
    width: 75%;
    margin: 60px auto 0;
}

.case-detail-detail-header {
    font-size: 24px;
    font-weight: 700;
}

.case-detail-detail + .case-detail-detail {
    margin-top: 60px;
}

.case-detail-footer {
    margin-top: 50px;
    background-color: #deeffc;
}

.case-detail-footer .why-choose {
    margin-top: 0;
    margin-bottom: 80px;
    padding: 24px 80px;
    background-color: #fff;
}

.case-detail-footer .why-choose .seemore {
    background-color: #deeffc;
    width: 100%;
    margin-top: 0;
}

.case-detail-footer .why-choose .seemore:hover {
    background-color: var(--primary);
    color: #fff;
}

.case-detail-footer-header {
    color: var(--primary);
    margin: 24px auto 46px;
    text-align: center;
    display: block;
    font-size: 30px;
    font-weight: 800;
}

.case-detail-footer-header + .case-wrapper {
    margin-top: 0;
}

a.black-link {
    color: black;
    border-bottom: 1px solid #707070;
    display: table;
    padding-bottom: 2px;
}

a.black-link:hover {
    color: #555;
    border-bottom: 1px solid #555;
    display: table;
}

.web-view {
    display: block;
}

.mobile-view {
    display: none;
}

.site-header.sticky {
    top: 0;
}

.partner-companies-content h2 {
    font-size: 40px;
    line-height: 57.92px;
}

.conciergepage-content h2 {
	text-align: center;
	margin-top: 20px;
    font-size: 27px;
    line-height: 57.92px;
	color: #000000;
}

.file-download {
	padding: 20px 30px;
	margin-top: 80px;
	position: relative;
    display: flex;
    gap: 30px;
}

.file-download-area {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.file-download-column {
	margin-bottom: 50px;
}

.file-download-title {
	font-size: 40px;
	font-weight: 900;
	text-align: center;
}

.file-download-box {
    width: 92%;
    margin: 0 auto 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 67px;
	text-align: center;
}

.file-download-item-title {
	font-size: 24px;
	font-weight: 700;
	margin: 15px auto;
}

.file-download-link {
	display: flex;
	justify-content:
		center; 
	align-items: center;
	position: relative;
    z-index: 1;
}

.file-download-link-item {
	margin-right: 20px;
	text-decoration:underline;
	font-size: 18px;
}

.file-download-link-box {
	text-align: center;
	margin-bottom: 40px;
}

.file-download-link-box p {
	font-size: 24px;
	margin-bottom: 5px;
}

.file-download-about-aside {
    display: flex;
    width: 262px;
}

.file-download-content-table,
.about-aside > div {
    position: sticky;
    top: 200px;
    z-index: 1;
    left: 0;
}

.file-download-about-aside > div {
    width: 1px;
    background-color: #c8c8c8;
    float: right;
    display: inline;
}

.file-download-content-table {
    height: min-content;
    margin: 0;
    padding: 0 10px;
    list-style: none;
    display: grid;
    grid-gap: 22px;
}

.file-download-content-table > .file-download-content-table-item:nth-child(1) {
    margin-bottom: -3px;
}

.file-download-content-table a,
.file-download-content-table span {
    cursor: pointer;
    user-select: none;
    color: #777;
    font-weight: 700;
    font-size: var(--gap16);
    line-height: 26.06px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.file-download-content-table a:hover,
.file-download-content-table span:hover {
    color: var(--black);
}

.information-item {
	margin-top:150px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.information-item img {
	width: 100%;
	max-width: 1400px;
	max-height: 400px;
}

#DX導入で使える補助金・助成金 {
    scroll-behavior: auto;
    scroll-margin-block: 100px 0;
}


/* --- Enhancement 2025.01 --- */

/* top */
.pc {
    display: block;
}
.sp {
    display: none;
}
.banner-top-content {
    gap: 0;
}
.home-txt-top {
    margin: 2vw 0 .5vw;
}
.home-txt-top h2 {
    padding: 0 10px;
}
.home-txt-top h2::before {
    content: "＼";
    display: inline-block;
    transform: rotate(20deg); 
    margin-right: .5rem;
}
.home-txt-top h2::after {
    content: "／";
    display: inline-block;
    transform: rotate(-20deg); 
    margin-left: .5rem;
}
.visual_left {
    gap: 1.5vw !important;
}
.visual_right {
    display: initial;
    position: relative;
}
.logo_replace_text {
    margin:.5rem 0;
    width: 100%;
    text-shadow: 1px 1px 12px rgba(0,0,0, 0.6);
    font-size: clamp(1rem, 2.2vw, 39px);
    line-height: 140%;
    transform-origin: center left;
    transform: scale(1.35);
}
.site-logo {
    display: flex;
    align-items: center;
    min-width: 450px;
    margin-right: 0.5vw;
    color: #666;
    font-size: 0.9rem;
}
.site-logo img {
    margin-right: 1rem;
}
.navigation-list {
    gap: 1.6vw;
}
#slideshow-right {
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    display: none;
    height: calc(100% - 3.2vw);
    position: absolute;
    top:1.6vw;
    right: 0.7vw;
    width: 43%;
}
@media (max-width: 1440px) {
    .site-logo {
        flex-direction: column;
        min-width: 240px;
        justify-content: center;
        align-items: center;
        font-size: 0.85rem;
    }
    .site-logo img {
        margin-right: 0;
        margin-bottom: 0.2rem;
    }
}
.home-txt-top h2, .home-banner-desc {
    line-height: 160%;
    margin-top: 0.6rem;
}

.home-banner-desc span {
    display: inline-block;
}
@media (max-width: 1880px) {
    .visual_left .home-banner-desc {
        font-size: 1.2vw !important;
        line-height: 170%;
        margin-top: 1rem;
    }
}
@media (max-width: 1660px) {
    .navigation-list {
        gap: 14px !important;
    }
    .navigation-link {
        font-size: 15px;
    }
    .hotline-icon span {
        font-size: 18px;
    }
    .navigation-item.hotline, .inquiry-button {
        margin-left: 0 !important;
    }
    .site-logo {
        margin-right: 0;
    }
}

@media (max-width: 1400px) {
    .navigation-list {
        gap: 16px !important;
    }
    .navigation-link {
        font-size: 14px;
    }
    .hotline-icon span {
        font-size: 18px;
    }
}
@media (max-width: 1024px) {
    .logo_replace_text {
    }
    .home-banner-desc {
        margin-top: 1rem;
    }
}
@media (max-width: 820px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .visual_left {
        text-align: center;
        width: 100% !important;
        padding: 0 !important;
    }
    .banner-top-content {
        margin-top: 30px !important;
    }
    .banner-top-right {
        margin-top: 4vw !important;
    }
    .home-txt-top h2 {
        font-size: 4.5vw !important;        
    }
    .logo_replace_text {
        transform: scale(1);
        font-size: 6.5vw;
        margin: 0.5rem 0 1rem;
    }
    .visual_left .home-banner-desc {
        font-size: 4vw !important;
        text-align: left;
        padding: 0 1.6rem;
    }
    #slideshow-left {
        transform: initial;
        border-radius: 0;
        clip-path: polygon(0 28px, 100% 0, 100% calc(100% - 0px), 0 100%);
    }
    #slideshow-right {
        display: none;
        border-radius: 80px 0 0 0 !important;
    }
    .site-logo {
        font-size: 2.7vw;
        margin-right: 0;
        align-items: flex-start;
    }
    .site-logo img {
        height: 6vw;
    }
    .medal-block.sp {
        width: 100%;
        justify-content: center;
        margin-top: -24vw;
        margin-bottom: -15vw;
        z-index: 20;
        gap: 4vw;
    }
    .medal.sp {
        display: block !important;
        width: 35vw !important;
    }
    .information-item {
        margin: 0 10px 0 !important;
    }
    .partner-companies {
        margin-top: 40px !important;
    }
    .companies-item-top, .companies-item-bottom {
        font-size: 4.5vw !important;
    }
    .visual_left .home-banner-desc {
        margin-top: 0 !important;
    }
    .footer-form #mv-form {
        border-radius: 3vw !important;
    }
    .footer-form .input-block {
        height: 100%;
        overflow-y: scroll;
    }
}
.medal-block {
    display: flex;
}
.medal-block .medal {
    position: initial !important;
    transform: initial !important;
    width: 35%;
    filter: drop-shadow(0 0 10px rgba(0,0,0, 1));
    scale: initial !important;
}

.form-block {
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    z-index:1;
    color: black;
    display: flex;
    flex-direction: column;
    transform: scale(1);
}
.form-block .expand {
    flex: 1;
}
.form-block img {
    width: 50%;
    height: auto;
    margin: auto;
    margin-bottom: 1rem;
}
.form-block label {
    color: var(--primary);
    display: block;
    margin: 0.5rem 0;
    font-weight: bold;
}
.form-block span.caution {
    display: inline-block;
    color: crimson;
    margin-left: 0.25rem;
    background-color: white;
}
.form-block input,
.textarea textarea {
    width: 100%;
    border: 0;
    border-radius: 0.25rem;
    padding: 0.5rem;
    background-color: #f2f2f2;
}
.textarea small {
    display: block;
    text-align: left !important;
    cursor: pointer;
}
.form-block input:focus,
.textarea textarea:focus {
    background-color: white;
}
.textarea {
    display: none;
}
.form-block .input-block {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.form-block h2 {
    font-weight: bold;
    text-align: center;
    color: var(--primary);
}
.form-block h2::before {
    content: "＼";
    display: inline-block;
    transform: rotate(20deg);
    margin-right: 0.1rem;
}
.form-block h2::after {
    content: "／";
    display: inline-block;
    transform: rotate(-20deg);
    margin-left: 0.1rem;
}
.form-block .fit {
    flex: 1;
}
.form-block small {
    font-size: 0.8rem;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}
.form-block small a {
    font-size: 0.8rem;
}
.form-block button, .footer-fixed-block button, .inline-cv-block button {
    width: 100%;
    padding: 1rem;
    background: rgb(131,58,180);
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    border: 0;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: transform 0.5s;
    animation: btn_animation 1s;
}
.form-block .mv-form-submit {
    width: 100%;
    padding: 1rem;
    background: rgb(131,58,180);
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    border: 0;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: transform 0.5s;
    animation: btn_animation 1s;
}
.form-block .mv-form-submit:hover {
	transform: scale(1.05);
}
@keyframes btn_animation {
    0% { transform: scale(1.2); }
}
.inline-cv-block button {
    font-size: 6vw;
}
.footer-fixed-block button span, .inline-cv-block button span {
    display: block;
    font-size: 3.4vw;
    margin-bottom: 2vw;
}
.form-block button:hover, .footer-fixed-block button:hover, .inline-cv-block button:hover {
    transform: scale(1.05);
}
.inline-cv-block {
    padding: 1rem;
    width: 100%;
}
.footer-fixed-block {
    padding: 1rem 1.2rem;
    width: 100%;
    left: 0;
    bottom: -100px;
    position: fixed;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9);
    transition: bottom 0.5s;
}
.show {
    bottom: 0;
}
.footer-form {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    width: 100dvw;
    height: 100dvh;
    display: none;
    background-color: #2ea7fccc;
}
.footer-form > div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-form > span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    font-size: 24px;
    background-color: #2ea7fc;
    color: white;
    z-index: 10;
}
.footer-form #mv-form {
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    left: 1rem;
    top: 1rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 1vw !important;
    box-shadow: 0 0 24px rgba(0,0,0,0.2);
}
.content_guide {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.content_guide > div {
    width: calc(49% - 1rem);
    margin: 0.4rem;
    padding: 0.4rem;
    border-radius: 0.4rem;
    background-color: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.content_guide > div.active {
    background-color: var(--primary);
    color: white;
    animation: active_animation 0.2s;
}
.content_guide > div:hover {
    opacity: 0.8;
}
@keyframes active_animation {
    0% { opacity: 0; transform: scale(0.98); }
}

.partners {
    margin-top: 6vw;
    opacity: 0;
    transition: opacity 0.5s ease;
}
@media (min-width: 1200px) {
    .partners {
        margin-top: 4vw;
    }
}
.partners .slick-slide {
  width: 100%;
  height: 120px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0.5rem;
}
.partners .slick-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.information-item {
    margin-top: 3vw;
}
.file-download-content-table {
    width: 100%;
}

/* contact form */
.page-template-page-contact .inquiry-link,
.page-template-page-contact .navigation-icon {
    display: none;
}
#customForm {
    margin: 0 1rem !important;
}
#customForm dl {
    margin-bottom: 1rem !important;
    border: 2px solid var(--primary) !important;
}
#customForm dl dt,
#customForm dl dd {
    margin-bottom: 0.4rem !important;
}
#customForm dl dd {
    padding: 0 !important;
}
#customForm textarea {
    height: initial !important;
}
#customForm .btn_wrap .btn {
    width: 100%;
    max-width: 480px;
}
.contact-form-logo {
    display: none;
}

@media (min-width: 1200px) {
    body.page-template-page-contact::before {
        height: 180px;
    }
    body.page-template-page-contact .site-header {
        display: none;
    }
    body.page-template-page-contact .page-breadcrumb {
        padding: 0;
        align-items: center;
    }
    #customForm {
        margin: 5rem 0 0 !important;
    }
    .contact-form-logo {
        width: 200px;
        height: auto;
        display: block;
        position: absolute;
        left: 1.6rem;
        top: 1.6rem;
    }
}
