@charset "UTF-8";

/* カラー・スペース変数 */
:root {
    /* カラー */
    --tangerine: #eb9402;
    --cobalt: #20528d;
    --mango: #fea729;
    --charcoal-grey: #35393d;
    --sea: #2c9596;
    --dusty-orange: #EB9402;
    --white: #ffffff;
    --very-light-blue: #e4e8f0;
    --mid-blue: #247d96;
    --pale-grey: #edf0f5;
    --ice-blue: #f6f8f8;
    --dusk-blue: #223f85;
    /* スペース */
    --spacing-xxs: 12px;
    --spacing-xs: 16px;
    --spacing-s: 24px;
    --spacing-md: 32px;
    --spacing-lg: 40px;
    --spacing-xl: 48px;
    --spacing-2l: 56px;
    --spacing-3l: 72px;
    --spacing-4l: 80px;
    --spacing-5l: 96px;
    --spacing-6l: 120px;
    --spacing-7l: 160px;
}


/* font-size rem reset */

html {
    font-size: 62.5%;
}

h1,
h2,
h3,
h4 {
    font-family: "Hiragino Kaku Gothic W6 JIS2004" !important;
}


/*p,
a,
span {
    font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif !important;
}*/

a {
    text-decoration: none;
    color: var(--charcoal-grey);
}

@media (min-width: 576px) {
    .container {
        padding: 0 4.267%;
    }

    body {
        font-size: 1.6rem;
        margin: 0 auto;
    }

    main {
        margin-top: 80px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 4.267%;
    }

    body {
        font-size: 1.6rem;
        margin: 0 auto;
    }

    main {
        margin-top: 80px;
    }
}

@media (min-width: 992px) {
    .container {
        padding: 0 4.267%;
    }

    body {
        font-size: 1.6rem;
        margin: 0 auto;
    }

    main {
        margin-top: 80px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 4.267%;
    }

    body {
        font-size: 1.6rem;
        margin: 0 auto;
    }

    main,
    header,
    footer {
        width: 100%;
    }

    main {
        margin-top: 80px;
    }
}

@media (min-width: 1440px) {
    .container {
        padding: 0 4.267%;
    }

    body {
        font-size: 1.6rem;
        margin: 0 auto;
    }

    /* section には最大幅を持たせず背景を全幅にする */
    /* コンテンツ幅の制御は .container / .page_wrapper で行う */
    main,
    header,
    footer {
        width: 100%;
    }

    main {
        margin-top: 80px;
    }
}


/* パンくずリスト  */

.breadcrumb ul {
    display: flex;
    list-style: none;
}

.breadcrumb li::before {
    content: ">";
    margin: 0 4px;
}

.breadcrumb li:first-child::before {
    content: "";
    margin: 0;
}

.breadcrumb {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1.2px;
    color: var(--white);
}

.breadcrumb a {
    font-size: 1.2rem;
    letter-spacing: 1.2px;
    color: var(--white);
    text-decoration: none;
    padding-bottom: 5px;
    position: relative;
    font-weight: normal;
}

.breadcrumb a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #FFF;
    transform: scale(0, 1);
    transform-origin: left;
    transition: 0.2s;
    font-weight: bold;
}

.breadcrumb a:hover:before {
    transform: scale(1);
}


/* xs */

.container {
    padding: 0 4.267%;
}

body {
    font-size: 1.6rem;
    margin: 0 auto;
    color: var(--charcoal-grey);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    width: 100%;
    margin: 0 auto;
}

main,
header,
footer {
    width: 100%;
}

main {
    margin-top: 80px;
}

.header {
    height: 80px;
    display: flex;
}

.h__container {
    padding: 0 20px 0 4.267%;
}

.header__nav {
    display: none;
    flex: auto;
}

.header__nav a {
    text-decoration: none;
    color: var(--charcoal-grey);
    position: relative;
}

.header__nav a:hover {
    color: var(--dusk-blue);
}

.header__nav a:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background: var(--dusk-blue);
    transform: scale(0, 1);
    transform-origin: left;
    transition: 0.2s;
}

.header__nav a:hover:before {
    transform: scale(1);
}

.header__info {
    display: block;
}

.header__cta {
    display: none;
}

.header__logo {
    display: block;
    margin-right: 0;
}

.header__phone__number {
    font-family: Helvetica !important;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    color: var(--charcoal-grey);
    display: block;
    position: relative;
}

.header__phone__number::before {
    content: "";
    background: url(../img/icon__phone.svg) no-repeat;
    width: 10px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-40%);
    left: -5px;
}

.header__business__hours {
    font-family: Helvetica !important;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #2d3033;
    display: block;
}

.header__cta__button__request {
    display: none;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    border: solid 1px #223f85;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 1.4rem;
    margin: 0 10px;
    color: #223f85;
    position: relative;
    text-decoration: none;
}

.header__cta__button__contact {
    display: none;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    border: solid 1px #eb9402;
    border-radius: 4px;
    font-size: 1.4rem;
    color: #eb9402;
    position: relative;
    text-decoration: none;
}

.header__key__visual {
    position: relative;
    color: #FFF;
}

.header__description {
    height: auto;
}

.header__description h1 {
    font-family: "Hiragino Kaku Gothic W6 JIS2004";
    font-size: 2rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3em;
    letter-spacing: 1.6px;
    color: var(--white);
}

.header__description span {
    font-family: Helvetica;
    font-size: 1.4rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1em;
    letter-spacing: 2px;
    color: var(--white);
}

.nav-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4.267%;
}

.text__dusk__blue {
    color: var(--dusk-blue);
}

a.case__card__link__button {
    border-radius: 4px;
    border: solid 1px #247d96;
    background-color: #247d96;
    font-size: 1.4rem !important;
    padding: 5px 20px;
    color: #fff;
    margin: 0 auto;
    display: block;
    width: fit-content;
    width: -moz-fit-content;
    font-family: "Hiragino Kaku Gothic W6 JIS2004";
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.6px;
    position: relative;
    z-index: 10;
    margin: 20px auto 0;
}

a.case__card__link__button::after {
    display: none;
}

a.case__card__link__button:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    display: block;
    background: #247d96;
    z-index: -1;
    transition: 0.2s;
    border-radius: 4px;
}


/* サービス ヘッダー*/

#header__key__visual {
    background: url(../img/header__key__visual_sp.webp) no-repeat;
    background-size: cover;
    background-position: bottom;
}

/* 肺動脈モデル（feel-organ）ページ用ヘッダー（SP） */
/* IDセレクタ(#header__key__visual)の詳細度100に勝つため、ID+クラスで詳細度110に引き上げ */
#header__key__visual.feel-organ-header {
    background: url(../img/feel_organ_header.webp) center center / cover no-repeat;
}


/* サービス リスト */

#service__list {
    background: var(--pale-grey);
}


/* サービス リスト カード */

.service__list__card__wrapper {
    height: auto;
    position: relative;
    padding: 64px 0 120px;
}

.service__list__card__inner {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 80px;
}

.service__list__card__title h2 {
    width: auto;
    height: auto;
    font-family: "Hiragino Kaku Gothic W6 JIS2004";
    font-size: 2.4rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 3.2px;
    text-align: center;
    color: #35393d;
    margin: 0 auto var(--spacing-md) auto;
}

.service__list__card__title .underline {
    width: 120px;
    height: 2px;
    background: linear-gradient(89deg, #223f85 0%, #1d6595);
    margin: 0 auto;
}

.service__list__card {
    display: flex;
    flex-direction: column;
    background: #FFF;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 10px 0 rgba(211, 217, 231, 0.4);
    max-width: 337px;
}

.service__list__card__img {
    margin: 0;
    width: 100%;
}

.service__list__card__img img {
    width: 100%;
}

.service__list__card__description {
    width: 100%;
    padding: 24px 20px;
}

/* 3Dプリンタカードのタイトルのみ少し小さく */
.service__list__card__description .printer {
    font-size: 2.0rem;
}

.service__list__card__description .printer,
.service__list__card__description .plane,
.service__list__card__description .connector,
.service__list__card__description .production {
    font-family: "Hiragino Kaku Gothic W6 JIS2004";
    font-size: 2.4rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.2px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 0 16px;
    gap: 16px;
    color: #223f85;
}

/* 3Dプリンタカードのタイトルのみ少し小さく＆強制改行 */
.service__list__card__description h3.printer {
    display: block;
    line-height: 1.4;
}

.service__list__card__description h3.printer span {
    display: block;
}

/* 医療分野カード用のサブタイトル＋タイトル調整 */
.service__list__card__description p.service__card__subtitle.production,
.service__list__card__description .production.service__card__subtitle p {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1.6px;
    line-height: 1.4;
    margin: 0 0 4px;
    color: #223f85;
}

.service__list__card__description .service__card__title {
    font-family: "Hiragino Kaku Gothic W6 JIS2004";
    font-size: 2.4rem;
    font-weight: normal;
    letter-spacing: 3.2px;
    line-height: 1.4;
    color: #223f85;
}

/* 医療分野カード：親aにホバーで文字を白に */
.service__list__card:hover .service__list__card__description,
.service__list__card:hover .service__list__card__description p.service__card__subtitle.production,
.service__list__card:hover .service__list__card__description .production.service__card__subtitle p,
.service__list__card:hover .service__list__card__description .service__card__title,
.service__list__card:hover .service__list__card__description .show {
    color: #fff;
}

.service__list__card__description .printer:before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 60px;
    background-image: url(../img/section__service__img__printer__icon.svg);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}

.service__list__card__description .plane:before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 60px;
    background-image: url(../img/section__service__img__plane__engine_icon.svg);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}

.service__list__card__description .connector:before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 60px;
    background-image: url(../img/section__service__img__connector__icon.svg);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}

.service__list__card__description .production:before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 60px;
    background-image: url(../img/section__service__img__plane__engine_icon.svg);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}

a.service__list__card .show {
    display: block;
    text-align: right;
    color: #223f85;
    margin-top: 16px;
}

.service__list__card__button {
    position: absolute;
    bottom: 194px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service__list__card__button a {
    width: 200px;
    height: 50px;
    border-radius: 4px;
    border: solid 1px #223f85;
    background-color: #FFF;
    text-decoration: none;
    color: #223f85;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    font-family: "Hiragino Kaku Gothic W6 JIS2004";
    font-size: 1.6rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.6px;
}

#footer__cta {
    background: url(../img/footer__cta__bg@2x.webp) no-repeat;
    background-size: cover;
    position: relative;
    background-position: right;
}

