@charset "UTF-8";

/* ==============================================
 * BASE — リセット・タイポグラフィ
 * ============================================== */

html *,
::before,
::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    color: #1A1A1A;
    overflow-x: hidden;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    margin: 0 auto;
    animation: fadeIn 0.6s ease 0s 1 normal;
    letter-spacing: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

h1, h2, h3, h4, h5, h6, th, strong {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 1em;
    font-weight: 400;
}

h2 {
    font-size: 29px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 80px;
}

p {
    color: #4D4C4C;
    line-height: 1.9;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    opacity: 0.5;
}

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

img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: top;
}

table {
    width: 100%;
}

.hidden {
    display: none;
}

.subh2 {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1024px) {
    h2 {
        margin-bottom: 30px;
        font-size: 22px;
    }
    html {
        font-size: 15px;
    }
}

/* ==============================================
 * HEADER
 * ============================================== */

.header-inner {
    padding-top: 30px;
    padding-bottom: 30px;
}

.header-line1 {
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
    align-items: center;
}

.contactBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
    width: 160px;
    height: 36px;
    border-radius: 18px;
    background: #fff;
}

.header-line2 {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
    align-items: center;
}

.header-left2 {
    height: 60px;
    width: auto;
}

.header-right2 {
    width: 70%;
    height: 100%;
    margin-right: 40px;
}

.header-right2 .header-menu {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin: 0;
    font-weight: 700;
}

.header-menu-item {
    position: relative;
    padding-bottom: 10px;
}

.header-menu-item a {
    padding: 0 15px;
}

.header-menu-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 16px;
    background: #fff;
    margin: auto;
}

/* ロゴ + 社名 横並び（ヘッダー） */
.header-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-logo-wrap img {
    height: 52px;
    width: auto;
    border-radius: 8px;
    display: block;
    flex-shrink: 0;
}

.header-logo-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    white-space: nowrap;
    line-height: 1.3;
}

/* モバイルメニュー */
@media only screen and (max-width: 1024px) {
    .header-inner {
        padding-top: 10px;
        padding-bottom: 10px;
        margin: 0;
    }
    .header-line1 {
        font-size: 12px;
        padding-left: 20px;
        padding-right: 20px;
        align-items: baseline;
    }
    .header-line2 {
        margin-top: 15px;
        padding-left: 20px;
        padding-right: 20px;
        align-items: baseline;
    }
    .header-right1,
    .header-right2 {
        display: none;
    }
    .header-left2 img {
        height: 23px;
        width: auto;
    }
    .header-logo-wrap img {
        height: 38px;
    }
    .header-logo-name {
        font-size: 13px;
    }
    .header-mobile-btn {
        width: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 36px;
        font-weight: 700;
        line-height: 1;
        border-radius: 25px;
        cursor: pointer;
        box-sizing: border-box;
    }
    .header-mobile-menu {
        position: fixed;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        padding: 50px 20px;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        visibility: hidden;
        transition: .5s .5s ease-in-out;
        color: #fff;
    }
    .header-mobile-menu::before {
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        transition: .5s .5s ease-in-out;
        z-index: -1;
    }
    .header-mobile-menu.active {
        visibility: visible;
        transition: all .5s ease-in-out;
    }
    .header-mobile-menu.active::before {
        width: 100%;
        transition: all .5s ease-in-out;
    }
    .header-mobile-menu.active .header-mobile-menu-inner {
        opacity: 1;
        transform: translateX(0);
        transition: .5s .5s ease-in-out;
    }
    .header-mobile-mf {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        margin-bottom: 30px;
    }
    .header-mobile-close {
        font-size: 50px;
        line-height: 1;
        cursor: pointer;
    }
    .header-mobile-menu-inner {
        opacity: 0;
        transform: translateX(30px);
        transition: all .5s ease-in-out;
    }
    .header-mobile-menu-inner > ul {
        padding-left: 0;
    }
    .header-mobile-menu-inner ul li {
        margin-bottom: 20px;
    }
    .header-mobile-menu-inner ul li a {
        font-size: 25px;
        font-weight: 500;
        display: block;
    }
    .header-mobile-menu .contactBtn {
        width: 100%;
        margin-top: 50px;
        height: 60px;
    }
}

/* ==============================================
 * HERO（トップページ）
 * ============================================== */

.main {
    height: auto;
}

.main-inner {
    display: flex;
    padding-left: 85px;
}

.main-left {
    width: 48%;
    padding-right: 100px;
}

.main-right {
    width: 52%;
}

.main-topimg {
    border-right: none;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    height: auto;
}

.main-text {
    font-weight: 900;
    line-height: 1.5;
}

.main-btns {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 20px;
}

.main-btn1,
.main-btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

