@charset "UTF-8";

/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/


/*/////////////////////////////////////////////////////////////////
  index.html
/////////////////////////////////////////////////////////////////*/
/*------------------------------------------------------------------
  home-hero
------------------------------------------------------------------*/

/* .home-hero {
    position: relative;
    margin-bottom: 10rem;
    overflow: hidden;
    z-index: 1;
}

@media screen and (max-width:1399px) {
    .home-hero {
        margin-bottom: 120px;
    }
}

@media screen and (max-width:991px) {
    .home-hero {
        margin-bottom: 80px;
    }
}

@media screen and (max-width:767px) {
    .home-hero {
        margin-bottom: 60px;
    }
}

@media screen and (max-width:575px) {
    .home-hero {
        margin-bottom: 30px;
    }
} */

/*  home-hero-slider
------------------------------------------------------------------*/

.home-hero-slider {
    position: relative;
    z-index: 1;
}

.home-hero-slider .swiper-slide {
    background: #fff;
    overflow: hidden;
}

.home-hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*  home-hero-slider-image
------------------------------------------------------------------*/

.home-hero-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 0;
    animation: homeHeroSlide 1s ease-out forwards;
}

@keyframes homeHeroSlide {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/*  home-hero-title
------------------------------------------------------------------*/

.home-hero-title {
    position: absolute;
    top: 3vw;
    left: 3vw;
    width: 36.75vw;
    z-index: 2;
}

@media screen and (max-width:767px) {
    .home-hero-title {
        top: initial;
        bottom: 10%;
        left: 8%;
        width: 84%;
    }
}

@media print {
    .home-hero-title {
        left: 30px;
        bottom: 30px;
    }
}


/*  home-hero-decoration
------------------------------------------------------------------*/

.home-hero-decoration {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 3;
}

.slider-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100vw;
}

.slider-deco img {
    width: 100%;
}

.scrolldown {
    position: absolute;
    bottom: 2vw;
    right: 2vw;
    width: min(10px, 1vw);
}

.scrolldown img {
    width: 100%;
}

/*------------------------------------------------------------------
  home-security-service
------------------------------------------------------------------*/
.security-service {
    position: relative;
    overflow: visible !important;
}

.security-service .service-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 4rem;
    text-align: justify;
}
@media (max-width: 1199px) {
    .security-service .service-text {
        font-size: 1.25rem;
        letter-spacing: .01em;
        margin-bottom: 3rem;
    }
}
.security-service .service-list {
    gap: 1rem;
    margin-bottom: 5rem;
}

.service-content {
    box-shadow: 0 0 .5rem rgba(92, 92, 117, 0.25);
}

.service-content .text-area {
    position: relative;
    padding: 2.5rem;
    text-align: center;
    background-color: var(--white-color);
}

.service-content .text-area::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    background-image: url(/images/common/corner.png);
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 1 / 1;
    bottom: 0;
    right: 0;
    width: 5rem;
}

.service-content .title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .08em;
    margin-bottom: 1.25rem;
    white-space: nowrap
}

.service-content .text {
    font-size: 1.025rem;
}

.security-service img {
    width: 100%;
    height: auto;
    display: block;
}

.security-service .title-english .en {
    text-align: start;
}

@media screen and (max-width:767px) {
    .service-content .title {
        line-height: 1.77;
    }
    .service-content .text {
        letter-spacing: .02em;
    }
}

@media screen and (max-width:575px) {
    .service-content .text {
        white-space: nowrap;
    }
}


/* ===================================================================
    security-swiper
=================================================================== */

.security-swiper.swiper {
    position: relative;
    z-index: 0;
    overflow: visible;
}

.security-swiper .swiper-button-prev,
.security-swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: visible;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 1)) drop-shadow(0 0 2px rgba(255, 255, 255, 1));
}

.security-swiper .swiper-button-prev {
    left: 1rem;
    right: auto;
}

.security-swiper .swiper-button-next {
    right: 1rem;
    left: auto;
}


/* =========================
    1323px 以上：非スライダー
========================= */

@media (min-width: 1323px) {
    .swiper {
        pointer-events: none;
    }
    /* PCでは矢印不要 */
    .security-swiper .swiper-button-prev,
    .security-swiper .swiper-button-next {
        display: none !important;
    }
    /* 非Swiperレイアウト */
    .security-swiper .service-list,
    .security-swiper .swiper-wrapper {
        display: flex !important;
        justify-content: space-between;
        gap: 1rem;
        list-style: none;
        padding: 0;
        overflow: visible !important;
    }
    .security-swiper .swiper-wrapper {
        flex-wrap: nowrap !important;
    }
    .security-swiper .swiper-slide {
        flex: 0 0 auto !important;
    }
    .security-swiper .swiper-slide {
        width: calc( (100% - 32px) / 3);
    }
    /* カード幅は固定 430px。 */
    .security-swiper .service-list>*,
    .security-swiper .swiper-slide {
        max-width: 430px;
    }
}