#footer__cta::after {
    content: "";
    /*  background: rgba(20, 37, 78, 0.8); */
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.footer__cta {
    padding: 80px 0;
    height: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer__cta__header {
    margin-bottom: 56px;
    color: #FFF;
}

.footer__cta__header h1 {
    font-family: "Hiragino Kaku Gothic W6 JIS2004";
    font-size: 2.8rem;
    line-height: 1.43;
    letter-spacing: 2.8px;
    text-align: center;
    margin-bottom: 32px;
}

.footer__cta__header span {
    display: block;
}

.footer__cta__header .footer__cta__text__one {
    font-size: 1.8rem;
    font-weight: bold;
}

.footer__cta__header a.footer__cta__text__number {
    font-family: Helvetica !important;
    font-size: 3.4rem;
    font-weight: bold;
    margin: 8px 16px;
    color: #FFF;
}

.footer__cta__header .footer__cta__text__hours {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto;
    font-family: Helvetica !important;
}

.footer__cta__header .footer__cta__text__hours::after {
    width: 1px;
    height: 30px;
    background-color: var(--white);
}

.footer__cta__header .footer__cta__text__after {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 1.6px;
    text-decoration: none;
    color: #FFF;
    position: relative;
    margin: 32px auto 0;
    width: 100%;
}

.footer__cta__body {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}

.footer__cta__contact {
    width: 100%;
    height: 260px;
    padding: 24px;
    background: #FFF;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    pointer-events: none;
    position: relative;
    z-index: 10;
    font-family: Helvetica !important;
    font-size: 3.2rem;
    line-height: 1.11;
    letter-spacing: 3.6px;
    color: var(--tangerine);
    font-weight: normal;
}

.footer__cta__contact p {
    font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 2px;
    color: var(--charcoal-grey);
}

.footer__cta__contact .footer__cta__button__contact {
    font-family: "Hiragino Kaku Gothic W6 JIS2004";
    font-size: 1.6rem;
    line-height: 3;
    letter-spacing: 2px;
    color: var(--white);
    width: 195px;
    box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
    background-color: var(--tangerine);
    text-decoration: none;
    border-radius: 4px;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.footer__cta__contact .footer__cta__button__contact:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    display: block;
    background: #FFF;
    z-index: -1;
    transition: 0.2s;
    border-radius: 4px;
}

.footer__nav__inner {
    max-width: 100%;
    padding: 30px 4.267%;
    margin: 80px auto 0;
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    gap: 15px;
    -webkit-overflow-scrolling: touch;
}

.footer__nav__inner__item {
    display: flex;
    flex-direction: column;
    flex-basis: 45%;
}

.footer__nav__inner__item__link {
    width: 100%;
    display: block;
    position: relative;
    font-size: 1.4rem;
    padding-left: 1em;
    margin: 0 0 15px;
    text-decoration: none;
}

.footer__nav__inner__item__link:before {
    content: "-";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.copy {
    font-size: 1.2rem;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 3.33;
    letter-spacing: normal;
    text-align: center;
    color: #222;
}


/* .footer__cta__contact .footer__cta__button__contact:hover:before { */


/* width: 100%; */


/* border-radius: 4px; */


/* } */


/*  */


/* .footer__cta__contact .footer__cta__button__contact:hover { */


/* font-family: "Hiragino Kaku Gothic W6 JIS2004"; */


/* font-size: 1.6rem; */


/* line-height: 3; */


/* letter-spacing: 2px; */


/* color: var(--tangerine); */


/* width: 67.2%; */


/* box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19); */


/* background-color: var(--white); */


/* text-decoration: none; */


/* border-radius: 4px; */


/* } */


/*  */


/* .footer__cta__contact:hover { */


/* color: var(--white); */


/* background: linear-gradient(to right, #FFF); */


/* border-radius: 4px; */


/* } */


/*  */


/* .footer__cta__contact:hover h2 { */


/* font-family: Helvetica; */


/* font-size: 3.6rem; */


/* line-height: 1.11; */


/* letter-spacing: 3.6px; */


/* color: var(--white); */


/* font-weight: normal; */


/* } */


/*  */


/* .footer__cta__contact:hover p { */


/*  */


/* font-size: 1.6rem; */


/* line-height: 2; */


/* letter-spacing: 2px; */


/* color: var(--white); */


/* } */


/*  */


/* .footer__cta__contact:before { */


/* content: ""; */


/* position: absolute; */


/* top: 0; */


/* bottom: 0; */


/* left: 0; */


/* width: 0; */


/* display: block; */


/* background: linear-gradient(to right, #e99325, #e9cb25); */


/* z-index: -1; */


/* transition: 0.2s; */


/* border-radius: 4px; */


/* } */


/*  */


/* .footer__cta__contact:hover:before { */


/* width: 100%; */


/* } */

.footer__cta__request {
    width: 100%;
    height: 260px;
    padding: 24px;
    background: #FFF;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    pointer-events: none;
    position: relative;
    z-index: 10;
    font-family: Helvetica !important;
    font-size: 3.2rem;
    line-height: 1.11;
    letter-spacing: 3.6px;
    color: var(--dusk-blue);
    font-weight: normal;
}

.footer__cta__request p {
    font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 2px;
    color: var(--charcoal-grey);
    position: relative;
}

.footer__cta__request .footer__cta__button__request {
    font-family: "Hiragino Kaku Gothic W6 JIS2004";
    font-size: 1.6rem;
    line-height: 3;
    letter-spacing: 2px;
    color: var(--white);
    width: 195px;
    box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
    background-color: var(--dusk-blue);
    text-decoration: none;
    border-radius: 4px;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.footer__cta__request .footer__cta__button__request:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    display: block;
    background: #FFF;
    z-index: -1;
    transition: 0.2s;
    border-radius: 4px;
}

.footer__copy {
    display: none;
}


/* .footer__cta__request .footer__cta__button__request:hover:before { */


/* width: 100%; */


/* border-radius: 4px; */


/* } */


/*  */


/* .footer__cta__request .footer__cta__button__request:hover { */


/* font-family: "Hiragino Kaku Gothic W6 JIS2004"; */


/* font-size: 1.6rem; */


/* line-height: 3; */


/* letter-spacing: 2px; */


/* color: var(--dusk-blue); */


/* width: 67.2%; */


/* box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19); */


/* background-color: var(--white); */


/* text-decoration: none; */


/* border-radius: 4px; */


/* } */


/*  */


/* .footer__cta__request:hover { */


/* color: var(--white); */


/* background: linear-gradient(to right, #FFF); */


/* border-radius: 4px; */


/* } */


/*  */


/* .footer__cta__request:hover h2 { */


/* font-family: Helvetica; */


/* font-size: 3.6rem; */


/* line-height: 1.11; */


/* letter-spacing: 3.6px; */


/* color: var(--white); */


/* font-weight: normal; */


/* } */


/*  */


/* .footer__cta__request:hover p { */


/*  */


/* font-size: 1.6rem; */


/* line-height: 2; */


/* letter-spacing: 2px; */


/* color: var(--white); */


/* } */


/*  */

.footer__cta__request__span {
    background: transparent linear-gradient(67deg, #223F85 0%, #1D6595 100%) 0% 0% no-repeat padding-box;
    border-radius: 3px;
    border: 2px solid #fff;
    color: #fff;
    padding: 4px 12px;
    font-family: "Hiragino Kaku Gothic W6 JIS2004";
    font-size: 1.6rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
}


/* .footer__cta__request:before { */


/* content: ""; */


/* position: absolute; */


/* top: 0; */


/* bottom: 0; */


/* left: 0; */


/* width: 0; */


/* display: block; */


/* background: linear-gradient(89deg, var(--dusk-blue) 0%, #1d7995 100%); */


/* z-index: -1; */


/* transition: 0.2s; */


/* border-radius: 4px; */


/* } */


/*  */


/* .footer__cta__request:hover:before { */


/* width: 100%; */


/* } */

#footer__nav {
    display: block;
    position: relative;
}

.footer__nav__pc {
    display: none;
}

.footer__nav {
    font-family: "Hiragino Kaku Gothic W6 JIS2004";
    font-size: 1.6rem;
    letter-spacing: 0.8px;
}

.footer__nav .flex {
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__nav .flex__item {
    width: 50%;
}

.footer__nav a {
    display: inline;
    position: relative;
    text-decoration: none;
    color: var(--charcoal-grey);
}

.footer__nav a:hover {
    color: var(--dusk-blue);
}

.footer__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.5s;
    background: var(--white);
    z-index: 12;
}

.footer__nav.show {
    opacity: 1;
    visibility: visible;
}

#footer__info {
    background-color: var(--charcoal-grey);
}

.footer__info {
    padding: 20px 0;
    color: #FFF;
    font-size: 1.4rem;
    letter-spacing: 0.42px;
}

.footer__info__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer__info__logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer__info__description {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

#drawer {
    display: block;
}

.drawer {
    position: fixed;
    bottom: 20px !important;
    right: 20px;
    width: 90px;
    background: var(--white);
    border: solid 1px var(--dusk-blue);
    z-index: 13;
    border-radius: 25px;
    padding: 10px 0;
    text-align: center;
    color: var(--dusk-blue);
    text-decoration: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.drawer::after {
    content: "メニュー";
}

.drawer.active::after {
    content: "閉じる";
}

#sp__menu {
    display: block;
    margin: 0 0 60px 0;
}

.sp__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    position: relative;
    padding: 0 4.267%;
}

.sp__menu__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: #FFF;
}

.sp__menu__info__contact__text {
    font-size: 1.4rem;
}

.sp__menu__info__phone__number {
    font-size: 2.6rem;
    color: #FFF !important;
}

.sp__menu__cta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-direction: row;
    width: 100%;
    z-index: 1;
}

.sp__menu__cta__button__request {
    padding: 10px 20px;
    box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
    background-color: #223f85;
    color: #fff !important;
    border-radius: 4px;
    width: 150px;
    display: block !important;
    text-align: center;
    margin: 0 auto;
}

.sp__menu__cta__button__contact {
    padding: 10px 20px;
    box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
    background-color: #eb9402;
    color: #fff !important;
    border-radius: 4px;
    width: 150px;
    display: block !important;
    text-align: center;
    margin: 0 auto;
}

.accordion__check {
    display: none;
}

.accordion__label {
    background: #fff;
    color: var(--charcoal-grey);
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    position: relative;
}

.accordion__non__label {
    background: #fff;
    color: var(--charcoal-grey);
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    position: relative;
}

.accordion__label:after {
    background: var(--dusk-blue);
    color: #FFF;
    box-sizing: border-box;
    content: "+";
    display: block;
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0px;
}

.accordion__content {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    visibility: hidden;
}

.accordion__content a {
    display: block;
}

.accordion__check:checked+.accordion__label:after {
    content: "-";
}

.accordion__check:checked+.accordion__label+.accordion__content {
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}