@media only screen and (max-width: 1024px) {
    .main-inner {
        flex-direction: column-reverse;
        padding-left: 20px;
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .main-right {
        width: 100%;
    }
    .main-left {
        width: 100%;
        margin-top: 20px;
        text-align: center;
        padding: 20px 0 0 0;
    }
    .main-left-inner {
        padding-right: 20px;
    }
    .main-left-inner p {
        text-align: left;
    }
    .main-left h2 {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .main-btns {
        flex-direction: column;
    }
}

/* ==============================================
 * FOOTER
 * ============================================== */

.footer-section {
    margin-top: 0;
    margin-bottom: 0;
}

.footer-inner {
    text-align: left;
    padding-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-left {
    width: 50%;
}

.footer-hon {
    margin-top: 14px;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.footer-right {
    width: 50%;
    display: flex;
    justify-content: space-around;
}

.footer-corp {
    width: 100%;
    margin-top: 50px;
    padding: 20px 80px;
    text-align: center;
}

/* ロゴ + 社名 横並び（フッター） */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-wrap img {
    height: 46px;
    width: auto;
    border-radius: 8px;
    display: block;
    flex-shrink: 0;
}

.footer-logo-wrap span {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

@media only screen and (max-width: 1024px) {
    .footer-inner {
        padding: 30px 20px 0 20px;
    }
    .footer-flex {
        flex-direction: column;
        align-items: center;
    }
    .footer-left {
        width: 100%;
    }
    .footer-right {
        width: 100%;
        margin-top: 30px;
        justify-content: space-between;
    }
    .footer-corp {
        padding: 20px;
    }
}

/* ==============================================
 * ABOUT
 * ============================================== */

.about-section {
    margin-top: 120px;
    padding: 0 60px;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-flex {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.about-card {
    flex: 1;
    border-radius: 16px;
    padding: 36px 28px 40px;
    text-align: left;
}

.about-icon {
    font-size: 32px;
    margin-bottom: 18px;
    display: block;
}

.about-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.about-card p {
    font-size: 13px;
    line-height: 1.85;
}

@media only screen and (max-width: 1024px) {
    .about-section {
        margin-top: 60px;
        padding: 0 20px;
    }
    .about-flex {
        flex-direction: column;
        gap: 16px;
    }
}

/* ==============================================
 * BRANDS
 * ============================================== */

.brands-section {
    margin-top: 100px;
    padding: 80px 60px;
}

.brands-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.brands-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.brand-category-item {
    border-radius: 8px;
    padding: 10px 24px;
}

.brand-category-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.brand-tag {
    display: inline-block;
    border-radius: 6px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 500;
}

.brands-note {
    margin-top: 28px;
    font-size: 12px;
}

@media only screen and (max-width: 1024px) {
    .brands-section {
        margin-top: 60px;
        padding: 50px 20px;
    }
}

/* ==============================================
 * RESULTS
 * ============================================== */

.results-section {
    margin-top: 100px;
    padding: 0 60px;
}

.results-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.results-lead {
    font-size: 14px;
    margin-top: -30px;
    margin-bottom: 44px;
}

.results-flex {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.results-card {
    flex: 1;
    display: block;
    border-radius: 20px;
    padding: 44px 28px;
    text-align: center;
    text-decoration: none;
    color: #1A1A1A;
}

.results-platform-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.results-platform-sub {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.results-status {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.results-url {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

@media only screen and (max-width: 1024px) {
    .results-section {
        margin-top: 60px;
        padding: 0 20px;
    }
    .results-flex {
        flex-direction: column;
        gap: 16px;
    }
    .results-lead {
        margin-top: 0;
        margin-bottom: 28px;
    }
}

/* ==============================================
 * MERIT
 * ============================================== */

.merit-section {
    margin-top: 100px;
    padding: 90px 60px;
    position: relative;
    overflow: hidden;
}

.merit-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.merit-flex {
    display: flex;
    gap: 24px;
}

.merit-card {
    flex: 1;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;
}

.merit-num {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.merit-num::after {
    content: "";
    display: block;
    flex: 1;
    height: 1px;
}

.merit-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.5;
}

.merit-card p {
    font-size: 13px;
    line-height: 1.85;
}

@media only screen and (max-width: 1024px) {
    .merit-section {
        margin-top: 60px;
        padding: 60px 20px;
    }
    .merit-flex {
        flex-direction: column;
        gap: 16px;
    }
}

/* ==============================================
 * CTA
 * ============================================== */

.cta-section {
    padding: 110px 60px;
}

.cta-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner h2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.65;
    margin-bottom: 20px;
}

.cta-inner p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 44px;
}

.cta-btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    padding: 20px 64px;
    border-radius: 50px;
    letter-spacing: 0.06em;
    border: 2px solid;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.cta-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
}

@media only screen and (max-width: 1024px) {
    .cta-section {
        padding: 60px 20px;
    }
    .cta-inner h2 {
        font-size: 22px;
    }
    .cta-btn {
        display: block;
        padding: 18px 24px;
        text-align: center;
    }
}
