@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap');

/* =============================================
Bootstrap Edit
============================================= */
@media screen and (max-width: 41.1428571em) {
    .container {
        max-width: 90%;
        margin: auto;
        padding: 0;
    }
}

/* =============================================
Reset CSS
============================================= */
html {
    font-size: 62.5%;
}
p, h1, h2, h3, h4, h5 a, ul, li {
    margin: 0;
    padding: 0
}
ul {
    list-style: none;
}
html, body {
    overflow-x: hidden;
}

/* =============================================
img
============================================= */
img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =============================================
Fonts
============================================= */
/*日本語はBIZ UDP Gothic*/
/* 英数字はMontserrat */
@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 700; /* ← 本来600だが日英で共通bold処理を行うために700として登録 */
}
* {
    font-family: "Montserrat", "BIZ UDPGothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: none;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
    text-align: justify;
    word-break: break-all;
    font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
    -moz-font-feature-settings: "palt";
    color: #002E4D;
    vertical-align: baseline;
    letter-spacing: 0;
}
p {
    line-height: 1.8;
}
a {
    color: #002E4D;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
a:visited {
    color: #002E4D;
}
a:hover {
    opacity: .8;
}
.bold {
    font-weight: 700;
}
.content-ttl-wrapper > h2 {
    font-size: 4.8rem;
}
.content-ttl-wrapper > span {
    opacity: .6;
}
h3 {
    font-size: 2.4rem;
    line-height: 1.6;
    margin-bottom: 36px;
}


/* =============================================
デバイスによる表示切り替え
============================================= */
.sp {
    display: none;
}
.pc {
    display: block;
}
@media screen and (max-width: 41.1428571em) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    } 
}

/* =============================================
ボタン
============================================= */
.btn {
    transition: all .2s ease-in-out;
    font-size: 1.4rem;
    border-radius: 4px;
    line-height: 1;
    position: relative;
    padding-left: 24px;
    text-align: left;
}
.btn::after {
    content: "";
    background-color: #fff;
    width: 8px;
    height: 8px;
    border-radius: 100px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translate(-50%, -50%);
}
.btn-small {
    min-width: 131px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.btn-default {
    padding-top: 16px;
    padding-bottom: 16px;
    min-width: 198px;
}
.solid-blue {
    background-color: rgba(0, 119, 200, 1);
    color: #fff;
}
.solid-blue:hover {
    background-color: rgba(0, 119, 200, .9);
    color: #fff;
}
.solid-blue:visited {
    background-color: rgba(0, 119, 200, 1);
    color: #fff;
}
.btn-wrapper {
    text-align: center;
    margin-top: 36px;
}

/* =============================================
ヘッダー
============================================= */
.header-pc {
    display: block;
    width: 100%;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: solid 1px #ccc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
}
.header-sp {
    display: none;
    width: 100%;
    padding: 10px 0;
    margin: auto;
    background-color: #fff;
    border-bottom: solid 1px #ccc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
}
.gnav-icon {
    width: 36px;
    height: 36px;
}
.gnav-icon:hover {
    cursor: pointer;
}
a.header-logo-pc-wrapper {
    width: auto;
    height: auto;
    padding: 0;
    display: block;
}
.header-logo-pc {
    height: 28px;
    width: auto;
}
.header-logo-sp {
    height: 20px;
    width: auto;
}
.header-pc > .container > .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-content-wrapper {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gnav-wrapper {
    width: auto;
}
.gnav-list {
    display: flex;
    justify-content: end;
    gap: 36px;
    align-items: center;
}
.header-sp > .header-content-wrapper > a {
    display: block;
}
@media screen and (max-width: 54.8571429em) {
    .gnav-list {
        gap: 24px;
    }
}
@media screen and (max-width: 51.4285714em) { /*画面幅720pxでヘッダーのPC・SP切り替え*/
    .header-pc {
        display: none;
    }
    .header-sp {
        display: block;
    }
    .header-content-wrapper {
        width: 90%;
        margin: auto;
    }
}

/* =============================================
Drawer Menu
============================================= */
.drawer-menu {
    width: 100%;
    height: calc(100dvh - 77px);
    background-color: #fff;
    position: fixed;
    top: 77px;
    right: -100%;
    transition: all ease-in-out .3s;
    z-index: 10;
    opacity: 0;
    overflow-y: scroll;
}
.drawer-menu-list {
    width: 90%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}
.drawer-menu-list > li > a {
    display: block;
    padding: 48px 0 16px 0;
    border-bottom: solid 1px #ccc;
}
.drawer-menu-list > li:last-of-type {
    padding-bottom: 48px;
}
.menu-show {
    right: 0;
    opacity: 1;
}
.noscroll {
    overflow: hidden;
}
@media screen and (max-width: 51.4285714em) { /*画面幅720pxでヘッダーのPC・SP切り替え*/
    .drawer-menu {
        height: calc(100dvh - 57px);
        top: 57px;
    }
}

/* =============================================
KV
============================================= */
#Kv {
    width: 100%;
    height: calc(100svh - 77px);
    margin-top: 77px;
    position: relative;
    z-index: 1;
}

.kv-wrapper-pc {
    height: 100%;
    display: block;
}
.kv-wrapper-sp {
    height: 100%;
    display: none;
}
@media screen and (max-width: 41.1428571em) {
    .kv-wrapper-pc {
        height: 100%;
        display: none;
    }
    .kv-wrapper-sp {
        height: 100%;
        display: block;
    }
}

#Kv > .kv-wrapper-pc > .container-fluid.kv-grid > .row > div {
    border: solid 0.5px #ccc;
    max-height: 100%;
}
#Kv > .kv-wrapper-pc > .container-fluid.kv-grid > .row-01 > div {
    border-top: none;
}
#Kv > .kv-wrapper-pc > .container-fluid > .row-kv > div {
    border: none;
}

