* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #474747;
    font-family: "Yu Gothic", "YuGothic", Arial, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    background: #FEFEFE;
    overflow: hidden;
    scroll-behavior: smooth;
}

a {
    display: inline-block;
    transition: transform 0.2s ease;
  }
  
  a:hover {
    transform: scale(1.05);
  }

.body-auto {
    overflow: auto;
}

.pc-only {
    display: none;
}

.pc-only-br {
    display: none;
}


@media (min-width: 769px) {
    .pc-only {
        display: block;
    }
    
    .pc-only-br {
        display: inline;
    }
}

.sp-only {
    display: none;
}

.sp-only-br {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp-only {
        display: block;
    }

    .sp-only-br {
        display: inline;
    }
}

.new-header {
    width: 100%;
    height: 100px;
    z-index: 1000;
    background: #FEFEFE;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    padding-right: 1em;
    padding-left: 1em;
}

@media screen and (max-width: 768px) {
    .new-header {
        height: 81px;
        padding-left: 0px;
    }
}


.new-header-area {
    height: 100px;
}

@media screen and (max-width: 768px) {
    .new-header-area {
        height: 81px;
    }
}

.header {
    width: 100%;
    background: #FEFEFE;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-logo {
    padding: 5px;
    background: #FEFEFE;
}


.menu-btn {
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
}


.menu {
    display: none;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    z-index: 1000;
    background: #FEFEFE;
}


.menu.active {
    display: flex;
}


.menu-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}


.menu-close {
    font-size: 2.5rem;
    cursor: pointer;
}


