* {
    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;
}

.body-auto {
    overflow: auto;
}



.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: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 373px;
    background: #FEFEFE;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}


.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: 100px;
    }

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

    .nav-links {
        display: flex;
        gap: 20px;
        padding: 10px;
    }

    .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;
    }
    
    .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;
    }

    .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) {
}

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

    .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: 420px;
        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;
        top: 50%;
        transform: translateY(-50%);
        width: 100px;
        height: 100px;
        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 {
    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;
}

.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 {
        flex-direction: column; 
        align-items: center; 
        text-align: center;
        gap: 15px; 
        padding: 20px;
    }

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

    .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;
    background: #D9D9D9;
    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;
}

.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;
    }
}

.company-table {
    width: 60%;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 150px;
    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 {
    border-bottom: 2px solid #d4a017;
    padding: 15px 0px 15px 0px;
    text-align: center;
}

.company-table td {
    font-size: 14px;
    border-bottom: 2px solid #d4a017;
    padding: 15px;
    padding-left: 30px;
    text-align: left;
}

.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-table td {
    }
}

.company-map {
    margin: 0 auto;
    width: 75%;
    justify-content: center;
}

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


.header-box {
    color: #FAFAFA;
    width: 100%;
    height: 393px;
    display: flex;
    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;
}

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

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

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

@media screen and (max-width: 768px) {
    .header-box {
        height: 170px;
    }
}

.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: 90%;
    margin: 0 auto;
}

.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;
    }
}

.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;
}