/* sm */

@media (min-width: 576px) {
    .header {
        height: 80px;
        display: flex;
    }

    .h__container {
        padding: 0 20px 0 4.267%;
    }

    .header__nav {
        display: none;
    }

    .header__nav a {
        text-decoration: none;
        color: var(--charcoal-grey);
        position: relative;
    }

    .header__nav a:hover {
        color: var(--dusk-blue);
    }

    .header__nav a:before {
        content: "";
        position: absolute;
        top: -30px;
        left: 0;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
        height: 4px;
        background: var(--dusk-blue);
        transform: scale(0, 1);
        transform-origin: left;
        transition: 0.2s;
    }

    .header__nav a:hover:before {
        transform: scale(1);
    }

    .header__info {
        display: block;
    }

    .header__cta {
        display: none;
    }

    .header__logo {
        display: block;
    }

    .header__phone__number {
        font-family: Helvetica !important;
        font-size: 1.6rem;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        text-align: center;
        color: var(--charcoal-grey);
        position: relative;
    }

    .header__phone__number::before {
        content: "";
        background: url(../img/icon__phone.svg) no-repeat;
        width: 10px;
        height: 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-40%);
        left: -5px;
    }

    .header__business__hours {
        font-family: Helvetica !important;
        font-size: 1.2rem;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        text-align: center;
        color: #2d3033;
    }

    .header__cta__button__request {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 40px;
        border: solid 1px #223f85;
        border-radius: 4px;
        background-color: #ffffff;
        font-size: 1.4rem;
        margin: 0 10px;
        color: #223f85;
        position: relative;
        text-decoration: none;
    }

    .header__cta__button__contact {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 40px;
        border: solid 1px #eb9402;
        border-radius: 4px;
        font-size: 1.4rem;
        color: #eb9402;
        position: relative;
        text-decoration: none;
    }

    .header__key__visual {
        position: relative;
        color: #FFF;
        z-index: 1;
    }

    .header__description {
        height: 250px;
    }

    .header__description h1 {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2.4rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.3em;
        letter-spacing: 1.6px;
        color: var(--white);
    }

    .header__description span {
        font-family: Helvetica;
        font-size: 1.4rem;
        line-height: 1em;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: 2px;
        color: var(--white);
    }

    /* サービス ヘッダー*/
    #header__key__visual {
        background: url(../img/header__key__visual.webp) no-repeat;
        background-size: cover;
        background-position: bottom;
    }

    /* 肺動脈モデル（feel-organ）ページ用ヘッダー（PC） */
    /* IDセレクタ(#header__key__visual)の詳細度100に勝つため、ID+クラスで詳細度110に引き上げ */
    #header__key__visual.feel-organ-header {
        background: url(../img/feel_organ_header.webp) center center / cover no-repeat;
    }

    /* サービス リスト カード */
    .service__list__card__wrapper {
        height: auto;
        position: relative;
        padding: 64px 0 160px;
    }

    .service__list__card {
        display: flex;
        flex-direction: column;
        background: #FFF;
        justify-content: center;
        align-items: center;
        box-shadow: 2px 2px 10px 0 rgba(211, 217, 231, 0.4);
        max-width: 467px;
        height: auto;
    }

    .service__list__card__img {
        margin: 0;
        width: 100%;
    }

    .service__list__card__description {
        width: 100%;
        padding: 30px;
    }

    .service__list__card__description .printer,
    .service__list__card__description .plane,
    .service__list__card__description .connector,
    .service__list__card__description .production {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2.4rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 3.2px;
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0 0 16px;
        gap: 16px;
        color: #223f85;
    }

    .service__list__card__description .printer:before {
        content: '';
        display: inline-block;
        width: 60px;
        height: 60px;
        background-image: url(../img/section__service__img__printer__icon.svg);
        background-size: contain;
        vertical-align: middle;
        background-repeat: no-repeat;
    }

    .service__list__card__description .plane:before {
        content: '';
        display: inline-block;
        width: 60px;
        height: 60px;
        background-image: url(../img/section__service__img__plane__engine_icon.svg);
        background-size: contain;
        vertical-align: middle;
        background-repeat: no-repeat;
    }

    .service__list__card__description .connector:before {
        content: '';
        display: inline-block;
        width: 60px;
        height: 60px;
        background-image: url(../img/section__service__img__connector__icon.svg);
        background-size: contain;
        vertical-align: middle;
        background-repeat: no-repeat;
    }

    .service__list__card__description .production:before {
        content: '';
        display: inline-block;
        width: 60px;
        height: 60px;
        background-image: url(../img/section__service__img__plane__engine_icon.svg);
        background-size: contain;
        vertical-align: middle;
        background-repeat: no-repeat;
    }

    a.service__list__card .show {
        display: none;
    }

    #footer__cta {
        background: url(../img/footer__cta__bg@2x.webp) no-repeat;
        background-size: cover;
        position: relative;
        background-position: right;
    }

    #footer__cta::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .footer__cta {
        padding: 80px 0;
        height: auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .footer__cta__header {
        margin-bottom: 56px;
        color: #FFF;
    }

    .footer__cta__header h1 {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2.8rem;
        line-height: 1.43;
        letter-spacing: 2.8px;
        text-align: center;
        margin-bottom: 32px;
    }

    .footer__cta__header span {
        display: block;
    }

    .footer__cta__header .footer__cta__text__one {
        font-size: 1.8rem;
        font-weight: bold;
    }

    .footer__cta__header a.footer__cta__text__number {
        font-size: 3.4rem;
        font-weight: bold;
        margin: 16px 32px;
        color: #FFF;
        font-family: Helvetica !important;
    }

    .footer__cta__header .footer__cta__text__hours {
        font-size: 1.4rem;
        font-weight: bold;
        margin: 0 auto;
        font-family: Helvetica !important;
    }

    .footer__cta__header .footer__cta__text__hours::after {
        width: 1px;
        height: 30px;
        background-color: var(--white);
    }

    .footer__cta__header .footer__cta__text__after {
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 1.6px;
        text-decoration: none;
        color: #FFF;
        position: relative;
        transition: all 0.2s;
        margin: 32px auto 0;
        width: 100%;
    }

    .footer__cta__body {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: space-between;
        align-items: center;
        padding: 0 15%;
    }

    .footer__cta__contact {
        width: 100%;
        height: 259px;
        padding: 32px;
        background: #FFF;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        gap: 24px;
        pointer-events: none;
        position: relative;
        z-index: 10;
    }

    .footer__cta__contact {
        font-family: Helvetica !important;
        font-size: 3.2rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--tangerine);
        font-weight: normal;
    }

    .footer__cta__contact p {
        font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
        font-size: 1.6rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--charcoal-grey);
    }

    .footer__cta__contact .footer__cta__button__contact {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--white);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--tangerine);
        text-decoration: none;
        border-radius: 4px;
        pointer-events: auto;
        position: relative;
        z-index: 10;
    }

    /* .footer__cta__contact .footer__cta__button__contact:before { */
    /* content: ""; */
    /* position: absolute; */
    /* top: 0; */
    /* bottom: 0; */
    /* left: 0; */
    /* width: 0; */
    /* display: block; */
    /* background: #FFF; */
    /* z-index: -1; */
    /* transition: 0.2s; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__contact .footer__cta__button__contact:hover:before { */
    /* width: 100%; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__contact .footer__cta__button__contact:hover { */
    /* font-family: "Hiragino Kaku Gothic W6 JIS2004"; */
    /* font-size: 1.6rem; */
    /* line-height: 3; */
    /* letter-spacing: 2px; */
    /* color: var(--tangerine); */
    /* width: 67.2%; */
    /* box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19); */
    /* background-color: var(--white); */
    /* text-decoration: none; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__contact:hover { */
    /* color: var(--white); */
    /* background: linear-gradient(to right, #FFF); */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__contact:hover h2 { */
    /* font-family: Helvetica; */
    /* font-size: 3.2rem; */
    /* line-height: 1.11; */
    /* letter-spacing: 3.6px; */
    /* color: var(--white); */
    /* font-weight: normal; */
    /* } */
    /* .footer__cta__contact:hover p { */
    /*  */
    /* font-size: 1.6rem; */
    /* line-height: 2; */
    /* letter-spacing: 2px; */
    /* color: var(--white); */
    /* } */
    /* .footer__cta__contact:before { */
    /* content: ""; */
    /* position: absolute; */
    /* top: 0; */
    /* bottom: 0; */
    /* left: 0; */
    /* width: 0; */
    /* display: block; */
    /* background: linear-gradient(to right, #e99325, #e9cb25); */
    /* z-index: -1; */
    /* transition: 0.2s; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__contact:hover:before { */
    /* width: 100%; */
    /* } */
    .footer__cta__request {
        width: 100%;
        height: 259px;
        padding: 32px;
        background: #FFF;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        gap: 24px;
        pointer-events: none;
        position: relative;
        z-index: 10;
    }

    .footer__cta__request {
        font-family: Helvetica !important;
        font-size: 3.2rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--dusk-blue);
        font-weight: normal;
    }

    .footer__cta__request p {
        font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
        font-size: 1.6rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--charcoal-grey);
    }

    .footer__cta__request .footer__cta__button__request {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--white);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--dusk-blue);
        text-decoration: none;
        border-radius: 4px;
        pointer-events: auto;
        position: relative;
        z-index: 10;
    }

    .footer__cta__request .footer__cta__button__request:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #FFF;
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    /* .footer__cta__request .footer__cta__button__request:hover:before { */
    /* width: 100%; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__request .footer__cta__button__request:hover { */
    /* font-family: "Hiragino Kaku Gothic W6 JIS2004"; */
    /* font-size: 1.6rem; */
    /* line-height: 3; */
    /* letter-spacing: 2px; */
    /* color: var(--dusk-blue); */
    /* width: 67.2%; */
    /* box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19); */
    /* background-color: var(--white); */
    /* text-decoration: none; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__request:hover { */
    /* color: var(--white); */
    /* background: linear-gradient(to right, #FFF); */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__request:hover h2 { */
    /* font-family: Helvetica; */
    /* font-size: 3.2rem; */
    /* line-height: 1.11; */
    /* letter-spacing: 3.6px; */
    /* color: var(--white); */
    /* font-weight: normal; */
    /* } */
    /* .footer__cta__request:hover p { */
    /*  */
    /* font-size: 1.6rem; */
    /* line-height: 2; */
    /* letter-spacing: 2px; */
    /* color: var(--white); */
    /* } */
    .footer__cta__request__span {
        background: transparent;
        border-radius: 3px;
        border: 2px solid #fff;
        color: #fff;
        padding: 4px 12px;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 2;
    }

    .footer__cta__request__span {
        background: transparent linear-gradient(67deg, #223F85 0%, #1D6595 100%) 0% 0% no-repeat padding-box;
        border-radius: 3px;
        color: #fff;
        padding: 4px 12px;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 2;
    }

    /* .footer__cta__request:before { */
    /* content: ""; */
    /* position: absolute; */
    /* top: 0; */
    /* bottom: 0; */
    /* left: 0; */
    /* width: 0; */
    /* display: block; */
    /* background: linear-gradient(89deg, var(--dusk-blue) 0%, #1d7995 100%); */
    /* z-index: -1; */
    /* transition: 0.2s; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__request:hover:before { */
    /* width: 100%; */
    /* } */
    #footer__nav {
        display: block;
        position: relative;
    }

    .footer__nav {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        letter-spacing: 0.8px;
    }

    .footer__nav .flex {
        padding: 40px 20px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer__nav .flex__item {
        width: 50%;
    }

    .footer__nav a {
        display: inline;
        position: relative;
        text-decoration: none;
        color: var(--charcoal-grey);
    }

    .footer__nav a:hover {
        color: var(--dusk-blue);
    }

    .footer__nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.5s;
        background: var(--white);
        z-index: 12;
    }

    .footer__nav.show {
        opacity: 1;
        visibility: visible;
        overflow: auto;
    }

    #footer__info {
        background-color: var(--charcoal-grey);
    }

    .footer__info {
        padding: 20px 0;
        color: #FFF;
        font-size: 1.4rem;
        letter-spacing: 0.42px;
    }

    .footer__info__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }

    .footer__info__logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .footer__info__description {
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    #drawer {
        display: block;
    }

    .drawer {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 90px;
        background: var(--white);
        border: solid 1px var(--dusk-blue);
        z-index: 13;
        border-radius: 25px;
        padding: 10px 0;
        text-align: center;
        color: var(--dusk-blue);
        text-decoration: none !important;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .drawer::after {
        content: "メニュー";
    }

    .drawer.active::after {
        content: "閉じる";
    }
}


