#company-mv {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 100px);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
        url("../img/office.jpg");
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#company-mv h2 {
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
}
#company-mv h2 span {
    background: linear-gradient(135deg, #26B0B0, #3482C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 56px;
    line-height: 1.5;
}
#company-mv h2 strong {
    font-size: 40px;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    #company-mv {
        height: calc(100vh - 70px);
    }
    #company-mv h2 {
        text-align: center;
        font-size: 18px;
        line-height: 1.5;
    }
    #company-mv h2 span {
        font-size: 42px;
        line-height: 1.5;
    }
    #company-mv h2 strong {
        font-size: 24px;
        line-height: 1.5;
    }

}

#vision {
    padding: 80px 0;
    background-color: #fff;
}
#vision .main-block {
    display: flex;
    justify-content: space-between;
}
#vision .image {
    width: 50%;
}
#vision .txt {
    width: 47%;
    margin-top: 20px;
}
#vision .image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    object-fit: cover;
}
#vision .txt h2 {
    position: relative;
    font-size: 32px;
    margin-bottom: 60px;
}
#vision .txt h2::after {
    position: absolute;
    bottom: -30px;
    left: 0;
    content: "";
    height: 5px;
    border-radius: 10px;
    width: 80px;
    background: linear-gradient(135deg, #26B0B0, #3482C0);
}
#vision .txt p {
    line-height: 2;
}
@media screen and (max-width: 768px) {
    #vision {
        padding: 40px 0;
    }
    #vision .main-block {
        flex-direction: column;
    }
    #vision .image {
        width: 100%;
        margin-bottom: 20px;
    }
    #vision .txt {
        width: 100%;
        margin-top: 0;
    }
    #vision .image img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }
    #vision .txt h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }
    #vision .txt h2::after {
        bottom: -15px;
        height: 3px;
        width: 60px;
    }
    #vision .txt p {
        line-height: 2;
        font-size: 14px;
    }

}

#thought {
    padding: 80px 0;
    background-color: #F8FAFC;
}
#thought .ttl {
    margin-bottom: 40px;
    text-align: center;
}
#thought .ttl h2 {
    font-size: 24px;
    margin-bottom: 5px;
}
#thought .image {
    margin-bottom: 40px;
}
#thought .image img {
    width: 100%;
}
#thought .discription {
    text-align: center;
    line-height: 2;
}
@media screen and (max-width: 768px) {
    #thought {
        padding: 40px 0;
    }
    #thought .discription {
        font-size: 14px;
        line-height: 1.8;
    }
}

#info {
    background-color: #fff;
    padding: 80px 0;
}
#info .ttl,
#access .ttl {
    border-bottom: 1px solid #F5F5F7;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
#info .ttl h2,
#access .ttl h2 {
    font-size: 24px;
}
#info .ttl p,
#access .ttl p {
    color: #CCC;
}
#info table {
    width: 100%;
}
#info table th {
    text-align: left;
    padding: 20px 5px;
    border-bottom: 1px solid #F5F5F7;
    vertical-align: top;
}
#info table td {
    text-align: left;
    padding: 20px 5px;
    border-bottom: 1px solid #F5F5F7;
}
@media screen and (max-width: 768px) {
    #info {
        padding: 40px 0;
    }
    #info table tr {
        display: flex;
        flex-direction: column;
        font-size: 14px;
    }
    #info table th {
        text-align: left;
        padding: 20px 5px 0 5px;
        border-bottom: none;
        vertical-align: top;
        font-size: 14px;
    }
}

#access {
    padding: 80px 0;
    background-color: #F8FAFC;
}
#access .ttl {
    border-bottom: 1px solid #CCC;
    margin-bottom: 40px;
}
#access h3 {
    display: flex;
    align-items: center;
}
#access h3 img {
    margin-right: 5px;
}
#access .txt {
    width: 45%;
}
#access .box {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    margin-bottom: 20px;
}
#access .box ul {
    margin-bottom: 20px;
}
#access .box li {
    display: flex;
    align-items: center;
    line-height: 2;
}
#access .box li img {
    margin-right: 5px;
}
#access .box ul:last-child {
    margin-bottom: 0;
}
#access .contents {
    display: flex;
    justify-content: space-between;
}
#access .contents .map {
    display: block;
    text-align: center;
    border: 2px solid #26B0B0;
    border-radius: 5px;
    color: #26B0B0;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
    width: 100%;
}
#access .contents .frame {
    width: 50%;
}
#access .contents .frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 2px solid #26B0B0;
}
@media screen and (max-width: 768px) {
    #access {
        padding: 40px 0;
    }
    #access .txt {
        width: 100%;
        margin-bottom: 20px;
    }
    #access .box li img {
        margin-right: 5px;
    }
    #access .contents {
        flex-direction: column;
    }
    #access .contents .frame {
        width: 100%;
    }
    #access .contents .frame iframe {
        width: 100%;
        aspect-ratio: 16 / 9;
        border: 2px solid #26B0B0;
    }

}