/* ===========================================================================================================*/
/* ▼Base このディレクトリで全体の基本設定を定義しています。 変数もここで定義しています。▼*/
/* ===========================================================================================================*/

html {
    color: #282828;
    font-family: "Montserrat", "IBM Plex Sans JP", sans-serif;
    font-size: 16px;
}

body {
    overscroll-behavior-y: none;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}
.php_link-svg {
    margin-left: 0.4em;
}
/*  画面幅960px以下のときのbodyテキストサイズ  */
@media screen and (max-width: 1280px) {
    html {
        font-size: 14px;
    }
}
/*  画面幅767px以下のときのbodyテキストサイズ  */
@media screen and (max-width: 767px) {
    html {
        font-size: 12px;
    }
}
/*  画面幅440px以下のときのbodyテキストサイズ  */
@media screen and (max-width: 440px) {
    html {
        font-size: 12px;
    }
}
/* ーーーーーーーーー  変数はここで管理しています  ーーーーーーーーー  */
:root {
    --padding: 96px;
    --margin-top: 64px;
    --gap: 64px;
    --title-font-size: 52px;
    --header-font-size: 14px;
    --white: #fff;
    --image-color: #5fb760;
    --font-color: #3f3f3f;
    /* --font-primary:  "IBM Plex Sans JP", sans-serif; */
    --font-mv: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", "Yu Mincho", "游明朝", "MS PMincho", serif;
    --font-zenkaku-gothic: "Zen Kaku Gothic New", sans-serif;
    --font-title: "Montserrat", sans-serif;
    --gray: #aaaaaa;
}

/* 〜〜〜〜   画面幅1440px以下のときの変数調整   〜〜〜〜 */
@media screen and (max-width: 1440px) {
    :root {
        --padding: 72px;
        --margin-top: 48px;
        --gap: 48px;
        --title-font-size: 48px;
        --header-font-size: 12px;
    }
}

/* 〜〜〜〜   画面幅1280px以下のときの変数調整   〜〜〜〜 */
@media screen and (max-width: 1280px) {
    :root {
        --padding: 64px;
        --margin-top: 42px;
        --gap: 42px;
        --title-font-size: 39px;
    }
}

/* 〜〜〜〜   画面幅960px以下のときの変数調整   〜〜〜〜 */
@media screen and (max-width: 960px) {
    :root {
        --padding: 48px;
        --margin-top: 32px;
        --gap: 32px;
        --title-font-size: 32px;
    }
}

/* 〜〜〜〜   画面幅767px以下（スマホ＆タブレットサイズ）のときの変数調整   〜〜〜〜 */
@media screen and (max-width: 767px) {
    :root {
        --padding: 40px;
        --margin-top: 24px;
        --gap: 24px;
        /*--title-font-size: 28px;*/
        /* --header-font-size: 14px; */
    }
}

/* 〜〜〜〜   画面幅639px以下（スマホ＆タブレットサイズ）のときの変数調整   〜〜〜〜 */
@media screen and (max-width: 639px) {
    :root {
        --padding: 32px;
        --title-font-size: 28px;
    }
}

/* 〜〜〜〜   画面幅440px以下（スマホサイズ）のときの変数調整   〜〜〜〜 */
@media screen and (max-width: 440px) {
    :root {
        /* --padding: 32px;
    --margin-top: 24px;
    --gap: 24px */
        --title-font-size: 24px;
        --header-font-size: 10px;
    }
}
/* ===========================================================================================================*/
/* ▲Base このディレクトリはここまで▲*/
/* ===========================================================================================================*/

/* ===========================================================================================================*/
/* ▼Layout 構成するエリアごとのレイアウトに関するスタイルを管理しています。▼*/
/* ===========================================================================================================*/

/*____________________________________________________________*/
/*l-header ヘッダー全体のレイアウト管理*/
/*____________________________________________________________*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝  l-header ヘッダー全体のレイアウト管理  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.ll-header {
    position: static;
    z-index: 10000;
    width: 100%;
    font-family: var(--font-primary);
}
.js-hamburger__body .ll-header,
.home .ll-header {
    position: fixed;
}
.p-page-header__inner {
    opacity: 1 !important;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝  l-footer フッター全体のレイアウト管理  ＝＝＝＝＝＝＝＝＝＝＝ */