/* md */

@media (min-width: 768px) {
    .header {
        height: 80px;
        display: flex;
    }

    .h__container {
        padding: 0 20px 0 4.267%;
    }

    .header__nav {
        display: none;
    }

    .header__nav a {
        text-decoration: none;
        color: var(--charcoal-grey);
        position: relative;
    }

    .header__nav a:hover {
        color: var(--dusk-blue);
    }

    .header__nav a:before {
        content: "";
        position: absolute;
        top: -30px;
        left: 0;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
        height: 4px;
        background: var(--dusk-blue);
        transform: scale(0, 1);
        transform-origin: left;
        transition: 0.2s;
    }

    .header__nav a:hover:before {
        transform: scale(1);
    }

    .header__info {
        display: block;
    }

    .header__cta {
        display: flex;
    }

    .header__logo {
        display: block;
    }

    .header__phone__number {
        font-family: Helvetica !important;
        font-size: 1.6rem;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        text-align: center;
        color: var(--charcoal-grey);
        position: relative;
    }

    .header__phone__number::before {
        content: "";
        background: url(../img/icon__phone.svg) no-repeat;
        width: 10px;
        height: 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-40%);
        left: -5px;
    }

    .header__business__hours {
        font-family: Helvetica !important;
        font-size: 1.2rem;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        text-align: center;
        color: #2d3033;
    }

    .header__cta__button__request {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 40px;
        border: solid 1px #223f85;
        border-radius: 4px;
        background-color: #ffffff;
        font-size: 1.4rem;
        margin: 0 10px;
        color: #223f85;
        position: relative;
        text-decoration: none;
    }

    .header__cta__button__contact {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 40px;
        border: solid 1px #eb9402;
        border-radius: 4px;
        font-size: 1.4rem;
        color: #eb9402;
        position: relative;
        text-decoration: none;
    }

    .header__key__visual {
        position: relative;
        color: #FFF;
    }

    .header__description {
        height: 250px;
    }

    .header__description h1 {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2.6rem;
        line-height: 1.3em;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: 1.6px;
        color: var(--white);
    }

    .header__description span {
        font-family: Helvetica;
        font-size: 1.4rem;
        line-height: 1em;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: 2px;
        color: var(--white);
    }

    /* サービス ヘッダー*/
    #header__key__visual {
        background: url(../img/header__key__visual.webp) no-repeat;
        background-size: cover;
        background-position: bottom;
    }

    /* サービス リスト カード */
    .service__list__card__wrapper {
        height: auto;
        position: relative;
        padding: 80px 0 160px;
    }

    .service__list__card__title h2 {
        width: auto;
        height: auto;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2.8rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: 3.2px;
        text-align: center;
        color: #35393d;
        margin: 0 auto var(--spacing-md) auto;
    }

    .service__list__card {
        display: flex;
        flex-direction: row;
        background: #FFF;
        justify-content: center;
        align-items: center;
        box-shadow: 2px 2px 10px 0 rgba(211, 217, 231, 0.4);
        max-width: 692px;
        height: auto;
    }

    .service__list__card__img {
        width: 100%;
        margin: 0;
    }

    .service__list__card__description {
        width: 100%;
        padding: 0 32px;
    }

    .service__list__card__description .printer,
    .service__list__card__description .plane,
    .service__list__card__description .connector,
    .service__list__card__description .production {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2.4rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 3.2px;
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0 0 24px;
        gap: 16px;
        color: #223f85;
    }

    .service__list__card__description .printer:before {
        content: '';
        display: inline-block;
        width: 60px;
        height: 60px;
        background-image: url(../img/section__service__img__printer__icon.svg);
        background-size: contain;
        vertical-align: middle;
        background-repeat: no-repeat;
    }

    .service__list__card__description .plane:before {
        content: '';
        display: inline-block;
        width: 60px;
        height: 60px;
        background-image: url(../img/section__service__img__plane__engine_icon.svg);
        background-size: contain;
        vertical-align: middle;
        background-repeat: no-repeat;
    }

    .service__list__card__description .connector:before {
        content: '';
        display: inline-block;
        width: 60px;
        height: 60px;
        background-image: url(../img/section__service__img__connector__icon.svg);
        background-size: contain;
        vertical-align: middle;
        background-repeat: no-repeat;
    }

    .service__list__card__description .production:before {
        content: '';
        display: inline-block;
        width: 60px;
        height: 60px;
        background-image: url(../img/section__service__img__plane__engine_icon.svg);
        background-size: contain;
        vertical-align: middle;
        background-repeat: no-repeat;
    }

    #footer__cta {
        background: url(../img/footer__cta__bg@2x.webp) no-repeat;
        background-size: cover;
        position: relative;
        background-position: right;
    }

    #footer__cta::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .footer__cta {
        padding: 80px 0;
        height: auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .footer__cta__header {
        margin-bottom: 56px;
        color: #FFF;
    }

    .footer__cta__header h1 {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2.8rem;
        line-height: 1.43;
        letter-spacing: 2.8px;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer__cta__header span {
        display: block;
    }

    .footer__cta__header .footer__cta__text__one {
        font-size: 1.8rem;
        font-weight: bold;
        margin: 0;
    }

    .footer__cta__header a.footer__cta__text__number {
        font-size: 3.4rem;
        font-weight: bold;
        margin: 0 32px;
        color: #FFF;
        font-family: Helvetica !important;
    }

    .footer__cta__header .footer__cta__text__hours {
        font-size: 1.4rem;
        font-weight: bold;
        margin: 0;
        font-family: Helvetica !important;
    }

    .footer__cta__header .footer__cta__text__hours::after {
        width: 1px;
        height: 30px;
        background-color: var(--white);
    }

    .footer__cta__header .footer__cta__text__after {
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 1.6px;
        text-decoration: none;
        color: #FFF;
        position: relative;
        margin: 32px auto 0;
    }

    .footer__cta__body {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    .footer__cta__contact {
        width: 46%;
        height: 259px;
        padding: 32px;
        background: #FFF;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        gap: 40px;
        pointer-events: none;
        position: relative;
        z-index: 10;
    }

    .footer__cta__contact {
        font-family: Helvetica !important;
        font-size: 3.2rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--tangerine);
        font-weight: normal;
    }

    .footer__cta__contact p {
        font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
        font-size: 1.6rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--charcoal-grey);
    }

    .footer__cta__contact .footer__cta__button__contact {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--white);
        width: 228px;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--tangerine);
        text-decoration: none;
        border-radius: 4px;
        pointer-events: auto;
        position: relative;
        z-index: 10;
    }

    .footer__cta__contact .footer__cta__button__contact:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #FFF;
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    /* .footer__cta__contact .footer__cta__button__contact:hover:before { */
    /* width: 100%; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__contact .footer__cta__button__contact:hover { */
    /* font-family: "Hiragino Kaku Gothic W6 JIS2004"; */
    /* font-size: 1.6rem; */
    /* line-height: 3; */
    /* letter-spacing: 2px; */
    /* color: var(--tangerine); */
    /* width: 67.2%; */
    /* box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19); */
    /* background-color: var(--white); */
    /* text-decoration: none; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__contact:hover { */
    /* color: var(--white); */
    /* background: linear-gradient(to right, #FFF); */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__contact:hover h2 { */
    /* font-family: Helvetica; */
    /* font-size: 3.2rem; */
    /* line-height: 1.11; */
    /* letter-spacing: 3.6px; */
    /* color: var(--white); */
    /* font-weight: normal; */
    /* } */
    /* .footer__cta__contact:hover p { */
    /*  */
    /* font-size: 1.6rem; */
    /* line-height: 2; */
    /* letter-spacing: 2px; */
    /* color: var(--white); */
    /* } */
    /* .footer__cta__contact:before { */
    /* content: ""; */
    /* position: absolute; */
    /* top: 0; */
    /* bottom: 0; */
    /* left: 0; */
    /* width: 0; */
    /* display: block; */
    /* background: linear-gradient(to right, #e99325, #e9cb25); */
    /* z-index: -1; */
    /* transition: 0.2s; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__contact:hover:before { */
    /* width: 100%; */
    /* } */
    .footer__cta__request {
        width: 46%;
        height: 259px;
        padding: 32px;
        background: #FFF;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        gap: 24px;
        pointer-events: none;
        position: relative;
        z-index: 10;
    }

    .footer__cta__request {
        font-family: Helvetica !important;
        font-size: 3.2rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--dusk-blue);
        font-weight: normal;
    }

    .footer__cta__request p {
        font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
        font-size: 1.6rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--charcoal-grey);
    }

    .footer__cta__request .footer__cta__button__request {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--white);
        width: 228px;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--dusk-blue);
        text-decoration: none;
        border-radius: 4px;
        pointer-events: auto;
        position: relative;
        z-index: 10;
    }

    .footer__cta__request .footer__cta__button__request:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #FFF;
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    /* .footer__cta__request .footer__cta__button__request:hover:before { */
    /* width: 100%; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__request .footer__cta__button__request:hover { */
    /* font-family: "Hiragino Kaku Gothic W6 JIS2004"; */
    /* font-size: 1.6rem; */
    /* line-height: 3; */
    /* letter-spacing: 2px; */
    /* color: var(--dusk-blue); */
    /* width: 67.2%; */
    /* box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19); */
    /* background-color: var(--white); */
    /* text-decoration: none; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__request:hover { */
    /* color: var(--white); */
    /* background: linear-gradient(to right, #FFF); */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__request:hover h2 { */
    /* font-family: Helvetica; */
    /* font-size: 3.2rem; */
    /* line-height: 1.11; */
    /* letter-spacing: 3.6px; */
    /* color: var(--white); */
    /* font-weight: normal; */
    /* } */
    /* .footer__cta__request:hover p { */
    /*  */
    /* font-size: 1.6rem; */
    /* line-height: 2; */
    /* letter-spacing: 2px; */
    /* color: var(--white); */
    /* } */
    .footer__cta__request__span {
        background: transparent;
        border-radius: 3px;
        border: 2px solid #fff;
        color: #fff;
        padding: 4px 12px;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 2;
    }

    .footer__cta__request__span {
        background: transparent linear-gradient(67deg, #223F85 0%, #1D6595 100%) 0% 0% no-repeat padding-box;
        border-radius: 3px;
        color: #fff;
        padding: 4px 12px;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 2;
    }

    /* .footer__cta__request:before { */
    /* content: ""; */
    /* position: absolute; */
    /* top: 0; */
    /* bottom: 0; */
    /* left: 0; */
    /* width: 0; */
    /* display: block; */
    /* background: linear-gradient(89deg, var(--dusk-blue) 0%, #1d7995 100%); */
    /* z-index: -1; */
    /* transition: 0.2s; */
    /* border-radius: 4px; */
    /* } */
    /* .footer__cta__request:hover:before { */
    /* width: 100%; */
    /* } */
    #footer__nav {
        display: block;
        position: relative;
    }

    .footer__nav {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        letter-spacing: 0.8px;
    }

    .footer__nav .flex {
        padding: 40px 20px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer__nav .flex__item {
        width: 25%;
    }

    .footer__nav a {
        display: inline;
        position: relative;
        text-decoration: none;
        color: var(--charcoal-grey);
    }

    .footer__nav a:hover {
        color: var(--dusk-blue);
    }

    .footer__nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.5s;
        background: var(--white);
        z-index: 12;
    }

    #footer__info {
        background-color: var(--charcoal-grey);
    }

    .footer__info {
        padding: 20px 0;
        color: #FFF;
        font-size: 1.4rem;
        letter-spacing: 0.42px;
    }

    .footer__info__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }

    .footer__info__logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .footer__info__description {
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    #drawer {
        display: block;
    }

    .drawer {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 90px;
        background: var(--white);
        border: solid 1px var(--dusk-blue);
        z-index: 13;
        border-radius: 25px;
        padding: 10px 0;
        text-align: center;
        color: var(--dusk-blue);
        text-decoration: none !important;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .drawer::after {
        content: "メニュー";
    }

    .drawer.active::after {
        content: "閉じる";
    }
}