.menu-list {
    font-size: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.menu-list a {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    border-bottom: 1px dashed #474747;
}

.menu-list .last-row{
    border-bottom: none;
}

.menu-list a .icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-sns {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
   
    padding-top: 20px;
    padding-left: 11px;
    width: 100%;
}

.icon-btn {
    padding: 0px;
    text-align: center;
}

.icon-btn img{
    width: 20px;
    height: 20px;
}

.language-btn{
    font-size: 15px;
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.language-btn a{
    padding-bottom: 5px;
    position: relative;
}

.language-btn a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 70%;
    height: 2px;
    background-color: #E8A918;
    transform: translateX(-50%);
}

.icon-language {
    width: 27px;
    height: 16px;
    margin-right: 5px;
}

.icon-arrow {
    width: 15px;
    height: 11px;
    margin-right: 5px;
}

.text-white {
    color: #fff;
}

@media screen and (min-width: 768px) {
    .header {
        height: 125px;
        padding-left: 150px;
        padding-right: 150px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #FEFEFE;
    }

    .header-logo img {
        height: 80px;
    }

    .nav-group {
        display: flex;
        align-items: center;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 2em;
        padding: 10px;
        margin-right: 2em;
    }

    .nav-links a {
        text-decoration: none;
        color: black;
        font-size: 1rem;
    }

    .header-icons {
        padding: 20px;
        display: flex;
        gap: 10px;
    }

    .header-icons .icon {
        width: 32px;
        height: 32px;
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-icons .icon img{
        width: 32px;
        height: 32px;
    }

    .header-language {
        padding: 0px 15px 5px 10px;
        display: flex;
        position: relative;
    }

    .header-language::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 55%;
        height: 2px;
        background-color: #E8A918;
    }
    
    .vertical-line {
        border-left: 1px solid #9A9A9A;
        height: 25px;
        align-self: center;
    }
    
    .vertical-line.height-100{
        border-left: 1px solid #9A9A9A;
        height: 300px;
        align-self: center;
    }

    .horizontal-line {
        border-bottom: 1px solid #9A9A9A;
        height: 2px;
        align-self: center;
    }

    .contact-btn {
        width: 230px;
        padding: 15px 20px;
        background: #D19919;
        text-decoration: none;
        color: #FDF6E7;
        font-size: 20px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .contact-btn img{
        width: 32px;
        height: 32px;
        background: #D19919;
    }

    .contact-btn-text{
        color: #FDF6E7;
        padding: 0px;
    }

}

@media screen and (max-width: 767px) {
    .header-language {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .sp-contact-btn {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .sp-contact-btn {
        width: 230px;
        padding: 20px;
        background: #D19919;
        text-decoration: none;
        color: #FDF6E7;
        font-size: 20px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin: 0 auto;
    }
    

    .sp-contact-btn img{
        width: 32px;
        height: 32px;
        background: #D19919;
    }

    .sp-contact-btn-text{
        color: #FDF6E7;
        padding: 0px;
    }
}

@media screen and (min-width: 768px) {
    .menu-btn,
    .menu,
    .contact-action {
        display: none;
    }
    .text-group {
        left: 50px;
        bottom: 200px;
        width: 100%;
    }
}

.play-area {
    cursor: pointer;
    transition: transform 0.2s ease-in-out, opacity 0.2s;
    position: absolute;
    top: 430px;
    left: 100px;
    width: 314px;
    height: 74px;
}

@media screen and (max-width: 767px) {
    .play-area {
        cursor: pointer;
        transition: transform 0.2s ease-in-out, opacity 0.2s;
        position: absolute;
        top: 430px;
        left: 50%;
        transform: translateX(-50%);
        width: 314px;
        transform-origin: center;
    }
}

.play-area.clicked {
    transform: scale(1.3);
    opacity: 0.6;
}

@media screen and (max-width: 767px) {
    .play-area.clicked {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.5;
    }
}

.play-text {
    font-size: 14px;
    left: 240px;
    top: 37px;
    width: 314px;
    position: absolute;
    transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
}

@media screen and (max-width: 767px) {
    .header {
        height: 81px;
        padding: 0px;
        margin: 0px;
        position: relative;
        display: flex;
        align-items: center;
        z-index: 9999;
    }

    .nav-group,
    .nav-links,
    .header-icons,
    .contact-btn {
        display: none;
    }

    .header-logo {
        padding-left: 20px;
    }

    .header-logo img {
        height: 54px;
        width: 68px;
    }

    .menu-header .menu-logo img {
        height: 54px;
        width: 68px;
    }

    .menu-btn {
        position: absolute;
        right: 110px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 3rem;
        cursor: pointer;
        padding: 0px 20px;
        background: #FEFEFE;
    }

    .menu {
        display: none;
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        height: 350px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        z-index: 1000;
        background: #FEFEFE;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        text-decoration: none;
        color: black;
        font-size: 1.2rem;
        padding: 10px;
    }

    .menu-header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        background: #FEFEFE;
    }

    .menu-list img {
        width: 16px;
        height: 16px;
    }

    .menu-list img.lang-icon {
        width: 27px;
        height: 16px;
    }

    .menu-list a {
        font-size: 15px;
    }

    .menu-list .arrow {
        font-size: 18px;
        font-weight: bold;
        transform: scaleX(0.7);
        color: #E8A918;
    }

    .contact-action {
        position: absolute;
        right: 0px;
        width: 100px;
        height: 82px;
        background: #D19919;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
        text-decoration: none;
        color: #FEFEFE;
    }

    .contact-action .small-text {
        margin-top: 10px;
        color: #FEFEFE;
        font-size: 10px;
    }

    .contact-action img {
        margin: 5px;
        width: 18px;
        height: 18px;
        background: #D19919;
    }

    .main-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .text-group {
        width: 100%;
        text-align: center;
    }

    .text-group .title {
        width: 100%;
        text-align: center;
    }

    .text-group .title-english {
        padding-left: 0px;
        width: 100%;
        text-align: center;
        padding-left: 0px !important;
    }
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main-section {
    width: 100vw;
    height: 600px;
    background-image: url('img/background-top.svg');
    background-size: max(100%, 1440px) auto;
    background-position: center;
    background-repeat: no-repeat;
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-section .text-group {
    position: absolute;
    color: #FEFEFE;
    font-size: 50px;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .main-section {
        background-position: calc(50% - 150px) center;
    }
}

.text-group .title {
    color: #FEFEFE;
    font-size: 50px;
    font-weight: bold;
    padding: 10px 20px;
}

@media screen and (max-width: 767px) {
    .text-group .title {
        color: #FEFEFE;
        font-size: 31px;
        font-weight: bold;
        padding: 10px 20px;
    }
}

.text-group .title-english {
    color: #FEFEFE;
    font-size: 18px;
    font-weight: bold;
    padding-left: 30px;
}

@media screen and (max-width: 767px) {
    .text-group .title-english {
        color: #FEFEFE;
        font-size: 11px;
        font-weight: bold;
        padding-left: 30px;
    }
}


.section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}


#section1 {
    width: 100vw;
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #FFFFFF;
}


.section-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

#section2 { background: #FFFFFF; }
#section3 { background: #FFFFFF; }
#section4 { background: #FFFFFF; }
#section5 { background: #FFFFFF; }
#section6 { background: #FFFFFF; }
#section7 { background: #FFFFFF; }
#section8 { background: #FFFFFF; }
#section9 { 
    background: #FFFFFF;
    height: 80vh;
    padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
    #section9 { 
        height: 90vh;
        padding-bottom: 0px;
    }
}

.content {
    width: 100%;
    min-height: 50vh;
    background: #f0f0f0;
    padding: 50px;
    text-align: center;
}

.footer-area {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center; 
    text-align: center;
    gap: 15px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}


.footer-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    padding: 5px;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .footer-links {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .footer-links a {
        padding: 0px;
        padding-top: 5px;
        padding-bottom: 5px;
        text-decoration: none;
    }
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-icons img {
    width: 20px;
    margin: 0 5px;
}

.footer-logo img {
    width: 100px;
}

@media screen and (max-width: 768px) {
    .footer-logo img {
        width: 113px;
        height: 90px;
    }
}

@media screen and (max-width: 768px) {
    .footer-area {
        flex-direction: column; 
        align-items: center; 
        text-align: left;
        gap: 15px; 
        padding: 0px;
    }

    .footer-links {
        text-decoration: none;
        order: 1; 
        display: flex;
        flex-direction: column; 
        align-items: flex-start;
        gap: 5px;
        width: 100%;
    }

    .footer-icons {
        order: 2; 
        display: flex;
        flex-direction: row; 
        justify-content: center;
        gap: 10px;
    }

    .footer-logo {
        order: 3;
        margin-top: 10px; 
    }

    .footer-return {
        order: 4; 
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .footer-return img{
        width: 48px;
        height: 23px;
    }
}


.copyright {
    text-align: center;
    font-size: 12px;
    padding: 20px 0px 20px 0px;
}


@media screen and (min-width: 768px) {
    .footer-return {
        display: none;
    }
}

.content-theme {
    font-size: 32px;
    font-weight: 700;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
    .content-theme {
        font-size: 32px;
        font-weight: 700;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    }

.vision {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 20px;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-content-left .title {
    font-size: 40px;
    font-weight: 700;
}

.vision-content-left .description {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 10px;
}

.theme {
    padding-bottom: 40px;
    padding-left: 10%;
}

@media screen and (max-width: 768px) {
    .theme {
        padding-bottom: 30px;
        padding-left: 30px;
    }
}

.theme-title {
    font-weight: bold;
    font-size: 14px;
    padding: 5px 0px 15px 0px;
}

@media screen and (max-width: 768px) {
    .theme-title {
        font-weight: bold;
        padding: 5px 0px 15px 0px;
    }
}

.title-title-english {
    color: #E8A918;
    padding-left: 15px;
}

.theme-description {
    font-size: 30px;
}

@media screen and (max-width: 768px) {
    .theme-description {
        font-size: 20px;
    }
}

.theme-description .text{
    font-size: 24px;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .theme-description .text{
        font-size: 15px;
        font-weight: 400;
    }
}


.vision-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.vision-content-left .title {
    font-size: 40px;
    font-weight: 700;
}

.vision-content-left .title-english{
    color: #E8A918;
    font-size: 8px;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .vision-content-left .title {
        font-size: 32px;
    }
}

.divider {
    width: 1px;
    background-color: #474747;
    height: 90%;
    align-self: center;
}

.vision-content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .vision {
        display: flex;
        flex-direction: column;
        width: 95%;
    }

    .divider {
        display: none;
    }

    .vision-content-left {
        width: 100%;
        text-align: center;
    }
    .vision-content-right {
        width: 100%;
        text-align: left;
        padding: 0 auto;
    }
}

.contents {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.item {
    color: black;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .item {
        text-align: center;
    }
}

.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    position: relative;
}

.image-contents {
    position: relative;
    z-index: 1;
}

.image-contents-contact {
    position: relative;
    z-index: 1;
}

.image-contents img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .image-contents img {
        width: 80%;
        border-radius: 3%;
    }

    .image-contents-contact img {
        width: 95%;
    }
}


.pattern-a .image-shadow {
    position: absolute;
    top: -10%;
    left: 63%;
    width: 40%;
    height: 70%;
    background: #F5F5F5;
    z-index: 0;
    border-radius: 3%;
}

@media screen and (max-width: 768px) {
    .pattern-a .image-shadow {
        position: absolute;
        top: -10%;
        left: 55%;
        width: 40%;
        height: 70%;
        background: #FAF4E5;
        z-index: 0;
        border-radius: 3%;
    }
}

.pattern-b .image-shadow {
    position: absolute;
    top: -10%;
    right: 62%;
    width: 40%;
    height: 70%;
    background: #F5F5F5;
    z-index: 0;
    border-radius: 3%;
}

@media screen and (max-width: 768px) {
    .pattern-b .image-shadow {
        position: absolute;
        top: -10%;
        right: 56%;
        width: 40%;
        height: 70%;
        background: #FAF4E5;
        z-index: 0;
        border-radius: 3%;
    }
}

.pattern-c .image-shadow {
    position: absolute;
    top: 10%;
    left: 60%;
    width: 90%;
    height: 100%;
    background: #F5F5F5;
    z-index: 0;
}

@media screen and (max-width: 768px) {

    .pattern-c .image-shadow {
        display: none;
    }

    .contents.pattern-c {
        position: relative;
    }
    
    .contents.pattern-c::before {
        content: "";
        position: absolute;
        top: 140px;
        left: 0;
        width: 100%;
        height: calc(100% - 140px);
        background: #FAF4E5;
        z-index: 0;
    }
    
}

.contents-title {
    font-size: 14px;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
}

.contents-title-english {
    color: #E8A918;
}

.contents-sub-title {
    font-size: 24px;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
}

.contents-description {
    font-size: 18px;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .contents-description {
        text-align: left;
    }
}

.contents-description .highlight {
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px dashed #E8A918;
}

.contents-description .highlight-link {
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed #E8A918;
}

@media (min-width: 768px) {
    .pattern-a {
        display: grid;
        grid-template-columns: 0.7fr 1.3fr;
        grid-template-rows: auto;
        width: 70%;
    }
    
    .pattern-a .item-a {
        grid-column: 1;
        grid-row: 1;
    }
    
    .pattern-a .item-c {
        grid-column: 1;
        grid-row: 2;
    }
    
    .pattern-a .item-b {
        grid-column: 2;
        grid-row: 1 / span 4;
    }

    .pattern-b {
        display: grid;
        grid-template-columns: 1.3fr 0.7fr;
        grid-template-rows: auto auto;
        width: 70%;
    }

    .pattern-b .item-b {
        grid-column: 1;
        grid-row: 1 / span 4;
    }

    .pattern-b .item-a {
        grid-column: 2;
        grid-row: 1;
    }

    .pattern-b .item-c {
        grid-column: 2;
        grid-row: 2;
    }

    .pattern-c {
        display: grid;
        grid-template-columns: 1.3fr 0.7fr;
        grid-template-rows: auto;
        width: 90%;
    }

    .pattern-c .item-b {
        grid-column: 1;
        grid-row: 1;
    }

    .pattern-c .item-c {
        align-self: center;
        font-size: 28px;
        font-weight: 700;
        padding-top: 15%;
        padding-left: 10px;
        grid-column: 2;
        grid-row: 1;
    }

    .pattern-c .item-c .text {
        font-size: clamp(14px, 2vw, 24px);
        padding-bottom: 30px;
    }

    @media screen and (max-width: 768px) {
        .pattern-c .item-c .text {
            font-size: 14px;
        }
    }

    .pattern-d {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        width: 70%;
        margin: 0 auto;
        padding-bottom: 50px;
    }

    .pattern-d .item-b {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        align-items: center; 
        justify-content: center;
    }

    .pattern-d .item-c {
        align-self: center;
        font-size: 28px;
        font-weight: 700;
        padding-top: 5%;
        width: 90%;
        grid-column: 1;
        grid-row: 1;
    }

    .pattern-d .item-c .text {
        padding-bottom: 30px;
    }

    .pattern-e {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        width: 70%;
        margin: 0 auto;
        padding-bottom: 50px;
    }

    .pattern-e .item-b {
        grid-column: 1;
        grid-row: 1;
        align-items: center;
        display: flex;
        align-items: center; 
        justify-content: center;
    }

    .pattern-e .item-c {
        align-self: center;
        font-size: 28px;
        font-weight: 700;
        width: 90%;
        padding-top: 15%;
        grid-column: 2;
        grid-row: 1;
    }

    .pattern-e .item-c .text {
        padding-bottom: 30px;
    }
    
    .about-theme {
        font-size: 12px;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .about-theme {
        font-size: 12px;
        padding-bottom: 10px;
        text-align: left;
    }

    .about-title {
        font-size: 18px;
        padding-bottom: 20px;
        text-align: left;
    }

    .about-description {
        font-size: 15px;
        font-weight: 400;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .about-title {
        font-size: 18px;
        padding-bottom: 20px;
    }

    .about-description {
        font-size: 16px;
        font-weight: 400;
    }

    .pattern-f {
        display: grid;
        width: 70%;
        margin: 0 auto;
        padding-bottom: 50px;
    }

    .card-title{
        display: flex;
        justify-content: center;
        font-size: 16px;
        text-align: center;
        width: 100%;
        padding: 50px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 768px) {
    .card-title{
        font-size: 16px;
        text-align: center;
        width: 100%;
        padding: 50px 0 30px 0;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .pattern-a {
        background-color: #FAFAFA;
    }

    .pattern-b {
        background-color: #FAFAFA;
    }
}

@media screen and (max-width: 768px) {
    .pattern-c .item-c .text {
        padding-bottom: 24px;
    }
}

.card-container {
    background-color: #fdf6e7;
    padding: 50px 0;
    margin: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, transparent 200px, #FDEBD0 200px);
}

.cards {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    width: 90%;
    justify-content: center;
}

.card {
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.card-header {
    font-size: 24px;
    font-weight: bold;
    color: #d4a017;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.card-header::before {
    content: "";
    width: 50px;
    height: 1px;
    background: #d4a017;
    position: absolute;
    top: -21px;
    left: -5px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #d4a017;
    margin: 10px 0;
}

.section-description {
    text-align: left;
    font-size: 16px;
}

.section-description-small {
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.6;
    color: #666;
}

.description {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-top: 30px;
    font-size: 17px;
    color: #333;
}

.description .description-group2 {
    padding: 30px 0px;
}

@media screen and (max-width: 768px) {
    .card-container {
        background: none;
    }

    .cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .description {
        width: 100%;
        text-align: center;
        margin-top: 100px;
    }

    .section-description-small {
        font-size: 13px;
        margin-top: 8px;
        line-height: 1.5;
    }
}

.company-table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

@media screen and (max-width: 768px) {
    .company-table {
        margin-top: 50px;
    }
}

.company-table tr {
    border-top: 2px solid #d4a017;
}

.company-table th {
    font-size: 14px;
    border-bottom: 2px solid #d4a017;
    padding: 15px 0px 15px 0px;
    text-align: center;
}


.company-table td {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    border-bottom: 2px solid #d4a017;
    padding: 15px;
    padding-left: 30px;
    text-align: left;
}

.company-table th {
    font-family: 'Noto Sans JP', sans-serif;
    width: 25%;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .company-table th {
        width: 25%;
        background-color: #fffaf0;
    }
}

@media screen and (max-width: 768px) {
    .company-table {
        width: 95%;
    }

    .company-table tr {
        display: block;
        border-top: 2px solid #d4a017;
    }

    .company-table th,
    .company-table td {
        display: block;
        text-align: left;
        padding: 10px 15px;
        border-bottom: none;
    }

    .company-table th {
        background-color: #fffaf0;
        font-weight: bold;
        width: 100%;
    }

}

.company-map {
    margin: 0 auto;

    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .company-map {
        margin: 0 auto;
        width: 100%;
        justify-content: center;
    }
}


.header-box {
    font-size: 48px;
    font-weight: 700;
    color: #FEFEFE;
    width: 100%;
    height: 391px;
    display: flex;
    padding-top: 1.3em;
    padding-left: 150px;
    text-align: center;
    background-size: max(100%, 1440px) auto;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
    .header-box {
        font-size: 32px;
        height: 169px;
        padding-top: 0.7em;
        padding-left: 1em;
    }
}

.header-box.top {
    position: relative;
    /* height: 829px; */
    height: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('img/header-top.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center top;
    padding-left: 0;
    padding-top: 0;
}

@media screen and (max-width: 768px) {
    .header-box.top {
        height: 700px;
        background-size: 100% 100%;
    }
}


.header-top-text-main {
    color: #FFF;
    font-size: 48px;
    font-weight: 400;
    /* font-family: 'Noto Sans JP', sans-serif; */
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'Hiragino Mincho ProN W3', 'HGSMinchoE', serif;
    letter-spacing: 0.09em;
    line-height: 86px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.header-top-text-main.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .header-top-text-main {
        font-size: 28px;

        line-height: 56px;
    }
}

.header-top-text-sub {
    color: #FEFEFE;
    font-size: 26px;
    font-weight: 500;
    margin-top: 2rem;
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'Hiragino Mincho ProN W3', 'HGSMinchoE', serif;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out 0.5s, transform 1s ease-out 0.5s;
    /* position: absolute;
    bottom: 1em; */
}

.header-top-text-sub.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .header-top-text-sub {
        font-size: 16px;
        bottom: 3em;
    }
}


.header-box.word {
    background-image: url('img/word-back.png');
}

.header-box.about {
    background: linear-gradient(to right, #E8A918, #ABD5E0);
}

.header-box.news {
    background: linear-gradient(to right, #45C8B5, #074C86);
}

.header-box.services {
    background-image: url('img/header-service-01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    box-sizing: border-box;
    margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
    .header-box.services {
        justify-content: flex-start;
        align-items: flex-start;
    }
}


.header-box.services span {
    display: inline-block;
}

.header-service-text-main {
    color: #FEFEFE;
    font-size: 50px;
    height: 2em;
    display: flex;
    align-items: center;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .header-service-text-main {
        font-size: 32px;
    }
}

.header-service-text-sub {
    color: #FEFEFE;
    font-size: 22px;
    font-weight: 100;
    font-family: 'Noto Sans JP', sans-serif;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 0;
}

.header-service-text-sub span {
    text-align: left;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 768px) {
    .header-service-text-sub {
        display: none !important;
    }
}

.vertical-line-service {
    border-left: 1px solid #FEFEFE;
    height: 55px;
    margin: 10px;
    margin-left: 40px;
    margin-right: 40px;
}

@media screen and (max-width: 768px) {
    .vertical-line-service {
        display: none !important;
    }
}

.services-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.services-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-sub-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .header-box {
        height: 170px;
    }
    
    .services-main-title {
        font-size: 24px;
    }
    
    .services-sub-title {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .services-main-title {
        font-size: 20px;
    }
    
    .services-sub-title {
        font-size: 12px;
    }
}

.bread-crumb {
    text-align: left;
    padding-top: 20px;
    padding-left: 12%;
    font-size: 14px;
    color: #A1A1A1;
}

.bread-crumb a {
    color: #A1A1A1;
    text-decoration: none;
}

.separator {
    font-size: 14px;
    color: #A1A1A1;
}

@media screen and (max-width: 768px) {
    .bread-crumb {
        display: none;
    }
}

.main-container {
    display: flex;
    flex-direction: column;
    width: 85%;
    margin: 0 auto;
    margin-left: 7.5%;
    margin-right: 7.5%;
}

.main-container .abount-company-text {
    padding: 50px 10%;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .main-container .abount-company-text {
        padding: 30px 10px;
        width: 100%;
    }

    .main-container .abount-company-text img{
        width: 243px;
    }
}

.main-container.inivisible-world{
    width: 70%;
    padding-top: 50px;
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
    margin: auto;
    border-radius: 30px;
    background-color: #FFF;
}

@media screen and (max-width: 768px) {
    .main-container.inivisible-world{
        width: 90%;
    }
}


.inivisible-world-image {
    margin-bottom: 30px;
}

.inivisible-world-image img {
    width: 165px;
}

@media screen and (max-width: 768px) {
    .inivisible-world-image img {
        width: 129px;
    }
}

.inivisible-world-text {
    font-size: 22px;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.12em;
    color: #474747;
    line-height: 48px;
}

@media screen and (max-width: 768px) {
    .inivisible-world-text {
        font-size: 16px;
        line-height: 31px;
    }
}

.howto-section-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin:  auto;
    padding: 7% 10% 10% 10%;
    margin: 0 auto;
}

.howto-section-body > span {
    display: contents;
}

@media screen and (max-width: 768px) {
    .howto-section-body {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 10% 0% 0% 0%;
        gap: 15px;
    }
}

.box {
    width: 100%;
    background: #FAF4E5;
    padding: 20px;
    text-align: center;
}

.box-title {
    font-size: 20px;
    font-weight: bold;
    background: #FAFAFA;
    padding: 10px;
    border-radius: 20px;
    display: block;
    width: 100%;
    margin: 0 auto;
}

.box-content {
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
}



.contact-container {
    width: 75%;
    padding: 30px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .contact-container {
        width: 90%;
        padding: 0px;
    }
}

.contact-message {
    text-align: center;
    margin: 50px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .contact-message {
        text-align: center;
        padding: 70px 40px;
        margin: 0px;
    }
}


.must-form {
    padding: 0px 0px;
}

@media (max-width: 768px) {
    .must-form {
        display: none;
    }
}


.symbol{
    color: #FF4C4C;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin:  auto;
    margin-top: 20px;
    margin-bottom: 50px;
    justify-content: center;
}

@media (min-width: 769px) {
    form {
        background-color: #F0F0F0;
        border-radius: 20px;
        padding: 50px 70px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
}

.label-group {
    width: 20%;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
}

@media (max-width: 768px) {
    .label-group {
        width: 100%;
        display:block
    }
}

.label-group label {
    flex: 1;
    text-align: center;
}

label {
    width: 100%;
    font-size: 14px;
    font-weight: bold;
}

.label-small {
    font-size: 14px;
}

@media (min-width: 769px) {
    .label-small {
        display: block;
        font-size: 9px;
    }
}

input {
    padding: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 100%;
}

button {
    background-color: #d4a017;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

@media (min-width: 769px) {
    .form-group {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        border-radius: 10px;
        padding: 15px;
    }

    label {
        width: 160px;
        text-align: center;
        font-size: 14px;
        flex-shrink: 0;
    }

    input {
        flex-grow: 1;
    }
}

.text-body {
    width: 100%;
    padding: 8px;
    flex-grow: 1;
    border-radius: 0px;
    border: 1px solid #ccc;
}

.privacy-policy {
    background-color: #FFFFFF;
    font-size: 14px;
    border: 1px solid #ccc;
    width: 90%;
    height: 100px;
    overflow-y: scroll;
    padding: 15px;
    margin: 0 auto;
    margin-top: 40px;
}

.check-disabled {
    color: #afafaf;
    margin: 0 auto;
}

#privacyCheck {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #afafaf;
    margin: 0 auto;
}

.privacy-check {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-check input {
    width: 20px;
}

.privacy-comment {
    width: 90%;
    height: 100px;
    padding: 15px;
    margin: 0 auto;
}

.privacy-policy {
    background-color: #FFFFFF;
    font-size: 14px;
    border: 1px solid #ccc;
    width: 90%;
    height: 100px;
    overflow-y: scroll;
    padding: 15px;
    margin: 0 auto;
    margin-top: 40px;
}

.check-disabled {
    color: #afafaf;
    margin: 0 auto;
}

#privacyCheck {
    color: #afafaf;
    margin: 0 auto;
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-check input {
    width: 20px;
}

.submit {
    display: flex;
    justify-content: center;
    width: 100%;
}

.submit-btn {
    width: 230px;
    padding: 20px;
    background: #D19919;
    text-decoration: none;
    color: #FDF6E7;
    font-size: 20px;
    border-radius: 50px;
    align-items: center;
    text-align: center;
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}



.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    padding-top: 50%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 10000;
    pointer-events: none;
}


.popup.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}



.popup-content {
    position: fixed;
    top: 30%;
    background: white;
    padding: 100px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
}


#popup-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}


.popup-close {
    width: 50%;
    background: #d4a017;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}

.popup-close:hover {
    background: #b8860b;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    font-size: 15px;
    align-items: center;
    justify-content: center;
    background: white;
    width: 70%;
    height: 70%;
    padding: 20px;
    padding-bottom:70px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        height: 70%;
        padding: 10px;
        padding-bottom:50px;
    }
}


.modal.disabled {
    display: none !important;
}


.close-btn {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
}


.modal-body {
    width: 80%;
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.privacy-comment {
    font-size: 18px;
    font-weight: 700;
    width: 85%;
    height: 100px;
    padding-top:15px;
    padding-bottom:20px;
    margin: 0 auto;
}

.policy-list {
    list-style-type: disc;
    margin-left: 20px;
    line-height: 1.6;
}

.policy-details {
    padding-left: 15px;
}
.privacy-content {
    border-bottom: 1px dashed #474747;
    cursor: pointer;
}

.language-popup {
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100%;
    background-color: #fff;
    border-left: 1px solid #ddd;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.language-popup.active {
    right: 0;
}

.language-dropdown-pc {
    padding: 10px;
    display: none;
    position: absolute;
    top: 80%;
    left: 0;
    background: #fff;
    border: 1px solid #efefef;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    width: 150px;
    margin-top: 5px;
}

.language-option {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-option img.icon-language {
    width: 24px;
    margin-right: 10px;
}

.language-option:hover {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .language-option {
        padding: 15px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    
    .language-option img.lang-icon {
        width: 24px;
        margin-right: 10px;
    }
}

.language-dropdown-sp {
    display: none;
    position: fixed;
    font-size: 10px;
    top: 250px;
    right: 0;
    width: 40%;
    height: 110px;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    z-index: 1000;
    overflow-y: auto;
    padding: 10px;
    transition: transform 0.3s ease;
}


.news-list-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
}

.news-list {
    width: 100%;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.news-item:hover {
    background-color: #f8f8f8;
}

.news-date {
    min-width: 140px;
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.news-title {
    flex: 1;
    margin-left: 40px;
}

.news-title a {
    text-decoration: none;
    color: #474747;
    font-size: 16px;
    font-weight: normal;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #E8A918;
}

@media screen and (max-width: 768px) {
    .news-list-container {
        padding: 20px 15px;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }
    
    .news-date {
        min-width: auto;
        margin-bottom: 8px;
        font-size: 12px;
    }
    
    .news-title {
        margin-left: 0;
    }
    
    .news-title a {
        font-size: 14px;
    }
}


.highlight-title {
    width: 300px;
    display: block;
    background-color: #E8A918;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 30px auto 0 auto;
    padding: 15px 0;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .highlight-title {
        width: 280px;
        font-size: 18px;
        padding: 12px 0;
        margin: 20px auto 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .highlight-title {
        width: 260px;
        font-size: 16px;
        padding: 10px 0;
        margin: 15px auto 0 auto;
    }
}


.price-plan-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.price-plan-images {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.price-plan-item {
    flex: 0 1 auto;
    min-width: 250px;
    max-width: 450px;
    text-align: center;
}

.price-plan-image {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-plan-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
    .price-plan-container {
        padding: 20px 15px;
    }
    
    .price-plan-images {
        flex-direction: column;
        gap: 30px;
    }
    
    .price-plan-item {
        min-width: auto;
        max-width: 400px;
    }
    
    .price-plan-image {
        max-width: 400px;
        border-radius: 6px;
    }
}

@media screen and (max-width: 480px) {
    .price-plan-container {
        padding: 15px 10px;
    }
    
    .price-plan-images {
        gap: 20px;
    }
    
    .price-plan-item {
        max-width: 315px;
    }
    
    .price-plan-image {
        max-width: 315px;
    }
}


.service-block {
    margin-bottom: 80px;
    padding: 40px 0;
}

.service-block .card-container {
    padding-top: 40px;
    padding-bottom: 0px;
}

.service-block:last-child {
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .service-block {
        margin-bottom: 60px;
        padding: 30px 0;
    }
    
    .service-block:last-child {
        margin-bottom: 30px;
    }

    .service-block .card-container {
        padding-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .service-block {
        margin-bottom: 50px;
        padding: 20px 0;
    }
    
    .service-block:last-child {
        margin-bottom: 20px;
    }

    .service-block .card-container {
        padding-top: 15px;
    }
}


.introduction-flow-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.introduction-flow-image {
    display: inline-block;
    max-width: 100%;
}

.flow-image {
    width: 100%;
    height: auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
    .introduction-flow-container {
        padding: 20px 15px;
    }
    
    .flow-image {
        max-width: 600px;
        border-radius: 6px;
    }
}

@media screen and (max-width: 480px) {
    .introduction-flow-container {
        padding: 15px 10px;
    }
    
    .flow-image {
        max-width: 100%;
    }
}


.case-studies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.case-study-item {
    background: #faf4e5;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background-color: #f8f8f8;
}

.case-study-item:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 25px;
}

.case-study-title {
    font-size: 18px;
    font-weight: 700;
    color: #474747;
    margin-bottom: 15px;
    line-height: 1.4;
}

.case-study-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .case-studies-container {
        padding: 20px 15px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .case-study-image {
        height: 180px;
    }
    
    .case-study-content {
        padding: 20px;
    }
    
    .case-study-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .case-study-description {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .case-studies-container {
        padding: 15px 10px;
    }
    
    .case-studies-grid {
        gap: 20px;
    }
    
    .case-study-image {
        height: 160px;
    }
    
    .case-study-content {
        padding: 15px;
    }
    
    .case-study-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .case-study-description {
        font-size: 12px;
    }
}


.estimate-button-container {
    text-align: center;
    margin-top: 20px;
}

.estimate-button {
    display: inline-block;
    background-color: #fff;
    color: #E8A918;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 60px;
    border-radius: 10px;
    border: 2px solid #E8A918;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(232, 169, 24, 0.2);
}

.estimate-button:hover {
    background-color: #E8A918;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 169, 24, 0.3);
}

@media screen and (max-width: 768px) {
    .estimate-button-container {
        margin-top: 10px;
    }
    
    .estimate-button {
        font-size: 16px;
        padding: 12px 40px;
    }
}

@media screen and (max-width: 480px) {
    .estimate-button-container {
        margin-top: 15px;
    }
    
    .estimate-button {
        font-size: 14px;
        padding: 10px 35px;
    }
}


.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.clients-note {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.client-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 10px;
    text-align: center;
    font-size: 14px;
    color: #474747;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-item:hover {
    border-color: #E8A918;
    box-shadow: 0 4px 8px rgba(232, 169, 24, 0.1);
    transform: translateY(-2px);
}

@media screen and (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .client-item {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .clients-container {
        padding: 20px 15px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .client-item {
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .clients-container {
        padding: 15px 10px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .client-item {
        padding: 12px 15px;
        font-size: 13px;
    }
}


.service-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-overview-content {
    text-align: center;
    background: #faf4e5;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-overview-title {
    font-size: 24px;
    font-weight: 700;
    color: #474747;
    margin-bottom: 25px;
    line-height: 1.4;
}

.service-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-overview-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #E8A918;
    line-height: 1.6;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #E8A918;
    display: inline-block;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .service-overview-container {
        padding: 20px 15px;
    }
    
    .service-overview-content {
        padding: 30px 20px;
    }
    
    .service-overview-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .service-overview-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .service-overview-highlight {
        font-size: 16px;
        padding: 15px;
        margin-top: 15px;
    }
}

@media screen and (max-width: 480px) {
    .service-overview-container {
        padding: 15px 10px;
    }
    
    .service-overview-content {
        padding: 25px 15px;
    }
    
    .service-overview-title {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .service-overview-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .service-overview-highlight {
        font-size: 14px;
        padding: 12px;
        margin-top: 12px;
    }
}


.seminar-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    max-width: 300px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.seminar-banner.hidden {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    pointer-events: none;
}

.seminar-banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.seminar-banner-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.seminar-banner-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .seminar-banner {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: calc(100vw - 30px);
        width: auto;
    }
}

@media screen and (max-width: 480px) {
    .seminar-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: calc(100vw - 20px);
        width: auto;
    }
    
    .seminar-banner-close {
        width: 20px;
        height: 20px;
        font-size: 12px;
        top: -6px;
        right: -6px;
    }
}

.seminar-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.seminar-banner-link:hover {
    opacity: 0.9;
}

.title-container {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    max-width: 2000px;
    margin-left: 0;
    text-align: left;
}

.title-container-line {
    margin-bottom: 30px;
    border-bottom: 1px solid;
    border-color: #474747;
    margin-top: 10px;
}

.title-container-line.yellow {
    border-color: #E8A918;
    margin-bottom: 4em;
}


.title-item {
    flex: 1;
}

.title-item.main {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;

    display: flex;
    align-items: center;
    gap: 5em;
    flex-wrap: wrap;
}


@media (max-width: 768px) {
    .title-item.main {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

.title-item.sub {
    font-size: 22px;
    font-weight: 700;
    color: #666;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .title-item.sub {
        font-size: 16px;
    }
}



@media screen and (max-width: 768px) {
    .title-container {
        flex-direction: column;
    }
}

.card-area {
 /* color: #FAFAFA;
    width: 100%; */


 /* align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700; */
    text-align: center;
    background-size: max(100%, 1440px) auto;
 /* background-position: center;
    background-repeat: no-repeat; */
    padding-top: 50px;
    padding-bottom: 50px;
}

.card-area.inivisible-world {
    background-color: #896C80;
    padding-bottom: 7em;
}

.card-area.inivisible-main-area.gray {
    background-color: #F3F3F3;
}

.card-area.inivisible-main-area .inivisible-top-main-text {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.18em;
    font-family: 'Noto Sans JP', sans-serif !important;
    letter-spacing: 0.08em;
    line-height: 32px;
}

@media screen and (max-width: 768px) {
    .card-area.inivisible-main-area .inivisible-top-main-text {
        text-align: left;
        font-size: 16px;
    }    
}

.card-area.inivisible-main-area .inivisible-top-main-text .text-strong {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.card-area.inivisible-main-area .inivisible-top-main-text.challenge-box {
    width: 100%;
    margin-top: 4em;
    margin-bottom: 4em;
}

.card-area.inivisible-main-area .inivisible-top-main-text.challenge-01 {
    width: 100%;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.2em;
}

@media screen and (max-width: 768px) {
    .card-area.inivisible-main-area .inivisible-top-main-text.challenge-01 {
        font-size: 16px;
    }
}

.card-area.inivisible-main-area .inivisible-top-main-text.challenge-02 {
    width: 100%;
    font-size: 32px;
    text-align: center;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .card-area.inivisible-main-area .inivisible-top-main-text.challenge-02 {
        font-size: 20px;
    }
}
.card-area.inivisible-main-area .inivisible-top-main-text .gray {
    color: #878787;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .card-area.inivisible-main-area .inivisible-top-main-text .gray {
        font-size: 12px;
    }
}

.card-area.inivisible-main-area .inivisible-top-main-picture img{
    width: 100%;
    max-width: 650px;
    margin: 3em;
}

.card-area.inivisible-main-area .inivisible-top-main-picture.challenge img{
    width: 100%;
    max-width: 334px;
    margin-top: 1em;
    margin-bottom: 3em;
}

@media screen and (max-width: 768px) {
    .card-area.inivisible-main-area .inivisible-top-main-picture img{
        margin: 0em;
        margin-top: 2.5em;
        margin-bottom: 2.5em;
    }
}

.card-area.map {
    display: none;
}

@media screen and (max-width: 768px) {
    .card-area.map {
        display: flex;
    }
}

.card-area .title {
    font-size: 60px;
    font-weight: 700;
    color: #FEFEFEFE;
}

.card-area .title.philosophy {
    font-size: 48px;
    text-align: right;
    margin-right: 2em;
    margin-bottom: 1em;
    opacity: 0.6;
} 

@media screen and (max-width: 768px) {
    .card-area .title.philosophy {
        font-size: 40px;
        text-align: center;
        margin-right: 0px;
    } 
}


.philosophy-icon img {
    width: 112px;
}

.philosophy-title {
    font-size: 50px;
    font-weight: 700;
    color: #FEFEFEFE;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: left;
    margin-bottom: 0.3em;
}  

@media screen and (max-width: 768px) {
    .philosophy-title {
        font-size: 37px;
    }  
}

.philosophy-text {
    font-size: 16px;
    font-weight: 500;
    color: #474747;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: left;
    line-height: 32px;
    letter-spacing: 0.04em;
}  

.card-area.philosophy {
    background: linear-gradient(135deg, #E5D4AB, #C8C8C8);
    margin-bottom: 60px;
}

.card-area.global {
    background: #5A5A5A;
    /* margin-bottom: 60px; */
}  

.card-area.picture {
    background: linear-gradient(135deg, #474747, #E5D4AB);
    padding-top: 0px;
    padding-bottom: 0px;
}

.card-area.picture .img{
    width: 100%;
}

.card-area.latest-news {
    background-color: #FDF6E8;
}  

.card-area.awards {
    background-color: #FDF6E8;
}

.card-area.history {
    background-color: #E6E6E6;
    padding-top: 60px;
    padding-bottom: 60px;
}

.card-area.plan {
    background-color: #FFFFFF;
    padding-top: 60px;
    padding-bottom: 60px;
}

.card-area.partner {
    background-color: #FFFFFF;
}


.card-area.publications {
    text-align: left;
}

.card-area.service {
    background-color: #EEEEEE;
 /* padding-top: 60px;
    padding-bottom: 60px; */
}

.card-area.contact {
    background-color: #E6E6E6;
 /* padding-top: 60px;
    padding-bottom: 60px; */
}

.card-area.invisible-checker {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 804px;
    background-color: #FFFFFF;
}

.card-area.invisible-checker-main {
    background-color: #E6E6E6;
    padding-top: 60px;
    padding-bottom: 0px;
}

.card-area.footer {
    padding-top: 10px;
    padding-bottom: 60px;
    background-color: #FDF6E8;
}  

.invisible-checker-main-text {
    text-align: left;
}

.wrapper.invisible-checker-main .number {
    font-size: 30px;
    font-weight: 700;
    color: #B1B1B1;
    font-family: 'Jost', sans-serif;
}

.wrapper.invisible-checker-main .title {
    font-size: 28px;
    color: #474747;
    margin-left: 20px;
}

.wrapper.invisible-checker-main .invisible-checker-main-description {
    font-family: 'IBM Plex Sans JP', sans-serif;
    text-align: left;
    font-size: 16px;
    color: #474747;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .wrapper.invisible-checker-main .invisible-checker-main-description {
        font-size: 12px;
        margin-bottom: 30px;
    }
}

.invisible-checker-main-text-box {
    display: flex;
    align-items: center;

    max-width: 100%;
    margin-bottom: 1.5em;
}

.invisible-checker-main-text-box .invisible-checker-main-text-box-number {
    font-family: 'Jost', sans-serif;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #B1B1B1;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    margin-right: 20px;
}

@media screen and (max-width: 768px) {
    .invisible-checker-main-text-box .invisible-checker-main-text-box-number {
        font-size: 30px;
        margin-right: 0px;
    }
}

.invisible-checker-main-text-box .invisible-checker-main-text-box-title {
    font-family: 'IBM Plex Sans JP', sans-serif;
    flex: 1;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.6;
    word-break: break-word;
    text-align: left;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .invisible-checker-main-text-box .invisible-checker-main-text-box-title {
        font-size: 18px;
    }
}

.invisible-checker-what {
    font-size: 30px;
    font-weight: 700;
    color: #E8A918;
}

.invisible-checker-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    margin: 30px;
}

.invisible-checker-text-sub {
    font-size: 20px;
    font-weight: 700;
    color: #474747;
    background-color: #FFFFFF;
    padding: 5px 10px;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.18em;
}

.invisible-checker-text-sub.glay {
    font-size: 34px;
}

@media screen and (max-width: 768px) {
    .invisible-checker-text-sub.glay {
        font-size: 24px;
    }
}

.invisible-checker-text-point {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.10em;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 30px 0px;
}

@media screen and (max-width: 768px) {
    .invisible-checker-text-point {
        font-size: 30px;
        letter-spacing: 0.10em;
        font-family: 'Noto Sans JP', sans-serif;
        padding: 0.7em 0px;
        width: 100%;
    }
}

.invisible-checker-text-main {
    font-size: 20px;
    font-weight: 700;
    color: #495BA9;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.18em;
}

.invisible-checker-text-main.blue {
    font-size: 50px;
    font-weight: 700;
    color: #495BA9;
}

@media screen and (max-width: 768px) {
    .invisible-checker-text-main.blue {
        font-size: 24px;
    }
}

.invisible-checker-text-description {
    font-size: 20px;
    color: #474747;
    width: 65%;
    margin: auto;
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .invisible-checker-text-description {
        width: 100%;
        margin: 0.5em;
    }
}

.history-body {
    padding-top: 50px;
    padding-bottom: 5%;
    background-image: url('img/history-back-01.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
}

@media screen and (max-width: 768px) {
    .history-body {
        padding-bottom: 0px;
        background-image: none;
    }
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.wrapper.partner {
    gap: 0px;
}

.wrapper.publications {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Noto Sans JP', sans-serif;
}

.wrapper.publications .publications-title {
    font-family: 'Noto Sans JP', sans-serif;
    gap: 8px;
    text-align: left;
    margin-bottom: 10px;
}

.wrapper.publications .publications-title .date{
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #858585;
    margin-right: 1em;
}

@media screen and (max-width: 768px) {
    .wrapper.publications .publications-title .date{
        font-size: 14px;
    }
}


.wrapper.publications .publications-title .tag{
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    min-width: 150px;
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 25px;
}

@media screen and (max-width: 768px) {
    .wrapper.publications .publications-title .tag{
        font-size: 14px;
    }
}


.wrapper.publications .publications-title .tag.light-blue{
    border: #ABEBFF 2px solid;
}

.wrapper.publications .publications-title .tag.blue{
    border: #5599FF 2px solid;
}

.wrapper.publications .publications-title .tag.yellow{
    border: #E8A918 2px solid;
}

.wrapper.publications .publications-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .wrapper.publications .publications-body {
        font-size: 14px;
    }
}

.responsive-box {
    flex: 1 1 calc(33.33% - 22px);
    min-width: 200px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

.responsive-box.partner {
    flex: 0 0 20%;
    min-width: 100px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
}

.picture-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.responsive-box.partner img {
    width: 100%;
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .responsive-box.partner img {
        width: 100%;
        max-width: 300px;
    }
}

.responsive-box.picture {
    flex: auto;
    padding-top: 40px;
}

.responsive-box.picture img {
    width: auto;
    height: auto;
    max-height: 280px;

}

.responsive-box.picture.left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.responsive-box.picture.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.responsive-box.picture.right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media screen and (max-width: 768px) {
    .responsive-box.picture img {
        height: 215px;
    }
}


@media screen and (max-width: 768px) {
    .responsive-box.partner {
        flex: 1 1 100%;
        min-width: auto;
    }
}

.responsive-box.trading-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
    max-height: 680px;
}

.responsive-box.trading-result .trading-result-text1 {
    font-size: 120px;
    font-weight: bold;
    display: inline-flex;
}

@media screen and (max-width: 768px) {
    .responsive-box.trading-result .trading-result-text1 {
        font-size: 100px;
    }
}

.responsive-box.trading-result .trading-result-text2 {
    font-size: 17px;
    color: #E8A918;
    letter-spacing: 0.4em;
}

@media screen and (max-width: 768px) {
    .responsive-box.trading-result .trading-result-text2 {
        font-size: 14px;
    }
}

.responsive-box.trading-result .trading-result-text3 {
    display: flex;
    align-items: center;
    font-size: 80px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .responsive-box.trading-result .trading-result-text3 {
        font-size: 60px;
    }
}

.trading-result-text-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.trading-result-text-box-patent{
    padding-top: 3em;
    height: 100%;
}

.responsive-box.trading-result .patent-number {
    font-size: 38px;
    font-weight: bold;
}

.responsive-box.trading-result .patent-holder {
    color: #9B9B9B;
    font-size: 12px;
    width: 100%;
    text-align: right;
    padding-right: 30px;
}

.box-description {
    align-items: flex-start;
    text-align: left;
    margin-right: 3em;
}


.responsive-box.box-flex {
    box-sizing: border-box;
    padding: 10px;
}

@media screen and (min-width: 768px) {
    .wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    .responsive-box.box-flex {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .responsive-box.box-flex {
        width: 100%;
    }
}

.box-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .box-description {
        padding: 20px;
        order: 2;
    }
    .box-image {
        order: 1;
    }
}

.box-image img {
    width: 100%;
    max-width: 629x;
    height: auto;
    object-fit: contain;
    display: block;
}


.company-overview-a {
    flex: 0 1 calc(40% - 8px);
}

.company-overview-a img{
    max-width: 360px;
}

.company-overview-b {
    flex: 0 1 calc(60% - 8px);
}


@media screen and (max-width: 768px) {
    .company-overview-a {
        order: 1;
        flex: 1 1 100%;
    }
    .company-overview-b {
        order: 2;
        flex: 1 1 100%;
    }
}


@media screen and (max-width: 768px) {
    .responsive-box {
        flex: 1 1 100%;
        min-width: auto;
    }
}

.profile-box {
    min-height: 550px;
    max-height: 900px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .profile-box {
        min-height: 500px;
        max-height: 850px;
    }
}


.profile-box img {
    width: 100%;
    max-width: 278px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    padding: 10px;
}

.profile-box .profile-name {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.profile-box .profile-description {
    text-align: left;
    font-size: 16px;
    font-weight: 400;;
    letter-spacing: 0.06em;
    line-height: 1.9em;
    margin-bottom: 30px;
}

.chart-image {
    max-width: 1135px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.chart-image.large {
    max-width: 2000px;
    max-height: 500px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .chart-image.large {
        max-width: 2000px;
        max-height: 1000px;
        width: 100%;
    }
}

.latest-news-slider {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.latest-news-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.latest-news-track {
    display: flex;
    gap: 16px;
    scroll-behavior: smooth;
}

.latest-news-item {
    flex: 0 0 calc(33.33% - 16px);
    scroll-snap-align: start;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 16px;
    min-width: 300px;
    box-sizing: border-box;
    text-align: center;
}


.latest-news-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
}

.latest-news-arrow.prev {
    left: 8px;
}

.latest-news-arrow.next {
    right: 8px;
}


.latest-news-indicators {
    text-align: center;
    margin-top: 20px;
}

.latest-news-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 4px;
}

.latest-news-dot.active {
    background: orange;
}

.latest-news-container {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    display: flex;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.latest-news-track {
    display: flex;
    width: max-content;
}

.latest-news-item {
    flex: 0 0 300px;
    scroll-snap-align: center;
    margin-right: 16px;
    background: #eee;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 8px;
}


@media screen and (max-width: 768px) {
.latest-news-item {
    flex: 0 0 100%;
}

.latest-news-arrow {
    top: auto;
    bottom: 60px;
    transform: none;
}

.latest-news-arrow.prev {
    left: 30%;
}

.latest-news-arrow.next {
    right: 30%;
}
}

.contact-area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 391px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: right;
    border-radius: 50px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact-area.about-us {
    background-image: url('img/contact-01.png');
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact-area.news {
    background-image: url('img/contact-02.png');
}

.contact-area.top {
    background-image: url('img/contact-03.png');
}

.contact-area.service {
    background-image: url('img/contact-04.png');
}
@media screen and (max-width: 768px) {
    .contact-area{
        background-position: 30% center;
    }
}


.contact-content {
    display: flex;
    flex-direction: column;
    margin-right: 13%;
    text-align: left;
}

.contact-title {
    color: #FEFEFE;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 1.4em;
    line-height: 52px;
}


@media screen and (max-width: 768px) {

    .contact-content {
        color: #fff !important;
        display: flex;
        flex-direction: column;
        margin: auto;
        text-align: center;
        width: 95%;
    }

    .contact-title {
        color: #fff !important;
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 0.06em;
        margin-bottom: 2em;
        width: 100%;
        line-height: 40px;
    }
}

.footer-button {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.footer-area-wrapper {
    display: flex;
    flex-wrap: wrap;
}


.footer-area-image{
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-area-image img {
    width: 112px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .footer-area-image img{
        margin-left: 10px;
    }
}

.footer-area-sns {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .footer-area-sns {
        width: 50%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
}

.footer-area-sns img{
    width: 32px;
}

.footer-area-line {
    width: 100%;
}


@media screen and (max-width: 768px) {
    .footer-area-image {
        order: 1;
    }
    .footer-area-line {
        order: 2;
}

.footer-area-sns {
    order: 3;
}

.footer-area-image,
.footer-area-sns,
.footer-area-line {
        width: 100%;
    }
}

.slick-slider {
    padding-top: 2em;
    padding-bottom: 2em;
}

.slick-slider.service {
    background-color: #EEEEEE;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 16px;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .slick-slider.service {
        padding: 0px;
    }
}

.slick-slider.service > .news-card-wrapper {
    flex: 0 0 calc((100% - 32px) / 3);
    scroll-snap-align: start;
    background: white;
    border-radius: 12px;
    box-sizing: border-box;
}

.slick-dots li span.custom-dot {
    width: 12px;
    height: 12px;
    display: block;
    background: #ccc;
    border-radius: 50%;
    margin-top: 10px;
    cursor: pointer;
}

.slick-dots li.slick-active span.custom-dot {
    background: #333;
}

.slick-prev,
.slick-next {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 1);
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
}

.slick-next:before {
    font-size: 40px;
}

.slick-prev {
    left: 0px !important;
}

.slick-next {
    right: 0px !important;
}

.news-card {
    width: 100%;
    max-width: 300px;
    border-radius: 28px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.news-card-wrapper {
    margin-right: 5px;
    margin-left: 5px;
}

.news-card-wrapper a {
    text-decoration: none;
}

.news-card-thumbnail {
    background-color: #d9d9d9;
    width: 100%;
    height: 225px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    overflow: hidden;
    position: relative;
}

.news-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.news-card-body {
    padding: 20px;
    width: 100%;
    min-height: 146px;
    background-color: #fff;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    box-sizing: border-box;
    text-align: left;
}

.news-card-meta {
    font-size: 14px;
    color: #858585;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-card-title {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    letter-spacing: 0.06em;
}

.awards-wrapper {
    margin-right: 5px;
    margin-left: 5px;
}

.awards-thumbnail {
    width: 100%;
    background-color: #d9d9d9;
    height: 180px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

.awards-thumbnail img{
    width: 400px;
    height: 180px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

.awards-body {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    box-sizing: border-box;
    text-align: left;
}

.awards-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.awards-title {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
}

.awards-line {
    margin-bottom: 10px;
    border-bottom: 1px solid;
    border-color: #EAEAEA;
    margin-top: 10px;
}

.service-card-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    font-family: sans-serif;
    text-align: center;
    margin-left: 15px;
    margin-right: 15px;
}

@media screen and (max-width: 768px) {
    .service-card-wrapper {
        margin-left: 0px;
        margin-right: 0px;
    }
}

.service-card-header {
    color: white;
    padding: 16px 12px 12px;
    position: relative;
}

.service-card-header.blue{
    background: #495BA9;
}

.service-card-header.green{
    background: #0F6632;
}

.service-card-header.yellow{
    background: #CF7132;
}

.service-card-header.glay{
    background: #4C4C4C;
}

.service-card-label {
    color: white;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
    .service-card-label {
        font-size: 20px;
    }
}

.service-card-sub {
    color: white;
    font-size: 18px;
    margin-top: 4px;
    letter-spacing: 0.06em;
}

.service-card-pointer {
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -20px;
    width: 20px;
    height: 12px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.service-card-pointer.blue,
.service-card-pointer.green,
.service-card-pointer.yellow {
    margin-left: -10px;
}

.service-card-pointer.blue {
    background: #495BA9;
}

.service-card-pointer.green {
    background: #0F6632;
}

.service-card-pointer.yellow {
    background: #CF7132;
}

.service-card-pointer.glay {
    background: #4C4C4C;
    width: 40px;
}

.service-card-body {
    padding: 20px 16px 20px;
}

.service-card-body.main-price-area {
    border-bottom: 1px solid #DDDDDD;
}

.service-card-body.bottom-price-area {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    min-height: 200px;
}

.service-card-body.main-area {
    border-left: 4px solid #495BA9;
    border-right: 4px solid #495BA9;
    border-bottom: 1px solid #DDDDDD;
}

.service-card-body.bottom-area {
    border-left: 4px solid #495BA9;
    border-right: 4px solid #495BA9;
    border-bottom: 4px solid #495BA9;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    min-height: 210px;
}

.service-card-body.contact {
    height: 200px;
}

.service-card-poc {
    color: #999;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.service-card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 14px;
    letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
    .service-card-title {
        font-size: 24px;
    }
}

.service-card-title.size-18 {
    font-size: 18px;
}

.service-card-title.size-24 {
    font-size: 24px;
}

.service-card-title.size-30 {
    font-size: 30px;
}

.service-card-title.blue {
    font-size: 30px;
    color: #495BA9;
}

.service-card-title.green {
    font-size: 30px;
    color: #0F6632;
}

.service-card-title.yellow {
    font-size: 30px;
    color: #CF7132;
}

@media screen and (max-width: 768px) {
    .service-card-title.blue,
    .service-card-title.green,
    .service-card-title.yellow {
        font-size: 24px;
    }
}

.light-green {
    color: #BBFF00;
}

.service-card-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
}

.service-card-price-term {
    font-size: 18px;
    font-weight: bold;
}

.service-card-price-term.large{
    font-size: 30px;
    font-weight: bold;
    padding-left: 5px;
    padding-right: 5px;
}

.service-card-price-amount {
    font-family: 'Jost', sans-serif;
    font-size: 38px;
    font-weight: bold;
    display: inline-block;
    margin-top: 4px;
}

@media screen and (max-width: 768px) {
    .service-card-price-amount {
        font-size: 32px;
    }
}

.service-card-price-unit {
    font-size: 24px;
}

.service-card-description {
    font-size: 12px;
    color: #444;
    line-height: 1.5;
    margin: 16px 0;
    text-align: left;
}

.service-card-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .service-card-buttons {
        max-width: 200px;
        margin: auto;
        margin-top: 1em;
    }
}

.service-card-buttons.left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
}

.service-card-btn {
    flex: 1;
    padding: 8px 0;
    border-radius: 9999px;
    font-size: 13px;
    text-decoration: none;
    color: white;
    text-align: center;
    font-weight: bold;
}

.service-card-btn.more {
    background: #4C64B9;
    width: 100%;
    max-width: 218px;
}

.service-card-btn.blue {
    background: #495BA9;
    width: 100%;
    max-width: 218px;
}

.service-card-btn.green {
    background: #0F6632;
    width: 100%;
    max-width: 218px;
}

.service-card-btn.yellow {
    background: #CF7132;
    width: 100%;
    max-width: 218px;
}

.case-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media screen and (max-width: 768px) {
    .case-wrapper {
        gap: 0px;
    }
}

.case-box {
    flex: 1 1 calc(50% - 16px);
    box-sizing: border-box;
    padding: 16px;
    text-align: center;
}


@media screen and (max-width: 768px) {
    .case-box {
        flex: 1 1 100%;
    }
}

.case-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
    width: 100%;
}

.case-card-image {
    width: 167px;
    height: 167px;
    position: relative;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .case-card-image {
        width: 89px;
        height: 89px;
        position: relative;
        flex-shrink: 0;
    }
}

.case-modal-head {
    width: 247;
    height: 506px;
}

.case-modal-body .title{
    color: #474747;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.6em;
}

.case-modal-img {
    width: 100%;
}

.case-modal-img img{
    width: 302px;
    height: 163px;
}

.case-card-image.item-01{
    background: url('img/case-01.png') no-repeat center/cover;
}

.case-card-image.item-02{
    background: url('img/case-02.png') no-repeat center/cover;
}

.case-card-image.item-03{
    background: url('img/case-03.png') no-repeat center/cover;
}

.case-card-image.item-04{
    background: url('img/case-04.png') no-repeat center/cover;
}

.case-card-image.item-05{
    background: url('img/case-05.png') no-repeat center/cover;
}

.case-card-image.item-06{
    background: url('img/case-06.png') no-repeat center/cover;
}

.case-card-number {
    font-family: 'Jost', sans-serif;
    color: white;
    font-weight: bold;
    font-size: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .case-card-number {
        font-size: 25px;
    }
}

.case-card-title {
    flex-grow: 1;
    padding: 0 12px;
    font-weight: 600;
    font-size: 28px;
}

@media screen and (max-width: 768px) {
    .case-card-title {
        font-size: 18px;
        width: 100%;
        text-align: left;
        margin-left: 1em;
    }
}

.case-card-title-small {
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .case-card-title-small {
        font-size: 12px;
    }
}

.case-card-button {
    width: 32px;
    height: 32px;
    background: #797979;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    margin-right: 12px;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}



.case-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.case-modal-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    text-align: left;
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 1114px;
}

.case-modal-content-head{
    width: 247px;
    height: 569px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.case-modal-number {
    font-family: 'Jost', sans-serif;
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.case-modal-content-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    background: #797979;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 10;
}


.case-modal-content-close:hover {
    background: #999;
}


.case-modal-content .case-modal-content-head.item-01{
    background: url('img/case-01.png') no-repeat center/cover;
}

.case-modal-content .case-modal-content-head.item-02{
    background: url('img/case-02.png') no-repeat center/cover;
}

.case-modal-content .case-modal-content-head.item-03{
    background: url('img/case-03.png') no-repeat center/cover;
}

.case-modal-content .case-modal-content-head.item-04{
    background: url('img/case-04.png') no-repeat center/cover;
}

.case-modal-content .case-modal-content-head.item-05{
    background: url('img/case-05.png') no-repeat center/cover;
}

.case-modal-content .case-modal-content-head.item-06{
    background: url('img/case-06.png') no-repeat center/cover;
}

.case-modal-content .case-modal-content-body{
    padding: 47px;
    width: 100%;
    height: 100%;
    color: #474747;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
}

.case-modal-content-title {
    color: #474747;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
    .case-modal-content-title {
        font-size: 20px;
        margin-bottom: 0.5em;
    }
}

.case-modal-content-title-small {
    font-size: 36px;
}

@media screen and (max-width: 768px) {
    .case-modal-content-title-small{
        font-size: 16px;
    }
}

.case-modal-content-description {
    color: #474747;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 1.5em;
    line-height: 1.9;
}

@media screen and (max-width: 768px) {
    .case-modal-content-description {
        margin-bottom: 0.5em;
    }
}

.case-modal-content-image{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .case-modal-content-image{
        gap: 0px;
    }
}

.case-modal-content-image.narrow{
    margin-top: 2em;
}

@media screen and (max-width: 768px) {
    .case-modal-content-image.narrow{
        margin-top: 1em;
    }
}

.case-modal-image-item img {
    max-width: 302px;
    width: 100%;
    height: auto;
    object-fit: contain;
}


.case-modal-image-arrow {
    font-size: 35px;
    font-weight: bold;
    color: #333;
}

@media screen and (max-width: 768px) {
    .case-modal-content-close {
        top: 2%;
        right: 5%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }
    
    .case-modal-content {
        flex-direction: column;
        width: 80%;
        height: 90%;
    }

    .case-modal-content-head {
        width: 100%;
        height: 79px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 0px;
    }

    .case-modal-number {
        font-size: 32px;
        justify-content: flex-start;
        padding-left: 1em;
    }
    
    .case-modal-content .case-modal-content-body {
        padding: 30px;
        padding-top: 10px;
        padding-bottom: 10px;
        height: 100%;
        overflow-y: auto;
    }

    .case-modal-image-item img {
        width: 208px;
        height: auto;
    }

    .case-modal-content-image {
        flex-direction: column;
    }

    .case-modal-image-arrow {
        transform: rotate(90deg);
        font-size: 20px;
    }
}

.partner-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 15px;
}

.partner-box {
    flex: 0 1 calc(25% - 12px);
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .partner-box {
        flex: 0 1 calc(50% - 8px);
        font-size: 0.8rem;
    }
}

.partner-main {
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.contact-main-text {
    width: 100%;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 1em;
}

@media screen and (max-width: 768px) {
    .contact-main-text {
        font-size: 24px;
    }
}


.service-price-type-box {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-price-type-box {
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 15px;
    }

    .service-sp-price-type {
        color: white;
        font-weight: bold;
        text-align: center;
        padding: 10px 3px;
        width: 30%;
        border-radius: 6px;
    }
    
    .service-sp-price-type.blue {
        background: #495BA9;
    }
    
    .service-sp-price-type.green {
        background: #0F6632;
    }
    
    .service-sp-price-type.yellow {
        background: #CF7132;
    }


    .service-sp-price-type {
        opacity: 0.4;
        transition: opacity 0.3s ease;
        font-weight: normal;
    }

    .service-sp-price-type.active {
        opacity: 1;
        font-weight: bold;
    }

}


.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 1.5rem;
}

.lang-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-weight: bold;
    cursor: pointer;
    background-color: #eee;
    color: #333;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: #000;
    color: #fff;
}


.custom-slider-wrapper {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.custom-slider {
    display: flex;
    width: 100%;
}

.custom-slide {
    background: #f0f0f0;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;


    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
}
.custom-slider-wrapper .slick-prev:before,
.custom-slider-wrapper .slick-next:before {
    font-size: 40px;
    color: #9C9C9C;
}

.card-area.latest-news .slick-prev:before {
    font-size: 40px;
    opacity: 1;

}

.card-area.latest-news .slick-next {
    width: 48px;
    height: 48px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border: none;
    background-image: url('img/arrow-right.png');
    right: 30px;
}

.card-area.latest-news .slick-prev {
    width: 48px;
    height: 48px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border: none;
    background-image: url('img/arrow-left.png');
    right: 30px;
}

.card-area.service .slick-prev {
    width: 48px;
    height: 48px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border: none;
    background-image: url('img/arrow-service-left.png');
    right: 30px;
}

.card-area.service .slick-next {
    width: 48px;
    height: 48px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border: none;
    background-image: url('img/arrow-service-right.png');
    right: 30px;
}

.card-area.service .slick-prev:before,
.card-area.service .slick-next:before,
.card-area.latest-news .slick-prev:before,
.card-area.latest-news .slick-next:before {
    display: none;
    content: none;
}

.card-area.latest-news .slick-next:before {
    font-size: 40px;
    opacity: 1;
}

.custom-slider-wrapper .slick-prev,
.custom-slider-wrapper .slick-next {
    top: calc(50% + 0px) !important;
}


.custom-slider-wrapper .slick-dots li.slick-active button:before {
    color: #E8A918;
    font-size: 12px;
}

.custom-slider-wrapper .slick-dots li button:before {
    font-size: 12px;
}


@media (min-width: 769px) {
    .custom-slider {
        display: flex;
    }
}

@media (min-width: 769px) {
    .slick-slider.service {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .slick-slider.service .service-card-wrapper {
        width: 100%;
        margin: 0 auto;
    }
}

.service-price-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    font-family: sans-serif;
    text-align: center;
}

@media (min-width: 769px) {
    .global-hub-area-sp {
        display: none;
    }
}

@media screen and (max-width: 768px) {

    .global-hub-area-sp .global-text {
        color: #FEFEFE;
        font-size: 20;
        font-weight: 700;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .global-hub-area-sp .global-picture img {
        width: 100%;
        max-width: 290px;
        height: auto;
    }
}

.contact-area-btn {
    width: 230px;
    padding: 20px;
    background: #D19919;
    text-decoration: none;
    color: #FDF6E7;
    font-size: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media screen and (max-width: 768px) {
    .contact-area-btn {
        margin: auto;
    }
}