/* =========================
    1322px 以下：スライダー運用
========================= */

@media (max-width: 1322px) {
    .swiper {
        pointer-events: visible;
    }
    .security-swiper .service-list,
    .security-swiper .swiper-wrapper {
        justify-content: initial;
    }
    .security-swiper .swiper-button-prev,
    .security-swiper .swiper-button-next {
        display: block !important;
    }
    .security-swiper .swiper-wrapper {
        flex-wrap: nowrap !important;
    }
    .security-swiper .swiper-slide {
        flex: 0 0 auto !important;
    }
    .security-swiper .swiper-slide {
        width: 430px;
    }
}


/* 1200〜1322px：カード幅は 430px 固定 */
@media (min-width: 1200px) and (max-width: 1322px) {
    .security-swiper .swiper-slide {
        width: 430px !important;
    }
}

/* 1199px 以下：カード幅は最小300まで可変（〜最大430） */
@media (max-width: 1199px) {
    .security-swiper .swiper-slide {
        width: clamp(280px, 80vw, 430px) !important;
    }
}


/*------------------------------------------------------------------
    home-thoughts
------------------------------------------------------------------*/

.thoughts {
    position: relative;
    overflow: hidden;
    padding: 6.5rem 0 17rem;
    background-image: url(/images/orange_1.png);
    background-position: top left;
    background-repeat: no-repeat;
    z-index: 2;
}

.thoughts-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    filter: blur(1px);
    background-color: var(--primary-color);
    /* 上辺と下辺をそれぞれ左右でズラす（上下が斜めになる） */
    clip-path: polygon(0% 17.5%, /* 左上 */
    100% 0%, /* 右上 */
    100% 82.5%, /* 右下 */
    0% 100%
    /* 左下 */
    );
}

.thoughts-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% center;
}

@media (max-width:1399px) {
    .thoughts-bg {
        clip-path: polygon(0% 13%, 100% 0%, 100% 87%, 0% 100%);
    }
    .thoughts-bg img {
        object-position: 80% center;
    }
}

@media (max-width:991px) {
    .thoughts-bg {
        clip-path: polygon(0% 11%, 100% 0%, 100% 89%, 0% 100%);
    }
    .thoughts-bg img {
        object-position: 70% center;
    }
}

@media (max-width:767px) {
    .thoughts {
        padding: 6.5rem 0 10rem;
    }
    .thoughts-bg {
        clip-path: polygon(0% 6%, 100% 0%, 100% 94%, 0% 100%);
    }
    .thoughts-bg img {
        object-fit: contain;
        object-position: 60% top;
    }
}

@media (max-width:575px) {
    .thoughts-bg {
        clip-path: polygon(0% 5%, 100% 0%, 100% 95%, 0% 100%);
    }
    .thoughts-bg img {
        object-position: 55% top;
    }
}

.thoughts .container-wide {
    position: relative;
    z-index: 1;
}

.thoughts .title-english {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.thoughts .title-english .en,
.thoughts .title-english .jp {
    color: var(--black-color);
    display: block;
    width: fit-content;
    text-align: left;
}

.thoughts .title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1;
    margin-bottom: 3.6rem;
    color: var(--white-color);
}

.thoughts .text {
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
    margin-bottom: 5rem;
    font-size: 1.25rem;
    letter-spacing: .02em;
    color: var(--white-color);
}

.thoughts .text .text-strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.thoughts .sign {
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1;
    letter-spacing: .08em;
    color: var(--white-color);
    margin-bottom: 5.75rem;
}

.thoughts .sign span {
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .04em;
}

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

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

@media (max-width:767px) {
    .thoughts .title {
        line-height: 1.77;
    }
    .thoughts .text {
        text-align: justify;
    }
}

@media (max-width:575px) {
    .thoughts .btn-area {
        margin: 0 auto;
        width: fit-content;
    }
}


/*------------------------------------------------------------------
  home-recruit
------------------------------------------------------------------*/
.recruit {
    position: relative;
    text-align: center;
    margin-bottom: 7.5rem;
}
@media (max-width:991px) {
    .recruit {
        padding-top : 4.5em;
    }
}
.recruit::before {
    position: absolute;
    display: block;
    content: "";
    top: -20rem;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/images/common/silver.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(-1, 1);
    z-index: -1;
}