/* l */

@media (min-width: 992px) {
    .header {
        height: 80px;
        display: flex;
    }

    .h__container {
        padding: 0 20px 0 4.267%;
    }

    .header__nav {
        display: none;
    }

    .header__nav a {
        text-decoration: none;
        color: var(--charcoal-grey);
        position: relative;
    }

    .header__nav a:hover {
        color: var(--dusk-blue);
    }

    .header__nav a:before {
        content: "";
        position: absolute;
        top: -30px;
        left: 0;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
        height: 4px;
        background: var(--dusk-blue);
        transform: scale(0, 1);
        transform-origin: left;
        transition: 0.2s;
    }

    .header__nav a:hover:before {
        transform: scale(1);
    }

    .header__info {
        display: block;
    }

    .header__logo {
        display: block;
    }

    .header__cta {
        display: flex;
    }

    .header__phone__number {
        font-family: Helvetica !important;
        font-size: 1.6rem;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        text-align: center;
        color: var(--charcoal-grey);
        position: relative;
    }

    .header__phone__number::before {
        content: "";
        background: url(../img/icon__phone.svg) no-repeat;
        width: 10px;
        height: 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-40%);
        left: -5px;
    }

    .header__business__hours {
        font-family: Helvetica;
        font-size: 1.2rem;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        text-align: center;
        color: #2d3033;
    }

    .header__cta__button__request {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 40px;
        border: solid 1px #223f85;
        border-radius: 4px;
        background-color: #ffffff;
        font-size: 1.4rem;
        margin: 0 10px;
        color: #223f85;
        position: relative;
        text-decoration: none;
        z-index: 10;
    }

    .header__cta__button__contact {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 40px;
        border: solid 1px #eb9402;
        border-radius: 4px;
        font-size: 1.4rem;
        color: #eb9402;
        position: relative;
        text-decoration: none;
    }

    .header__key__visual {
        position: relative;
        color: #FFF;
    }

    .header__description {
        height: 250px;
    }

    .header__description h1 {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2.6rem;
        line-height: 1.3em;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: 1.6px;
        color: var(--white);
    }

    .header__description span {
        font-family: Helvetica;
        font-size: 1.4rem;
        line-height: 1em;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: 2px;
        color: var(--white);
    }

    /* サービス ヘッダー*/
    #header__key__visual {
        background: url(../img/header__key__visual.webp) no-repeat;
        background-size: cover;
        background-position: bottom;
    }

    /* サービス リスト カード */
    .service__list__card__wrapper {
        height: auto;
        position: relative;
        padding: 120px 0 160px;
    }

    .service__list__card {
        display: flex;
        flex-direction: row;
        background: #FFF;
        justify-content: center;
        align-items: center;
        box-shadow: 2px 2px 10px 0 rgba(211, 217, 231, 0.4);
        max-width: 872px;
        height: auto;
    }

    .service__list__card__img {
        width: 430px;
        margin: 0;
    }

    .service__list__card__description {
        width: 542px;
        padding: 0 40px;
    }

    .service__list__card__description .printer,
    .service__list__card__description .plane,
    .service__list__card__description .connector,
    .service__list__card__description .production {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 3.2rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 3.2px;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        margin: 0 0 32px;
        gap: 0;
        color: #223f85;
    }

    .service__list__card__description .printer:before {
        content: url(../img/section__service__img__printer__icon.svg);
        width: 80px;
        height: 80px;
        margin-right: 24px;
    }

    .service__list__card__description .plane:before {
        content: url(../img/section__service__img__plane__engine_icon.svg);
        width: 80px;
        height: 80px;
        margin-right: 24px;
    }

    .service__list__card__description .connector:before {
        content: url(../img/section__service__img__connector__icon.svg);
        width: 80px;
        height: 80px;
        margin-right: 24px;
    }

    .service__list__card__description .production:before {
        background-image: url(../img/section__service__img__plane__engine_icon.svg);
        width: 80px;
        height: 80px;
        margin-right: 24px;
    }

    #footer__cta {
        background: url(../img/footer__cta__bg@2x.webp) no-repeat;
        background-size: cover;
        position: relative;
        background-position: bottom;
    }

    #footer__cta::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .footer__cta {
        padding: 80px 0;
        height: 616px;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .footer__cta__header {
        margin-bottom: 56px;
        color: #FFF;
    }

    .footer__cta__header h1 {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2.8rem;
        line-height: 1.43;
        letter-spacing: 2.8px;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer__cta__header span {
        display: block;
    }

    .footer__cta__header .footer__cta__text__one {
        font-size: 1.8rem;
        font-weight: bold;
        margin: 0 32px 0 0;
    }

    .footer__cta__header a.footer__cta__text__number {
        font-size: 3.4rem;
        font-weight: bold;
        margin: 0 8px 0 0;
        color: #FFF;
        font-family: Helvetica !important;
    }

    .footer__cta__header .footer__cta__text__hours {
        font-size: 1.4rem;
        font-weight: bold;
        margin: 0 24px 0 0;
        font-family: Helvetica !important;
    }

    .footer__cta__header .footer__cta__text__hours::after {
        width: 1px;
        height: 30px;
        background-color: var(--white);
    }

    .footer__cta__header .footer__cta__text__after {
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 1.6px;
        text-decoration: none;
        color: #FFF;
        position: relative;
        transition: all 0.2s;
        margin: 0;
        width: auto;
    }

    .footer__cta__header .footer__cta__text__after::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background: var(--white);
        transform: scale(0, 1);
        transform-origin: left;
        transition: 0.2s;
    }

    .footer__cta__header .footer__cta__text__after:hover {
        color: #FFF;
    }

    .footer__cta__header .footer__cta__text__after:hover::before {
        transform: scale(1);
    }

    .footer__cta__body {
        display: flex;
        flex-wrap: nowrap;
        gap: 80px;
        justify-content: center;
        align-items: center;
    }

    .footer__cta__contact {
        width: 45%;
        height: 292px;
        background: #FFF;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        gap: 36px;
        pointer-events: none;
        position: relative;
        z-index: 10;
        padding: 40px;
    }

    .footer__cta__contact {
        font-family: Helvetica !important;
        font-size: 3.6rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--tangerine);
        font-weight: normal;
    }

    .footer__cta__contact p {
        font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
        font-size: 2rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--charcoal-grey);
    }

    .footer__cta__contact .footer__cta__button__contact {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--white);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--tangerine);
        text-decoration: none;
        border-radius: 4px;
        pointer-events: auto;
        position: relative;
        z-index: 10;
    }

    .footer__cta__contact .footer__cta__button__contact:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #FFF;
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    .footer__cta__contact .footer__cta__button__contact:hover:before {
        width: 100%;
        border-radius: 4px;
    }

    .footer__cta__contact .footer__cta__button__contact:hover {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--tangerine);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--white);
        text-decoration: none;
        border-radius: 4px;
    }

    .footer__cta__contact:hover {
        color: var(--white);
        background: linear-gradient(to right, #FFF);
        border-radius: 4px;
    }

    .footer__cta__contact:hover h2 {
        font-family: Helvetica !important;
        font-size: 3.6rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--white);
        font-weight: normal;
    }

    .footer__cta__contact:hover p {
        font-size: 2rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--white);
    }

    .footer__cta__contact:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: linear-gradient(to right, #e99325, #e9cb25);
        z-index: -1;
        transition: 0.02s;
        border-radius: 4px;
    }

    .footer__cta__contact:hover:before {
        width: 100%;
    }

    .footer__cta__request {
        width: 45%;
        height: 292px;
        background: #FFF;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        gap: 16px;
        pointer-events: none;
        position: relative;
        z-index: 10;
        padding: 40px;
    }

    .footer__cta__request {
        font-family: Helvetica !important;
        font-size: 3.6rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--dusk-blue);
        font-weight: normal;
    }

    .footer__cta__request p {
        font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
        font-size: 2rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--charcoal-grey);
    }

    .footer__cta__request .footer__cta__button__request {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--white);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--dusk-blue);
        text-decoration: none;
        border-radius: 4px;
        pointer-events: auto;
        position: relative;
        z-index: 10;
    }

    .footer__cta__request .footer__cta__button__request:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #FFF;
        z-index: -1;
        transition: 0.02s;
        border-radius: 4px;
    }

    .footer__cta__request .footer__cta__button__request:hover:before {
        width: 100%;
        border-radius: 4px;
    }

    .footer__cta__request .footer__cta__button__request:hover {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--dusk-blue);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--white);
        text-decoration: none;
        border-radius: 4px;
    }

    .footer__cta__request:hover {
        color: var(--white);
        background: linear-gradient(to right, #FFF);
        border-radius: 4px;
    }

    .footer__cta__request:hover h2 {
        font-family: Helvetica !important;
        font-size: 3.6rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--white);
        font-weight: normal;
    }

    .footer__cta__request:hover p {
        font-size: 2rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--white);
    }

    .footer__cta__request:hover .footer__cta__request__span {
        background: transparent;
        border-radius: 3px;
        border: 2px solid #fff;
        color: #fff;
        padding: 4px 12px;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 2;
    }

    .footer__cta__request__span {
        background: transparent linear-gradient(67deg, #223F85 0%, #1D6595 100%) 0% 0% no-repeat padding-box;
        border-radius: 3px;
        color: #fff;
        padding: 4px 12px;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 2;
    }

    .footer__cta__request:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: linear-gradient(89deg, var(--dusk-blue) 0%, #1d7995 100%);
        z-index: -1;
        transition: 0.02s;
        border-radius: 4px;
    }

    .footer__cta__request:hover:before {
        width: 100%;
    }

    #footer__nav {
        display: block;
        position: relative;
    }

    #footer__info {
        background-color: var(--charcoal-grey);
    }

    .footer__info {
        padding: 20px 0;
        color: #FFF;
        font-size: 1.4rem;
        letter-spacing: 0.42px;
    }

    .footer__info__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }

    .footer__info__logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .footer__info__description {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    #drawer {
        display: block;
    }

    .drawer {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 90px;
        background: var(--white);
        border: solid 1px var(--dusk-blue);
        z-index: 13;
        border-radius: 25px;
        padding: 10px 0;
        text-align: center;
        color: var(--dusk-blue);
        text-decoration: none !important;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .drawer::after {
        content: "メニュー";
    }

    .drawer.active::after {
        content: "閉じる";
    }
}


