/*
Theme Name: kitanihonkakou
Author: User
Description: Custom theme for kitanihonkakou
Version: 1.0.0
*/

/* ==========================================================================
   Foundation - リセット・基本設定
   ========================================================================== */

/*
 * リキッドレイアウト
 * html font-sizeをvwで可変にすることで、rem単位で統一
 * 基準: 1rem = 10px
 * 1366px以上: 62.5% (10px)
 * 768px〜1366px: 0.732vw (1366pxで10px)
 * 768px以下: 2.6667vw (375pxで10px)
 */

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

html {
    font-size: 62.5%;
}

@media screen and (max-width: 1366px) {
    html {
        font-size: 0.732vw;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 2.6667vw;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

body.is-menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p {
    margin: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ==========================================================================
   Layout - レイアウト
   ========================================================================== */

/* コンテナ */
.l-container {
    max-width: 110rem;
    margin: 0 auto;
    padding: 0 2rem;
}

@media screen and (min-width: 1366px) {
    .l-container {
        max-width: 110rem;
        padding: 0 2rem;
    }
}

@media screen and (max-width: 768px) {
    .l-container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
}

/* ヘッダー */
.l-header {
    background-color: #fff;
    position: relative;
    z-index: 100;
}

@media screen and (max-width: 768px) {
    .l-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
}

.l-header__inner {
    max-width: 120rem;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width: 1366px) {
    .l-header__inner {
        max-width: 120rem;
        padding: 1.5rem 4rem;
    }
}

@media screen and (max-width: 768px) {
    .l-header__inner {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }
}

/* メインコンテンツ */
.l-main {
    padding-bottom: 5.5rem;
}

@media screen and (max-width: 768px) {
    .l-main {
        padding-top: 6rem;
    }
}

/* フッター */
.l-footer {
    background-color: #DFF2FC;
    padding: 2rem 0;
}

@media screen and (min-width: 1366px) {
    .l-footer {
        padding: 2rem 0;
    }
}

@media screen and (max-width: 768px) {
    .l-footer {
        padding: 1.5rem 0;
    }
}

.l-footer__inner {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width: 1366px) {
    .l-footer__inner {
        max-width: 120rem;
        padding: 0 4rem;
    }
}

@media screen and (max-width: 768px) {
    .l-footer__inner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

/* ==========================================================================
   Component - 汎用コンポーネント
   ========================================================================== */

/* 見出しレベル2 */
.c-heading-lv2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

@media screen and (min-width: 1366px) {
    .c-heading-lv2 {
        font-size: 1.8rem;
        margin-bottom: 3rem;
        padding-left: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .c-heading-lv2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        padding-left: 1.5rem;
    }
}

.c-heading-lv2__icon {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: #00A73C;
}

@media screen and (min-width: 1366px) {
    .c-heading-lv2__icon {
        top: 0.5rem;
        width: 0.8rem;
        height: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .c-heading-lv2__icon {
        top: 0.4rem;
        width: 0.6rem;
        height: 0.6rem;
    }
}

/* 見出しレベル3 */
.c-heading-lv3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #00A73C;
}

@media screen and (min-width: 1366px) {
    .c-heading-lv3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .c-heading-lv3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }
}

/* 見出し - 縦バー付き */
.c-heading-bar {
    font-size: 3.2rem;
    font-weight: 700;
    color: #333;
    padding-left: 2rem;
    margin-bottom: 3rem;
    border-left: 1rem solid #00A73C;
}

@media screen and (max-width: 768px) {
    .c-heading-bar {
        font-size: 2.4rem;
        padding-left: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* ==========================================================================
   Project - プロジェクト固有のスタイル
   ========================================================================== */

/* ヘッダー */
.p-header__logo {
    flex-shrink: 0;
}

.p-header__logo-link {
    display: block;
}

.p-header__logo-img {
    width: 28rem;
    height: auto;
}

@media screen and (min-width: 1366px) {
    .p-header__logo-img {
        width: 45rem;
    }
}

@media screen and (max-width: 768px) {
    .p-header__logo-link {
        display: flex;
        align-items: center;
    }

    .p-header__logo-img {
        width: 20rem;
    }
}

.p-header__right {
    display: flex;
    align-items: center;
    gap: 4rem;
}

@media screen and (min-width: 1366px) {
    .p-header__right {
        gap: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .p-header__right {
        flex-direction: column;
        align-items: flex-end;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }
}

.p-header__catchphrase {
    text-align: right;
}

.p-header__catchphrase-en {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0.2rem;
}

@media screen and (min-width: 1366px) {
    .p-header__catchphrase-en {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }
}

@media screen and (max-width: 768px) {
    .p-header__catchphrase-en {
        font-size: 1rem;
        display: none;
    }
}

.p-header__catchphrase-ja {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
}

@media screen and (min-width: 1366px) {
    .p-header__catchphrase-ja {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {
    .p-header__catchphrase-ja {
        font-size: 1rem;
        display: none;
    }
}

/* グローバルナビゲーション */
.p-gnav__list {
    display: flex;
    align-items: center;
}

.p-gnav__item {
    position: relative;
}

.p-gnav__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.4rem;
    background-color: #333;
}

.p-gnav__item:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.4rem;
    background-color: #333;
}

.p-gnav__item:last-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.4rem;
    background-color: #333;
}

@media screen and (min-width: 1366px) {

    .p-gnav__item:not(:last-child)::after,
    .p-gnav__item:first-child::before,
    .p-gnav__item:last-child::after {
        height: 1.4rem;
    }
}

@media screen and (max-width: 768px) {

    .p-gnav__item:not(:last-child)::after,
    .p-gnav__item:first-child::before,
    .p-gnav__item:last-child::after {
        height: 1.2rem;
    }
}

.p-gnav__link {
    display: block;
    font-size: 1.6rem;
    color: #333;
    padding: 0.5rem 2rem;
    transition: color 0.3s;
}

@media screen and (min-width: 1366px) {
    .p-gnav__link {
        font-size: 1.6rem;
        padding: 0.5rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .p-gnav__link {
        font-size: 1.2rem;
        padding: 0.5rem 1.2rem;
    }
}

.p-gnav__link:hover {
    color: #00A73C;
}

/* ハンバーガーメニュー */
.p-hamburger {
    display: none;
    position: relative;
    width: 3rem;
    height: 2.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

@media screen and (max-width: 768px) {
    .p-hamburger {
        display: block;
    }

    .p-header__right {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        padding-top: 10rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1001;
        align-items: center;
        justify-content: flex-start;
    }

    .p-header__right.is-open {
        opacity: 1;
        visibility: visible;
    }

    .p-gnav {
        width: 100%;
    }

    .p-gnav__list {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .p-gnav__item {
        border-bottom: none;
        width: 100%;
        text-align: center;
    }

    .p-gnav__item:not(:last-child)::after,
    .p-gnav__item:first-child::before,
    .p-gnav__item:last-child::after {
        display: none;
    }

    .p-gnav__link {
        font-size: 1.8rem;
        padding: 2.5rem 2.5rem;
        display: block;
    }
}

.p-hamburger__line {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.p-hamburger__line:nth-child(1) {
    top: 0;
}

.p-hamburger__line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.p-hamburger__line:nth-child(3) {
    bottom: 0;
}

/* ハンバーガーメニュー開いた状態 */
.p-hamburger.is-open .p-hamburger__line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.p-hamburger.is-open .p-hamburger__line:nth-child(2) {
    opacity: 0;
}

.p-hamburger.is-open .p-hamburger__line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* オーバーレイ */
.p-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.p-overlay.is-open {
    display: block;
}

/* ページタイトル */
.p-page-title {
    background-color: #00A73C;
    padding: 4rem 0;
}

@media screen and (max-width: 768px) {
    .p-page-title {
        padding: 3rem 0;
    }
}

.p-page-title__inner {
    max-width: 110rem;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

@media screen and (min-width: 1366px) {
    .p-page-title__inner {
        max-width: 110rem;
        padding: 0 2rem;
    }
}

.p-page-title__heading {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 1366px) {
    .p-page-title__heading {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-page-title__heading {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
}

.p-page-title__sub {
    font-size: 1.4rem;
    color: #fff;
    opacity: 0.8;
}

@media screen and (min-width: 1366px) {
    .p-page-title__sub {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 768px) {
    .p-page-title__sub {
        font-size: 1.2rem;
    }
}

/* セクション共通 */
.p-section {
    padding: 6rem 0;
}

@media screen and (max-width: 768px) {
    .p-section {
        padding: 4rem 0;
    }
}


/* 代表メッセージ */
.p-message {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.p-message__content {
    padding-left: 6rem;
}

@media screen and (min-width: 1366px) {
    .p-message__content {
        padding-left: 6rem;
    }
}

@media screen and (max-width: 768px) {
    .p-message__content {
        padding-left: 0;
    }
}

.p-message__text {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 1366px) {
    .p-message__text {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-message__text {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
}

.p-message__signature {
    font-size: 1.8rem;
    text-align: right;
    margin-top: 3rem;
}

@media screen and (min-width: 1366px) {
    .p-message__signature {
        font-size: 1.8rem;
        margin-top: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .p-message__signature {
        font-size: 1.6rem;
        margin-top: 2rem;
    }
}

/* 基本理念 */
.p-philosophy {
    background-color: #EBF5EC;
    padding-top: 3rem;
    padding-bottom: 4.5rem;
}

.p-philosophy__list {
    margin-top: 3rem;
    padding-left: 6rem;
}

@media screen and (min-width: 1366px) {
    .p-philosophy__list {
        padding-left: 6rem;
    }
}

@media screen and (max-width: 768px) {
    .p-philosophy__list {
        margin-top: 2rem;
        padding-left: 0;
    }
}

.p-philosophy__item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.p-philosophy__item:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .p-philosophy__item {
        align-items: flex-start;
    }
}

.p-philosophy__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.5rem;
    height: 6.5rem;
    background-color: #00A73C;
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    border-radius: 0.5rem;
    flex-shrink: 0;
    margin-right: 2rem;
}

@media screen and (max-width: 768px) {
    .p-philosophy__number {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 2.4rem;
        margin-right: 1.5rem;
    }
}

.p-philosophy__text {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.8;
    flex: 1;
    padding-top: 0;
}

@media screen and (max-width: 768px) {
    .p-philosophy__text {
        font-size: 1.6rem;
    }
}

/* 会社情報 */
.p-company-info {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.p-company-info__list {
    margin-top: 3rem;
    padding-left: 6rem;
}

@media screen and (min-width: 1366px) {
    .p-company-info__list {
        margin-top: 3rem;
        padding-left: 6rem;
    }
}

@media screen and (max-width: 768px) {
    .p-company-info__list {
        margin-top: 2rem;
        padding-left: 0;
    }
}

.p-company-info__row {
    display: flex;
    font-size: 1.6rem;
    line-height: 1.8;
    padding-bottom: 0;
}

@media screen and (max-width: 768px) {
    .p-company-info__row {
        flex-direction: column;
        padding-bottom: 1.5rem;
    }
}

.p-company-info__row--space {
    padding-bottom: 2.5rem;
}

.p-company-info__term {
    width: 10rem;
    flex-shrink: 0;
    font-weight: 500;
    color: #333;
    font-size: 1.8rem;
}

@media screen and (min-width: 1366px) {
    .p-company-info__term {
        width: 10rem;
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .p-company-info__term {
        width: 100%;
        margin-bottom: 0;
        font-weight: 700;
        font-size: 1.8rem;
    }
}

.p-company-info__list--history {
    padding-left: 0;
    margin-top: 0;
}

.p-company-info__list--history .p-company-info__row {
    padding-bottom: 0;
}

@media screen and (max-width: 768px) {
    .p-company-info__list--history .p-company-info__row {
        padding-bottom: 1.5rem;
    }
}

.p-company-info__list--history .p-company-info__term {
    width: 12rem;
}

@media screen and (min-width: 1366px) {
    .p-company-info__list--history .p-company-info__term {
        width: 12rem;
    }
}

@media screen and (max-width: 768px) {
    .p-company-info__list--history .p-company-info__term {
        width: 100%;
    }
}

.p-company-info__desc {
    flex: 1;
    color: #333;
    padding-left: 0;
    font-size: 1.6rem;
}

@media screen and (min-width: 1366px) {
    .p-company-info__desc {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .p-company-info__desc {
        margin-left: 0;
        font-size: 1.6rem;
    }
}

.p-company-info__subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-top: 5rem;
    margin-bottom: 2rem;
}

@media screen and (min-width: 1366px) {
    .p-company-info__subtitle {
        font-size: 1.6rem;
        margin-top: 5rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .p-company-info__subtitle {
        font-size: 1.5rem;
        margin-top: 3.5rem;
        margin-bottom: 1.5rem;
    }
}

.p-company-info__related {
    font-size: 1.8rem;
    line-height: 1.8;
}

@media screen and (min-width: 1366px) {
    .p-company-info__related {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .p-company-info__related {
        font-size: 1.6rem;
    }
}

.p-company-info__related-name {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 1366px) {
    .p-company-info__related-name {
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-company-info__related-name {
        margin-bottom: 0.5rem;
    }
}

.p-company-info__related-address {
    color: #666;
}

/* 保有資格 */
.p-qualification {
    background-color: #EBF5EC;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.p-qualification__content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 3rem;
    padding-left: 6rem;
}

@media screen and (min-width: 1366px) {
    .p-qualification__content {
        gap: 4rem;
        margin-top: 3rem;
        padding-left: 6rem;
    }
}

@media screen and (max-width: 768px) {
    .p-qualification__content {
        flex-direction: column;
        gap: 2.5rem;
        margin-top: 2rem;
        padding-left: 0;
    }
}

.p-qualification__lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    flex: 1;
}

@media screen and (min-width: 1366px) {
    .p-qualification__lists {
        gap: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .p-qualification__lists {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
}

.p-qualification__list {
    font-size: 1.6rem;
    line-height: 2;
}

@media screen and (min-width: 1366px) {
    .p-qualification__list {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .p-qualification__list {
        font-size: 1.6rem;
    }
}

.p-qualification__list li {
    padding-left: 0;
}

.p-qualification__image {
    width: 28rem;
    flex-shrink: 0;
}

@media screen and (min-width: 1366px) {
    .p-qualification__image {
        width: 28rem;
    }
}

@media screen and (max-width: 768px) {
    .p-qualification__image {
        width: 100%;
    }
}

.p-qualification__image img {
    width: 100%;
    height: auto;
}

/* その他取組み */
.p-initiatives {
    padding-top: 3rem;
    padding-bottom: 0;
}

.p-initiatives__block {
    margin-bottom: 5rem;
}

.p-initiatives__block:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 1366px) {
    .p-initiatives__block {
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-initiatives__block {
        margin-bottom: 3.5rem;
    }
}

.p-initiatives__title {
    display: block;
    background-color: #00A73C;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    padding: 1.2rem 3rem;
    margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
    .p-initiatives__title {
        padding: 1rem 2rem;
        margin-bottom: 2rem;
    }
}

.p-initiatives__content {
    padding: 0 2rem;
}

@media screen and (min-width: 1366px) {
    .p-initiatives__content {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 768px) {
    .p-initiatives__content {
        padding: 0;
    }
}

.p-initiatives__content--center {
    text-align: center;
}

.p-initiatives__text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

@media screen and (min-width: 1366px) {
    .p-initiatives__text {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .p-initiatives__text {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

.p-initiatives__text--support {
    font-weight: 700;
    margin-top: 2.5rem;
}

@media screen and (min-width: 1366px) {
    .p-initiatives__text--support {
        margin-top: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-initiatives__text--support {
        margin-top: 2rem;
    }
}

.p-initiatives__image {
    text-align: center;
}

.p-initiatives__image img {
    max-width: 100%;
    height: auto;
}

.p-initiatives__image--sdgs {
    max-width: 60rem;
    margin: 0 auto;
}

@media screen and (min-width: 1366px) {
    .p-initiatives__image--sdgs {
        max-width: 60rem;
    }
}

@media screen and (max-width: 768px) {
    .p-initiatives__image--sdgs {
        max-width: 100%;
    }
}

.p-initiatives__image--single {
    max-width: 40rem;
    margin: 0 auto;
}

@media screen and (min-width: 1366px) {
    .p-initiatives__image--single {
        max-width: 40rem;
    }
}

@media screen and (max-width: 768px) {
    .p-initiatives__image--single {
        max-width: 28rem;
    }
}

.p-initiatives__images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 40rem;
    margin: 0 auto;
}

@media screen and (min-width: 1366px) {
    .p-initiatives__images {
        gap: 2rem;
        max-width: 40rem;
    }
}

@media screen and (max-width: 768px) {
    .p-initiatives__images {
        gap: 1.5rem;
        max-width: 28rem;
    }
}

.p-initiatives__caption {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
}

@media screen and (min-width: 1366px) {
    .p-initiatives__caption {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .p-initiatives__caption {
        font-size: 1.1rem;
        margin-top: 0.8rem;
    }
}

.p-initiatives__logo {
    text-align: center;
    width: 40rem;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .p-initiatives__logo {
        width: 100%;
    }
}

.p-initiatives__logo img {
    width: 100%;
    height: auto;
}

/* フッター */
.p-footer__logo {
    flex-shrink: 0;
}

.p-footer__logo-img {
    width: 20rem;
    height: auto;
}

@media screen and (min-width: 1366px) {
    .p-footer__logo-img {
        width: 20rem;
    }
}

@media screen and (max-width: 768px) {
    .p-footer__logo-img {
        width: 18rem;
    }
}

.p-footer-nav__list {
    display: flex;
    align-items: center;
}

.p-footer-nav__item {
    position: relative;
}

.p-footer-nav__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.2rem;
    background-color: #333;
}

@media screen and (min-width: 1366px) {
    .p-footer-nav__item:not(:last-child)::after {
        height: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .p-footer-nav__item:not(:last-child)::after {
        height: 1rem;
    }
}

.p-footer-nav__link {
    display: block;
    font-size: 1.4rem;
    color: #333;
    padding: 0.5rem 1.5rem;
    transition: color 0.3s;
}

@media screen and (min-width: 1366px) {
    .p-footer-nav__link {
        font-size: 1.4rem;
        padding: 0.5rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-footer-nav__link {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
}

.p-footer-nav__link:hover {
    color: #00A73C;
}

/* ==========================================================================
   Page Common - 下層ページ共通スタイル
   ========================================================================== */

/* 下層ページMV */
.p-page-mv {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.p-page-mv__inner {
    position: relative;
    width: 100%;
}

.p-page-mv__img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    display: block;
}

@media screen and (min-width: 1366px) {
    .p-page-mv__img {
        height: 30rem;
    }
}

@media screen and (max-width: 768px) {
    .p-page-mv__img {
        height: 20rem;
    }
}

.p-page-mv__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 1rem;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
}

@media screen and (min-width: 1366px) {
    .p-page-mv__content {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-page-mv__content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        border-left-width: 2px;
        border-right-width: 2px;
    }
}

.p-page-mv__title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

@media screen and (min-width: 1366px) {
    .p-page-mv__title {
        font-size: 3.2rem;
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-page-mv__title {
        font-size: 2.4rem;
        margin-bottom: 0.3rem;
    }
}

.p-page-mv__subtitle {
    font-size: 3.2rem;
    color: #fff;
    text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .p-page-mv__subtitle {
        font-size: 2rem;
    }
}

/* 会社概要ページMV - 半透明背景 */
.p-page-mv--company .p-page-mv__content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem 4rem;
    border-left: none;
    border-right: none;
}

/* ==========================================================================
   Business Page - 業務案内ページ固有のスタイル
   ========================================================================== */

/* 業務セクション共通 */
.p-business-section {
    padding: 0 0 3rem;
    overflow-x: hidden;
    background-image: url('assets/images/business/bg_orange.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
}

/* 水処理業務 - 青背景 */
.p-business-section--water {
    background-image: url('assets/images/business/bg_blue.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
}

/* 省エネルギー業務 - 緑背景 */
.p-business-section--energy {
    background-image: url('assets/images/business/bg_green.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    padding-bottom: 0;
}

.p-business-section__title {
    background-color: #EA5504;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    padding: 1.5rem 3rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    /* 画面幅いっぱいに広げる */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50% + 3rem);
    padding-right: calc(50vw - 50% + 3rem);
}

@media screen and (min-width: 1366px) {
    .p-business-section__title {
        font-size: 2.6rem;
        padding: 1.5rem 3rem;
        gap: 2rem;
        padding-left: calc(50vw - 50% + 3rem);
        padding-right: calc(50vw - 50% + 3rem);
    }
}

@media screen and (max-width: 768px) {
    .p-business-section__title {
        font-size: 1.8rem;
        padding: 1.2rem 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.p-business-section__title-accent {
    color: #fff;
    font-size: 3.2rem;
}

@media screen and (min-width: 1366px) {
    .p-business-section__title-accent {
        font-size: 3.2rem;
    }
}

@media screen and (max-width: 768px) {
    .p-business-section__title-accent {
        font-size: 2.2rem;
    }
}

.p-business-section__title-en {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    margin-left: auto;
}

@media screen and (min-width: 1366px) {
    .p-business-section__title-en {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .p-business-section__title-en {
        font-size: 1.2rem;
        width: 100%;
        margin-left: 0;
    }
}

.p-business-section__title-img {
    max-width: 100%;
    height: auto;
}

/* 水処理業務タイトル - 青色 */
.p-business-section--water .p-business-section__title {
    background-color: #00A0E9;
}

.p-business-section--energy .p-business-section__title {
    background-color: #45B035;
}

.p-business-section__content {
    position: relative;
    width: 100%;
}

.p-business-section__info {
    position: absolute;
    top: 5rem;
    left: 15rem;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2.5rem 2rem;
    max-width: 38rem;
    z-index: 1;
}

@media screen and (min-width: 1366px) {
    .p-business-section__info {
        top: 5rem;
        left: 15rem;
        padding: 2.5rem 2rem;
        max-width: 38rem;
    }
}

@media screen and (max-width: 768px) {
    .p-business-section__info {
        position: static;
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }
}

.p-business-section__list {
    font-size: 1.6rem;
    line-height: 1.8;
}

@media screen and (min-width: 1366px) {
    .p-business-section__list {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .p-business-section__list {
        font-size: 1.6rem;
    }
}

.p-business-section__list li {
    position: relative;
    padding-left: 2rem;
}

@media screen and (min-width: 1366px) {
    .p-business-section__list li {
        padding-left: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .p-business-section__list li {
        padding-left: 1.5rem;
    }
}

.p-business-section__list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #333;
}

.p-business-section__image {
    width: 80%;
    text-align: center;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .p-business-section__image {
        width: 100%;
    }
}

.p-business-section__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Recruit Page - 採用情報ページ固有のスタイル
   ========================================================================== */

.p-recruit {
    padding-top: 2.5rem;
    padding-bottom: 0;
}

@media screen and (min-width: 1366px) {
    .p-recruit {
        padding-top: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-recruit {
        padding-top: 1.5rem;
    }
}

.p-recruit__heading {
    width: 80%;
    margin: 0 auto 4rem;
    text-align: center;
}

@media screen and (min-width: 1366px) {
    .p-recruit__heading {
        margin-bottom: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .p-recruit__heading {
        width: 100%;
        margin-bottom: 3rem;
    }
}

.p-recruit__heading-img {
    max-width: 100%;
    height: auto;
}

.p-recruit__content {
    margin-bottom: 4rem;
}

@media screen and (min-width: 1366px) {
    .p-recruit__content {
        margin-bottom: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .p-recruit__content {
        margin-bottom: 3rem;
    }
}

.p-recruit__text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

@media screen and (min-width: 1366px) {
    .p-recruit__text {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .p-recruit__text {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

.p-recruit__text:last-child {
    margin-bottom: 0;
}

.p-recruit__images {
    margin-bottom: 5rem;
}

@media screen and (min-width: 1366px) {
    .p-recruit__images {
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-recruit__images {
        margin-bottom: 4rem;
    }
}

.p-recruit__images-overlap {
    position: relative;
    margin-bottom: 2rem;
    padding-top: 0;
    padding-bottom: 10%;
}

@media screen and (min-width: 1366px) {
    .p-recruit__images-overlap {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .p-recruit__images-overlap {
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 1.5rem;
    }
}

.p-recruit__image img {
    width: 100%;
    height: auto;
    display: block;
}

.p-recruit__image--first {
    width: 53%;
    position: relative;
    z-index: 2;
}

.p-recruit__image--second {
    width: 53%;
    position: absolute;
    right: 0;
    top: 17%;
    z-index: 1;
}

@media screen and (max-width: 768px) {

    .p-recruit__image--first,
    .p-recruit__image--second {
        width: 100%;
        position: static;
        margin-bottom: 1.5rem;
    }

    .p-recruit__image--second {
        margin-bottom: 0;
    }
}

.p-recruit__image--large {
    max-width: 60rem;
    margin: 0 auto;
}

@media screen and (min-width: 1366px) {
    .p-recruit__image--large {
        max-width: 60rem;
    }
}

@media screen and (max-width: 768px) {
    .p-recruit__image--large {
        max-width: 100%;
    }
}

.p-recruit__contact {
    display: flex;
    background-color: #007DC9;
    width: 55vw;
    margin: 0 auto;
    border-radius: 2rem;
}

@media screen and (max-width: 768px) {
    .p-recruit__contact {
        width: 100%;
        flex-direction: column;
    }
}

.p-recruit__contact-label {
    color: #fff;
    padding: 2rem 2.5rem;
    padding-left: 6rem;
    padding-right: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    border-right: 1px solid #fff;
}

@media screen and (min-width: 1366px) {
    .p-recruit__contact-label {
        padding: 2rem 2.5rem;
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .p-recruit__contact-label {
        padding: 1.5rem;
        font-size: 1.6rem;
        border-right: none;
        border-bottom: 1px solid #fff;
    }
}

.p-recruit__contact-label p {
    font-size: 2rem;
    text-align: left;
    font-weight: 400;
}

.p-recruit__contact-info {
    padding: 2rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (min-width: 1366px) {
    .p-recruit__contact-info {
        padding: 2rem 3rem;
    }
}

@media screen and (max-width: 768px) {
    .p-recruit__contact-info {
        padding: 1.5rem 2rem;
        text-align: center;
    }
}

.p-recruit__contact-company {
    font-size: 2.4rem;
    line-height: 1.2;
    color: #fff;
}

@media screen and (min-width: 1366px) {
    .p-recruit__contact-company {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 768px) {
    .p-recruit__contact-company {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
}

.p-recruit__contact-tel {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

@media screen and (min-width: 1366px) {
    .p-recruit__contact-tel {
        font-size: 3.6rem;
    }
}

@media screen and (max-width: 768px) {
    .p-recruit__contact-tel {
        font-size: 2rem;
    }
}

.p-recruit__contact-email {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

@media screen and (min-width: 1366px) {
    .p-recruit__contact-email {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .p-recruit__contact-email {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   Top Page - トップページ固有のスタイル
   ========================================================================== */

/* メインビジュアル */
.p-mv {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.p-mv__inner {
    position: relative;
    width: 100%;
}

.p-mv__img {
    width: 100%;
    height: 60rem;
    object-fit: cover;
    display: block;
}

@media screen and (min-width: 1366px) {
    .p-mv__img {
        height: 60rem;
    }
}

@media screen and (max-width: 768px) {
    .p-mv__img {
        height: 40rem;
    }
}

.p-mv__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 2rem;
}

@media screen and (max-width: 768px) {
    .p-mv__content {
        padding: 0 1.5rem;
    }
}

.p-mv__copy {
    font-size: 4.8rem;
    font-weight: 500;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
}

@media screen and (min-width: 1366px) {
    .p-mv__copy {
        font-size: 4.8rem;
    }
}

@media screen and (max-width: 768px) {
    .p-mv__copy {
        font-size: 2.4rem;
    }
}

/* メインビジュアル スライダー */
.p-mv-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.p-mv-slider__inner {
    position: relative;
    width: 100%;
    height: 49.4vw;
}

@media screen and (min-width: 1366px) {
    .p-mv-slider__inner {
        height: 60rem;
    }
}

@media screen and (max-width: 768px) {
    .p-mv-slider__inner {
        height: 25rem;
    }
}

.p-mv-slider__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.p-mv-slider__slide.is-active {
    opacity: 1;
    z-index: 2;
}

.p-mv-slider__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p-mv-slider__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 2rem;
    z-index: 3;
}

@media screen and (max-width: 768px) {
    .p-mv-slider__content {
        padding: 0 1.5rem;
    }
}

.p-mv-slider__copy {
    font-size: 6rem;
    font-weight: 500;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.p-mv-slider__slide.is-active .p-mv-slider__copy {
    opacity: 1;
}

@media screen and (min-width: 1366px) {
    .p-mv-slider__copy {
        font-size: 6rem;
    }
}

@media screen and (max-width: 768px) {
    .p-mv-slider__copy {
        font-size: 2.4rem;
    }
}

/* トップ - 事業案内セクション */
.p-top-about {
    padding: 2rem 0 5.5rem;
    background-color: #fff;
}

.p-top-about__header {
    text-align: center;
    margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
    .p-top-about__header {
        margin-bottom: 2.5rem;
    }
}

.p-top-about__header-img {
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.p-top-about__logo {
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .p-top-about__logo {
        margin-bottom: 1.5rem;
    }
}

.p-top-about__logo img {
    width: 6rem;
    height: auto;
}

@media screen and (min-width: 1366px) {
    .p-top-about__logo img {
        width: 15rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-about__logo img {
        width: 5rem;
    }
}

.p-top-about__catchphrase-en {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1;
}

@media screen and (min-width: 1366px) {
    .p-top-about__catchphrase-en {
        font-size: 3.6rem;
        font-weight: 700;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .p-top-about__catchphrase-en {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
}

.p-top-about__catchphrase-ja {
    font-size: 3.2rem;
    font-weight: 700;
    color: #333;
    font-family: 'Noto Serif JP', serif;
}

@media screen and (min-width: 1366px) {
    .p-top-about__catchphrase-ja {
        font-size: 4.8rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-about__catchphrase-ja {
        font-size: 2rem;
    }
}

.p-top-about__text-orange {
    color: #EA5504;
}

.p-top-about__text-blue {
    color: #00A0E9;
}

.p-top-about__text-green {
    color: #009944;
}


.p-top-about__lead {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 3.5rem;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    .p-top-about__lead {
        font-size: 1.4rem;
        text-align: left;
        max-width: 100%;
    }
}

.p-top-about__cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.p-top-about__card {
    display: block;
    position: relative;
    overflow: hidden;
    width: 70rem;
    height: 27.5rem;
    margin: 0 auto 2.5rem;
}

.p-top-about__card:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .p-top-about__card {
        width: 100%;
        height: 20rem;
    }
}

.p-top-about__card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 70rem;
    height: 27.5rem;
}

@media screen and (max-width: 768px) {
    .p-top-about__card-img {
        width: 100%;
        height: 100%;
    }
}

.p-top-about__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p-top-about__card:hover .p-top-about__card-img img {
    transform: scale(1.05);
}

.p-top-about__card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    padding: 2rem 4rem;
}

@media screen and (min-width: 1366px) {
    .p-top-about__card-content {
        padding: 2rem 4rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-about__card-content {
        padding: 1.5rem 3rem;
    }
}

/* 会社概要カード - オレンジグラデーション */
.p-top-about__card:nth-child(1) .p-top-about__card-content {
    background: linear-gradient(to right, rgba(232, 57, 13, 0.8), rgba(240, 131, 0, 0.8));
}

/* 業務案内カード - ブルーグラデーション */
.p-top-about__card:nth-child(2) .p-top-about__card-content {
    background: linear-gradient(to right, rgba(0, 104, 183, 0.8), rgba(0, 129, 204, 0.8));
}

/* 採用情報カード - グリーングラデーション */
.p-top-about__card:nth-child(3) .p-top-about__card-content {
    background: linear-gradient(to right, rgba(0, 168, 59, 0.8), rgba(111, 186, 44, 0.8));
}

.p-top-about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.p-top-about__card:hover::before {
    background-color: rgba(0, 0, 0, 0.5);
}

.p-top-about__card-title-ja {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 1366px) {
    .p-top-about__card-title-ja {
        font-size: 2.4rem;
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-about__card-title-ja {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
}

.p-top-about__card-title-en {
    font-family: sans-serif;
    font-size: 3.2rem;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 1366px) {
    .p-top-about__card-title-en {
        font-size: 3.2rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-about__card-title-en {
        font-size: 2.4rem;
    }
}

/* トップ - Facebook */
.p-top-facebook {
    padding: 0;
    background-color: #fff;
}

.p-top-facebook__header {
    text-align: center;
    margin-bottom: 3rem;
}

@media screen and (min-width: 1366px) {
    .p-top-facebook__header {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-facebook__header {
        margin-bottom: 2rem;
    }
}

.p-top-facebook__logo {
    width: 30rem;
    height: auto;
}

@media screen and (max-width: 768px) {
    .p-top-facebook__logo {
        width: 20rem;
    }
}

.p-top-facebook__embed {
    display: flex;
    justify-content: center;
}

.p-top-facebook__embed .fb-page,
.p-top-facebook__embed iframe {
    max-width: 100%;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
}

.p-top-facebook__embed .fb-page span,
.p-top-facebook__embed .fb-page iframe {
    max-width: 100% !important;
}

/* PC用を表示、スマホ用を非表示 */
.p-top-facebook__embed-wrap--pc {
    display: block;
}

.p-top-facebook__embed-wrap--sp {
    display: none;
}

@media screen and (max-width: 768px) {

    /* スマホ時はPC用を非表示、スマホ用を表示 */
    .p-top-facebook__embed-wrap--pc {
        display: none;
    }

    .p-top-facebook__embed-wrap--sp {
        display: block;
    }
}

/* トップ - 事業案内（旧） */
.p-top-business__lead {
    font-size: 1.5rem;
    line-height: 2;
    text-align: center;
    margin-bottom: 5rem;
}

@media screen and (min-width: 1366px) {
    .p-top-business__lead {
        font-size: 1.5rem;
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-business__lead {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        text-align: left;
    }
}

.p-top-business__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

@media screen and (min-width: 1366px) {
    .p-top-business__list {
        gap: 3rem;
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-business__list {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
}

.p-top-business__item {
    background-color: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

@media screen and (min-width: 1366px) {
    .p-top-business__item {
        padding: 3rem;
        border-radius: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-business__item {
        padding: 2.5rem;
        border-radius: 0.8rem;
    }
}

.p-top-business__item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.12);
}

.p-top-business__icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00A73C;
    border-radius: 50%;
}

@media screen and (min-width: 1366px) {
    .p-top-business__icon {
        width: 8rem;
        height: 8rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-business__icon {
        width: 6rem;
        height: 6rem;
        margin-bottom: 1.5rem;
    }
}

.p-top-business__icon img {
    width: 50%;
    height: auto;
    filter: brightness(0) invert(1);
}

.p-top-business__item-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 1366px) {
    .p-top-business__item-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-business__item-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
}

.p-top-business__item-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #666;
}

@media screen and (min-width: 1366px) {
    .p-top-business__item-text {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-business__item-text {
        font-size: 1.3rem;
    }
}

.p-top-business__btn-wrap {
    text-align: center;
}

/* トップ - 会社概要 */
.p-top-company__content {
    display: grid;
    grid-template-columns: 45rem 1fr;
    gap: 5rem;
    align-items: center;
}

@media screen and (min-width: 1366px) {
    .p-top-company__content {
        grid-template-columns: 45rem 1fr;
        gap: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-company__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.p-top-company__image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 1366px) {
    .p-top-company__image img {
        border-radius: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-company__image img {
        border-radius: 0.8rem;
    }
}

.p-top-company__table {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

@media screen and (min-width: 1366px) {
    .p-top-company__table {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-company__table {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
}

.p-top-company__table th,
.p-top-company__table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: top;
}

@media screen and (min-width: 1366px) {

    .p-top-company__table th,
    .p-top-company__table td {
        padding: 1.5rem 2rem;
    }
}

@media screen and (max-width: 768px) {

    .p-top-company__table th,
    .p-top-company__table td {
        padding: 1.2rem 1.5rem;
    }
}

.p-top-company__table th {
    width: 10rem;
    color: #00A73C;
    font-weight: 700;
    white-space: nowrap;
}

@media screen and (min-width: 1366px) {
    .p-top-company__table th {
        width: 10rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-company__table th {
        width: 8rem;
    }
}

.p-top-company__table td {
    line-height: 1.8;
}

.p-top-company__btn-wrap {
    text-align: left;
}

@media screen and (max-width: 768px) {
    .p-top-company__btn-wrap {
        text-align: center;
    }
}

/* トップ - 採用情報 */
.p-top-recruit__content {
    text-align: center;
}

.p-top-recruit__text {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 4rem;
}

@media screen and (min-width: 1366px) {
    .p-top-recruit__text {
        font-size: 1.5rem;
        margin-bottom: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .p-top-recruit__text {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        text-align: left;
    }
}

.p-top-recruit__btn-wrap {
    text-align: center;
}

/* ==========================================================================
   Component - ボタン
   ========================================================================== */

.c-btn {
    display: inline-block;
    background-color: #00A73C;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 1.5rem 4rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s, transform 0.3s;
}

@media screen and (min-width: 1366px) {
    .c-btn {
        font-size: 1.4rem;
        padding: 1.5rem 4rem;
        border-radius: 0.5rem;
    }
}

@media screen and (max-width: 768px) {
    .c-btn {
        font-size: 1.3rem;
        padding: 1.2rem 3rem;
        border-radius: 0.5rem;
    }
}

.c-btn:hover {
    background-color: #3a6232;
    transform: translateY(-0.2rem);
}

/* ==========================================================================
   Utility - ユーティリティクラス
   ========================================================================== */

.u-pc-only {
    display: inline;
}

.u-sp-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .u-pc-only {
        display: none;
    }

    .u-sp-only {
        display: inline;
    }
}