.recruit::after {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    right: 0;
    bottom: -7.5rem;
    margin: 0 auto;
    width: 100%;
    opacity: .3;
    aspect-ratio: 2.64 / 1;
    background-image: url(/images/work-image.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    z-index: -1;
}

.recruit .title-english {
    margin-bottom: 6rem;
}

.recruit .title-english .en,
.recruit .title-english .jp {
    text-align: center;
}

.recruit .title {
    position: relative;
    line-height: 1;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.recruit .title::before {
    position: relative;
    content: "";
    display: block;
    background-image: url(/images/common/accent-l.png);
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 40 / 53;
    width: 2rem;
}

.recruit .title::after {
    position: relative;
    content: "";
    display: block;
    background-image: url(/images/common/accent-r.png);
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 40 / 53;
    width: 2rem;
}

.recruit .text {
    font-size: 1.5rem;
    margin-bottom: 5rem;
    letter-spacing: .02em;
}

.recruit .recruit-list {
    justify-content: center;
    margin-bottom: 5rem;
    gap: 2rem;
}

.recruit .recruit-list li {
    min-width: 180px;
}

.recruit .recruit-content {
    background-color: var(--primary-color);
    border-radius: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white-color);
}

.recruit .recruit-content p {
    text-align: center;
    letter-spacing: .2em;
}

@media screen and (max-width:767px) {
    .recruit .recruit-list {
        gap: initial;
    }
}

@media screen and (max-width:575px) {
    .recruit::before {
        top: -9rem;
    }
    .recruit .container-wide {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .recruit .title {
        font-size: 1.75rem;
    }
    .recruit .text {
        white-space: nowrap;
    }
    .recruit .recruit-list {
        gap: initial;
        flex-direction: column;
        width: 95%;
        gap: 1rem;
    }
    .recruit .recruit-list li {
        padding: 0;
    }
    .recruit .recruit-content {
        aspect-ratio: initial;
        width: 100%;
        border-radius: .25rem;
        padding: .5rem;
        font-size: 1.5rem;
    }
}

@media screen and (max-width:355px) {
    .recruit .title {
        font-size: 1.5rem;
    }
    .recruit .text {
        font-size: 1.25rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  service.html
/////////////////////////////////////////////////////////////////*/

.child-page .security-service::before {
    display: none;
}

.child-page .service-content img {
    width: 100%;
    height: auto;
}

.child-page .service-content .title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.77;
    letter-spacing: .08em;
    margin-bottom: 1.25rem;
}

.child-page .service-content .text {
    white-space: wrap;
}

@media screen and (max-width:767px) {
    .child-page .service-content .text-area {
        position: relative;
        padding: 2.5rem 1.5rem;
        text-align: center;
        background-color: var(--white-color);
    }
    .child-page .service-content .text {
        padding: 0 1rem;
    }
}

.child-page .security-service {
    margin-bottom: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.feature-list .feature-item {
    background-color: var(--primary-color);
    padding: 3rem;
    justify-content: space-between;
    height: fit-content;
}

.feature-list .feature-img {
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.feature-list .feature-img img {
    object-fit: cover;
    object-position: center;
    display: block;
    width: 100%;
    height: 100%;
}

.feature-text-area {
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem;
    width: 60%;
    position: relative;
}

.feature-text-area::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    background-image: url(/images/common/corner-l.png);
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1 / 1;
    width: 8rem;
    z-index: 1;
    opacity: .8;
}

.feature-text-area::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    display: block;
    background-image: url(/images/common/corner-r.png);
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1 / 1;
    width: 8rem;
    z-index: 1;
    opacity: .8;
}

.feature-text-area .title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    gap: 1rem;
    margin-bottom: 24px;
    letter-spacing: .04em;
    z-index: 2;
    text-align: center;
    white-space: nowrap;
}

.feature-text-area .text {
    font-size: 1.15rem;
    letter-spacing: .04em;
    z-index: 2;
}

.feature-text-area .text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (max-width:1199px){
    .feature-list .feature-item {
        background-color: var(--primary-color);
        padding: 1.75rem;
        flex-direction: column;
        justify-content: space-between;
        height: fit-content;
    }
    .feature-list .feature-item:first-of-type .feature-img img{
         object-position: center bottom;
    }
    .feature-list .feature-img {
        aspect-ratio: 3 / 2;
        width: 100%;
        overflow: hidden;
    }
    .feature-text-area {
        background-color: var(--white-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2.5rem;
        width: 100%;
        position: relative;
    }
}
@media screen and (max-width:767px) {
    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        width: 100vw;
        transform: translateX(-6vw);
    }
    .feature-list .feature-item {
        background-color: var(--primary-color);
        padding: 1.75rem;
        flex-direction: column;
        justify-content: space-between;
        height: fit-content;
    }
    .feature-text-area {
        padding-inline: 1.25rem;
    }
    .feature-list .feature-img {
        aspect-ratio: 3 / 2;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}


/*/////////////////////////////////////////////////////////////////
  company.html
/////////////////////////////////////////////////////////////////*/

.company-map {
    width: 100%;
    aspect-ratio: 4 / 1.5;
    overflow: hidden;
}

.company-map iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width:767px) {
    .company-map {
        height: auto;
        aspect-ratio: 4 / 3;
    }
}
.access {
    position: relative;
}
.access p {
    font-size: 1.25rem;
}

/*/////////////////////////////////////////////////////////////////
  recruit.html
/////////////////////////////////////////////////////////////////*/

.working {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
}

.working::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    display: block;
    background-image: url(/images/working.png);
    background-color: var(--white-color);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    z-index: -2;
    clip-path: polygon(0% 0%, /* 左上 */
    100% 0%, /* 右上 */
    100% 82.5%, /* 右下 */
    0% 100%
    /* 左下 */
    );
}
@media screen and (max-width:991px) {
    .working::after {
        background-position: center bottom;
        background-size: contain;
    }
}


@media screen and (max-width:767px) {
    .working::after {
        width: 100%;
        height: auto;
        background-size: contain;
        background-position: bottom center;
        clip-path: polygon(0% 0%, 100% 0%, 100% 92.5%, 0% 100%);
    }
}

.working-item {
    padding: 2rem 0;
    text-align: center;
}

.working .title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1;
    margin-bottom: 3.6rem;
    color: var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 2rem;
}