/* xl */

@media (min-width: 1200px) {
    .header {
        height: 80px;
        display: flex;
    }

    .h__container {
        padding: 0 20px 0 4.267%;
    }

    .header__nav {
        display: block;
        flex: auto;
    }

    .header__nav a {
        text-decoration: none;
        color: var(--charcoal-grey);
        position: relative;
    }

    .header__nav a:hover {
        color: var(--dusk-blue);
    }

    .header__nav a:before {
        content: "";
        position: absolute;
        top: -30px;
        left: 0;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
        height: 4px;
        background: var(--dusk-blue);
        transform: scale(0, 1);
        transform-origin: left;
        transition: 0.2s;
    }

    .header__nav a:hover:before {
        transform: scale(1);
    }

    .header__info {
        display: block;
    }

    .header__logo {
        display: block;
    }

    .header__phone__number {
        font-family: Helvetica !important;
        font-size: 1.6rem;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        text-align: center;
        color: var(--charcoal-grey);
        position: relative;
    }

    .header__phone__number::before {
        content: "";
        background: url(../img/icon__phone.svg) no-repeat;
        width: 10px;
        height: 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-40%);
        left: -5px;
    }

    .header__business__hours {
        font-family: Helvetica !important;
        font-size: 1.2rem;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        text-align: center;
        color: #2d3033;
    }

    .header__cta__button__request {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 40px;
        border: solid 1px #223f85;
        border-radius: 4px;
        background-color: #ffffff;
        font-size: 1.4rem;
        margin: 0 10px;
        color: #223f85;
        position: relative;
        text-decoration: none;
        z-index: 10;
    }

    .header__cta__button__request:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #223f85;
        z-index: -1;
        transition: 0.2s;
    }

    .header__cta__button__request:hover {
        color: #fff;
    }

    .header__cta__button__request:hover:before {
        width: 100%;
    }

    .header__cta__button__contact {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 40px;
        border: solid 1px #eb9402;
        border-radius: 4px;
        font-size: 1.4rem;
        color: #eb9402;
        position: relative;
        text-decoration: none;
    }

    .header__cta__button__contact {
        color: #eb9402;
        z-index: 10;
    }

    .header__cta__button__contact:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #eb9402;
        z-index: -1;
        transition: 0.2s;
    }

    .header__cta__button__contact:hover {
        color: #fff;
    }

    .header__cta__button__contact:hover:before {
        width: 100%;
    }

    .header__key__visual {
        position: relative;
        color: #ffffff;
    }

    .header__description {
        height: 250px;
    }

    .header__description h1 {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 3.6rem;
        line-height: 1.3em;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: 1.6px;
        color: var(--white);
    }

    .header__description span {
        font-family: Helvetica;
        font-size: 2rem;
        line-height: 1em;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: 2px;
        color: var(--white);
    }

    /* サービス ヘッダー*/
    #header__key__visual {
        background: url(../img/header__key__visual.webp) no-repeat;
        background-size: cover;
        background-position: bottom;
    }

    /* サービス リスト カード */
    .service__list__card__wrapper {
        height: auto;
        position: relative;
        padding: 120px 0 160px;
    }

    .service__list__card__title h2 {
        width: auto;
        height: auto;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 3.2rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: 3.2px;
        text-align: center;
        color: #35393d;
        margin: 0 auto var(--spacing-md) auto;
    }

    a.service__list__card {
        display: flex;
        flex-direction: row;
        background: #FFF;
        justify-content: center;
        align-items: center;
        box-shadow: 2px 2px 10px 0 rgba(211, 217, 231, 0.4);
        max-width: 872px;
        height: auto;
        position: relative;
        z-index: 10;
    }

    a.service__list__card:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #223f85;
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    a.service__list__card:hover:before {
        width: 100%;
        border-radius: 4px;
    }

    a.service__list__card:hover {
        color: #FFF;
        background: #223f85;
    }

    a.service__list__card:hover .printer,
    a.service__list__card:hover .plane,
    a.service__list__card:hover .connector,
    a.service__list__card:hover .production {
        color: #FFF;
    }

    a.service__list__card .none {
        height: 44px;
    }

    a.service__list__card .show {
        height: 44px;
    }

    a.service__list__card:hover .none {
        display: none;
    }

    a.service__list__card .show {
        display: none;
    }

    a.service__list__card:hover .show {
        display: block;
        font-size: 2rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.4;
        letter-spacing: 2px;
        text-align: center;
        color: #FFF;
    }

    a.service__list__card:hover .show::after {
        content: "▶";
        color: #FFF;
    }

    .service__list__card__img {
        width: 430px;
        margin: 0;
        align-self: stretch;
        overflow: hidden;
    }

    .service__list__card__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .service__list__card__description {
        width: 542px;
        padding: 0 40px;
    }

    .service__list__card__description .printer,
    .service__list__card__description .plane,
    .service__list__card__description .connector,
    .service__list__card__description .production {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 3.2rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 3.2px;
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0 0 32px;
        gap: 0;
        color: #223f85;
    }

    .service__list__card__description .printer:before {
        content: url(../img/section__service__img__printer__icon.svg);
        width: 80px;
        height: 80px;
        margin-right: 40px;
    }

    .service__list__card__description .plane:before {
        content: url(../img/section__service__img__plane__engine_icon.svg);
        width: 80px;
        height: 80px;
        margin-right: 40px;
    }

    .service__list__card__description .connector:before {
        content: url(../img/section__service__img__connector__icon.svg);
        width: 80px;
        height: 80px;
        margin-right: 40px;
    }

    .service__list__card__description .production:before {
        background-image: url(../img/section__service__img__plane__engine_icon.svg);
        width: 80px;
        height: 80px;
        margin-right: 40px;
    }

    #footer__cta {
        background: url(../img/footer__cta__bg@2x.webp) no-repeat;
        background-size: cover;
        position: relative;
        background-position: bottom;
    }

    #footer__cta::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .footer__cta {
        padding: 80px 0;
        height: 616px;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .footer__cta__header {
        margin-bottom: 56px;
        color: #FFF;
    }

    .footer__cta__header h1 {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2.8rem;
        line-height: 1.43;
        letter-spacing: 2.8px;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer__cta__header span {
        display: block;
    }

    .footer__cta__header .footer__cta__text__one {
        font-size: 1.8rem;
        font-weight: bold;
        margin: 0 32px 0 0;
    }

    .footer__cta__header a.footer__cta__text__number {
        font-size: 3.4rem;
        font-weight: bold;
        margin: 0 8px 0 0;
        color: #FFF;
        font-family: Helvetica !important;
    }

    .footer__cta__header .footer__cta__text__hours {
        font-size: 1.4rem;
        font-weight: bold;
        margin: 0 24px 0 0;
        font-family: Helvetica !important;
    }

    .footer__cta__header .footer__cta__text__hours::after {
        width: 1px;
        height: 30px;
        background-color: var(--white);
    }

    .footer__cta__header .footer__cta__text__after {
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 1.6px;
        text-decoration: none;
        color: #FFF;
        position: relative;
        transition: all 0.2s;
    }

    .footer__cta__header .footer__cta__text__after::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background: var(--white);
        transform: scale(0, 1);
        transform-origin: left;
        transition: 0.2s;
    }

    .footer__cta__header .footer__cta__text__after:hover {
        color: #FFF;
    }

    .footer__cta__header .footer__cta__text__after:hover::before {
        transform: scale(1);
    }

    .footer__cta__body {
        display: flex;
        flex-wrap: wrap;
        gap: 120px;
        justify-content: center;
        align-items: center;
        padding: 0 15px;
    }

    .footer__cta__contact {
        width: 465px;
        box-sizing: border-box;
        height: 292px;
        background: #FFF;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        gap: 36px;
        pointer-events: none;
        position: relative;
        z-index: 10;
        padding: 40px 0;
    }

    .footer__cta__contact {
        font-family: Helvetica !important;
        font-size: 3.6rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--tangerine);
        font-weight: normal;
    }

    .footer__cta__contact p {
        font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
        font-size: 2rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--charcoal-grey);
    }

    .footer__cta__contact .footer__cta__button__contact {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--white);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--tangerine);
        text-decoration: none;
        border-radius: 4px;
        pointer-events: auto;
        position: relative;
        z-index: 10;
    }

    .footer__cta__contact .footer__cta__button__contact:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #FFF;
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    .footer__cta__contact .footer__cta__button__contact:hover:before {
        width: 100%;
        border-radius: 4px;
    }

    .footer__cta__contact .footer__cta__button__contact:hover {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--tangerine);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--white);
        text-decoration: none;
        border-radius: 4px;
    }

    .footer__cta__contact:hover {
        color: var(--white);
        background: linear-gradient(to right, #FFF);
        border-radius: 4px;
    }

    .footer__cta__contact:hover h2 {
        font-family: Helvetica !important;
        font-size: 3.6rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--white);
        font-weight: normal;
    }

    .footer__cta__contact:hover p {
        font-size: 2rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--white);
    }

    .footer__cta__contact:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: linear-gradient(to right, #e99325, #e9cb25);
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    .footer__cta__contact:hover:before {
        width: 100%;
    }

    .footer__cta__request {
        width: 465px;
        height: 292px;
        background: #FFF;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        gap: 36px;
        pointer-events: none;
        position: relative;
        z-index: 10;
        padding: 40px 0;
    }

    .footer__cta__request {
        font-family: Helvetica !important;
        font-size: 3.6rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--dusk-blue);
        font-weight: normal;
    }

    .footer__cta__request p {
        font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
        font-size: 2rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--charcoal-grey);
    }

    .footer__cta__request .footer__cta__button__request {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--white);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--dusk-blue);
        text-decoration: none;
        border-radius: 4px;
        pointer-events: auto;
        position: relative;
        z-index: 10;
    }

    .footer__cta__request .footer__cta__button__request:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #FFF;
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    .footer__cta__request .footer__cta__button__request:hover:before {
        width: 100%;
        border-radius: 4px;
    }

    .footer__cta__request .footer__cta__button__request:hover {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--dusk-blue);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--white);
        text-decoration: none;
        border-radius: 4px;
    }

    .footer__cta__request:hover {
        color: var(--white);
        background: linear-gradient(to right, #FFF);
        border-radius: 4px;
    }

    .footer__cta__request:hover h2 {
        font-family: Helvetica !important;
        font-size: 3.6rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--white);
        font-weight: normal;
    }

    .footer__cta__request:hover p {
        font-size: 2rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--white);
    }

    .footer__cta__request:hover .footer__cta__request__span {
        background: transparent;
        border-radius: 3px;
        border: 2px solid #fff;
        color: #fff;
        padding: 4px 12px;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 2;
    }

    .footer__cta__request__span {
        background: transparent linear-gradient(67deg, #223F85 0%, #1D6595 100%) 0% 0% no-repeat padding-box;
        border-radius: 3px;
        color: #fff;
        padding: 4px 12px;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 2;
    }

    .footer__cta__request:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: linear-gradient(89deg, var(--dusk-blue) 0%, #1d7995 100%);
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    .footer__cta__request:hover:before {
        width: 100%;
    }

    .footer__copy {
        text-align: center;
        display: block;
    }

    #footer__nav {
        display: block;
        position: relative;
    }

    .footer__nav__pc {
        display: block;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        letter-spacing: 0.8px;
    }

    .footer__nav__pc .flex {
        padding: 40px 165px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer__nav__pc a {
        display: inline;
        position: relative;
        text-decoration: none;
        color: var(--charcoal-grey);
    }

    .footer__nav__pc a:hover {
        color: var(--dusk-blue);
    }

    .footer__nav__pc a:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background: var(--dusk-blue);
        transform: scale(0, 1);
        transform-origin: left;
        transition: 0.2s;
    }

    .footer__nav__pc a:hover:before {
        transform: scale(1);
    }

    /* ===============================
       肺動脈モデル（feel-organ）ヘッダー最終上書き
       =============================== */
    body.page-feel-organ #header__key__visual {
        background: url(../img/feel_organ_header.png) center center / cover no-repeat !important;
    }

    .footer__nav {
        display: none;
    }

    #footer__info {
        background-color: var(--charcoal-grey);
    }

    .footer__info {
        padding: 20px 0;
        color: #FFF;
        font-size: 1.4rem;
        letter-spacing: 0.42px;
    }

    .footer__info__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }

    .footer__info__logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .footer__info__description {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    #drawer {
        display: none !important;
    }

    .drawer {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 35%;
        background: var(--dusk-blue);
        z-index: 13;
        border-radius: 25px;
        padding: 10px 0;
        text-align: center;
        color: #FFF;
        text-decoration: none !important;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .drawer::after {
        content: "メニュー";
    }

    .drawer.active::after {
        content: "閉じる";
    }

    #sp__menu {
        display: none;
    }

    a.case__card__link__button {
        border-radius: 4px;
        border: solid 1px #247d96;
        background-color: #FFF;
        font-size: 1.4rem !important;
        padding: 5px 20px;
        color: #247d96;
        margin: 0 auto;
        display: block;
        width: fit-content;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 1.2px;
        position: relative;
        z-index: 10;
        margin: 20px auto 0;
        line-height: 1.88;
    }

    a.case__card__link__button::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #247d96;
        z-index: -1;
        transition: 0.2s;
        border-radius: 6px;
    }

    a.case__card__link__button:hover:before {
        width: 100%;
        border-radius: 4px;
    }

    a.case__card__link__button:hover {
        width: fit-content;
        border-radius: 4px;
        border: solid 1px #247d96;
        background-color: #247d96;
        text-decoration: none;
        color: #fff;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.4rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 1.2px;
        line-height: 1.88;
    }
}