.l-footer {
    margin-top: 0;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝  l-mv メインビジュアル全体のレイアウト管理  ＝＝＝＝＝＝＝＝＝＝＝ */

.l-mv {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
    color: var(--white);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝  l-bg-color メイン全体のレイアウト管理  ＝＝＝＝＝＝＝＝＝＝＝＝ */

.l-bg-color {
    background: var(--dddddd-6-paints, linear-gradient(92deg, rgba(88, 161, 255, 0.3) 19.66%, rgba(37, 185, 47, 0.3) 74.22%), #fff);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝  l-wrapper 各セクションで共通で反映されるレイアウトのスタイル管理  ＝＝＝＝＝＝＝ */
/*そのセクション単体のスタイルはp-（section名）で管理）*/

.l-wrapper {
    padding: var(--padding);
}
.l-wrapper__inner {
    max-width: 1376px;
    margin: 0 auto;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ===========================================================================================================*/
/* ▲Layout このディレクトリはここまで▲*/
/* ===========================================================================================================*/

/* ===========================================================================================================*/
/* ▼Component 繰り返し使われる小さな単位のパーツを管理。▼*/
/* ===========================================================================================================*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝  c-header ヘッダーの繰り返す使用する構成を管理  ＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ※※※※ 文字色と背景色だけはp-topでページごとに分類するように構築しています。 ※※※※ */

.c-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: calc(var(--padding) / 3);
    position: relative;
    z-index: 1000;
}
.c-header__logo {
    display: flex;
    align-items: center;
    transition-duration: 0.3s;
}
.c-header__logo:hover {
    color: var(--font-color);
}
.c-header__logo-img {
    display: block;
    width: 20%;
}
.c-header__logo-img > img {
    width: 100%;
}
.c-header__company-name {
    font-weight: 400;
    font-size: calc(var(--header-font-size) * 1.43);
    padding-left: 0.5em;
}
.c-header__nav-list {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) / 2);
    font-size: var(--header-font-size);
}
.c-header__list-item {
    position: relative;
}
.c-header__item-flex {
    display: flex;
    align-items: center;
    height: clamp(60px, 6.25vw, 120px);
    cursor: pointer;
}
.c-header__list-item--contact-box {
    border-bottom-left-radius: 10px;
    background-color: var(--image-color);
    transition-duration: 0.3s;
    border: 1px solid transparent;
}
.c-header__list-item--contact-box:hover {
    background-color: var(--white);
    border: 1px solid var(--image-color);
}
.c-header__item-flex:hover path,
.c-header__item-flex:hover .c-header__list-link {
    color: var(--font-color);
    fill: var(--font-color);
}
.c-header__list-link,
.c-header__list-arrow {
    display: block;
    font-weight: 500;
}
.home .c-header__list-arrow path {
    fill: #fff;
    transition: 0.5s;
}
.c-header__list-arrow path,
.c-header__item-flex:hover path {
    fill: #000;
}
.c-header__list-item--contact-box:hover .c-header__list-item--contact-link {
    color: var(--image-color);
}
.c-header__list-arrow {
    flex: 0 0 auto;
}
.c-header__list-arrow > path {
    transition: 2s;
}
.c-header__list-link {
    flex: 1 1 auto;
    transition: 0.5s;
}
.c-header__list-item--contact-link {
    font-size: var(--header-font-size);
    color: var(--white);
    padding: 2em;
}
.c-header__drop-menu {
    position: absolute;
    top: 100%;
    padding: 1em;
    font-size: 0.75rem;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    background-color: var(--white);
    left: 50%;
    /* transform: translateX(-50%); */
    transform: translate(-50%, -10%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition-duration: 0.5s;
}
.c-header__drop-menu.is-active {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.c-header__drop-item {
    display: flex;
    align-items: center;
    gap: 1em;
    width: 224px;
    /* padding: 1em; */
    border-radius: 6px;
    color: var(--font-color);
}
.c-header__drop-item:hover {
    background-color: color-mix(in srgb, var(--gray) 30%, transparent);
}
.c-header__drop-link,
.c-header__drop-arrow {
    display: block;
    height: 100%;
}
.c-header__drop-link {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1em;
    flex: 1;
}
.c-header__drop-item--all {
    font-weight: 700;
    color: var(--image-color);
}
.c-header__drop-item--all path {
    fill: var(--image-color);
}
.ll-header .c-header__hamburger-btn {
    display: none;
}
.c-header__hamburger-menu {
    display: none;
}

/*____________________________________________________________*/
/*   ▼レスポンシブコードの管理▼  */

/* 〜〜〜〜   画面幅1280px（1920pxの2/3）以下のレスポンシブ   〜〜〜〜 */
/* ※※  1280px以下からハンバーガーメニューを導入  ※※ */
@media screen and (max-width: 1280px) {
    .c-header__container {
        padding: calc(var(--padding) / 3) calc(var(--padding) / 2);
    }
    .c-header__site-menu {
        display: none;
    }
    .ll-header .c-header__hamburger-btn {
        position: relative;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        /* width: 26px;
    height: 22px; */
        width: 26px;
        height: 22px;
    }
    .home .c-header__hamburger-line {
        display: block;
        height: 2px;
        background-color: var(--white);
        transform-origin: center; /* ここをちゃんと設定する */
        transition: transform 0.3s ease;
    }
    .c-header__hamburger-line {
        display: block;
        height: 2px;
        background-color: #000;
        transform-origin: center; /* ここをちゃんと設定する */
        transition: transform 0.3s ease;
    }
    .c-header__hamburger-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white);
        opacity: 0.9;
        padding: 7em 2.67em;
        text-align: center;
        opacity: 0;
        pointer-events: none;
        display: block;
        transition: 0.4s;
    }
    .c-header__hamburger-item {
        padding: 1em 1.333em 1em 0;
        border-bottom: 1px solid var(--gray);
        display: flex;
        justify-content: space-between;
    }
    .c-header__hamburger-item:first-child {
        border-top: 1px solid var(--gray);
    }
    .c-header__hamburger-contact {
        display: inline-block;
        padding: 0.67em 2em;
        background-color: var(--image-color);
        border-radius: 50px;
        color: var(--white);
        font-weight: 500;
        margin-top: 3rem;
    }
    .c-header__hamburger-sns {
        margin-top: 3rem;
    }
    .c-header__hamburger-sns-list {
        display: flex;
        gap: 1rem;
    }
    .c-header__hamburger-sns-text {
        font-size: 0.83rem;
    }
}

/* Jsのより動的処理をこの下で管理 */
.js-hamburger__body {
    overflow: hidden;
}
.js-noscroll {
    overflow-y: hidden;
}
.js-logo__color {
    color: #000;
    transition: 1s;
}
.js-hamburger__btn-open > .c-header__hamburger-line {
    background-color: #000;
}
.js-hamburger__btn-open > .c-header__hamburger-line:nth-child(2) {
    opacity: 0;
}
.js-hamburger__btn-open > .c-header__hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.js-hamburger__btn-open > .c-header__hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}
.js-hamburger__menu-open {
    opacity: 1;
    pointer-events: auto;
}

/* 〜〜〜〜   画面幅767px以下のレスポンシブ   〜〜〜〜 */
/* ※※  スマホとタブレット両方対応サイズ  ※※ */
@media screen and (max-width: 767px) {
    .c-header__container {
        padding: calc(var(--padding) / 2);
    }
    .ll-header .c-header__hamburger-btn {
        width: 26px;
        height: 22px;
    }
    .js-hamburger__btn-open > .c-header__hamburger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .js-hamburger__btn-open > .c-header__hamburger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

/* 〜〜〜〜   画面幅440px以下のレスポンシブ   〜〜〜〜 */
/* ※※  スマホのみ対応サイズ  ※※ */
@media screen and (max-width: 440px) {
    .c-header__company-name {
        font-size: calc(var(--header-font-size) * 1.2);
    }
    .ll-header .c-header__hamburger-btn {
        width: 20px;
        height: 16px;
    }
    .c-header__hamburger-line {
        height: 1px;
    }
    .js-hamburger__btn-open > .c-header__hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .js-hamburger__btn-open > .c-header__hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/*____________________________________________________________*/
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝  c-accordion アコーディオンメニューのbox（各セクションの見出し）で繰り返し使用できるように管理  ＝＝＝＝＝ */
.c-accordion__btn--first {
    border-top: 1px solid var(--gray);
}
.c-accordion__btn {
    border-bottom: 1px solid var(--gray);
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    padding: 1em 1.33em 1em;
    transition: 0.3s;
}
.c-accordion__btn:hover,
.c-accordion__item-flex:hover {
    background-color: color-mix(in srgb, var(--gray) 30%, transparent);
}
.c-accordion__btn--link {
    padding: 1em 1.33em 1em;
    width: 100%;
    border-bottom: 1px solid var(--gray);
    display: block;
    box-sizing: border-box;
    text-align: left;
}
.c-accordion__list {
    background: rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: 1s;
}
.c-accordion__item-flex {
    display: flex;
    gap: 1em;
    padding: 1em;
    align-items: center;
}
.js-accordion__open {
    max-height: 500px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝  c-title タイトル（各セクションの見出し）で繰り返し使用できるように管理  ＝＝＝＝＝ */

.c-title__main {
    font-family: var(--font-title);
    font-size: var(--title-font-size);
    font-weight: 300;
}
.c-title__sub {
    color: #626262;
    font-size: 1.14rem;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝  c-list リスト形式のコンテナ部分を繰り返し利用できるよう管理  ＝＝＝＝＝＝＝＝ */

.c-list:first-child {
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}
.c-list {
    border-bottom: 1px solid var(--gray);
}
.c-list__item {
    display: flex;
    gap: calc(var(--gap) / 2);
    transition-duration: 0.2s;
}
.c-list__item:hover {
    color: var(--gray);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝  c-btn リンク遷移用のボタンにcssをここで一括管理  ＝＝＝＝＝＝＝＝＝＝＝ */

.c-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: calc(var(--gap) / 4);
    /*padding: calc(var(--padding) / 12) calc(var(--padding) / 6);*/
    padding-bottom: 4px; /* 擬似要素分のスペース確保 */
    margin-top: var(--margin-top);
    font-size: max(0.875rem, 12px);
}
.c-btn::before,
.c-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.5px;
    width: 100%;
    background: #000;
    transition: transform 0.4s ease;
}
.c-btn___arrow {
    line-height: 0;
}
.c-btn::before {
    transform-origin: left;
    transform: scaleX(1); /* 元の線は左から表示 */
    z-index: 1;
}

.c-btn::after {
    background: var(--image-color); /* 別の線の色を変えてみた */
    transform-origin: right;
    transform: scaleX(0); /* 最初は見えない */
    z-index: 2;
}

.c-btn:hover::before {
    transform-origin: right; /* 消えるときは右側を起点に縮む */
    transform: scaleX(0);
    transition-delay: 0s;
}

.c-btn:hover::after {
    transform-origin: left; /* 出てくるときは左側起点 */
    transform: scaleX(1);
    transition-delay: 0.4s; /* 元の線が消えてから表示 */
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝  c-btn-arrow タブきりかえのボタンのcssをここで一括管理  ＝＝＝＝＝＝＝＝＝ */

.c-arrow_btn {
    display: flex;
    gap: calc(var(--gap) * 0.4375);
    line-height: 0;
}
.c-arrow_btn__prev,
.c-arrow_btn__next {
    display: flex;
    align-items: center;
    padding: calc(var(--padding) / 8);
    background-color: var(--white);
    border-radius: 50px;
    transition: 0.3s;
}
.c-arrow_btn__prev > svg {
    transform: scaleX(-1);
}
.c-arrow_btn__prev:hover,
.c-arrow_btn__next:hover {
    background-color: var(--image-color);
}
.c-arrow_btn__prev:hover path,
.c-arrow_btn__next:hover path {
    fill: var(--white);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝  c-link タブきりかえのボタンのcssをここで一括管理  ＝＝＝＝＝＝＝＝＝ */
/*____________________________________________________________*/
.c-link:hover {
    border-bottom: 1px solid;
}

/*   ▼レスポンシブコードの管理▼  */

/* 〜〜〜〜   画面幅960px以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 960px) {
    .c-arrow_btn__prev path,
    .c-arrow_btn__next path {
        transform-origin: center;
        transform: scale(0.8);
    }
}
@media screen and (max-width: 767px) {
    .c-arrow_btn__prev path,
    .c-arrow_btn__next path {
        transform-origin: center;
        transform: scale(0.6);
    }
}
/* @media screen and (max-width: 440px) {
.c-arrow_btn__prev path, .c-arrow_btn__next path {
  transform-origin: center;
  transform: scale(0.4);
}
} */

/*____________________________________________________________*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝  c-card カード形式の最低構成部分を繰り返し利用できるよう管理  ＝＝＝＝＝＝＝＝ */

.c-card {
    display: block;
}
.c-card__img {
    width: 100%;
}
.c-card__img > img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.c-card__contents {
    padding: 1em;
    background-color: var(--white);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝  c-media メディア形式の最低構成部分を繰り返し利用できるよう管理  ＝＝＝＝＝＝＝＝ */

.c-media {
    display: flex;
}
.c-media__img {
    overflow: hidden;
    aspect-ratio: 3 / 2;
}
.c-media__img > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.c-media__contents {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    padding: 2rem;
}
.c-media__btn {
    margin-top: auto;
    width: fit-content;
    align-self: flex-end;
    align-items: center;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝  c-contact footer前のコンタクトセクションを繰り返し利用できるよう管理  ＝＝＝＝＝ */

.c-contact {
    color: var(--white);
    display: flex;
}
.c-contact__column {
    width: 50%;
    padding: calc(var(--padding) * 0.75) var(--padding);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(...);
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
}
.c-contact__column-left {
    background-image: url(../img/forest-contact/contact-west.jpg);
}
.c-contact__column-right {
    background-image: url(../img/forest-contact/contact-east.jpg);
}
.c-contact__title {
    font-weight: 300;
    font-size: 1.5em;
}
.c-contact__info {
    font-weight: 200;
    line-height: 1.75em;
}
.c-contact__btn {
    margin-top: auto;
    width: fit-content;
    align-self: flex-end;
}
.c-contact__btn::before,
.c-contact__btn::after {
    content: "";
    background: #fff;
}
.c-contact__btn::after {
    background: var(--image-color);
}
.c-contact__arrow-path {
    fill: var(--white);
}

/*____________________________________________________________*/
/*   ▼レスポンシブコードの管理▼  */

/* 〜〜〜〜   画面幅767px（スマホとタブレット対応）以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 767px) {
    .c-contact {
        flex-direction: column;
    }
    .c-contact__column {
        width: 100%;
    }
}

/*____________________________________________________________*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝＝  c-footer footerを繰り返し利用できるよう管理  ＝＝＝＝＝＝＝＝＝＝＝＝ */

.c-footer__wrapper {
    padding: var(--padding) calc(var(--padding) * 1.333) calc(var(--padding) * 1.333) calc(var(--padding) * 1.333);
    font-size: max(0.875rem, 12px);
}
.c-footer__logo {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) / 3);
}
.c-footer__logo-img {
    width: 50px;
}
.c-footer__company-name {
    font-size: calc(var(--title-font-size) * 0.625);
    font-weight: 300;
}
.c-footer__small-title {
    font-weight: 600;
    font-size: max(0.875rem, 12px);
}
.c-footer__inner {
    margin-top: var(--margin-top);
    display: flex;
    gap: var(--gap);
    align-items: stretch;
}
.c-footer__inner-media {
    width: 50%;
}
.c-footer__media-lists {
    margin-top: 1em;
}
.c-footer__media-item {
    padding: 1.5em 0;
}
.c-footer__item-days {
    color: var(--gray);
}
.c-footer__inner-achive {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.c-footer__achive-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    width: 100%;
    height: 13.5em;
    margin-top: 1em;
    /*padding: calc(var(--padding) / 3) var(--padding);*/
}
.c-footer__achive-list-top,
.c-footer__achive-list-bottom {
    display: flex;
    height: 6em;
    justify-content: center;
    gap: 0.5em;
    /*gap: calc(var(--gap) / 2);*/
}
.c-footer__achive-item {
    /*width: 22%;*/
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.c-footer__menu {
    margin-top: var(--margin-top);
    display: flex;
    justify-content: space-between;
}
.c-footer__menu-nav {
    margin-top: 1em;
}
.c-footer__menu-list {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.c-footer__copy {
    width: 100%;
    background-color: #000;
    padding: calc(var(--padding) / 3);
    text-align: center;
}
.c-footer__copy-text {
    color: var(--white);
    font-size: 0.75rem;
}
.c-footer__menu-item {
    color: #444444;
    font-weight: 300;
    transition: 0.3s ease;
}
.c-footer__menu-item:hover {
    color: var(--gray);
}
.c-footer__menu-item path {
    transition: 0.3s ease;
}
.c-footer__menu-item:hover path {
    fill: var(--gray);
}
.c-footer__sp-menu {
    display: none;
}
.c-footer__sp-sns {
    display: none;
}
.c-footer__item-contents {
    line-height: normal;
}

/*____________________________________________________________*/
/*   ▼レスポンシブコードの管理▼  */

/* 〜〜〜〜   画面幅767px（スマホとタブレット対応）以下のレスポンシブ   〜〜〜〜 */

@media screen and (max-width: 767px) {
    .c-footer__wrapper {
        padding: var(--padding);
    }
    .c-footer__inner {
        display: none;
    }
    .c-footer__menu {
        display: none;
    }
    .c-footer__sp-menu {
        width: 100%;
        display: block;
        margin-top: calc(var(--margin-top) / 2);
    }
    .c-footer__sp-sns {
        display: block;
        margin-top: calc(var(--margin-top) * 1.5);
    }
    .c-footer__sp-sns-list {
        display: flex;
        gap: calc(var(--gap) / 3);
    }
    .c-footer__sp-sns-item:hover .c-footer__sp-sns-link {
        color: var(--gray);
    }
    .c-footer__sp-sns-item:hover path {
        fill: var(--gray);
    }
}
/*____________________________________________________________*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ===========================================================================================================*/
/* ▲component このディレクトリはここまで▲*/
/* ===========================================================================================================*/

/* ===========================================================================================================*/
/* ▼Project componentや要素で構成される、大きなブロックやエリアを管理▼*/
/* ===========================================================================================================*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝  p-header__top-container トップのヘッダーにのみ反映させたいスタイルを管理  ＝＝＝＝ */

.home .p-header__top-container {
    color: var(--white);
    background: linear-gradient(0deg, rgba(187, 231, 255, 0.06) 0%, #9cbfd2 130.56%);
}
.p-header__top-container {
    background: var(--white);
    color: #000;
}

/*____________________________________________________________*/
/*   ▼レスポンシブコードの管理▼  */

/* 〜〜〜〜   画面幅1280px以下のレスポンシブ   〜〜〜〜 */

@media screen and (max-width: 1280px) {
    .home .js-hamburger__header-container {
        background: linear-gradient(0deg, transparent 0%, transparent 100%);
    }
}
/*____________________________________________________________*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝  p-mv メインビジュアルにのみ反映させたいスタイルを管理  ＝＝＝＝＝＝＝＝＝＝ */

.p-mv__fv {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: linear-gradient(320deg, #98e763 9.29%, #8fdfff 82.15%);
    z-index: -1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-mv__fv::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background-image: url(../img/forest-mv/forest-mv__back-img.jpg);
    opacity: 0.15;
    z-index: -100;
}

/* キャッチコピーと手ビジュアルのボックス */
.p-mv__container {
    transform: translateY(5%);
}

/* キャッチコピーのコード */
.p-mv__head {
    text-align: center;
}
.p-mv__catch {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mv);
    font-weight: 300;
    gap: calc(var(--gap) / 4);
}
.p-mv__catch-strong {
    display: flex;
    align-items: center;
}
.p-mv__catch-hand {
    color: var(--image-color);
    line-height: 1.2em;
    font-size: clamp(92px, 7.8125vw, 150px);
}
.p-mv__catch-quote__left {
    align-self: flex-start;
    width: clamp(28px, 4vw, 38px);
    display: block;
}
.p-mv__catch-quote__right {
    align-self: flex-end;
    width: clamp(28px, 4vw, 38px);
    display: block;
}
.p-mv__catch-text {
    font-size: clamp(32px, 2.708vw, 52px);
}
.p-mv__catch-text__left {
    align-self: flex-start;
    margin-bottom: calc(var(--margin-top) / 3);
}
.p-mv__catch-text__right {
    align-self: flex-end;
    margin-top: calc(var(--margin-top) / 3);
}
.p-mv__sub-catch {
    font-family: var(--font-zenkaku-gothic);
    margin-top: calc(var(--margin-top) / 4);
}
.p-mv__hand-visual {
    width: 100%;
    margin-top: 1.5vw;
    display: flex;
    justify-content: center;
}
.p-mv__hand-img {
    width: max(1080px, 100%);
}
/* 左下の実績への文言のコード */
.p-mv__achive {
    font-family: var(--font-zenkaku-gothic);
    position: absolute;
    display: flex;
    align-items: center;
    gap: calc(var(--gap) / 4);
    bottom: 76px;
    left: 2vw;
}
.p-mv__trophy {
    width: clamp(30px, 3vw, 40px);
}
.p-mv__achive-sub {
    font-size: 0.75rem;
}
.p-mv__achive-main {
    font-size: 1.25rem;
}

/* スクロールダウンのコード */
.p-mv__scroll {
    position: absolute;
    bottom: 76px;
    left: 0;
    right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-mv__scroll-text {
    font-family: var(--font-primary);
    color: var(--white);
    letter-spacing: 0.2rem;
}

.p-mv__scroll-mouse {
    position: relative;
    width: 35px;
    height: 55px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 2px solid var(--white);
    border-radius: 23px;
}

.p-mv__scroll-circle {
    position: absolute;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: var(--white);
    border-radius: 50%;
    animation: ani-mouse 2.5s linear infinite;
}

@keyframes ani-mouse {
    0% {
        opacity: 0;
        top: 70%;
    }
    40% {
        opacity: 0;
        top: 30%;
    }
    70% {
        opacity: 1;
        top: 30%;
    }
    100% {
        opacity: 1;
        top: 70%;
    }
}
/* 右下の注目商品のコード */
.p-mv__picup {
    position: absolute;
    bottom: 64px;
    right: 0;
    width: clamp(150px, 18vw, 250px);
    height: clamp(150px, 18vw, 250px);
    cursor: pointer;
    background-color: #282828;
}
.p-mv__picup-img {
    width: 100%;
    height: 100%;
}
.p-mv__picup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}
.p-mv__picup:hover::before {
    opacity: 1;
}

/* 一番下の自動横スクロールアニメーション */
.p-mv__carousel {
    position: absolute;
    overflow: hidden;
    width: 100%;
    bottom: 0;
    background-color: var(--white);
    padding: 12px 0;
}
.p-mv__carousel-track {
    width: max-content;
    transition-timing-function: linear !important;
    will-change: transform;
}
.p-mv__carousel-list {
    height: 40px;
    object-fit: contain;
    width: auto;
    width: 200px;
}

/* ここからはvisionのコードになります */
.p-mv__vision {
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25vw;
    width: 80vw;
    pointer-events: none;
}
.p-mv__vision-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: calc(var(--title-font-size) * 0.375);
}
.p-mv__vision-contents {
    font-family: var(--font-mv);
    width: 50%;
}
.p-mv__vision-catch {
    font-size: 2rem;
    line-height: 2em;
}
.p-mv__vision-box {
    margin-top: calc(var(--margin-top) * 1.5);
}
.p-mv__vision-text {
    margin-top: calc(var(--margin-top) / 2);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
}

/*____________________________________________________________*/
/*   ▼レスポンシブコードの管理▼  */

/* 〜〜〜〜   画面幅1280px(1920pxの1/2)x以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 1280px) {
    .p-mv__vision {
        padding: 0 20vw;
    }
}
/* 〜〜〜〜   画面幅960px(1920pxの1/2)x以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 960px) {
    .p-mv__scroll {
        display: none;
    }
    .p-mv__vision-contents {
        width: 60%;
    }
    .p-mv__picup {
        width: clamp(120px, 23vw, 170px);
        height: clamp(120px, 23vw, 170px);
    }
}

/* 〜〜〜〜   画面幅767px以下のレスポンシブ   〜〜〜〜 */
/* ※※  スマホ兼タブレットに対応しているサイズ  ※※ */
@media screen and (max-width: 767px) {
    .p-mv__container {
        transform: translateY(-5%);
    }
    .p-mv__hand-img {
        width: max(704px, 140%);
    }
    .p-mv__catch {
        flex-direction: column;
        width: 75vw;
        max-width: 500px;
        margin: 0 auto;
        gap: 0;
    }
    .p-mv__catch-hand {
        line-height: 1;
        font-size: clamp(60px, 16vw, 92px);
    }
    .p-mv__catch-quote__left,
    .p-mv__catch-quote__right {
        width: clamp(20px, 5vw, 28px);
    }
    .p-mv__catch-text {
        font-size: clamp(20px, 6vw, 32px);
    }
    .p-mv__achive {
        bottom: 56px;
    }
    .p-mv__picup {
        bottom: 54px;
    }
    .p-mv__carousel-list {
        height: 30px;
            width: 140px;
    }
    .p-mv__vision-title {
        font-size: calc(var(--title-font-size) * 0.667);
        width: 100%;
    }
    .p-mv__vision {
        flex-direction: column;
        justify-content: center;
        gap: calc(var(--gap) * 0.67);
    }
    .p-mv__vision-contents {
        width: 100%;
    }
    .p-mv__vision-box {
        margin-top: calc(var(--margin-top) * 2.67);
    }
    .p-mv__vision-text {
        margin-top: var(--margin-top);
    }
}

/* 〜〜〜〜   画面幅440px以下のレスポンシブ   〜〜〜〜 */
/* ※※  スマホ対応サイズ  ※※ */
@media screen and (max-width: 440px) {
    .p-mv__sub-catch {
        font-size: 0.8rem;
    }
    .p-mv__hand-img {
        width: max(500px, 160%);
    }
    .p-mv__vision {
        padding: 0 18vw;
    }
    .p-mv__achive-main {
        font-size: 0.875rem;
    }
    .p-mv__achive {
        bottom: 46px;
    }
    .p-mv__picup {
        bottom: 44px;
    }
    .p-mv__carousel-list {
        height: 20px;
        width: 100px;
    }
}

/*____________________________________________________________*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝  p-news ニュースセクションのスタイルはここで管理  ＝＝＝＝＝＝＝＝＝＝＝ */

.p-news {
    background-color: var(--white);
}
.p-news__container {
    display: flex;
    gap: calc(var(--gap) * 3.0625);
}
.p-news__list {
    width: 100%;
}
.p-news__item-days {
    color: var(--gray);
    font-weight: 300;
}
.p-news__item {
    /*padding: 1em 0;*/
    font-weight: 300;
}
.p-news__item-list {
    padding: 2em 0;
}
.p-news__btn {
    margin-top: var(--margin-top);
}

/*____________________________________________________________*/
/*   ▼レスポンシブコードの管理▼  */

/* 〜〜〜〜   画面幅767px（スマホとタブレット対応サイズ）以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 767px) {
    .p-news__container {
        flex-direction: column;
        gap: var(--gap);
    }
    .p-news__item-list {
        padding: 1.5em 0;
    }
}

/*____________________________________________________________*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝  p-details 事業内容セクションのスタイルはここで管理  ＝＝＝＝＝＝＝＝＝＝ */

.p-details__title-area {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.p-details__container {
    margin-top: var(--margin-top);
}
.p-details__lists {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray);
}
.p-details__item {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) / 2);
    font-size: 1rem;
    padding: 1em 0 1em 1em;
    width: 100%;
    transition-duration: 0.3s;
}
.p-details__item:hover {
    background-color: rgba(255, 255, 255, 0.6);
}
.p-details__item-number {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray);
}
.p-details__item-content {
    font-weight: 300;
}
.p-details__media {
    margin-top: var(--margin-top);
}
.p-details__media-img {
    width: 50%;
    background-color: var(--white);
}
.p-details__media-contents {
    width: 50%;
}
.p-details__media-title {
    font-size: 1.5rem;
    font-weight: 400;
}
.p-details__media-text {
    margin-top: 1em;
    line-height: 1.7em;
    font-weight: 400;
}

.p-details__item.is-active {
    background-color: var(--white);
}

/*____________________________________________________________*/
/*   ▼レスポンシブコードの管理▼  */

/* 〜〜〜〜   画面幅767px（スマホとタブレット対応サイズ）以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 767px) {
    .p-details__lists {
        flex-direction: column;
    }
    .p-details__item {
        border-top: 1px solid var(--gray);
        padding: 1.5em 0 1.5em 1em;
    }
    .p-news__container {
        flex-direction: column;
        gap: var(--gap);
    }
    .p-details__media {
        margin-top: var(--margin-top);
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .p-details__media-img {
        width: 100%;
        height: 232px;
        background-color: var(--white);
        overflow: hidden;
    }
    .p-details__media-contents {
        width: 100%;
        gap: 1.5em;
    }
    .p-details__media-text {
        margin-top: 0;
    }
}

/* 〜〜〜〜   画面幅440px（スマホ対応サイズ）以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 440px) {
    .p-details__item {
        font-size: 1rem;
        gap: calc(var(--gap) / 2);
    }
    .p-details__item-number {
        font-size: 1.25rem;
    }
    .p-details__media-contents {
        width: 100%;
        padding: 1.5em;
        gap: 1em;
    }
}
/*____________________________________________________________*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝  p-products 商品一覧セクションのスタイルはここで管理  ＝＝＝＝＝＝＝＝＝＝ */

.p-products__title-area {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.p-products__swiper {
    position: relative;
    margin-top: var(--margin-top);
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 440px;
}
.p-products__swiper-slide {
    width: 368px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-products__swiper-lists:hover .p-products__swiper-slide {
    opacity: 0.6;
}
.p-products__swiper-lists .p-products__swiper-slide:hover {
    transform: translateY(-10px);
    opacity: 1;
}
.p-products__slide-img {
    background: linear-gradient(180deg, #f2f4ee 0%, #dbddd7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: calc(var(--padding)/2); */
    padding: 2.25rem 3rem;
    height: 272px;
}
.p-products__slide-img > img {
    width: 100%;
    object-fit: contain;
}
.p-products__contents-title {
    font-size: max(14px, 1rem);
    font-weight: 400;
}
.p-products__swiper-contents {
    height: 148px;
}
.p-products__contents-text {
    font-size: max(12px, 0.875rem);
    font-weight: 200;
    margin-top: 0.5rem;
}

/*____________________________________________________________*/
/*   ▼レスポンシブコードの管理▼  */

/* 〜〜〜〜   画面幅1440px以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 1440px) {
    .p-products__swiper-slide {
        width: 320px;
    }
    .p-products__slide-img {
        height: 220px;
    }
}

/* 〜〜〜〜   画面幅1280px以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 1280px) {
    .p-products__swiper {
        height: 360px;
    }
    .p-products__swiper-slide {
        width: 276px;
    }
    .p-products__slide-img {
        height: 204px;
    }
    .p-products__swiper-contents {
        height: 130px;
    }
}

/* 〜〜〜〜   画面幅960px以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 960px) {
    .p-products__swiper-slide {
        width: 276px;
    }
    .p-products__slide-img {
        height: 204px;
    }
    .p-products__swiper-contents {
        height: 130px;
    }
}
/* 〜〜〜〜   画面幅767px以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 767px) {
    .p-products__swiper {
        height: 300px;
    }
    .p-products__swiper-slide {
        width: 250px;
    }
    .p-products__slide-img {
        height: 162px;
    }
    .p-products__swiper-contents {
        height: 138px;
    }
    .p-products__swiper-lists:hover .p-products__swiper-slide,
    .p-products__swiper-lists .p-products__swiper-slide:hover {
    /* hover効果を上書きして消す */
    transform: none;
    opacity: 1;
    }
}
/* 〜〜〜〜   画面幅440px以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 440px) {
    .p-products__swiper {
        height: 273px;
    }
    .p-products__swiper-slide {
        width: 240px;
    }
    .p-products__slide-img {
        height: 136px;
    }
    .p-products__swiper-contents {
        height: 141px;
    }
}
/*____________________________________________________________*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝  p-about About usセクションのスタイルはここで管理  ＝＝＝＝＝＝＝＝＝＝ */

.p-about {
    background-color: var(--white);
}
.p-about__description {
    margin-top: var(--margin-top);
}
.p-about__description {
    font-size: 1.2rem;
    text-align: justify;
    line-height: 2em;
}
/* 〜〜〜〜   画面幅767px以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 767px) {
.p-about__description {
    font-size: 1rem;
    line-height: 1.7em;
}
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝  p-case 導入事例セクションのスタイルはここで管理  ＝＝＝＝＝＝＝＝＝＝ */

.p-case__description {
    font-size: max(0.875rem, 12px);
    font-weight: 300;
    margin-top: calc(var(--margin-top) / 2);
}
.p-case__lists {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin-top: var(--margin-top);
}
.p-case__media-img {
    width: 40%;
}
.p-case__media-contents {
    width: 60%;
    gap: 1.5em;
}
.p-case__tag-title {
    font-size: 1.5rem;
    font-weight: 400;
}
.p-case__tag-meta {
    display: block;
    color: var(--gray);
    margin-top: 1em;
}
.p-case__contents-description {
    font-size: max(12px, 0.875rem);
    line-height: 1.8em;
}

/*____________________________________________________________*/
/*   ▼レスポンシブコードの管理▼  */
/* 〜〜〜〜   画面幅767px以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 767px) {
    .p-case__tag-title {
        font-size: 1.25rem;
        font-weight: 400;
    }
}

/* 〜〜〜〜   画面幅660px以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 660px) {
    .p-case__media {
        flex-direction: column;
    }
    .p-case__media-img {
        width: 100%;
    }
    .p-case__media-contents {
        width: 100%;
    }
}
/* 〜〜〜〜   画面幅440px以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 440px) {
    .p-case__media-contents {
        padding: 1.5em;
        gap: 1em;
    }
}
/*____________________________________________________________*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝  p-contents コンテンツセクションのスタイルはここで管理  ＝＝＝＝＝＝＝＝＝＝ */

.p-contents__scroll {
    margin-top: var(--margin-top);
    overflow: hidden;
    position: relative;
    height: auto;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.p-contents__scroll-lists {
    display: flex;
    transition-timing-function: linear;
    will-change: transform;
}
.p-contents__item {
    aspect-ratio: 398 / 127;
    flex-shrink: 0;
    flex-grow: 0;
    width: 20%;
    max-width: 398px;
    display: block;
    overflow: hidden;
    background-color: #3f3f3f;
}
.p-contents__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*____________________________________________________________*/
/*   ▼レスポンシブコードの管理▼  */
/* 〜〜〜〜   画面幅960px以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 960px) {
    .p-contents__item {
        width: 30%;
    }
}
/* 〜〜〜〜   画面幅767px以下のレスポンシブ   〜〜〜〜 */
@media screen and (max-width: 767px) {
    .p-contents__item {
        width: 40%;
    }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ===========================================================================================================*/
/* ▲Project このディレクトリはここまで▲*/
/* ===========================================================================================================*/