#Kv > .kv-wrapper-sp > .container-fluid > .row > div {
    border: solid 0.5px #ccc;
}
#Kv > .kv-wrapper-sp > .container-fluid.kv-grid > .row-01 > div {
    border: none;
}

.container-fluid {
    height: 100%;
}

.row-01 {
    height: 12%;
}
.row-02 {
    height: 42%;
}
.row-03 {
    height: 21%;
}
.row-04 {
    height: 25%;
}
.row-kv {
    height: calc(100% - 12%);
}
@media screen and (max-width: 41.1428571em) {
    .row-01 {
        height: 21%;
    }
    .row-02 {
        height: 33%;
    }
    .row-03 {
        height: 16.5%;
    }
    .row-04 {
        height: 19%;
    }
    .row-05 {
        height: 10.5%;
    }
    .row-kv {
        height: calc(100% - 21% - 10.5%);
    }
}

.kv-parts-black {
    background-image: url("./assets/images/kv_black.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.kv-parts-green {
    background-image: url("./assets/images/kv_green.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* キャッチコピー日本語 */
/* PC表示 */
.cp-jp-wrapper {
    display: flex;
    align-items: center;
    padding-left: calc(24em /14);
    padding-right: calc(40em /14);
    height: 100%;
}
.kv-catchcopy-jp {
    display: block;
    width: auto;
    height: clamp(36px, 3.43em, 55px);
    max-width: 100%;
    max-height: 100%;
}
@media screen and (max-width: 41.1428571em) { /* 576px */
    .cp-jp-wrapper {
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
        padding: calc(24em / 14);
    }
}
/* SP表示 */
.kv-catchcopy-jp.kv-sp {
    width: 100%;
    height: auto;
}

/* キャッチコピー英語 */
.cp-en-wrapper {
    padding: 3.5em;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.kv-catchcopy-en {
    display: block;
    height: auto;
    width: clamp(280px, 40vw, 450px);
    max-width: 100%;
    max-height: 100%;
}

/* ロゴビジュアル */
.container-fluid.kv-overlay {
    position: absolute;
    top: 0;
    left: 0;
}
.kv-visual-wrapper {
    height: 100%;
    padding: 0;
    position: relative;
}
.kv-visual {
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0px;
}

@media screen and (max-width: 54.8571429em) { /* 768px */
    .cp-en-wrapper {
        padding: calc(30em /14);
    }
}
@media screen and (max-width: 51.4285714em) { /* 720px */
    #Kv {
        height: calc(100svh - 57px);
        margin-top: 57px;
    }
}

/* =============================================
コンテンツタイトル共通
============================================= */
.content-ttl-wrapper {
    margin-bottom: 36px;
}
@media screen and (max-width: 41.1428571em) {
    .content-ttl-wrapper {
        margin-bottom: 36px;
    }
    .content-ttl-wrapper > h2 {
        font-size: 4rem;
    }
}

/* =============================================
News
============================================= */
#News {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #FFF 14.44%, #F7F7F7 50.27%);
}
.news-cards-wrapper {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.news-card {
    width: 33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
}
.news-thumbnail-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #fff;
    position: relative;
}
.news-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.news-textarea {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.news-title {
    flex-grow: 1;
}
.news-date {
    opacity: .6;
}
.news-textarea-dummy {
    flex-grow: 1;
    background: linear-gradient(180deg, #F7F7F7 0%, #EDEDED 100%);
}
@media (max-width: 54.8571429em) {
    .news-title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
    }
}
@media screen and (max-width: 41.1428571em) {
    .news-cards-wrapper {
        flex-direction: column;
        gap: 36px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .news-card {
    width: 100%;
    height: auto;
    }
    .news-card-dummy {
        display: none;
    }
    .news-title {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
        text-overflow: unset;
        white-space: normal;
    }
}

/* =============================================
Mission
============================================= */
#Mission {
    background-image: url(./assets/images/mission_bg_pc.jpg);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
}
.largecard-wrapper {
    padding: 60px;
    border-radius: 12px;
    background-color: #fff;
    border-radius: 12px;
}
@media screen and (max-width: 41.1428571em)  {
    #Mission {
        background-image: url(./assets/images/mission_bg_sp.jpg);
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .largecard-wrapper {
        padding: 36px;
    }
}

/* =============================================
Company
============================================= */
#Company {
    padding-top: 80px;
    padding-bottom: 120px;
    background: linear-gradient(180deg, #F7F7F7 70%, #FFF 100%);
}
.info-list-item {
    display: flex;
    padding: 20px 0;
    border-bottom: solid 1px #ababab;
    align-items: center;
}
.info-label {
    width: 20%;
}
@media screen and (max-width: 54.8571429em) {
    .info-label {
        width: 30%;
    }
}

/* =============================================
Contact お問い合わせフォーム
============================================= */
.contact-list-item {
    margin-bottom: 20px;
}
.contact-list-item > p {
    display: flex;
    width: 100%;
    align-items: center;
}
.form-label {
    width: 30%;
    margin: 0;
}
.wpcf7-form-control-wrap {
    width: 100%;
}
input {
    border-color: #ABABAB;
}
.required {
    color: #DF701B;
    vertical-align: top;
    font-size: 1rem;
    font-weight: bold;
    margin-left: 6px;
}
/* テキストエリア */
input.wpcf7-form-control.wpcf7-text {
    width: 100%;
    border: solid 1px #ABABAB;
    border-radius: 4px;
    outline: none;
    padding: 12px;
}
/* ラジオボタン */
span.wpcf7-list-item {
    margin: 0;
}
span.wpcf7-form-control-wrap[data-name="your-subject"] > span.wpcf7-form-control.wpcf7-radio {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.wpcf7-form-control.wpcf7-radio > .wpcf7-list-item > label {
    display: flex;
    align-items: center;
    gap: 4px;
}
/* テキストボックス */
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    width: 100%;
    border: solid 1px #ABABAB;
    border-radius: 4px;
    resize: none;
    outline: none;
    padding: 12px;
}
/* 送信ボタン */
.form-submitbtn-wrapper > p {
    text-align: center;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.solid-blue.btn-form-submit {
    transition: all .2s ease-in-out;
    font-size: 1.4rem;
    border-radius: 4px;
    line-height: 1;
    position: relative;
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
    min-width: 198px;
    border: none;
}
@media screen and (max-width: 61.9375em) { /* 991px */
    .form-label {
        width: 40%;
    }
}
@media screen and (max-width: 54.8571429em) {
    .contact-list-item > p {
        flex-direction: column;
        gap: 8px;
    }
    .form-label {
        width: 100%;
    }
}
/* スピナー */
.wpcf7-spinner {
    display: block!important;
    background-color: #ccc!important;
    margin: 8px auto 0!important;
}
/* エラーコメントなど */
.wpcf7-not-valid-tip {
    color: #DF701B!important;
    font-size: 1rem!important;
    margin-top: 4px;
    opacity: .8;
}
.wpcf7-response-output {
    width: 100;
    border: none!important;
    border-color: rgba(0,0,0,0)!important;
    color: #DF701B;
    background-color: rgba(223, 112, 28, .15);
    border-radius: 4px;
    text-align: center;
    margin: 12px 0 0 0!important;
    padding: 12px 16px!important;
}
/* チェックリスト */
.policy-link {
    text-decoration: underline;
}
.acceptance-check-wrapper {
    margin-top: 36px;
    margin-bottom: 24px;
}
.recaptcha-note-wrapper {
    margin-bottom: 36px;
}
.recaptcha-note-wrapper > p > span {
    text-align: center;
    display: block;
}
.acceptance-check-wrapper > p {
    width: 100%;
    text-align: center;
}

/* =============================================
Footer
============================================= */
footer {
    background-color: #0077c8;
    margin-top: 80px;
}
.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-img-area {
    width: 35%;
}
.footer-content-area {
    width: 100%;
    max-width: 60%;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo {
    width: 20%;
    height: auto;
}
.footer-catchcopy-en {
    width: 65%;
    height: auto;
    margin: 16px 0;
}
.footer-catchcopy-jp {
    width: 44%;
    height: auto;
}
.footer-menu-wrapper {
    width: 100%;
    margin: 30px 0;
}
.footer-menu-list {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-menu-list-content > a {
    color: #fff;
}
.copyright {
    width: 100%;
    text-align: right;
    color: #fff;
    opacity: .6;
}
@media screen and (max-width: 45em) {
    footer {
        padding-top: 64px;
    }
    .footer-content-wrapper {
        flex-direction: column-reverse;
    }
    .footer-content-area {
        max-width: 90%;
        padding-right: 0;
    }
    .footer-logo {
        width: 50%;
    }
    .footer-catchcopy-en {
        width: 100%;
    }
    .footer-catchcopy-jp {
        width: 100%;
    }
    .footer-menu-list {
        justify-content: flex-start;
        gap: 8px 16px;
    }
    .copyright {
        text-align: left;
    }
    .footer-img-area {
        width: 50%;
        align-self: flex-end;
    }
}

/* =============================================
固定ページテンプレ
============================================= */
.article-title {
    font-weight: 700;
    margin-bottom: 36px;
}

/* =============================================
reCAPTCHA
============================================= */
.grecaptcha-badge {
    display: none!important;
}