/* xxl */

@media (min-width: 1440px) {
    .header {
        height: 80px;
        display: flex;
    }

    .h__container {
        padding: 0 4.267% 0 4.267%;
    }

    .header__nav {
        display: block;
        flex: auto;
    }

    .header__nav a {
        text-decoration: none;
        color: var(--charcoal-grey);
        position: relative;
    }

    .header__nav a:hover {
        color: var(--dusk-blue);
    }

    .header__nav a:before {
        content: "";
        position: absolute;
        top: -30px;
        left: 0;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
        height: 4px;
        background: var(--dusk-blue);
        transform: scale(0, 1);
        transform-origin: left;
        transition: 0.2s;
    }

    .header__nav a:hover:before {
        transform: scale(1);
    }

    .header__info {
        display: block;
    }

    .header__logo {
        display: block;
        flex: 1;
    }

    .header__phone__number {
        font-family: Helvetica !important;
        font-size: 1.6rem;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        text-align: center;
        color: var(--charcoal-grey);
        position: relative;
    }

    .header__phone__number::before {
        content: "";
        background: url(../img/icon__phone.svg) no-repeat;
        width: 10px;
        height: 20px;
        position: absolute;
        top: 50%;
        transform: translateY(-40%);
        left: -5px;
    }

    .header__business__hours {
        font-family: Helvetica !important;
        font-size: 1.2rem;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        text-align: center;
        color: #2d3033;
    }

    .header__cta__button__request {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 40px;
        border: solid 1px #223f85;
        border-radius: 4px;
        background-color: #ffffff;
        font-size: 1.4rem;
        margin: 0 10px;
        color: #223f85;
        position: relative;
        text-decoration: none;
        z-index: 10;
    }

    .header__cta__button__request:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #223f85;
        z-index: -1;
        transition: 0.2s;
    }

    .header__cta__button__request:hover {
        color: #fff;
    }

    .header__cta__button__request:hover:before {
        width: 100%;
    }

    .header__cta__button__contact {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 40px;
        border: solid 1px #eb9402;
        border-radius: 4px;
        font-size: 1.4rem;
        color: #eb9402;
        position: relative;
        text-decoration: none;
    }

    .header__cta__button__contact {
        color: #eb9402;
        z-index: 10;
    }

    .header__cta__button__contact:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #eb9402;
        z-index: -1;
        transition: 0.2s;
    }

    .header__cta__button__contact:hover {
        color: #fff;
    }

    .header__cta__button__contact:hover:before {
        width: 100%;
    }

    .header__key__visual {
        position: relative;
        color: #FFF;
    }

    .header__description {
        height: 250px;
    }

    .header__description h1 {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 3.6rem;
        line-height: 1.3em;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: 1.6px;
        color: var(--white);
    }

    .header__description span {
        font-family: Helvetica;
        font-size: 2rem;
        line-height: 1em;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: 2px;
        color: var(--white);
    }

    /* サービス ヘッダー*/
    #header__key__visual {
        background: url(../img/header__key__visual.webp) no-repeat;
        background-size: cover;
        background-position: unset;
    }

    /* サービス リスト カード */
    .service__list__card__wrapper {
        height: auto;
        position: relative;
        padding: 120px 0 160px;
    }

    .service__list__card {
        display: flex;
        flex-direction: row;
        background: #FFF;
        justify-content: center;
        align-items: center;
        box-shadow: 2px 2px 10px 0 rgba(211, 217, 231, 0.4);
        max-width: 872px;
        height: auto;
    }

    .service__list__card__img {
        width: 430px;
        margin: 0;
    }

    .service__list__card__description {
        width: 542px;
        padding: 0 40px;
    }

    .service__list__card__description .printer,
    .service__list__card__description .plane,
    .service__list__card__description .connector,
    .service__list__card__description .production {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 3.2rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 3.2px;
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0 0 32px;
        gap: 0;
        color: #223f85;
    }

    .service__list__card__description .printer:before {
        content: url(../img/section__service__img__printer__icon.svg);
        width: 80px;
        height: 80px;
        margin-right: 40px;
    }

    .service__list__card__description .plane:before {
        content: url(../img/section__service__img__plane__engine_icon.svg);
        width: 80px;
        height: 80px;
        margin-right: 40px;
    }

    .service__list__card__description .connector:before {
        content: url(../img/section__service__img__connector__icon.svg);
        width: 80px;
        height: 80px;
        margin-right: 40px;
    }

    .service__list__card__description .production:before {
        background-image: url(../img/section__service__img__plane__engine_icon.svg);
        width: 80px;
        height: 80px;
        margin-right: 40px;
    }

    /* CTA */
    #footer__cta {
        background: url(../img/footer__cta__bg@2x.webp) no-repeat;
        background-size: cover;
        position: relative;
        background-position: bottom;
    }

    #footer__cta::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .footer__cta {
        padding: 80px 0;
        height: 616px;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .footer__cta__header {
        margin-bottom: 56px;
        color: #FFF;
    }

    .footer__cta__header h1 {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2.8rem;
        line-height: 1.43;
        letter-spacing: 2.8px;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer__cta__header span {
        display: block;
    }

    .footer__cta__header .footer__cta__text__one {
        font-size: 1.8rem;
        font-weight: bold;
        margin: 0 32px 0 0;
    }

    .footer__cta__header a.footer__cta__text__number {
        font-size: 3.4rem;
        font-weight: bold;
        margin: 0 8px 0 0;
        color: #FFF;
        font-family: Helvetica !important;
    }

    .footer__cta__header .footer__cta__text__hours {
        font-size: 1.4rem;
        font-weight: bold;
        margin-right: 0 24px 0 0;
        font-family: Helvetica !important;
    }

    .footer__cta__header .footer__cta__text__hours::after {
        width: 1px;
        height: 30px;
        background-color: var(--white);
    }

    .footer__cta__header .footer__cta__text__after {
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 1.6px;
        text-decoration: none;
        color: #FFF;
        position: relative;
        transition: all 0.2s;
    }

    .footer__cta__header .footer__cta__text__after::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background: var(--white);
        transform: scale(0, 1);
        transform-origin: left;
        transition: 0.2s;
    }

    .footer__cta__header .footer__cta__text__after:hover {
        color: #FFF;
    }

    .footer__cta__header .footer__cta__text__after:hover::before {
        transform: scale(1);
    }

    .footer__cta__body {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: space-between;
        align-items: center;
        padding: 0 90px;
    }

    .footer__cta__contact {
        width: 500px;
        height: 292px;
        background: #FFF;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        gap: 36px;
        pointer-events: none;
        position: relative;
        z-index: 10;
    }

    .footer__cta__contact {
        font-family: Helvetica !important;
        font-size: 3.6rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--tangerine);
        font-weight: normal;
    }

    .footer__cta__contact p {
        font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
        font-size: 2rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--charcoal-grey);
    }

    .footer__cta__contact .footer__cta__button__contact {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--white);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--tangerine);
        text-decoration: none;
        border-radius: 4px;
        pointer-events: auto;
        position: relative;
        z-index: 10;
    }

    .footer__cta__contact .footer__cta__button__contact:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #FFF;
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    .footer__cta__contact .footer__cta__button__contact:hover:before {
        width: 100%;
        border-radius: 4px;
    }

    .footer__cta__contact .footer__cta__button__contact:hover {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--tangerine);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--white);
        text-decoration: none;
        border-radius: 4px;
    }

    .footer__cta__contact:hover {
        color: var(--white);
        background: linear-gradient(to right, #FFF);
        border-radius: 4px;
    }

    .footer__cta__contact:hover h2 {
        font-family: Helvetica !important;
        font-size: 3.6rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--white);
        font-weight: normal;
    }

    .footer__cta__contact:hover p {
        font-size: 2rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--white);
    }

    .footer__cta__contact:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: linear-gradient(to right, #e99325, #e9cb25);
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    .footer__cta__contact:hover:before {
        width: 100%;
    }

    .footer__cta__request {
        width: 500px;
        height: 292px;
        background: #FFF;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        pointer-events: none;
        position: relative;
        z-index: 10;
    }

    .footer__cta__request {
        font-family: Helvetica !important;
        font-size: 3.6rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--dusk-blue);
        font-weight: normal;
    }

    .footer__cta__request p {
        font-family: "HiraginoSans-W3", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
        font-size: 2rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--charcoal-grey);
    }

    .footer__cta__request .footer__cta__button__request {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--white);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--dusk-blue);
        text-decoration: none;
        border-radius: 4px;
        pointer-events: auto;
        position: relative;
        z-index: 10;
    }

    .footer__cta__request .footer__cta__button__request:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: #FFF;
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    .footer__cta__request .footer__cta__button__request:hover:before {
        width: 100%;
        border-radius: 4px;
    }

    .footer__cta__request .footer__cta__button__request:hover {
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 2rem;
        line-height: 3;
        letter-spacing: 2px;
        color: var(--dusk-blue);
        width: 67.2%;
        box-shadow: 0 3px 6px 0 rgba(53, 57, 61, 0.19);
        background-color: var(--white);
        text-decoration: none;
        border-radius: 4px;
    }

    .footer__cta__request:hover {
        color: var(--white);
        background: linear-gradient(to right, #FFF);
        border-radius: 4px;
    }

    .footer__cta__request:hover h2 {
        font-family: Helvetica !important;
        font-size: 3.6rem;
        line-height: 1.11;
        letter-spacing: 3.6px;
        color: var(--white);
        font-weight: normal;
    }

    .footer__cta__request:hover p {
        font-size: 2rem;
        line-height: 2;
        letter-spacing: 2px;
        color: var(--white);
    }

    .footer__cta__request:hover .footer__cta__request__span {
        background: transparent;
        border-radius: 3px;
        border: 2px solid #fff;
        color: #fff;
        padding: 4px 12px;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 2;
    }

    .footer__cta__request__span {
        background: transparent linear-gradient(67deg, #223F85 0%, #1D6595 100%) 0% 0% no-repeat padding-box;
        border-radius: 3px;
        color: #fff;
        padding: 4px 12px;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 2;
    }

    .footer__cta__request:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        display: block;
        background: linear-gradient(89deg, var(--dusk-blue) 0%, #1d7995 100%);
        z-index: -1;
        transition: 0.2s;
        border-radius: 4px;
    }

    .footer__cta__request:hover:before {
        width: 100%;
    }

    #footer__nav {
        display: block;
        position: relative;
    }

    .footer__nav__pc {
        display: block;
        font-family: "Hiragino Kaku Gothic W6 JIS2004";
        font-size: 1.6rem;
        letter-spacing: 0.8px;
    }

    .footer__nav__pc .flex {
        padding: 40px 165px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer__nav__pc a {
        display: inline;
        position: relative;
        text-decoration: none;
        color: var(--charcoal-grey);
    }

    .footer__nav__pc a:hover {
        color: var(--dusk-blue);
    }

    .footer__nav__pc a:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background: var(--dusk-blue);
        transform: scale(0, 1);
        transform-origin: left;
        transition: 0.2s;
    }

    .footer__nav__pc a:hover:before {
        transform: scale(1);
    }

    .footer__nav {
        display: none;
    }

    #footer__info {
        background-color: var(--charcoal-grey);
    }

    .footer__info {
        padding: 20px 0;
        color: #FFF;
        font-size: 1.4rem;
        letter-spacing: 0.42px;
    }

    .footer__info__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }

    .footer__info__logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .footer__info__description {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    #drawer {
        display: none !important;
    }

    .drawer {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 35%;
        background: var(--dusk-blue);
        z-index: 13;
        border-radius: 25px;
        padding: 10px 0;
        text-align: center;
        color: #FFF;
        text-decoration: none !important;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .drawer::after {
        content: "メニュー";
    }

    .drawer.active::after {
        content: "閉じる";
    }
}

