@charset "utf-8";

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #001738;
    background-color: var(--brand-page-bg);
    letter-spacing: 0.1em;
}

img {
    max-width: 100%;
}

/* Header */
#header {
    font-family: "Noto Sans JP", serif;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    color: #fff;
}

.header_inner {
    max-width: 1200px;
    height: 160px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header_logo {
    display: block;
    width: 200px;
    transition: all 0.2s ease;
}

.header_logo:hover {
    opacity: 0.6;
}

.header_site_menu {
    margin-left: 26%;
}

.header_site_menu a {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header_site_menu ul {
    display: flex;
}

.header_site_menu ul li {
    padding: 0 14px;
}

.header_language a {
    font-size: 1.4rem;
}

/* Hero Section */
.hero_section {
    position: relative;
    height: 400px;
    background: linear-gradient(180deg, var(--brand-cyan) 0%, var(--brand-aqua) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero_content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.hero_content h1 {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero_content p {
    font-size: 2.4rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Container */
#container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 20px;
}

.loading {
    text-align: center;
    padding: 60px;
    font-size: 1.8rem;
    color: #666;
}

/* Service Section */
.service_section {
    background: #fff;
}

.service_section.service_alt {
    background: var(--brand-page-bg);
}

.service_content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service_content.reverse {
    flex-direction: row-reverse;
}

.service_info {
    flex: 1;
}

.service_info h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #001738;
}

.service_subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: #666;
    margin-top: 8px;
}

.service_short {
    font-size: 2rem;
    font-weight: 600;
    color: var(--brand-emerald);
    margin-bottom: 30px;
}

.service_description {
    font-size: 1.8rem;
    line-height: 2;
    color: #333;
    margin-bottom: 30px;
}

.service_btn {
    display: block;
    width: max-content;
    min-width: 180px;
    margin-left: auto;
    margin-right: auto;
    background: var(--brand-cyan);
    color: #fff;
    padding: 16px 50px;
    border-radius: 30px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

.service_btn:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
}

.service_image {
    flex: 0 0 400px;
}

.service_image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features_section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.features_section h3 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature_card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service_alt .feature_card {
    background: #fff;
}

.feature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature_icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature_card h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #001738;
}

.feature_card p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
}

/* Footer Contact */
.footer_contact {
    font-family: "Noto Sans JP", serif;
    text-align: center;
    padding: 80px 0;
}

.section_title {
    font-family: "Noto Sans JP", sans-serif;
    display: inline-block;
    font-size: 5rem;
    text-align: center;
    border-bottom: solid 6px var(--brand-emerald);
    padding-bottom: 6px;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.footer_contact_lead {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.2em;
    margin: 40px 0;
}

.footer_contact_btn {
    display: inline-block;
    border: none;
    font-size: 2.4rem;
    font-weight: 800;
    padding: 24px 90px;
    border-radius: 40px;
    background-color: var(--brand-emerald);
    color: #fff;
    transition: all .2s linear;
}

.footer_contact_btn:hover {
    background-color: var(--brand-gold);
}

/* Footer Detail */
.footer_container {
    background-color: var(--brand-light-blue);
    background-image: linear-gradient(180deg, var(--brand-light-blue) 0%, var(--brand-aqua) 100%);
    border-top-left-radius: 6rem;
    border-top-right-radius: 6rem;
    color: #fff;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    position: relative;
}

.footer_detail {
    padding-top: 40px;
    display: flex;
    justify-content: center;
}

.footer_detail_company {
    font-size: 2rem;
    line-height: 2;
    padding-right: 20px;
}

.company_name {
    font-size: 2.4rem;
    font-weight: 500;
}

.company_address {
    font-size: 1.8rem;
    font-weight: 300;
}

.company_tel {
    padding-top: 30px;
}

.footer_nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
}

.footer_logo {
    display: block;
    width: 200px;
}

.footer_site_menu {
    padding-top: 40px;
}

.footer_site_menu ul {
    display: flex;
}

.footer_site_menu ul li {
    padding: 0 12px;
}

.footer_site_menu a {
    font-size: 1.8rem;
    padding-bottom: 4px;
    transition: all 0.2s;
}

.footer_site_menu a:hover {
    color: var(--brand-gold);
}

.policy {
    font-size: 1.6rem;
    padding-top: 20px;
    transition: all 0.2s;
}

.policy:hover {
    color: var(--brand-gold);
}

hr {
    width: 860px;
    margin: 0 auto;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #D3D3D3;
}

.footer_bottom_p {
    padding-top: 20px;
    padding-bottom: 100px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 300;
}

.page_top {
    box-sizing: border-box;
    position: fixed;
    right: 45px;
    bottom: 75px;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 60px;
    height: 60px;
    border: 2px solid var(--brand-page-bg);
    border-radius: 50%;
    background-color: var(--brand-emerald);
    transition: .3s ease-in-out;
}

.page_top::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--brand-page-bg);
    border-right: 2px solid var(--brand-page-bg);
    transform: rotate(-45deg);
    left: 17px;
    bottom: 10px;
}

.page_top:hover {
    background-color: var(--brand-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .service_content,
    .service_content.reverse {
        flex-direction: column;
    }

    .service_image {
        flex: 0 0 auto;
        width: 100%;
    }

    .features_grid {
        grid-template-columns: 1fr;
    }

    .hero_content h1 {
        font-size: 4rem;
    }
}
