@charset 'utf-8';

@import "global.css";

/* デザインシステム - CSS変数 */
:root {
    /* カラーパレット */
    --color-primary: #ff891c;
    --color-secondary: #143159;
    --color-accent-blue: #0097b2;
    --color-accent-purple: #cb6ce6;
    --color-text-dark: #333;
    --color-text-gray: #666;
    --color-white: #fff;
    --color-bg-gray: #f9f9f9;
    --color-bg-orange: #ffead6;
    --color-bg-dark: #464c4e;

    /* フォントサイズ */
    --font-xl: 48px;
    /* h1 */
    --font-lg: 32px;
    /* h2 */
    --font-md: 28px;
    /* h3 */
    --font-sm: 22px;
    /* 大きめテキスト */
    --font-base: 16px;
    /* 基本テキスト */
    --font-xs: 14px;
    /* 小さいテキスト */

    /* スペーシング */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 40px;
    --space-2xl: 50px;
    --space-3xl: 80px;
    --space-4xl: 100px;
    --space-5xl: 130px;

    /* レイアウト */
    --container-width: 1100px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;

    /* シャドウ */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ対応のフォントサイズ */
@media (max-width: 768px) {
    :root {
        --font-xl: 32px;
        --font-lg: 28px;
        --font-md: 24px;
        --font-sm: 18px;
        --font-base: 14px;
        --space-5xl: 50px;
        --space-4xl: 50px;
        --space-3xl: 40px;
    }
}

/* ハイパーリンクの下線なし */
a.no-underline {
    text-decoration: none !important;
}

a.underline {
    text-decoration: underline !important;
}

a.no-underline:hover,
a.no-underline:visited,
a.no-underline:active,
a.no-underline:focus {
    text-decoration: none !important;
}

/* PC/SP表示切替 */
.pc {
    display: flex !important;
}

.sp {
    display: none !important;
}

@media (max-width: 768px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .sp.separator {
        display: flex !important;
    }
}

/* 基本レイアウト */
main {
    padding: 0;
    margin: 0 auto;
}

/* 統一されたタイポグラフィ */
h1 {
    font-size: var(--font-xl);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

h2 {
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

h2.sec-title {
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
    text-decoration-thickness: 3px;
    text-underline-offset: var(--space-xs);
    margin-bottom: var(--space-2xl);
}

h2.orange {
    color: var(--color-primary);
}

h3 {
    font-size: var(--font-md);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

h3.white {
    color: var(--color-white);
}

p {
    font-weight: 400;
    font-size: var(--font-base);
    line-height: 1.6;
    margin: 0;
}

p.left {
    text-align: left;
}

p.center {
    text-align: center;
}

p.sec-desc {
    font-weight: 600;
    font-size: var(--font-sm);
    line-height: 1.8;
    text-align: center;
}

p.sec-desc-sub {
    font-weight: 400;
    font-size: var(--font-xs);
    line-height: 1.8;
    text-align: center;
}

/* リストの左寄せ */
.left ul {
    text-align: left;
    padding-left: 0;
    margin: 0;
}

.left ul li {
    text-align: left;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

/* 統一されたセクション */
section {
    width: 100%;
    padding: var(--space-5xl) 0;
    margin: 0 auto;
    text-align: center;
}

section.sec-bg-gray {
    background-color: var(--color-bg-gray);
}

section.sec-bg-orange {
    background-color: var(--color-bg-orange);
}

@media (max-width: 768px) {
    section {
        padding: var(--space-2xl) 0;
    }
}

/* 統一されたボタン */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-base);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: var(--space-xs);
    border: 2px solid transparent;
}

.btn-orange-fill {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-orange-fill:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-orange-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-orange-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-gray-outline {
    background-color: transparent;
    color: var(--color-text-gray);
    border-color: var(--color-text-gray);
}

.btn-gray-outline:hover {
    background-color: var(--color-text-gray);
    color: var(--color-white);
}

/* 統一されたコンテナ */
.content-container {
    width: var(--container-width);
    min-width: var(--container-width);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

@media (max-width: 768px) {
    .content-container {
        width: 100%;
        min-width: auto;
        max-width: auto;
        padding: 0 var(--space-sm);
    }
}

/* 統一されたレイアウト */
.layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

/*************/
/* header */
/*************/
header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-light);
}

header .menu-area {
    min-width: var(--container-width);
    height: 90px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--space-xl);
    background-color: var(--color-white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .logo {
    z-index: 1001;
}

header .logo img {
    height: 50px;
}

header .menu-bar {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

header .item {
    font-weight: 400;
}

header .client {
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 768px) {
    header .menu-area {
        min-width: auto;
        padding: 0 8px;
    }
}

/*************/
/* hamburger */
/*************/
#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #143159;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* デスクトップ表示 */
.menu {
    display: flex;
    flex-direction: row;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    list-style: none;
}

.menu li a {
    text-decoration: none;
    color: #143159;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.menu li a:hover {
    color: #ff891c;
}

/* モバイル表示 */
@media (max-width: 768px) {
    header .menu-area {
        min-width: auto;
    }

    .hamburger {
        display: flex;
    }

    .menu {
        position: fixed;
        left: 0;
        top: -100%;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: top 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
        padding: 2rem 0;
        z-index: 999;
    }

    .menu li {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu li:last-child {
        border-bottom: none;
    }

    .menu li a {
        display: block;
        font-size: 1.2rem;
        padding: 0.5rem 0;
    }

    #menu-toggle:checked~.menu {
        top: 90px;
    }

    #menu-toggle:checked~.hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    #menu-toggle:checked~.hamburger span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked~.hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}


/*************/
/* main-view */
/*************/
.main-view-container {
    width: 100%;
    background: linear-gradient(to right, #e0fbff 0%, #ffffff 100%);
    padding: var(--space-4xl) 0;
}

.main-view-container .layout {
    display: flex;
    flex-direction: row;
    align-items: end;
    margin: 0 auto;
    width: var(--container-width);
    position: relative;
    gap: var(--space-xl);
}

.main-view-area {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--space-lg);
}

.main-view-container .text-area {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.main-view-container .text1 {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-size: var(--font-xl);
    font-weight: 600;
    line-height: 1.3;
}

.main-view-container .text2 {
    font-size: var(--font-md);
    font-weight: 500;
}

.main-view-container .btn-area {
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
}

.main-view-container .btn1,
.main-view-container .btn2 {
    font-size: var(--font-sm);
    padding: var(--space-sm) var(--space-lg);
}

.main-view-container .img-area {
    position: absolute;
    right: 0;
}

@media (max-width: 768px) {
    .main-view-container {
        height: auto;
        padding: 50px 0;
    }

    .main-view-container .layout {
        width: auto;
        padding: 0 8px;
    }

    .main-view-area {
        width: auto;
    }

    .main-view-container .text-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .main-view-container .text1 {
        text-align: center;
    }

    .main-view-container .text11 {
        font-size: 0.8em;
        padding: 12px 0;
    }

    .main-view-container .text12 {
        font-size: 0.9em;
        padding: 12px 0;
    }

    .main-view-container .btn-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

/*************/
/* content-container */
/*************/
.content-container {
    width: 1100px;
    min-width: 1100px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .content-container {
        width: 100%;
        min-width: auto;
        max-width: auto;
        padding: 0 8px;
    }
}

/*************/
/* best-seller */
/*************/
.best-seller {
    width: 100%;
}

.best-seller .layout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.best-seller .left {
    width: 800px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
}

.best-seller .left .text3 {
    font-size: 20px;
    font-weight: 400;
    text-align: left;
}

.best-seller .left .info ul li {
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    /* 垂直中央揃え */
    gap: 10px;
    /* 画像と文字の間隔 */
}

.best-seller .left .text4 {
    font-size: 20px;
}

.best-seller .left .text5 {
    font-size: 14px;
    font-weight: 400;
}

.best-seller .left .text6 {
    font-size: 18px;
    font-weight: 400;
}

.best-seller .left .info {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 16px;
    border-left: 10px solid #ff891c;
}

.best-seller .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.best-seller .right .btn-amazon {
    text-align: center;
}

.best-seller .right .btn-amazon .title {
    font-size: 18px;
    font-weight: 600;
}

.best-seller .right .btn-amazon .sub-title {
    font-size: 12px;
}

@media (max-width: 768px) {
    .best-seller .layout {
        flex-direction: column;
        gap: 40px;
    }

    .best-seller .left {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .best-seller .left .text3 {
        font-size: 16px;
    }

    .best-seller .left .info ul li {
        padding-top: 5px;
        padding-bottom: 5px;
        display: flex;
        align-items: center;
        /* 垂直中央揃え */
        gap: 10px;
        /* 画像と文字の間隔 */
    }

    .best-seller .left .text4 {
        font-size: 16px;
    }

    .best-seller .left .text5 {
        font-size: 12px;
    }

    .best-seller .left .text6 {
        font-size: 18px;
    }
}

/*************/
/* event-info */
/*************/
.event-info {
    width: 100%;
}

.event-info .layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.event-info .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}



/* .event-info .img1 - スタイル不要のため削除 */

.event-info .btn1 {
    width: 300px;
}

@media (max-width: 768px) {}

/*************/
/* career3 */
/*************/
.career3 {
    display: flex;
    flex-direction: column;
}

.career3 .panels {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.career3 .layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}


.career3 .panels .panel-base {
    width: 300px;
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.career3 .panels .panel-orange {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 330px;
    height: 400px;
    border-radius: var(--border-radius-sm);
    padding: var(--space-sm);
    background: linear-gradient(135deg, #fb8a31 0%, #ffb240 100%);
}

.career3 .panels .panel {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-text-gray);
    border-radius: var(--border-radius-sm);
    padding: var(--space-lg);
    background-color: var(--color-white);
}

.career3 .panels .separator {
    text-align: center;
    padding: 0 var(--space-sm);
    font-size: 36px;
    font-weight: 800;
    color: #ff891c;
}

.career3 .panels .title-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.career3 .panels .sub-title {
    font-size: 14px;
    color: #666;
}

.career3 .panels .title {
    font-size: 20px;
}

.career3 .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.career3 .panels .icon-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.career3 .panels .icon-img {
    height: 48px;
}

.career3 .panels .icon-text {
    font-size: 20px;
    font-weight: 600;
    color: #ff891c
}

.career3 .anxiety {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}


.career3 .anxiety .text2 {
    font-weight: 600;
}

.career3 .anxiety .check {
    width: 30px;
    height: 30px;
}

.career3 .anxiety .list1 ul li {
    font-size: 26px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    /* 垂直中央揃え */
    gap: 10px;
}

.career3 .next-mark {
    padding: 50px 0;
}

.career3 .anxiety .text3 {
    font-size: 36px;
}

.career3 .anxiety .circles {
    padding: 30px 0;
}

.career3 .anxiety .panels {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 28px;
}

.career3 .anxiety .panel {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 35px;
    padding: 40px 25px;
    height: 340px;
}

.career3 .anxiety .panel .title {
    font-size: 28px;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.career3 .anxiety .panel .title.orange {
    color: #ff891c;
}

.career3 .anxiety .panel .title.blue {
    color: #0097b2;
}

.career3 .anxiety .panel .title.purple {
    color: #cb6ce6;
}

.career3 .anxiety .panel.orange {
    border: 3px solid #ff891c;
}

.career3 .anxiety .panel.blue {
    border: 3px solid #0097b2;
}

.career3 .anxiety .panel.purple {
    border: 3px solid #cb6ce6;
}

.career3 .anxiety .panel ul li {
    font-size: 18px;
    font-weight: 400;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    align-items: start;
    gap: 8px;
}

.career3 .anxiety .panel .check-label {
    font-weight: 600;
}

.career3 .anxiety .text5 {
    font-size: 20px;
    text-align: center;
}


@media (max-width: 768px) {
    .career3 .panels {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    .career3 .panels .panel-base {
        width: 100%;
        height: auto;
    }

    .career3 .panels .panel-orange {
        width: 100%;
        height: auto;
    }

    .career3 .anxiety .list1 ul li {
        font-size: 18px;
    }

    .career3 .anxiety .text3 {
        font-size: 28px;
    }

    .career3 .anxiety .circles {
        padding: 0 0;
    }

    .career3 .anxiety .panels {
        flex-direction: column;
        align-items: start;
        gap: 24px;
    }

    .career3 .anxiety .panel {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 24px;
        padding: 32px 20px;
        height: auto;
    }

    .career3 .anxiety .panel .title {
        width: 100%;
        text-align: center;
        font-size: 28px;
    }

}

/*************/
/* recommend */
/*************/
.recommend {
    width: 100%;
}

.recommend .layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.recommend .panels {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 80px;
}

.recommend .panel {
    width: 280px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}


.recommend .panel .text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.recommend .panel .title {
    font-size: 20px;
}

@media (max-width: 768px) {
    .recommend .panels {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .recommend .panel {
        gap: 20px;
        width: 100%;
        height: auto;
    }
}

/*************/
/* feature */
/*************/
.feature {
    width: 100%;
}

.feature .layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.feature .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.feature .content .text1 {
    width: 100%;
    text-align: center;
    font-size: 22px;
}

.feature .panels {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 40px;
}

.feature .panels .panel {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 40px 40px;
    gap: 32px;
    height: 398px;
    width: 420px;
    background: #fff;
    border-radius: 8px;
}

.feature .panels .head-no {
    font-size: 38px;
    text-align: left;
}

.feature .panels .head-title {
    font-size: 16px;
    padding-left: 8px;
}

.feature .panels .title {
    font-size: 20px;
    color: #ff891c;
    text-align: left;
    height: 2em;
}


.feature .process {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-top: 100px;
}

.feature .process .title {
    font-size: 26px;
}

.feature .process .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.feature .process .content .panel {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px 0;
    gap: 40px;
}

.feature .process .content .panel:before {
    transform: skewX(-20deg);
    content: "";
    /*ボックスを作る*/
    position: absolute;
    /*ポジションで中央に配置*/
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    /* 親要素の後ろに来るように-1 */
    background-color: #fff;
}

.feature .process .content .panel .icon {
    position: absolute;
    left: -10px;
}

.feature .process .content .panel .title-area {
    width: 400px;
    text-align: left;
    padding-left: 84px;
    display: flex;
    flex-direction: row;
    justify-content: start;
}

.feature .process .content .panel .title {
    font-size: 26px;
}

.feature .process .content .panel .text1 {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
}

@media (max-width: 768px) {
    .feature .content .text1 {
        font-size: 20px;
    }

    .feature .panels {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .feature .panels .panel {
        display: flex;
        flex-direction: column;
        padding: 24px 24px;
        gap: 24px;
        height: auto;
        width: 100%;
    }


    .feature .process {
        padding-top: 50px;
    }

    .feature .process .content .panel {
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding: 24px 0;
        gap: 40px;
    }

    .feature .process .content .panel .title-area {
        width: 100%;
    }

    .feature .process .content .panel .title {
        font-size: 24px;
    }

    .feature .process .content .panel .text1 {
        padding: 0 16px;
    }
}

/*************/
/* consultant */
/*************/
.consultant {
    width: 100%;
}

.consultant .layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.consultant .panels {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 160px;
}

.consultant .panel {
    width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.consultant .panel .text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.consultant .panel .title {
    font-size: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.consultant .panel .sub-title {
    font-size: 14px;
}



.consultant .panel .text2 {
    color: #0097b2;
}

@media (max-width: 768px) {
    .consultant .panels {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 80px;
    }

    .consultant .panel {
        width: 100%;
    }

    .consultant .panel .text2 {
        text-align: center;
    }
}

/*************/
/* black-belt */
/*************/
.black-belt {
    width: 100%;
    background: #464c4e;
    padding: 80px 0;
}

.black-belt .layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;

}

.black-belt .text1 {
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.black-belt .btn1 {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/*************/
/* company */
/*************/
.company {
    width: 100%;
}

.company .layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.company .logo {
    width: 400px;
}

.company .text1 {
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.company .text1 .text1-red {
    color: #d43437;
}

.company .desc1 {
    font-size: 18px;
}

.company .text2 {
    width: 800px;
    padding: 20px 0;
}

.company .about a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .company .layout {
        gap: 32px;
    }

    .company .logo {
        width: 300px;
    }

    .company .text1 {
        text-align: center;
        gap: 12px;
    }

    .company .text2 {
        width: 100%;
        padding: 12px 0;
    }
}

/*************/
/* tokuya */
/*************/
.tokuya {
    width: 100%;
}

.tokuya .layout {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 36px;
}

.tokuya .left {
    width: 400px;
}

.tokuya .right {
    width: 550px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 40px;
}

.tokuya .right .title {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.tokuya .right .text1 {
    font-size: 32px;
}

.tokuya .right .text1-sub {
    font-size: 16px;
    padding-left: 20px;
}

.tokuya .right .text2 {
    font-size: 16px;
}

.tokuya .right .desc {
    width: 100%;
    flex: 1;
}

.tokuya .right .bg-gray {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    background: #f9f9f9;
    gap: 20px;
    text-align: left;
}

.tokuya .right .bg-gray ul li {
    list-style-type: disc;
    margin-left: 30px;
}

@media (max-width: 768px) {
    .tokuya .layout {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .tokuya .left {
        width: 100%;
        padding: 0 50px;
    }

    .tokuya .right {
        width: 100%;
        gap: 20px;
    }

    .tokuya .right .title {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .tokuya .right .text1 {
        font-size: 28px;
        display: flex;
        flex-direction: column;
    }

    .tokuya .right .desc {
        width: 100%;
        flex: 1;
    }

    .tokuya .right .text1-sub {
        width: 100%;
        font-size: 16px;
        padding-left: 0;
    }

    .tokuya .right .text2 {
        font-size: 16px;
    }

    .tokuya .right .bg-gray {
        gap: 10px;
    }
}

/*********/
/* career-form */
/*********/
.career-form {
    width: 100%;
}

.career-form .layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}


.career-form .webpart {
    width: 100%;
    max-width: 100%;
    padding: 40px 40px;
    background: #fff;
}



@media (max-width: 768px) {
    /* .career-form .webpart - スタイル不要のため削除 */


}

/*********/
/* footer */
/*********/
footer {
    width: 100%;
    background: var(--color-bg-dark);
    color: var(--color-white);
}

footer .layout {
    padding: var(--space-3xl) 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--space-2xl);
}

footer .left {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: var(--space-5xl);
}

footer .left .text-area {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

footer .left .text-area .title {
    font-size: var(--font-sm);
    font-weight: 600;
}

footer .left .text-area .desc {
    font-size: var(--font-xs);
    font-weight: 400;
    line-height: 1.6;
}

footer .right {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 48px;
}

footer .right .title {
    font-size: 24px;
}

footer .right .text-area {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 24px;
}

footer .right .items {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

footer .copy {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 64px;
}

@media (max-width: 768px) {
    footer .layout {
        width: 100%;
        padding: 60px 0;
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: 30px;
    }

    footer .left {
        width: 100%;
    }

    footer .right {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: 24px;
    }

    footer .right .text-area {
        gap: 12px;
    }

    footer .right .title {
        gap: 16px;
        font-size: 16px;
    }

    footer .right .items {
        flex-direction: row;
        font-size: 14px;
        gap: 16px;
    }
}