.pagetop {
    position: fixed;
    right: 200px;
    bottom: 0;
    color: #fff;
    background: #223f85;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.absolute {
    position: absolute;
    top: -70px;
    bottom: auto;
}

.categories {
    max-width: 960px;
    margin: 96px auto 0;
    border-top: solid 1px #CCC;
    border-bottom: solid 1px #CCC;
    padding: 16px;
}

#archive .news__categories {
    padding: 0 4.267%;
}

.categories ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
}

.categories ul li.title {
    flex-basis: 100%;
    font-weight: bold;
    margin: 0 auto;
}

.categories ul li.item {
    flex-basis: 50%;
    font-size: 1.4rem
}

.categories ul li.search {
    flex-basis: 100%;
    margin: 8px auto 0;
    text-align: center;
}

@media (min-width: 768px) {
    .categories ul li.item {
        flex-basis: auto;
    }
}

@media (min-width: 992px) {
    .categories {
        max-width: 960px;
        margin: 96px auto 0;
        border-top: solid 1px #CCC;
        border-bottom: solid 1px #CCC;
        padding: 20px 24px;
    }

    .categories ul {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        row-gap: 24px;
    }

    .categories ul li.title {
        font-weight: bold;
        flex-basis: auto;
        margin: 0 16px;
    }

    .categories ul li.item {
        flex-basis: auto;
    }

    .categories ul li.search {
        flex-basis: auto;
        margin: 0 16px;
        text-align: center;
    }

    #archive input[type=submit] {
        width: 90px;
        height: 30px;
        padding: 0;
        border: solid 1px #223f85;
        border-radius: 4px;
        color: #223f85;
        background: #fff;
        font-size: 1.4rem;
        letter-spacing: 1px;
        text-align: center;
        font-family: Helvetica, Arial, sans-serif;
    }

    #archive input[type=submit]:hover {
        color: #fff;
        background: #223f85;
        z-index: -1;
        transition: 0.2s;
    }
}

/* ===============================
   Feel Organ 左肺動脈モデル 製品詳細ページ
   =============================== */

/* ヘッダービジュアル（仮: feel-organと同背景。製品ヘッダー画像が決まったら差し替え） */
#header__key__visual.feel-organ-left-pulmonary-header {
    background: url(../img/feel_organ_header.webp) center center / cover no-repeat;
}

/* 製品メインセクション */
#feel-organ-left-pulmonary__main {
    padding: 64px 0;
}

.feel-organ__product__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 製品実物画像 */
.feel-organ__product__img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* WPエディタコンテンツ（説明・特徴など） */
.feel-organ__product__content {
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.8px;
    color: #35393d;
}

@media (min-width: 992px) {

    /* PC: 左に画像・右にコンテンツの2カラム */
    .feel-organ__product__inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 64px;
    }

    .feel-organ__product__img {
        width: 50%;
        flex-shrink: 0;
    }

    .feel-organ__product__content {
        width: 50%;
    }

    /* PC: ヘッダー背景を上書き */
    #header__key__visual.feel-organ-left-pulmonary-header {
        background: url(../img/feel_organ_header.webp) center center / cover no-repeat;
    }
}


/* service_about 画像＋テキスト横並びレイアウト（左肺動脈モデルページ用） */
.service_about_inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service_about_inner .service_about_img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

@media (min-width: 992px) {
    .service_about_inner {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }

    .service_about_inner .service_about_img {
        width: 45%;
        flex-shrink: 0;
    }

    .service_about_inner .service_about_text {
        width: 55%;
    }
}