.working .title::before {
    position: relative;
    content: "";
    display: block;
    background-image: url(/images/common/accent-l.png);
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 40 / 53;
    width: 2rem;
}

.working .title::after {
    position: relative;
    content: "";
    display: block;
    background-image: url(/images/common/accent-r.png);
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 40 / 53;
    width: 2rem;
}

.working .text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
    font-size: 1.25rem;
    letter-spacing: .04em;
    color: var(--black-color);
}

.working .text .text-strong {
    font-size: 1.5rem;
    font-weight: 700;
}

@media screen and (max-width:767px) {
    .working .title {
        line-height: 1.77;
        letter-spacing: .1em;
        white-space: nowrap;
        padding-inline: 0;
    }
    .working .title::before {
        width: 4.5rem;
    }
    .working .title::after {
        width: 4.5rem;
    }
}


/* merit 表示デザイン変更　あとGAP */

.merit .title-english .jp {
    color: var(--white-color);
}

.recruitment td {
    text-align: justify;
}

.recruitment .salary li {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 2rem;
}

.recruitment .salary li span:first-of-type {
    border-left: 4px solid var(--primary-color);
    padding-left: .5rem;
    font-weight: bold;
}

.process .security-swiper.swiper {
    padding-bottom: 1rem;
}

@media (min-width: 1323px) {
    .merit .service-list,
    .process .service-list {
        display: flex !important;
        justify-content: space-between;
        gap: 1rem;
        list-style: none;
        padding: 0;
        overflow: visible !important;
    }
}
.merit .service-list,
.process .service-list {
    gap: 1rem;
}

.contact-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: visible;
    width: 100%;
    min-width: auto !important;
}

.contact-area .tel {
    background-color: var(--accent-color);
}

@media screen and (max-width: 767px) {
    .contact-area .tel,
    .contact-area .contact a {
        min-width: inherit;
        min-height: 50px;
    }
}


/*/////////////////////////////////////////////////////////////////
  contact.html
/////////////////////////////////////////////////////////////////*/

.tel-fax .title-english .en span {
    margin-inline: -.25em;
}

.contact-tel-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 20px;
    background: var(--primary-color);
    text-align: center;
}

.contact-tel-box .title {
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white-color);
    line-height: 1.4;
}

.contact-tel-box .num {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    --letter-spacing: 0;
    color: var(--white-color);
}

.contact-tel-box .num span {
    font-size: 2em;
    letter-spacing: 0;
}

.contact-tel-box .time {
    font-size: 1rem;
    line-height: 1.4;
}

@media screen and (max-width:767px) {
    .contact-tel-box {
        padding: 24px 16px;
    }
    .contact-tel-box .time {
        font-size: .75rem;
    }
}

.form-error {
    position: relative;
    padding-left: 1.25em;
    margin-top: 5px;
    color: var(--red-color);
}

.form-error::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\f057";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}