@charset "UTF-8";

/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* https://www.webplus.jp/                                      */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/*--------------------------------------------------------------*/


/* ========================================================

　Grobal Setting

=========================================================== */

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

html {
    font-size: 62.5%; /* 1.0rem = 10px */
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
}


/* ========================================================

　body

=========================================================== */

body {
    color: rgba(51, 51, 51, 1.00);
    font: normal 400 1.6rem / 150% "YakuHanJP_Noto", "Noto Sans JP", sans-serif;
    letter-spacing: 0.0625rem;
    word-wrap: break-word;
    overflow-x: hidden;
}


/* ========================================================

　Default Link Color

=========================================================== */

a,
a:visited,
a img {
    color: rgba(0, 110, 180, 1.00);
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
    color: rgba(240, 100, 0, 1.00);
}

a:active {
    color: rgba(255, 0, 0, 1.00);
}

a:not(.navbar-brand) img:hover {
    opacity: 0.7;
}

/* 電話番号（発信） */
article a[href*="tel:"] {
    color: rgba(51, 51, 51, 1.00);
    cursor: default;
}

@media only screen and (min-width: 751px) {

    a[href*="tel:"] {
        text-decoration: none;
        pointer-events: none;
    }

}


/* ========================================================

　h1～h6 & Other Text

=========================================================== */

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
}

p:nth-last-of-type(n+2),
li:not(.nav-item):nth-last-of-type(n+2),
dd:nth-last-of-type(n+2) {
    margin-bottom: 0.5rem;
}

dt,
th {
    font-weight: 500;
}


/* ========================================================

　nav

=========================================================== */

@media only screen and (max-width: 991px) {

    /* モバイルのナビゲーションの高さは ハンバーガーボタンの高さ（5.6rem） + 上下余白（1.0rem + 1.0rem） = 7.6rem */
    #mainNav {
        padding-top: 1.0rem;
        padding-bottom: 1.0rem;
        background-color: rgba(255, 255, 255, 1.00);
    }

    /* ブランドマーク／ブランドタイプ */
    .navbar-brand img {
        width: auto;
        height: 3.4rem;
    }

    .navbar-brand img:last-of-type {
        height: 3.2rem;
        margin-left: 0.5rem;
    }

    /* ハンバーガーメニューボタン */
    .navbar-toggler {
        width: 5.8rem;
        height: 5.8rem;
        color: rgba(51, 51, 51, 1.00);
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
        -webkit-transition: color 0.3s ease-in-out;
        -o-transition: color 0.3s ease-in-out;
        transition: color 0.3s ease-in-out;
    }

    .navbar-toggler[aria-expanded="true"] {
        color: rgba(240, 100, 0, 1.00);
    }

    .navbar-toggler:focus,
    .navbar-toggler:active,
    .navbar-toggler-icon:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /* 三 */
    .navbar-toggler-icon {
        display: block;
        margin: 0 auto;
        background-image: url("data:image/svg+xml;charset=utf8,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(51, 51, 51, 1.00)' stroke-width='3' stroke-linecap='square' d='M4 4h22M4 12h22M4 20h22'/%3e%3c/svg%3e");
        -webkit-transition: background-image 0.3s ease-in-out;
        -o-transition: background-image 0.3s ease-in-out;
        transition: background-image 0.3s ease-in-out;
    }

    /* × */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(235, 97, 0, 1.00)' stroke-width='3' stroke-linecap='square' d='M6 4L 22 20M22 4L6 20'/%3E%3C/svg%3E");
    }

    /* メニュー領域 */
    .navbar-collapse {
        max-height: 100vh;
        padding-right: 2.0rem;
        padding-left: 2.0rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* メニュー部分 */
    .navbar-nav {
        min-height: 100vh;
        margin-top: 4.0rem;
    }

    /* 各メニュー間の余白 */
    .navbar-nav .nav-item:nth-of-type(n+2) {
        margin-top: 1.0rem;
    }

    .navbar-nav .nav-item:last-of-type {
        margin-bottom: 20.0rem; /* この余白は必須 */
    }

    /* リンク部分 */
    .navbar-nav .nav-item .nav-link {
        padding-left: 2.0rem;
        padding-right: 2.0rem;
        border-radius: 0.5rem;
        background-color: rgba(55, 75, 155, 1.00);
        color: rgba(255, 255, 255, 1.00);
        line-height: 4.0rem;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    /* カレント時、マウスオーバー時の色 */
    .navbar-nav .nav-item .nav-link.active,
    .navbar-nav .nav-item .nav-link:hover {
        background-color: rgba(180, 185, 215, 1.00);
        color: rgba(0, 0, 0, 1.00);
    }

    /* 英字部分 */
    .navbar-nav .nav-item .nav-link span {
        margin-left: 2.0rem;
        font-family: "Montserrat", sans-serif;
        font-size: 62.5%;
        text-transform: uppercase;
    }

    .navbar-nav .nav-item .nav-link span::before {
        margin-right: 0.25rem;
        content: "-";
    }

    .navbar-nav .nav-item .nav-link span::after {
        margin-left: 0.25rem;
        content: "-";
    }

    /* お問い合わせ */
    #mainNav .fixed-right {
        display: none;
    }

}

@media only screen and (min-width: 992px) {

    /* ナビゲーションの高さは .navbar-nav .nav-item .nav-link で指定した 10.0rem */
    #mainNav {
        padding-top: 0;
        padding-right: 10.0rem;
        padding-bottom: 0;
        border: none;
        -webkit-transition: background-color 0.3s ease-in-out;
        -o-transition: background-color 0.3s ease-in-out;
        transition: background-color 0.3s ease-in-out;
    }

    /* スクロール時 */
    #mainNav.navbar-shrink {
        background-color: rgba(255, 255, 255, 1.00);
    }

    /* ブランドマーク／ブランドタイプ */
    .navbar-brand img {
        width: auto;
        height: 3.6rem;
    }

    .navbar-brand img:last-of-type {
        height: 3.4rem;
        margin-left: 0.5rem;
    }

    /* メニューの区切り「／」 */
    .navbar-nav .nav-item {
        position: relative;
    }

    .navbar-nav .nav-item::after {
        position: absolute;
        top: 50.0%;
        right: -1.15rem;
        -webkit-transform: translateY(-1.2rem);
        -ms-transform: translateY(-1.2rem);
        transform: translateY(-1.2rem);
        font-size: 2.4rem;
        content: "／";
        z-index: 1024;
    }

    .navbar-nav .nav-item:last-of-type::after {
        content: none;
    }

    /* リンク部分 */
    .navbar-nav .nav-item .nav-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 10.0rem;
        padding-left: 2.0rem;
        padding-right: 2.0rem;
        color: rgba(0, 0, 0, 1.00);
        font-size: 1.4rem;
        font-weight: 500;
        text-align: center;
        letter-spacing: normal;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    /* スクロール時のリンク部分 */
    #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link {
        height: 6.0rem;
    }


    /* マウスオーバー時 */
    .navbar-nav .nav-item .nav-link:hover {
        background-color: rgba(125, 0, 0, 0.10);
        color: rgba(125, 0, 0, 1.00);
    }

    /* カレント時 */
    .navbar-nav .nav-item .nav-link.active {
        background-color: rgba(255, 255, 255, 0.70);
        color: rgba(5, 30, 130, 1.00);
    }

    #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link {
        border-bottom: 0.2rem solid rgba(255, 255, 255, 0);
    }

    #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link.active {
        border-color: rgba(5, 30, 130, 1.00);
    }

    /* 英字部分 */
    .navbar-nav .nav-item .nav-link span {
        display: block;
        font-family: "Montserrat", sans-serif;
        font-size: 62.5%;
        line-height: 1.0rem;
        text-transform: uppercase;
    }

    /* お問い合わせ／お知らせアイコン */
    #mainNav .fixed-right {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 10.0rem;
        height: 10.0rem;
    }

    #mainNav .fixed-right a {
        display: block;
        -webkit-transition: background-color 0.3s ease-in-out;
        -o-transition: background-color 0.3s ease-in-out;
        transition: background-color 0.3s ease-in-out;
    }

    #mainNav .fixed-right a:first-of-type {
        background-color: rgba(125, 0, 0, 1.00);
        -webkit-animation: slideInLeft 1.0s ease-in-out 1 normal forwards;
        animation: slideInLeft 1.0s ease-in-out 1 normal forwards;
    }

    #mainNav .fixed-right a:hover:first-of-type {
        background-color: rgba(125, 0, 0, 0.70);
    }

    #mainNav .fixed-right a:last-of-type {
        background-color: rgba(5, 30, 130, 1.00);
        -webkit-animation: slideInLeft 1.5s ease-in-out 1 normal forwards;
        animation: slideInLeft 1.5s ease-in-out 1 normal forwards;
    }

    #mainNav .fixed-right a:hover:last-of-type {
        background-color: rgba(5, 30, 130, 0.70);
    }

    #mainNav .fixed-right img {
        width: 100%;
        height: auto;
        opacity: 1.0;
    }

}

@media only screen and (min-width: 1200px) {

    #mainNav {
        padding-right: 12.0rem;
    }

    .navbar-brand img {
        height: 4.6rem;
    }

    .navbar-brand img:last-of-type {
        height: 4.4rem;
    }

    .navbar-nav .nav-item .nav-link {
        height: 12.0rem;
        padding-left: 2.4rem;
        padding-right: 2.4rem;
        font-size: 1.6rem;
    }

    #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link {
        height: 8.0rem;
    }

    #mainNav .fixed-right {
        width: 12.0rem;
        height: 12.0rem;
    }

}

@media only screen and (min-width: 1400px) {

    .navbar-brand img {
        height: 6.2rem;
    }

    .navbar-brand img:last-of-type {
        height: 6.0rem;
        margin-left: 1.0rem;
    }

    #mainNav.navbar-shrink .navbar-brand img {
        height: 5.2rem;
    }

    #mainNav.navbar-shrink .navbar-brand img:last-of-type {
        height: 5.0rem;
    }

    .navbar-nav .nav-item .nav-link {
        padding-left: 3.0rem;
        padding-right: 3.0rem;
    }

}

@media only screen and (min-width: 1560px) {

    #mainNav {
        padding-right: 0;
    }

}

@media only screen and (min-width: 1920px) {

    .navbar-brand img {
        height: 6.7rem;
    }

    .navbar-brand img:last-of-type {
        height: 6.5rem;
        margin-left: 1.0rem;
    }

    #mainNav.navbar-shrink .navbar-brand img {
        height: 5.2rem;
    }

    #mainNav.navbar-shrink .navbar-brand img:last-of-type {
        height: 5.0rem;
    }

}


/* ========================================================

　header + carousel

=========================================================== */

.carousel-item {
    position: relative;
}

/* グラデーション */
.carousel-item .grad-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.50)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0) 100%);
}

/* スライド写真 */
.carousel-item > img {
    width: 100%;
    height: auto;

}

/* PC用写真を非表示 */
.carousel-item > img:last-of-type {
    display: none;
}

/* テキスト部分 */
.carousel-caption {
    position: absolute;
    top: 30.0vw;
    left: 0;
    width: 100%;
}

/* メッセージ */
.carousel-caption h2 {
    margin: 0 2.0vw;
    padding: 1.0rem;
    max-width: 120.0rem;
    border-radius: 1.0rem;
    background-color: rgba(5, 30, 130, 0.30);
    color: rgba(255, 255, 255, 1.00);
    font-family: 'Noto Serif JP', serif;
    font-size: min(8.0vw, 3.4rem);
    font-weight: 700;
    text-shadow: 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.70), 0 0 0.5rem rgba(0, 0, 0, 0.00), 0 0 0.25rem rgba(0, 0, 0, 0.00);
    letter-spacing: 0.25rem;
    -webkit-animation: fadeIn 3.0s ease-in-out normal forwards;
    animation: fadeIn 3.0s ease-in-out normal forwards;
}

.carousel-caption h2 span {
    display: block;
}

/* ブランドマーク／キャッチ／社名の位置 */
.carousel-caption > div {
    position: absolute;
    bottom: 5.0rem;
    width: 100%;
}

/* １枚目のブランドマークのみフェードイン */
.carousel-caption .fade {
    -webkit-animation: fadeIn 3.0s ease-in-out 1.0s normal forwards;
    animation: fadeIn 3.0s ease-in-out 1.0s normal forwards;
}

/* ブランドマーク */
.carousel-caption img {
    width: 46.0vw;
    max-width: 30.0rem;
    height: auto;
}

/* キャッチコピー／社名 */
.carousel-caption h3,
.carousel-caption p {
    color: rgba(0, 0, 0, 1.00);
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    text-shadow: 0.1rem 0.1rem 0 rgba(255, 255, 255, 0.70), 0 0 0.5rem rgba(255, 255, 255, 0.00), 0 0 0.25rem rgba(255, 255, 255, 0.00);
    line-height: 100%;
}

/* キャッチコピー */
.carousel-caption p {
    margin: 8.0vw auto 2.0vw;
    padding-left: calc(0.5rem + 0.25rem); /* letter-spacing右端の余白を解消 */
    font-size: min(8.0vw, 3.4rem);
    font-weight: 900;
    letter-spacing: 0.5rem;
}

/* 社名 */
.carousel-caption h3 {
    margin: 0 auto;
    font-size: min(6.0vw, 2.45rem);
    font-weight: 700;
}

/* 前・後へ移動の矢印 */
a span[class^="carousel-control"] {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba(51, 51, 51, 0.70)'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba(51, 51, 51, 0.70)'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* インジケーター */
.carousel-indicators li[data-bs-target="#carouselIndicators"] {
    background-color: rgba(0, 0, 0, 0.50);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.carousel-indicators li:hover {
    background-color: rgba(5, 30, 130, 1.00);
    opacity: 1.0;
}

.carousel-indicators li.active {
    background-color: rgba(125, 0, 0, 1.00);
}

/*　下層ページ
----------------------------------------------------------- */
body:not(.home) header {
    position: relative;
}

body:not(.home) header .grad-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.70)), to(rgba(255, 255, 255, 0.25)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.25) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.25) 100%);
    z-index: 5;
}

body:not(.home) header h2 {
    position: absolute;
    top: calc(50% + 1.8rem);
    left: 0;
    width: 100%;
    color: rgba(0, 0, 0, 1.00);
    font-size: 2.8rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 0.1rem 0.1rem 0 rgba(255, 255, 255, 0.70), 0 0 0.5rem rgba(255, 255, 255, 0.00), 0 0 0.25rem rgba(255, 255, 255, 0.00);
    letter-spacing: 0.25rem;
    z-index: 10;
}

body:not(.home) header img {
    width: 100%;
    height: auto;
}

@media only screen and (min-width: 576px) {

    .carousel-caption {
        top: 20.0vw;
    }

    .carousel-caption h2 {
        margin: 0 10.0vw;
        padding: 2.0rem;
    }

    .carousel-caption img {
        max-width: 24.0rem;
    }

}

@media only screen and (min-width: 768px) {

    /* スマホ用写真を非表示 */
    .carousel-item > img:first-of-type {
        display: none;
    }

    /* PC用写真を表示 */
    .carousel-item > img:last-of-type {
        display: inline;
    }

    .carousel-caption {
        top: 11.0vw;
    }

    .carousel-caption > div {
        bottom: 4.0rem;
    }

    .carousel-caption h2 {
        margin: 0 15.0vw;
        padding: 1.0rem;
        font-size: min(3.0vw, 3.0rem);
    }

    .carousel-caption h2 span {
        display: inline;
    }

    .carousel-caption img {
        width: 18.0vw;
        max-width: 30.0rem;
    }

    .carousel-caption p {
        margin: 2.5rem 0 1.0rem;
        font-size: 2.4rem;
    }

    .carousel-caption h3 {
        font-size: 1.8rem;
    }

    a span[class^="carousel-control"] {
        -webkit-transform: scale(3.0);
        -ms-transform: scale(3.0);
        transform: scale(3.0);
    }

    /*　下層ページ
    ----------------------------------------------------------- */
    body:not(.home) header h2 {
        font-size: 3.6rem;
        text-shadow: 0.15rem 0.15rem 0 rgba(255, 255, 255, 1.00), 0 0 0.5rem rgba(255, 255, 255, 0.00), 0 0 0.25rem rgba(255, 255, 255, 0.00);
    }

}

@media only screen and (min-width: 1200px) {

    .carousel-item {
        width: 100%;
        height: 100vh;
        min-height: 45.5rem;
    }

    /* HTMLに配置した画像をすべて非表示に */
    .carousel-item > img[src*="carousel"] {
        display: none;
    }

    /* グラデーションタグを非表示に */
    .carousel-item .grad-filter {
        display: none;
    }

    /* 背景画像として再配置（グラデーションを含む） */
    /*.carousel-item:nth-of-type(1) {
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.80) 100%), url("../img/carousel01.jpg") center top / cover no-repeat;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.70)), color-stop(50%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.80))), url("../img/carousel01.jpg") center top / cover no-repeat;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.80) 100%), url("../img/carousel01.jpg") center top / cover no-repeat;
    }

    .carousel-item:nth-of-type(2) {
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.80) 100%), url("../img/carousel02.jpg") center top / cover no-repeat;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.70)), color-stop(50%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.80))), url("../img/carousel02.jpg") center top / cover no-repeat;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.80) 100%), url("../img/carousel02.jpg") center top / cover no-repeat;
    }

    .carousel-item:nth-of-type(3) {
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.80) 100%), url("../img/carousel03.jpg") center top / cover no-repeat;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.70)), color-stop(50%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.80))), url("../img/carousel03.jpg") center top / cover no-repeat;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.80) 100%), url("../img/carousel03.jpg") center top / cover no-repeat;
    }

    .carousel-item:nth-of-type(4) {
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.80) 100%), url("../img/carousel04.jpg") center top / cover no-repeat;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.70)), color-stop(50%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.80))), url("../img/carousel04.jpg") center top / cover no-repeat;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.80) 100%), url("../img/carousel04.jpg") center top / cover no-repeat;
    }

    .carousel-item:nth-of-type(5) {
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.80) 100%), url("../img/carousel05.jpg") center top / cover no-repeat;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.70)), color-stop(50%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.80))), url("../img/carousel05.jpg") center top / cover no-repeat;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.80) 100%), url("../img/carousel05.jpg") center top / cover no-repeat;
    }*/

    .carousel-caption > div {
        bottom: 5.0vw;
    }

    .carousel-caption {
        top: 26.0rem;
    }

    .carousel-caption h2 {
        padding: 2.5rem;
        font-size: min(3.0vw, 4.8rem);
        text-shadow: 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.70), 0 0 0.5rem rgba(0, 0, 0, 0.00), 0 0 0.25rem rgba(0, 0, 0, 0.00);
    }

    .carousel-caption img {
        width: 20.0vw;
        max-width: 30.0rem;
    }

    .carousel-caption h3,
    .carousel-caption p {
        color: rgba(0, 0, 0, 1.00);
        font-family: 'Noto Serif JP', serif;
        text-align: center;
        text-shadow: 0.2rem 0.2rem 0 rgba(255, 255, 255, 0.70), 0 0 0.5rem rgba(255, 255, 255, 0.00), 0 0 0.25rem rgba(255, 255, 255, 0.00);
        line-height: 100%;
    }

    .carousel-caption p {
        margin: 4.0rem 0 1.0rem;
        font-size: 3.4rem;
    }

    .carousel-caption h3 {
        font-size: 2.45rem;
    }

}

@media only screen and (min-width: 1366px) and (min-height: 640px) {

    .carousel-caption > div {
        bottom: 4.0vw;
    }

    .carousel-caption {
        top: 14.0rem;
    }

}

@media only screen and (min-width: 1400px) {

    .carousel-caption > div {
        bottom: 5.0vw;
    }

    .carousel-caption {
        top: 26.0rem;
    }

}

@media only screen and (min-width: 1920px) {

    .carousel-caption h2 {
        margin: 0 auto;
        letter-spacing: 0.5rem;
    }

    .carousel-caption p {
        font-size: 4.0rem;
    }

    .carousel-caption h3 {
        font-size: 2.85rem;
    }

    /*　下層ページ
    ----------------------------------------------------------- */
    body:not(.home) header h2 {
        font-size: 4.8rem;
    }

}

/*　iOS以外は背景画像をフィクス
----------------------------------------------------------- */
/* Chrome / Firefox / Opera */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0),
screen and (-webkit-min-device-pixel-ratio: 0) and (-o-min-device-pixel-ratio: 0),
screen and (-webkit-min-device-pixel-ratio: 0) and (-o-min-device-pixel-ratio: 0/1),
screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {

    .carousel-item:nth-of-type(1),
    .carousel-item:nth-of-type(2),
    .carousel-item:nth-of-type(3),
    .carousel-item:nth-of-type(4) {
        background-attachment: fixed;
    }

}

/* Edge 1 */
@supports (-ms-ime-align: auto) {

    .carousel-item:nth-of-type(1),
    .carousel-item:nth-of-type(2),
    .carousel-item:nth-of-type(3),
    .carousel-item:nth-of-type(4) {
        background-attachment: fixed;
    }

}

/* Edge 2 */
_:-ms-lang(x)::backdrop,
.carousel-item:nth-of-type(1),
_:-ms-lang(x)::backdrop,
.carousel-item:nth-of-type(2),
_:-ms-lang(x)::backdrop,
.carousel-item:nth-of-type(3),
_:-ms-lang(x)::backdrop,
.carousel-item:nth-of-type(4) {
    background-attachment: fixed;
}


/* ========================================================

　article / heading

=========================================================== */

/* article */
.a-section {
    margin-top: -6.6rem; /* 上余白が下余白と同じになるようにネガティヴマージンを設定（変更の都度調整が必要）３ */
    padding-top: calc(7.6rem + 3.0rem); /* nav高さ + 上余白 */
    padding-bottom: 3.0rem;
}

.home #flow.a-section {
    margin-top: -9.6rem;
}

/* タイトル */
.a-heading {
    margin-bottom: 4.0rem;
    text-align: center;
}

.a-heading h2 {
    position: relative;
    margin-bottom: 1.0rem;
    padding-bottom: 1.5rem;
    color: rgba(5, 30, 130, 1.00);
    font-size: 3.6rem;
    font-weight: 300;
    letter-spacing: 0.25rem;
}

/* 飾りライン */
.a-heading h2::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 20.0rem;
    height: 0.8rem;
    background-image: -o-repeating-linear-gradient(45deg, rgba(160, 160, 160, 0.70) 0, rgba(160, 160, 160, 0.70) 0.1rem, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 50%), -o-repeating-linear-gradient(315deg, rgba(160, 160, 160, 0.70) 0, rgba(160, 160, 160, 0.70) 0.1rem, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 50%);
    background-image: repeating-linear-gradient(45deg, rgba(160, 160, 160, 0.70) 0, rgba(160, 160, 160, 0.70) 0.1rem, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 50%), repeating-linear-gradient(135deg, rgba(160, 160, 160, 0.70) 0, rgba(160, 160, 160, 0.70) 0.1rem, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 50%);
    background-size: 0.8rem 0.8rem;
    content: '';
}

/* 飾りライン（お知らせのみ） */
#information .a-heading h2 {
    color: rgba(230, 0, 20, 1.00);
}

/* 英字表記 */
.a-heading aside {
    color: rgba(130, 140, 190, 0.70);
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
}

/* 英字表記（お知らせのみ） */
#information .a-heading aside {
    color: rgba(240, 125, 135, 1.00);
}

/* 括弧 */
.a-heading > div {
    display: inline-block;
    position: relative;
    top: 0;
    width: 100%;
    max-width: 40.0rem;
    padding: 1.0rem 0;
}

.a-heading > div::before,
.a-heading > div::after {
    display: inline-block;
    position: absolute;
    top: 0;
    width: 3.0rem;
    height: 100%;
    content: '';
}

.a-heading > div::before {
    border-left: 0.1rem solid rgba(160, 160, 160, 1.00);
    border-top: 0.1rem solid rgba(160, 160, 160, 1.00);
    border-bottom: 0.1rem solid rgba(160, 160, 160, 1.00);
    left: 0;
}

.a-heading > div::after {
    border-top: 0.1rem solid rgba(160, 160, 160, 1.00);
    border-right: 0.1rem solid rgba(160, 160, 160, 1.00);
    border-bottom: 0.1rem solid rgba(160, 160, 160, 1.00);
    right: 0;
}

article .notes {
    margin-bottom: 3.0rem;
}

article .notes p {
    margin-bottom: 1.0rem;
    text-align: justify;
}

body:not(.home) article .notes p {
    text-align: center;
}

@media only screen and (min-width: 768px) {

    .a-heading {
        margin-bottom: 6.0rem;
    }

    .a-heading h2 {
        font-size: 4.0rem;
    }

    .a-heading h2::after {
        width: 26.0rem;
    }

    .a-heading aside {
        font-size: 2.0rem;
    }

    .a-heading > div {
        max-width: 50.0rem;
        padding: 2.0rem 0;
    }

    article .notes p {
        text-align: center;
    }

}

@media only screen and (min-width: 992px) {

    .a-section {
        margin-top: -6.0rem;
        padding-top: calc(6.0rem + 5.0rem);
        padding-bottom: 5.0rem;
    }

    .home #flow.a-section {
        margin-top: -11.0rem;
    }

}

@media only screen and (min-width: 1200px) {

    .a-section {
        margin-top: -8.0rem;
        padding-top: calc(8.0rem + 7.5rem);
        padding-bottom: 7.5rem;
    }

    .home #flow.a-section {
        margin-top: -15.5rem;
    }

    .a-heading h2 {
        font-size: 4.8rem;
    }

    .a-heading h2::after {
        width: 28.0rem;
    }

    .a-heading aside {
        font-size: 2.4rem;
    }

    .a-heading > div {
        max-width: 60.0rem;
    }

    article .notes {
        margin-bottom: 4.0rem;
        font-size: 1.8rem;
    }

}

@media only screen and (min-width: 1920px) {

    .a-section {
        padding-top: calc(8.0rem + 10.0rem);
        padding-bottom: 10.0rem;
    }

    .home #flow.a-section {
        margin-top: -18.0rem;
    }

    article .notes {
        margin-bottom: 5.0rem;
    }

}


/* ========================================================

　#information

=========================================================== */

#information {
    border-bottom: 0.3rem double rgba(210, 210, 210, 1.00);
}

/* 記事リスト */
#information ul {
    padding: 0;
    list-style: none;
}

#information li {
    padding-bottom: 1.0rem;
    border-bottom: 0.1rem dashed rgba(140, 140, 170, 1.00);
    text-align: justify;
}

/* リストの上余白 */
#information li:nth-of-type(n+2) {
    margin-top: 2.5rem;
}

/* 日付 */
#information a div {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(5, 30, 130, 1.00);
    font-family: Georgia, "Times New Roman", Times, "serif";
    font-size: 1.8rem;
}

/* 記事タイトル */
#information a h3 {
    color: rgba(51, 51, 51, 1.00);
    font-weight: 400;
    line-height: 150%;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

#information a:hover h3 {
    color: rgba(240, 100, 0, 1.00);
}

/* NEW! */
#information a span {
    margin-left: 1.0rem;
    color: rgba(255, 0, 0, 1.00);
    font-size: 75%;
}

/* マウスオーバー時の矢印 */
#information a h3::after {
    visibility: hidden;
    margin-left: 1.0rem;
    color: transparent;
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    content: "\f061";
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

#information a:hover h3::after {
    visibility: visible;
    color: rgba(240, 100, 0, 1.00);
}

@media only screen and (min-width: 768px) {

    #information .s-heading h2 span::before,
    #information .s-heading h2 span::after {
        width: calc(50% - 11.5rem);
    }

}

@media only screen and (min-width: 992px) {

    #information li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #information a div {
        display: inline;
        width: 11.0rem;
    }

    #information h3 {
        width: calc(100% - 16.0rem);
    }

}

/*　お知らせ詳細ページ
/*-------------------------------------------*/
.information #detail h2,
.information #detail h3,
.information #detail h4,
.information #detail h5 {
    margin-top: 4.0rem;
    margin-bottom: 1.5rem;
    padding: 1.0rem;
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 1.00);
    font-size: 2.4rem;
}

.information #detail h2 {
    margin-top: 0;
    margin-bottom: 5.0rem;
    background-color: rgba(25, 30, 90, 1.00);
}

.information #detail h3 {
    background-color: rgba(5, 30, 130, 1.00);
    font-size: 2.0rem;
}

.information #detail h4 {
    background-color: rgba(0, 110, 180, 1.00);
    font-size: 1.8rem;
}

.information #detail h5 {
    background-color: rgba(140, 140, 170, 1.00);
    font-size: 1.6rem;
}

/* ul, ol, dl */
.information #detail ul {
    margin: 1.5rem 0 1.5rem 3.2rem;
    padding: 0;
}

.information #detail ul li {
    list-style-type: disc;

}

.information #detail ol {
    margin: 1.5rem 0 1.5rem 2.8rem;
    padding: 0;
}

.information #detail ol li {
    list-style-type: decimal;
}

.information #detail dl {
    margin: 1.5rem 0;
}

.information #detail dt {
    font-weight: 500;
}

.information #detail dd {
    margin: 0 0 1.0rem 1.6rem;
}

@media only screen and (min-width: 768px) {

    .information #detail h2,
    .information #detail h3,
    .information #detail h4,
    .information #detail h5 {
        padding: 1.5rem 2.0rem;
    }

    .information #detail ul {
        margin: 2.0rem 0 2.0rem 3.2rem;
    }

    .information #detail ol {
        margin: 2.0rem 0 2.0rem 2.9rem;
    }

    .information #detail dl {
        margin: 2.0rem 0;
    }

}

@media only screen and (min-width: 1200px) {

    .information #detail h3,
    .information #detail h4,
    .information #detail h5 {
        margin-top: 6.0rem;
        margin-bottom: 2.0rem;
    }

    .information #detail ul {
        margin: 3.0rem 0 3.0rem 3.2rem;
    }

    .information #detail ol {
        margin: 3.0rem 0 3.0rem 3.0rem;
    }

    .information #detail dl {
        margin: 3.0rem 0;
    }

}

/*　画像配置
----------------------------------------------------------- */
.information #detail img[class*="wp-image"] {
    max-width: 100%;
    height: auto;
    margin: 1.0rem auto;
}

.information #detail img.alignleft,
.information #detail img.aligncenter,
.information #detail img.alignright {
    float: inherit;
    margin-left: 0;
}


/* ========================================================

　#works

=========================================================== */

#works .works p {
    color: rgba(135, 25, 45, 1.00);
    font-size: 1.4rem;
}

#works .works .row > div:nth-of-type(n+2) {
    margin-top: 2.5rem;
}

#works .works .row > div > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 各ボックスの背景色 */
#works .works .row > div[class^="col"]:nth-of-type(1) > div {
    background-color: rgba(228, 1, 30, 1.00);
}

#works .works .row > div[class^="col"]:nth-of-type(2) > div {
    background-color: rgba(214, 166, 0, 1.00);
}

#works .works .row > div[class^="col"]:nth-of-type(3) > div {
    background-color: rgba(27, 151, 58, 1.00);
}

#works .works .row > div[class^="col"]:nth-of-type(4) > div {
    background-color: rgba(0, 166, 217, 1.00);
}

#works .works .row > div[class^="col"]:nth-of-type(5) > div {
    background-color: rgba(151, 10, 49, 1.00);
}

#works .works .row > div[class^="col"]:nth-of-type(6) > div {
    background-color: rgba(236, 106, 6, 1.00);
}

#works .works .row > div[class^="col"]:nth-of-type(7) > div {
    background-color: rgba(211, 146, 6, 1.00);
}

#works .works .row > div[class^="col"]:nth-of-type(8) > div {
    background-color: rgba(64, 121, 54, 1.00);
}

#works .works .row > div[class^="col"]:nth-of-type(9) > div {
    background-color: rgba(2, 48, 103, 1.00);
}

/* リンク（背景の矢印含む） */
#works a {
    background: url("../img/works_arrow.png") right 2.0rem bottom 2.0rem / 6.25rem auto no-repeat;
    -webkit-transition: background-position 0.3s ease-in-out;
    -o-transition: background-position 0.3s ease-in-out;
    transition: background-position 0.3s ease-in-out;
}

#works a:hover {
    background-position: right 1.0rem bottom 1.0rem; /* 背景の矢印移動 */
}

/* 背景画像 */
#works img {
    width: 100%;
    height: auto;
    opacity: 0.3; /* 透過30％で背景色を透かす */
    z-index: 50;
}

#works a:hover img {
    opacity: 0;
}

/* タイトル */
#works h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: rgba(255, 255, 255, 1.00);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: right;
    z-index: 100;
}

#works h3::first-letter {
    display: block;
    font-size: 14.5rem;
}

@media only screen and (min-width: 576px) {

    #works .works p {
        text-align: center;
    }

    #works .works .row > div:nth-of-type(n+2) {
        margin-top: 0;
    }

    #works .works .row > div:nth-of-type(n+3) {
        margin-top: 1.5rem;
    }

    #works a {
        background-size: 3.75rem auto;
    }

    #works h3 {
        font-size: 2.0rem;
    }

    #works h3::first-letter {
        font-size: 10.25rem;
    }

}

@media only screen and (min-width: 768px) {

    #works .works .row > div:nth-of-type(n+3) {
        margin-top: 0;
    }

    #works .works .row > div:nth-of-type(n+4) {
        margin-top: 1.5rem;
    }

    #works a {
        background-position: right 1.5rem bottom 1.5rem;
        background-size: 3.15rem auto;
    }

    #works a:hover {
        background-position: right 0.75rem bottom 0.75rem;
    }

    #works h3 {
        font-size: 1.7rem;
    }

    #works h3::first-letter {
        font-size: 8.5rem;
    }

}

@media only screen and (min-width: 992px) {

    #works a {
        background-position: right 2.0rem bottom 2.0rem;
        background-size: 4.25rem auto;
    }

    #works a:hover {
        background-position: right 1.0rem bottom 1.0rem;
    }

    #works h3 {
        font-size: 2.25rem;
    }

    #works h3::first-letter {
        font-size: 11.25rem;
    }

}

@media only screen and (min-width: 1200px) {

    #works a {
        background-size: 5.0rem auto;
    }

    #works h3 {
        font-size: 2.4rem;
    }

    #works h3::first-letter {
        font-size: 12.0rem;
    }

}

@media only screen and (min-width: 1400px) {

    #works a {
        background-size: 6.0rem auto;
    }

    #works h3 {
        font-size: 2.8rem;
    }

    #works h3::first-letter {
        font-size: 14.0rem;
    }

}


/* ========================================================

　#results（TopPage & ResultsList page）

=========================================================== */

/* 背景色ありのため、ラップして上余白調整 */
.home #results .background-wrapper {
    margin-top: -4.0rem; /* a-sectionのpadding-bottom + 1.0rem */
    padding-top: 4.0rem; /* a-sectionのpadding-bottom + 1.0rem */
    background-color: rgba(240, 240, 240, 1.00);
}

/* 各事例の上余白 */
.home #results div[class^="col"]:nth-of-type(n+4) {
    margin-top: 3.0rem;
}

#results div[class^="col"]:nth-of-type(n+2) {
    margin-top: 3.0rem;
}

/* リンクカラー */
#results a {
    color: rgba(51, 51, 51, 1.00);
}

#results a:hover {
    color: rgba(240, 100, 0, 1.00);
}

/* サムネイル */
#results a > div:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 16.0rem;
    border-radius: 1.0rem;
    overflow: hidden;
}

#results a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#results a:hover img {
    opacity: 1.0;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

/* テキスト部分 */
#results a > div:last-of-type {
    display: grid;
    place-content: center;
    position: relative;
    margin-top: 1.0rem;
    padding: 1.0rem 5.0rem 1.0rem 1.0rem;
    border: 0.6rem double rgba(240, 100, 0, 1.00);
    border-radius: 2.0rem;
    transition: all 0.3s ease-in-out;
}

#results a:hover > div:last-of-type {
    border-color: rgba(255, 0, 0, 1.00);
}

body.home #results a > div:last-of-type h3 {
    font-weight: 700;
    text-align: center;
}

body:not(.home) #results a > div:last-of-type {
    height: 12.5rem;
}

#results a > div:last-of-type::after {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    font-size: 2.0rem;
    font-weight: 700;
    content: "\f0a9";
    color: rgba(240, 100, 0, 1.00);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#results a:hover > div:last-of-type::after {
    right: 1.0rem;
    color: rgba(255, 0, 0, 1.00);
}

/* 工事名 */
#results a h3 {
    margin-bottom: 0.5rem;
    color: rgba(0, 160, 230, 1.00);
    font-size: 1.8rem;
    font-weight: 400;
    text-align: justify;
}

.home #results a h3 {
    margin-bottom: 0;
}

/* 都道府県 */
#results a p {
    margin-bottom: 0;
    font-size: 1.4rem;
    text-align: justify;
}

/* 抜粋 */
#results a p.lead {
    margin-top: 0.5rem;
    color: rgba(0, 0, 0, 1.00);
    text-align: justify;
    line-height: 120%;
}

/* すべての施工実績を見る */
.home #results .row > div[class^="col"]:last-of-type a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    position: relative;
    margin: 3.0rem auto 4.0rem; /* background-wrapperにネガティヴマージンを設定した関係で、このarticleの最後のコンテンツ下に余白 */
    max-width: 26.0rem;
    border-radius: 0.4rem;
    border: 0.1rem solid rgba(5, 30, 130, 1.00);
    background-color: rgba(255, 255, 255, 1.00);
    color: rgba(5, 30, 130, 1.00);
    font-weight: 500;
    text-align: center;
    line-height: 5.0rem;
    letter-spacing: 0.25rem;
    -webkit-transform: skew(-10deg, 0deg);
    -ms-transform: skew(-10deg, 0deg);
    transform: skew(-10deg, 0deg);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.home #results .row > div[class^="col"]:last-of-type a span {
    -webkit-transform: skewX(10deg);
    -ms-transform: skewX(10deg);
    transform: skewX(10deg);
}

/* ボタンの矢印 */
.home #results .row > div[class^="col"]:last-of-type a::before,
.home #results .row > div[class^="col"]:last-of-type a::after {
    position: absolute;
    right: -1.5rem;
    height: 0.2rem;
    background-color: rgba(5, 30, 130, 1.00);
    content: '';
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.home #results .row > div[class^="col"]:last-of-type a::before {
    top: calc(50% - 0.1rem);
    width: 1.2rem;
    -webkit-transform: translateY(calc(-50% - 2px)) rotate(30deg);
    -ms-transform: translateY(calc(-50% - 2px)) rotate(30deg);
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
}

.home #results .row > div[class^="col"]:last-of-type a::after {
    top: 50%;
    width: 4.0rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
}

/* マウスオーバー時 */
.home #results .row > div[class^="col"]:last-of-type a:hover {
    border-color: rgba(240, 100, 0, 1.00);
    color: rgba(240, 100, 0, 1.00);
}

.home #results .row > div[class^="col"]:last-of-type a:hover::before,
.home #results .row > div[class^="col"]:last-of-type a:hover::after {
    right: -1.5em;
    background-color: rgba(240, 100, 0, 1.00);
}

/*　施工実績一覧
/*-------------------------------------------*/

/* 施工実績一覧のページャー */
#results .postNav {
    padding-top: 2.5rem;
    text-align: center;
}

#results .postNav .current,
#results .postNav .page {
    display: inline-block;
    width: 4.0rem;
    height: 4.0rem;
    margin: 0 0.5rem;
    background-color: rgba(240, 240, 240, 1.00);
    color: rgba(51, 51, 51, 1.00);
    font-size: 2.0rem;
    line-height: 4.0rem;
}

#results .postNav .page:hover {
    background-color: rgba(220, 220, 220, 1.00);
}

#results .postNav .current {
    background-color: rgba(140, 140, 170, 1.00);
    color: rgba(255, 255, 255, 1.00);
}

#results .postNav .first,
#results .postNav .last,
#results .postNav .previouspostslink,
#results .postNav .nextpostslink {
    color: rgba(51, 51, 51, 1.00);
    font-size: 2.0rem;
}

#results .postNav .first,
#results .postNav .previouspostslink {
    margin-right: 1.0rem;
}

#results .postNav .nextpostslink,
#results .postNav .last {
    margin-left: 1.0rem;
}

#results .postNav .extend {
    margin: 0 0.5rem;
}

/*　施工実績詳細ページ
/*-------------------------------------------*/
.results #results {
    margin-top: inherit;
    padding-top: 4.5rem;
    background-color: rgba(240, 240, 240, 1.00);
}

.results #detail p {
    margin-bottom: 0;
    text-align: justify;
}

.results #detail ul {
    margin: 1.5rem 0 1.5rem 3.2rem;
    padding: 0;
}

.results #detail li {
    margin-bottom: 1.0rem;
}

/* メイン写真 */
.results #detail .row > div img {
    width: 100%;
    height: auto;
}

.results #detail .meta {
    margin: 2.5rem 0 2.0rem;
}

/* タイトル */
.results #detail .meta h3 {
    margin-bottom: 0.5rem;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 130%;
}

/* ビフォーアフター */
.results #detail .before,
.results #detail .after {
    margin-top: 2.5rem;
}

.results #detail .before h4,
.results #detail .after h4 {
    font-size: 2.4rem;
}

.results #detail .before h4::first-letter,
.results #detail .after h4::first-letter {
    font-size: 200%;
    text-transform: capitalize;
}

.results #detail .before h4 {
    color: rgba(170, 170, 170, 1.00)
}

.results #detail .after h4 {
    color: rgba(77, 70, 134, 1.00)
}

/* 写真の上余白 */
.results #detail .container .row .row div[class^="col"]:nth-of-type(n+2) {
    margin-top: 1.0rem;
}

/* ページャー */
.results #detail .container > .row > div[class^="col"]:last-of-type {
    margin-top: 2.5rem;
    text-align: center;
}

.results #detail .container > .row > div[class^="col"]:last-of-type a {
    color: rgba(125, 0, 0, 1.00);
    font-size: 1.8rem;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.results #detail .container > .row > div[class^="col"]:last-of-type a:hover {
    opacity: 0.7;
}

.results #detail .prev-next a[rel="prev"],
.results #detail .prev-next a[rel="next"] {
    position: relative;
    top: -2.0rem;
}

.results #detail .prev-next a[href="https://webplus02.heteml.net/nishimurakensetu.com/results/"] { /* 施工事例ページの完全一致URLをセット */
    margin: 0 3.0rem;
}

@media only screen and (min-width: 576px) {

    #results a > div:first-of-type {
        height: 24.0rem;
    }

}

@media only screen and (min-width: 768px) {

    .home #results {
        position: relative;
        overflow: hidden;
    }

    .home #results::before,
    .home #results::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 120%;
        min-height: calc(80% + 5.6rem);
        margin: 4.8rem -10% 0;
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: rotate(3deg);
        -ms-transform: rotate(3deg);
        transform: rotate(3deg);
        content: '';
    }

    .home #results::before {
        background-color: rgba(240, 240, 240, 1.00);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: rotate(3deg);
        -ms-transform: rotate(3deg);
        transform: rotate(3deg);
        z-index: -1;
    }

    .home #results::after {
        background-color: rgba(180, 187, 217, 1.00);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
        transform: rotate(-3deg);
        z-index: -2;
    }

    .home #results .background-wrapper {
        background: none;
    }

    .home #results div[class^="col"]:nth-of-type(n+4) {
        margin-top: 0;
    }

    .home #results .row > div[class^="col"]:last-of-type a {
        margin: 5.0rem auto 4.0rem;
        max-width: 100%;
    }

    #results div[class^="col"]:nth-of-type(n+2) {
        margin-top: 0;
    }

    #results div[class^="col"]:nth-of-type(n+4) {
        margin-top: 1.5rem;
    }

    #results a > div:first-of-type {
        height: 12.5rem;
    }

    #results a > div:last-of-type {
        min-height: 7.5rem;
    }

    .home #results a > div:last-of-type {
        min-height: inherit;
    }

    #results a h3 {
        margin-bottom: 0;
        font-size: 1.3rem;
        line-height: 120%;
    }

    #results a p {
        font-size: 1.1rem;
    }

    #results .postNav {
        padding-top: 5.0rem;
    }

    /*　施工実績詳細
    /*-------------------------------------------*/
    .results #detail .container > .row > div[class^="col"]:nth-of-type(2) h3 {
        font-size: 2.4rem;
    }

    .results #detail .container > .row > div[class^="col"]:nth-of-type(2) p {
        font-size: 1.8rem;
        line-height: 160%;
    }

    .results #detail ul {
        margin: 2.0rem 0 2.0rem 3.2rem;
    }

    .results #detail .before,
    .results #detail .after {
        margin-top: 3.0rem;
    }

    .results #detail .container .row .row div[class^="col"]:nth-of-type(n+2) {
        margin-top: 0;
    }

    .results #detail .container .row .row div[class^="col"]:nth-of-type(n+4) {
        margin-top: 1.5rem;
    }

    .results #detail .container > .row > div[class^="col"]:last-of-type {
        margin-top: 5.0rem;
    }

}

@media only screen and (min-width: 992px) {

    .home #results::before,
    .home #results::after {
        min-height: calc(80% + 7.1rem);
        margin: 2.5rem -10% 0;
    }

    .home #results .background-wrapper {
        margin-top: -6.0rem;
        padding-top: 5.0rem;
    }

    .home #results .row > div[class^="col"]:last-of-type a {
        margin: 5.0rem auto;
    }

    #results a > div:first-of-type {
        height: 17.0rem;
    }

    #results a > div:last-of-type {
        min-height: 9.0rem;
    }

    #results a h3 {
        font-size: 1.8rem;
    }

    #results a p {
        font-size: 1.4rem;
    }

    /*　施工実績一覧
    /*-------------------------------------------*/
    .results #results {
        padding-top: 5.5rem;
    }

    /*　施工実績詳細
    /*-------------------------------------------*/
    .results #detail .meta {
        margin: 0 0 2.0rem;
    }

}

@media only screen and (min-width: 1200px) {

    .home #results::before,
    .home #results::after {
        min-height: calc(80% + 6.2rem);
        margin: 3.8rem -10% 0;
    }

    .home #results .background-wrapper {
        margin-top: -8.5rem;
        padding-top: 7.5rem;
    }

    .home #results .row > div[class^="col"]:last-of-type a {
        margin: 5.0rem auto 7.5rem;
    }

    #results a > div:first-of-type {
        height: 21.0rem;
    }

    #results a > div:last-of-type {
        min-height: 11.0rem;
        margin-top: 1.5rem;
        padding: 2.0rem 6.0rem 2.0rem 2.0rem;
    }

    #results a > div:last-of-type::after {
        font-size: 3.0rem;
    }

    /*　施工実績一覧
    /*-------------------------------------------*/
    .results #results {
        padding-top: 8.0rem;
    }

    /*　施工実績詳細
    /*-------------------------------------------*/
    .results #detail .before,
    .results #detail .after {
        margin-top: 5.0rem;
    }

    .results #detail ul {
        margin: 3.0rem 0 3.0rem 3.2rem;
    }

}

@media only screen and (min-width: 1400px) {

    .home #results::before,
    .home #results::after {
        min-height: calc(80% + 6.5rem);
        margin: 3.2rem -10% 0;
    }

    #results a > div:first-of-type {
        height: 24.0rem;
    }

}

@media only screen and (min-width: 1920px) {

    .home #results::before,
    .home #results::after {
        min-height: calc(80% + 5.8rem);
        margin: 1.6rem -10% 0;
    }

    .home #results .background-wrapper {
        margin-top: -11.0rem;
        padding-top: 10.0rem;
    }

    .home #results .row > div[class^="col"]:last-of-type a {
        margin: 5.0rem auto 10.0rem;
    }

    /*　施工実績一覧
    /*-------------------------------------------*/
    .results #results {
        padding-top: 10.5rem;
    }

}

@media only screen and (min-width: 2560px) {

    .home #results::before,
    .home #results::after {
        width: 125%;
    }

}


/* ========================================================

　#flow

=========================================================== */

.home #flow div[class^="col"]:nth-of-type(n+4) {
    margin-top: 1.0rem;
}

#flow a {
    display: inline-block;
    position: relative;
    width: 100%;
    border: 0.1rem solid rgba(0, 110, 180, 1.00);
    background-color: rgba(0, 110, 180, 1.00);
    font-weight: 500;
    text-align: center;
    line-height: 5.0rem;
    outline: none;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

body[class^="flow"] #flow a {
    margin-top: 3.0rem;
}

#flow a div {
    position: relative;
    color: rgba(255, 255, 255, 1.00);
    z-index: 3;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#flow a:hover div {
    color: rgba(0, 110, 180, 1.00);
}

#flow a::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(240, 240, 240, 1.00);
    content: '';
    z-index: 2;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#flow a:hover::before {
    height: 100%;
}

/*　施工までの流れ詳細ページ
/*-------------------------------------------*/

/* 中見出し */
body[class^="flow"] #flow h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
    min-height: 5.0rem;
    margin-bottom: 3.0rem;
    padding: 0 1.5rem 1.4rem;
    background-color: rgba(180, 187, 217, 0.25);
    color: rgba(5, 30, 130, 1.00);
    font-size: 2.0rem;
}

body[class^="flow"] #flow h2::before {
    position: absolute;
    top: -0.7rem;
    left: -0.7rem;
    width: 100%;
    height: 100%;
    border: 0.2rem solid rgba(180, 187, 217, 1.00);
    content: '';
}

/* テキスト */
body[class^="flow"] #flow p {
    text-align: justify;
}

body[class^="flow"] #flow p:last-of-type {
    margin-bottom: 0;
}

/* 箇条書き */
#flow ul {
    margin: 1.5rem 0 1.5rem 3.2rem;
    padding: 0;
    color: rgba(5, 30, 130, 1.00);
    font-size: 1.8rem;
    font-weight: 500;
    text-align: justify;
    line-height: 180%;
}

/* ギャラリー */
#flow .gallery {
    margin: 3.0rem auto 10.0rem;
}

#flow .gallery div[class^="col"]:nth-of-type(n+2) {
    margin-top: 1.0rem;
}

#flow .gallery img {
    width: 100%;
    height: auto;
}

/* フローチャート */
#flow .flowchart .inner {
    position: relative;
    padding: 5.0rem 3.0rem 1.5rem;
    border-radius: 1.0rem;
}

#flow .flowchart div[class^="col"]:nth-of-type(n+2) {
    margin-top: 6.0rem;
}

#flow .flowchart div[class^="col"]:nth-of-type(odd) .inner {
    border: 0.1rem solid rgba(255, 225, 0, 1.00);
    background-color: rgba(255, 255, 150, 0.25); /* 奇数番の背景色 */
}

#flow .flowchart div[class^="col"]:nth-of-type(even) .inner {
    border: 0.1rem solid rgba(145, 210, 245, 1.00);
    background-color: rgba(125, 205, 245, 0.25); /* 偶数番の背景色 */
}

#flow .flowchart aside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: -4.0rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 8.0rem;
    height: 8.0rem;
    border-radius: 50%;
    background-color: rgba(5, 30, 130, 1.00);
    color: rgba(255, 255, 255, 1.00);
    text-align: center;
}

#flow .flowchart aside span {
    display: block;
    margin-top: 0.25rem;
    color: rgba(255, 240, 0, 1.00);
    font-family: "Montserrat", sans-serif;
    font-size: 180%;
    font-weight: 900;
}

#flow .flowchart p {
    text-align: justify;
    line-height: 160%;
}

/* サービス */
#flow .service {
    margin-top: 3.0rem;
    padding-top: 3.0rem;
    border-top: 0.6rem double rgba(210, 210, 210, 1.00);
}

#flow .service > p:first-of-type {
    margin-bottom: 0;
    font-size: 1.8rem;
}

#flow .service > h3 {
    margin-top: 5.0rem;
    margin-bottom: 2.0rem;
    padding: 1.0rem 1.75rem;
    border-left: 0.5rem dashed rgba(125, 0, 0, 1.00);
    background-color: rgba(125, 0, 0, 0.05);
    color: rgba(125, 0, 0, 1.00);
    font-size: 2.2rem;
}

#flow .service > h3:nth-of-type(n+2) {
    margin-top: 8.0rem;
}

#flow .service > .row:nth-of-type(3) ul {
    margin: 1.5rem 0;
    list-style: none;
}

#flow .service img {
    width: 100%;
    max-width: 64.0rem;
    height: auto;
    margin: 1.0rem 0;
}

#flow .button {
    margin-top: 3.0rem;
}

@media only screen and (min-width: 768px) {

    .home #flow div[class^="col"]:nth-of-type(n+4) {
        margin-top: 0;
    }

    #flow a {
        line-height: 6.0rem;
    }

    /*　施工までの流れ詳細ページ
    /*-------------------------------------------*/
    body[class^="flow"] #flow h2 {
        min-height: 6.0rem;
        padding: 0 1.5rem 2.0rem;
        font-size: 2.4rem;
    }

    body[class^="flow"] #flow h2::before {
        top: -1.0rem;
        left: -1.0rem;
    }

    #flow .gallery div[class^="col"]:nth-of-type(n+2) {
        margin-top: 0;
    }

    #flow .gallery div[class^="col"]:nth-of-type(n+3) {
        margin-top: 1.0rem;
    }

    #flow .gallery div[class^="col"] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 18.0rem;
        overflow: hidden;
    }

    #flow .flowchart .inner {
        padding: 6.0rem 4.5rem 3.0rem;
        border-radius: 2.0rem;
    }

    #flow .service > .row ul {
        margin: 2.0rem 0 2.0rem 4.0rem;
    }

    #flow .service > .row:nth-of-type(3) ul {
        margin: 2.0rem 0;
    }

}

@media only screen and (min-width: 992px) {

    #flow a {
        font-size: 1.8rem;
    }

    /*　施工までの流れ詳細ページ
    /*-------------------------------------------*/
    body[class^="flow"] #flow h2,
    #flow .service > h3 {
        margin-bottom: 3.0rem;
    }

    #flow .gallery div[class^="col"] {
        height: 22.0rem;
    }

    #flow .flowchart .inner {
        padding: 6.0rem 6.0rem 3.0rem;
    }

    #flow .service img {
        margin: 0;
    }

}

@media only screen and (min-width: 1200px) {

    /*　施工までの流れ詳細ページ
    /*-------------------------------------------*/
    #flow .gallery {
        margin: 3.0rem auto 10.0rem;
    }

    #flow .gallery div[class^="col"]:nth-of-type(n+3) {
        margin-top: 0;
    }

    #flow .gallery div[class^="col"] {
        height: 18.0rem;
    }

    #flow .gallery img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    #flow .flowchart .inner {
        padding: 8.0rem 7.0rem 4.0rem;
        font-size: 120%;
    }

    #flow .flowchart div[class^="col"]:nth-of-type(n+2) {
        margin-top: 8.0rem;
    }

    #flow .flowchart aside {
        top: -5.0rem;
        width: 10.0rem;
        height: 10.0rem;
    }

    #flow .flowchart aside span {
        margin-top: 1.0rem;
        font-size: 200%;
    }

    #flow .service {
        margin-top: 10.0rem;
        padding-top: 5.0rem;
    }

    #flow .service h3 {
        margin-top: 5.0rem;
    }

}


/* ========================================================

　#achievements

=========================================================== */

/* リスト */
#achievements table {
    margin-top: 6.0rem;
}

#achievements .table-responsive {
    -webkit-overflow-scrolling: touch;
}

#achievements table {
    width: 100%;
    margin-bottom: 2.0rem;
    border: 0.3rem solid rgba(160, 160, 160, 1.00);
    white-space: nowrap;
}

#achievements th,
#achievements td {
    padding: min(2.0vw, 1.0rem);
    border: 0.1rem solid rgba(160, 160, 160, 1.00);
}

#achievements th {
    background-color: rgba(240, 240, 240, 1.00);
}

@media screen and (max-width: 767px) {

    #achievements .table-responsive::-webkit-scrollbar {
        height: 5px;
    }

    #achievements .table-responsive::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: rgba(240, 240, 240, 1.0);
    }

    #achievements .table-responsive::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background-color: rgba(100, 100, 100, 1.0);
    }

}

@media only screen and (min-width: 1200px) {

    #achievements table {
        white-space: normal;
    }

    #achievements th:nth-of-type(1) {
        width: 8.0rem;
    }

    #achievements th:nth-of-type(2) {
        width: 30.0rem;
    }

    #achievements th:nth-of-type(3) {
        width: 16.0rem;
    }

    #achievements th:nth-of-type(4) {
        width: 12.0rem;
    }

    #achievements th:nth-of-type(5) {}

}


/* ========================================================

　#company

=========================================================== */

/* 背景色ありのため、ラップして上余白調整 */
#company .background-wrapper {
    margin-top: -4.0rem; /* a-sectionのpadding-bottom + 1.0rem */
    padding-top: 4.0rem; /* a-sectionのpadding-bottom + 1.0rem */
    background-color: rgba(250, 245, 240, 1.00);
}

/* メッセージ部分 */
#company .notes {
    margin-top: 2.0rem;
}

#company .notes p {
    color: rgba(5, 30, 130, 1.00);
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: justify;
    line-height: 160%;
}

/* メイン写真 */
#company img {
    width: 100%;
    height: auto;
}

/* 項目 */
#company dl {
    margin: 0;
    margin-bottom: 3.0rem; /* background-wrapperにネガティヴマージンを設定した関係で、このarticleの最後のコンテンツ下に余白 */
}

#company dt {
    padding: 1.0rem;
    border-right: 0.1rem solid rgba(0, 0, 0, 0.30);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.30);
    background-color: rgba(255, 255, 255, 1.00);
    text-align: justify;
    letter-spacing: 0.25rem;
}

/* 内容 */
#company dd {
    padding: 1.0rem 0 2.0rem 1.0rem;
}

#company dd:last-of-type {
    padding-bottom: 0;
}

#company dd span {
    display: block;
}

#company dd ul {
    margin: 0 0 0 0.4rem;
}

#company dd li:nth-of-type(n+2) {
    margin-top: 0.5rem;
}

@media only screen and (min-width: 576px) {

    #company .notes {
        width: 41.0rem;
    }

    #company .notes p {
        text-align: left;
    }

    #company .notes p:nth-of-type(2) {
        padding-left: calc(2.0rem * 1);
    }

    #company .notes p:nth-of-type(3) {
        padding-left: calc(2.0rem * 2);
    }

    #company .notes p:nth-of-type(4) {
        padding-left: calc(2.0rem * 3);
    }

    #company .notes p:nth-of-type(5) {
        padding-left: calc(2.0rem * 4);
    }

    #company dd span {
        display: inline;
    }

}

@media only screen and (min-width: 768px) {

    #company {
        position: relative;
        overflow: hidden;
    }

    #company::before,
    #company::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 120%;
        min-height: calc(80% + 44.8rem);
        margin: 4.4rem -10% 0;
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: rotate(3deg);
        -ms-transform: rotate(3deg);
        transform: rotate(3deg);
        content: '';
    }

    #company::before {
        background-color: rgba(250, 245, 240, 1.00);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: rotate(3deg);
        -ms-transform: rotate(3deg);
        transform: rotate(3deg);
        z-index: -1;
    }

    #company::after {
        background-color: rgba(180, 187, 217, 1.00);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
        transform: rotate(-3deg);
        z-index: -2;
    }

    #company::after {
        background-color: rgba(180, 187, 217, 1.00);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
        transform: rotate(-3deg);
        z-index: -2;
    }

    #company .background-wrapper {
        background: none;
        padding-bottom: 3.0rem;
    }

    #company .notes {
        width: 45.0rem;
    }

    #company .notes p {
        font-size: 2.0rem;
    }

}

@media only screen and (min-width: 992px) {

    #company::before,
    #company::after {
        min-height: calc(80% + 38.2rem);
        margin: 2.1rem -10% 0;
    }

    #company .background-wrapper {
        margin-top: -6.0rem;
        padding-top: 5.0rem;
    }

    #company .notes {
        margin-bottom: 3.0rem;
    }

    /* 項目と内容を横並びに */
    #company dl {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 5.0rem;
    }

    #company dt,
    #company dd {
        margin: 0;
        padding: 2.5rem 1.0rem 1.0rem 2.0rem;
        border: none;
        background: none;
    }

    #company dt {
        width: 24.0%;
        border-bottom: 0.1rem solid rgba(0, 0, 0, 1.00);
    }

    #company dd {
        width: calc(100% - 24.0% - 3.0rem);
        margin: 0 0 0 3.0rem;
        border-bottom: 0.1rem solid rgba(210, 210, 210, 1.00);
    }

    #company dt:last-of-type,
    #company dd:last-of-type {
        padding-bottom: 0;
        border-bottom: none;
    }

}

@media only screen and (min-width: 1200px) {

    #company::before,
    #company::after {
        min-height: calc(80% + 37.2rem);
        margin: 3.4rem -10% 0;
    }

    #company .background-wrapper {
        margin-top: -8.5rem;
        padding-top: 7.5rem;
    }

    #company .notes {
        margin-top: 3.0rem;
        width: 57.5rem;
    }

    #company .notes p {
        font-size: 2.4rem;
    }

    /* メッセージ２行目からインデント */
    #company .notes p:nth-of-type(2) {
        padding-left: calc(2.4rem * 2);
    }

    #company .notes p:nth-of-type(3) {
        padding-left: calc(2.4rem * 4);
    }

    #company .notes p:nth-of-type(4) {
        padding-left: calc(2.4rem * 6);
    }

    #company .notes p:nth-of-type(5) {
        padding-left: calc(2.4rem * 8);
    }

    #company dl {
        margin-bottom: 7.5rem;
    }

    #company dt {
        width: 30.0%;
    }

    #company dd {
        width: calc(100% - 30.0% - 3.0rem);
    }

}

@media only screen and (min-width: 1400px) {

    #company::before,
    #company::after {
        min-height: calc(80% + 38.1rem);
        margin: 2.8rem -10% 0;
    }

}

@media only screen and (min-width: 1920px) {

    #company::before,
    #company::after {
        min-height: calc(80% + 38.1rem);
        margin: 1.2rem -10% 0;
    }

    #company .background-wrapper {
        margin-top: -11.0rem;
        padding-top: 10.0rem;
    }

    #company dl {
        margin-bottom: 10.0rem;
    }

}

@media only screen and (min-width: 2560px) {

    #company::before,
    #company::after {
        width: 125%;
    }

}


/* ========================================================

　#access

=========================================================== */

#map iframe {
    position: relative;
    bottom: -0.6rem;
    width: 100%;
    height: 80.0vw;
    margin-top: -4.0rem;
    margin-bottom: 0;
    padding-top: 1.0rem;
    padding-bottom: 1.0rem;
    border: 0;
    background: rgba(30, 30, 30, 1.00) url("../img/diagonal_line.png") center top repeat;
}

/* 通常時はグレー */
#map iframe,
#map object,
#map embed {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

/* マウスオーバー時はカラー */
#map iframe:hover,
#map object:hover,
#map embed:hover {
    background-color: rgba(5, 30, 130, 1.00);
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) {

    #map iframe {
        height: 36.0rem;
        margin-top: -6.0rem;
    }

}

@media only screen and (min-width: 992px) {

    #map iframe {
        margin-top: -9.0rem;
        bottom: -0.5rem;
    }

}

@media only screen and (min-width: 1200px) {

    #map iframe {
        height: 48.0rem;
        margin-top: -12.5rem;
    }

}

@media only screen and (min-width: 1920px) {

    #map iframe {
        margin-top: -15.5rem;
    }

}


/* ========================================================

　#recruit

=========================================================== */

#recruit p,
#recruit dt,
#recruit dd {
    text-align: justify;
}

/* 項目 */
#recruit dl {
    margin-top: 6.0rem;
}

#recruit dt {
    padding: 1.0rem;
    background-color: rgba(0, 110, 180, 0.20);
    letter-spacing: 0.25rem;
}

/* 内容 */
#recruit dd {
    margin-bottom: 0;
    padding: 1.0rem 0 2.0rem 1.0rem;
}

#recruit dd ul {
    margin: 0 0 0 0.4rem;
}

#recruit dd li:nth-of-type(n+2) {
    margin-top: 0.5rem;
}

#recruit dd p {
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) {

    /* 項目と内容を横並びに */
    #recruit dl {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
    }

    #recruit dt,
    #recruit dd {
        margin: 0;
        padding: 2.5rem 1.0rem 1.0rem 2.0rem;
    }

    #recruit dt:nth-of-type(n+2),
    #recruit dd:nth-of-type(n+2) {
        margin-top: 1.0rem;
    }

    #recruit dt {
        width: 24.0%;
        background-color: rgba(0, 110, 180, 0.20);
    }

    #recruit dd {
        width: calc(100% - 24.0% - 3.0rem);
        margin: 0 0 0 3.0rem;
        border-bottom: 0.1rem solid rgba(0, 110, 180, 0.20);
    }

}

@media only screen and (min-width: 1200px) {

    #recruit dt {
        width: 30.0%;
    }

    #recruit dd {
        width: calc(100% - 30.0% - 3.0rem);
    }

}


/* ========================================================

　policy

=========================================================== */

#policy p,
#policy dt,
#policy dd {
    text-align: justify;
}

#policy dl {
    margin-top: 6.0rem;
}

#policy dt {
    color: rgba(0, 0, 0, 1.00);
    font-weight: 500;
}

#policy dd {
    margin: 1.0rem 0 5.0rem;
}

#policy ul {
    margin: 1.0rem 0 1.0rem 0.4rem;
}

#policy p:last-of-type {
    text-align: right;
}

@media only screen and (min-width: 768px) {

    #policy dd {
        margin: 2.0rem 0 5.0rem;
    }

    #policy ul {
        margin: 2.0rem 0 2.0rem 1.6rem;
    }

}

@media only screen and (min-width: 1200px) {

    #policy dd {
        margin: 3.0rem 0 6.0rem;
    }

    #policy ul {
        margin: 3.0rem 0 3.0rem 1.6rem;
    }

}


/* ========================================================

　#contact

=========================================================== */

/* 小見出し（電話でお問い合わせ／メールでお問い合わせ） */
#contact h3 {
    color: rgba(5, 30, 130, 1.00);
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
}

#contact .row div[class^="col"]:nth-of-type(2) h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.0rem;
}

#contact .row div[class^="col"]:nth-of-type(3) h3 {
    margin-top: 6.0rem;
    margin-bottom: 1.0rem;
}

#contact p {
    margin-bottom: 0;
}

/* 電話でお問い合わせ */
#contact .notes {
    padding: 3.0rem 1.0rem;
    background-color: rgba(5, 30, 130, 0.10);
    text-align: center;
}

/* 受付時間 */
#contact .notes p:nth-of-type(1) {
    margin-bottom: 1.0rem;
    font-size: 3.0rem;
    font-weight: 700;
}

/* 注意 */
#contact .notes p:nth-of-type(3),
#contact #mailform .att {
    margin-top: 1.0rem;
    color: rgba(255, 0, 0, 1.00);
    font-size: 1.2rem;
    line-height: 1.6rem;
}

#contact .notes p:nth-of-type(3) span {
    display: block;
}

/* メールでお問い合わせ */
#contact .row div[class^="col"]:nth-of-type(3) {
    margin-top: 2.5rem;
    border-top: 0.3rem double rgba(210, 210, 210, 1.00);
}

/* フォーム項目 */
#contact #mailformpro dl {
    margin-top: 5.0rem;
}

#contact #mailformpro dt {
    padding-top: 2.0rem;
    width: 100%;
    color: rgba(0, 0, 0, 1.00);
    font-size: 1.6rem;
    text-align: left;
}

#contact #mailformpro dt .must {
    float: right;
    padding: 0.5rem 1.0rem;
    background-color: rgba(125, 0, 0, 1.00);
    border-radius: 0.4rem;
    color: rgba(255, 255, 255, 1.00);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.4rem;
}

#contact #mailformpro dd {
    padding-bottom: 2.0rem;
    padding-left: 0;
    padding-right: 0;
}

#contact #mailformpro dd:last-of-type {
    border-bottom: 0.1rem solid rgba(210, 210, 210, 1.00);
}

#contact #mailformpro input,
#contact #mailformpro textarea {
    height: 4.0rem;
    padding-left: 1.0rem;
    padding-right: 1.0rem;
    border-radius: 0.6rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.10);
    font-size: 1.6rem;
    font-weight: 300;
}

#contact #mailformpro input {
    width: 100%;
}

#contact #mailformpro textarea {
    padding: 1.0rem;
    width: 100% !important;
    height: 20.0rem !important;
}

/* 送信前チェック */
#contact #mailformpro input.check {
    position: relative;
    top: 0.4rem;
    width: 2.0rem;
    height: 2.0rem;
}

#contact #mailformpro label.mfp_not_checked {
    border: none;
}

#contact #mailformpro label.mfp_not_checked em {
    font-size: 1.6rem;
    font-style: normal;
}

#contact #mailformpro .lastCheck label.mfp_not_checked em {
    color: rgba(75, 75, 70, 1.00);
}

#contact #mailformpro label.mfp_checked {
    border: none;
    background: none;
}

#contact #mailformpro label.mfp_checked em {
    font-size: 1.6rem;
    font-style: normal;
}

#contact #mailformpro .lastCheck label.mfp_checked em {
    color: rgba(240, 100, 0, 1.00);
}

#contact #mailformpro li:nth-of-type(n+2) {
    margin-top: 0.5rem;
}

#contact #mailformpro p.att {
    margin-bottom: 0.5rem;
    color: rgba(255, 0, 0, 1.00);
    font-size: 1.4rem;
}

/* エラー表示 */
div.mfp_err {
    background: none;
}

div.mfp_err:before {
    margin-right: 0.5rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    content: "\f062";
}

/* ボタン */
div.mfp_buttons {
    clear: both;
    margin-top: 3.0rem;
    text-align: center;
}

#contact .mfp_buttons button {
    width: 22.0rem;
    height: 6.0rem;
    padding: 0;
    border: none;
    border-radius: 0.6rem;
    font-size: 2.4rem;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#contact .mfp_buttons button:first-of-type {
    margin-bottom: 2.0rem;
    background-color: rgba(240, 240, 240, 1.00);
    color: rgba(0, 0, 0, 1.00);
}

#contact .mfp_buttons button:first-of-type:hover {
    background-color: rgba(210, 210, 210, 1.00);
}

#contact .mfp_buttons button:last-of-type {
    background-color: rgba(5, 30, 130, 1.00) !important;
    color: rgba(255, 255, 255, 1.00);
}

#contact .mfp_buttons button:last-of-type:hover {
    background-color: rgba(0, 110, 180, 1.00) !important;
}

div.mfp_buttons button {
    width: 22.0rem !important;
    height: 6.0rem !important;
    padding: 0;
    border: none;
    border-radius: 0.6rem;
    font-size: 2.0rem !important;
    cursor: pointer;
}

div.mfp_buttons button:first-of-type {
    background-color: rgba(240, 240, 240, 1.00);
    color: rgba(0, 0, 0, 1.00);
}

div.mfp_buttons button:first-of-type:hover {
    background-color: rgba(210, 210, 210, 1.00);
}

div.mfp_buttons button:last-of-type {
    background-color: rgba(5, 30, 130, 1.00) !important;
    color: rgba(255, 255, 255, 1.00);
}

div.mfp_buttons button:last-of-type:hover {
    background-color: rgba(0, 110, 180, 1.00) !important;
}

@media only screen and (min-width: 576px) {

    #contact .notes p:nth-of-type(3) span {
        display: inline;
    }

    #contact #mailformpro dd.name input,
    #contact #mailformpro dd.kana input,
    #contact #mailformpro dd.company input,
    #contact #mailformpro dd.address input,
    #contact #mailformpro dd.mail input,
    #contact #mailformpro dd.mailconf input,
    #contact #mailformpro dd.tele input,
    #contact #mailformpro textarea {
        width: 48.0rem !important;
    }

    #contact .mfp_buttons button:first-child {
        margin-right: 2.0rem;
        margin-bottom: 0;
    }

}

@media only screen and (min-width: 768px) {

    #contact .row div[class^="col"]:nth-of-type(2) h3 {
        margin-top: 5.0rem;
    }

    #contact .row div[class^="col"]:nth-of-type(3) h3 {
        margin-top: 7.5rem;
    }

    #contact .notes p:nth-of-type(1) {
        font-size: 3.6rem;
    }

    #contact .row div[class^="col"]:nth-of-type(3) {
        margin-top: 5.0rem;
    }

    #contact #mailformpro dt {
        padding: 2.0rem 1.0rem;
        width: 26.0rem;
        border: none;
        background-color: transparent;
    }

    #contact #mailformpro dd {
        padding: 2.0rem 1.0rem 2.0rem 28.0rem;
    }

    #contact #mailformpro dd:last-child {
        border-bottom: none;
    }

    #contact #mailformpro dd.name input,
    #contact #mailformpro dd.kana input,
    #contact #mailformpro dd.company input,
    #contact #mailformpro dd.address input,
    #contact #mailformpro dd.mail input,
    #contact #mailformpro dd.mailconf input,
    #contact #mailformpro dd.tele input,
    #contact #mailformpro textarea {
        width: 38.0rem !important;
    }

    #contact #mailformpro .type label {
        display: inline-block;
    }

    #contact #mailformpro .type label:nth-of-type(n+2) {
        margin-left: 2.0rem;
    }

    #contact #mailformpro .type > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

}

@media only screen and (min-width: 992px) {

    #contact p,
    #contact .notes p {
        text-align: center;
    }

    #contact #mailformpro p {
        text-align: left;
    }

    #contact #mailformpro dt {
        width: 30.0rem;
    }

    #contact #mailformpro dd {
        padding: 2.0rem 1.0rem 2.0rem 34.0rem;
    }

    #contact #mailformpro dd.name input,
    #contact #mailformpro dd.kana input,
    #contact #mailformpro dd.company input,
    #contact #mailformpro dd.address input,
    #contact #mailformpro dd.mail input,
    #contact #mailformpro dd.mailconf input,
    #contact #mailformpro dd.tele input,
    #contact #mailformpro textarea {
        width: 40.0rem !important;
    }

}

@media only screen and (min-width: 1200px) {

    #contact #mailformpro dt {
        width: 32.0rem;
    }

    #contact #mailformpro dd {
        padding-left: 36.0rem;
    }

    #contact #mailformpro textarea {
        width: 92% !important;
    }

}

@media only screen and (min-width: 1400px) {

    #contact #mailformpro dt {
        width: 34.0rem;
    }

    #contact #mailformpro dd {
        padding-left: 38.0rem;
    }

    #contact #mailformpro dd.name input,
    #contact #mailformpro dd.kana input,
    #contact #mailformpro dd.company input,
    #contact #mailformpro dd.address input,
    #contact #mailformpro dd.mail input,
    #contact #mailformpro dd.mailconf input,
    #contact #mailformpro dd.tele input {
        width: 44.0rem !important;
    }

}

/*　送信完了
/*-------------------------------------------*/
#mfp_thanks {
    padding-bottom: 1.0rem;
    border-bottom: 0.3rem double rgba(125, 0, 0, 1.00);
    font-size: 2.0rem;
    text-align: center;
}

#mfp_thanks strong {
    display: block;
    margin: 1.0rem 0;
    color: rgba(235, 97, 0, 1.00);
    font-size: 3.0rem;
}

.thanksMessage h3 {
    margin-top: 3.0rem;
    margin-bottom: 3.0rem;
    color: rgba(5, 30, 130, 1.00);
    font-size: 2.0rem;
    line-height: 3.0rem;
}

.thanksMessage ul {
    margin: 3.0rem 0;
    color: rgba(255, 0, 0, 1.00);
}

@media only screen and (min-width: 768px) {

    #mfp_thanks strong {
        display: inline;
        position: relative;
        top: 0.3rem;
    }

    .thanksMessage ul {
        margin: 3.0rem 0 3.0rem 2.4rem;
    }

}


/* ========================================================

　#err404

=========================================================== */

#err404 h3 {
    margin-bottom: 2.0rem;
    color: rgba(255, 0, 0, 1.00);
}

#err404 hr {
    margin: 2.0rem 0;
}


/* ========================================================

　footer

=========================================================== */

footer {
    position: relative;
    width: 100%;
    padding-top: 2.0rem;
    padding-bottom: 6.0rem;
    background: rgba(30, 30, 30, 1.00) url("../img/diagonal_line.png") center top repeat;
    color: rgba(240, 240, 240, 1.00);
    font-weight: 300;
    text-align: center;
}

/* ブランドマーク */
footer img {
    width: 100%;
    max-width: 14.0rem;
    height: auto;
    margin: 0 auto;
}

/* プライバシーポリシーリンク */
footer p {
    margin: 2.0rem 0;
}

footer a,
footer a:visited {
    color: rgba(240, 240, 240, 1.00);
    font-weight: 400;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: rgba(255, 255, 255, 1.00);
}

@media only screen and (min-width: 768px) {

    footer {
        padding-top: 0;
        padding-bottom: 4.5rem;
        text-align: left;
    }

    footer .row > div[class^="col"] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 10.0rem;
    }

    footer .row > div[class^="col"]:nth-of-type(2) {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    footer .row > div[class^="col"]:last-of-type {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    footer img {
        margin: 0;
    }

}

@media only screen and (min-width: 992px) {

    footer {
        padding-bottom: 0;
    }

    footer .row > div[class^="col"]:last-of-type {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

}

@media only screen and (min-width: 1560px) {

    footer .row > div[class^="col"]:last-of-type {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

}


/* ========================================================

　#fixed-bottom

=========================================================== */

#fixed-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1024;
}

#fixed-bottom .inner {
    width: 100%;
    max-width: 76.8rem;
    margin: 0 auto;
}

#fixed-bottom .inner div {
    float: left; /* 横並びに */
    padding: 0.1rem;
}

#fixed-bottom a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 4.0rem;
    margin: 0.1rem;
    border: 0.1rem solid rgba(255, 255, 255, 1.00);
    color: rgba(255, 255, 255, 1.00);
}

/* お問い合わせ */
#fixed-bottom .inner div:nth-of-type(1) {
    width: 40%;
    background-color: rgba(125, 0, 0, 1.00);
}

/* お知らせ～ページトップ */
#fixed-bottom .inner div:nth-of-type(n+2) {
    width: 15%;
}

#fixed-bottom .inner div:nth-of-type(n+2) a {
    border: none;
}

/* お知らせ */
#fixed-bottom .inner div:nth-of-type(2) {
    background-color: rgba(5, 30, 130, 1.00);
}

/* Facebook */
#fixed-bottom div:nth-of-type(3) {
    background-color: rgba(24, 119, 242, 1.00);
}

/* Blog */
#fixed-bottom div:nth-of-type(4) {
    background-color: rgba(174, 199, 21, 1.00);
    overflow: hidden;
}

#fixed-bottom div:nth-of-type(4) img {
    width: auto;
    height: 4.5rem;
}

/* ページトップ */
#fixed-bottom div:nth-of-type(5) {
    background-color: rgba(0, 0, 0, 1.00);
}

/* アイコン */
#fixed-bottom a i {
    position: relative;
    top: 0.1rem;
    font-size: 2.8rem;
}

@media only screen and (min-width: 768px) {

    #fixed-bottom div:nth-of-type(4) img {
        height: 6.0rem;
    }

}

@media only screen and (min-width: 992px) {

    /* PC時は非表示 */
    #fixed-bottom {
        display: none;
    }

}


/* ========================================================

　Scroll to Pagetop / SNS

=========================================================== */

/* モバイル時は非表示 */
.scroll-to-top img {
    display: none;
}

@media only screen and (min-width: 992px) {

    .scroll-to-top {
        display: none;
        position: fixed;
        right: 1.5rem;
        bottom: 0;
        width: 7.0rem;
        height: auto;
        padding-bottom: 11.0rem;
        -webkit-animation: slideInBottom 1.0s;
        animation: slideInBottom 1.0s;
    }

    .scroll-to-top img {
        display: block;
        width: 100%;
        height: auto;
    }

    .scroll-to-top a:nth-of-type(n+2) img {
        margin-top: 0.5rem;
    }

    .scroll-to-top a img {
        opacity: 0.7;
    }

    .scroll-to-top a img:hover {
        opacity: 1.0;
    }

}

@media only screen and (min-width: 1200px) {

    .scroll-to-top {
        right: 2.0rem;
        width: 8.0rem;
    }

}


/* ========================================================

　#breadCrumb

=========================================================== */

#breadCrumb {
    padding: 1.0rem 0;
    background-color: rgba(5, 30, 130, 0.05);
}

#breadCrumb p {
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.8rem;
    word-wrap: normal;
}


/* ========================================================

　modal

=========================================================== */

.modal-dialog {
    max-width: calc(100vw - 4.4rem);
    margin: 2.2rem;
}

.modal-content {
    padding: 4.0rem 0 2.0rem;
    border-radius: 1.0rem;
}

.modal-header h2 {
    width: 100%;
    font-size: 2.4rem;
    text-align: center;
}

.modal-body {
    padding-top: 2.0rem;
    padding-bottom: 2.0rem;
}

.modal-footer {
    border-color: rgba(160, 160, 160, 1.00);
}

.modal-footer button {
    margin: 2.0rem auto 0;
    width: 12.0rem;
    height: 4.0rem;
    border: 0;
    border: 0.1rem solid rgba(0, 0, 0, 1.00);
    background-color: rgba(255, 255, 255, 1.00);
    font-size: 1.6rem;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.modal-footer button:hover {
    border-color: rgba(5, 30, 130, 1.00);
    background-color: rgba(240, 240, 240, 1.00);
}

.modal .close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3.0rem;
    height: 3.0rem;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.modal .close-modal:hover {
    opacity: 0.5;
}

/* 業務内容 */
div[id^="work"] .modal-content {
    padding-top: 6.0rem;
}

div[id^="work"] .modal-header h2 {
    color: rgba(255, 255, 255, 1.00);
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
}

div[id^="work"] .modal-header {
    border: none;
}

div[id="work01"] .modal-header {
    background-color: rgba(228, 1, 30, 1.00);
}

div[id="work02"] .modal-header {
    background-color: rgba(214, 166, 0, 1.00);
}

div[id="work03"] .modal-header {
    background-color: rgba(27, 151, 58, 1.00);
}

div[id="work04"] .modal-header {
    background-color: rgba(0, 166, 217, 1.00);
}

div[id="work05"] .modal-header {
    background-color: rgba(151, 10, 49, 1.00);
}

div[id="work06"] .modal-header {
    background-color: rgba(236, 106, 6, 1.00);
}

div[id="work07"] .modal-header {
    background-color: rgba(211, 146, 6, 1.00);
}

div[id="work08"] .modal-header {
    background-color: rgba(64, 121, 54, 1.00);
}

div[id="work09"] .modal-header {
    background-color: rgba(2, 48, 103, 1.00);
}

/* プライバシーポリシー */
div[id="policy"] .modal-body p:last-of-type {
    text-align: right;
}

@media only screen and (min-width: 576px) {

    .modal-dialog {
        max-width: calc(100vw - 9.6rem);
        margin: 4.8rem;
    }

}

@media only screen and (min-width: 768px) {

    .modal .modal-dialog {
        margin: 2.0rem auto;
        max-width: 90.0vw;
    }

    .modal-header h2 {
        font-size: 3.0rem;
    }

    .modal .close-modal {
        top: 2.0rem;
        right: 2.0rem;
        width: 4.0rem;
        height: 4.0rem;
    }

    div[id^="work"] .modal-dialog {
        width: 46.0rem;
        margin: 5.0rem auto;
    }

    div[id^="work"] .modal-content {
        padding-top: 8.0rem;
    }

}

@media only screen and (min-width: 992px) {

    .modal .modal-dialog {
        width: 80.0rem;
        max-width: 100%;
    }

}

@media only screen and (min-width: 1200px) {

    .modal .modal-dialog {
        width: 100.0rem;
    }

}


/* ========================================================

　その他

=========================================================== */

/*　Animation
----------------------------------------------------------- */
@-webkit-keyframes fadeIn {

    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }

}

@keyframes fadeIn {

    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }

}

@-webkit-keyframes slideInLeft {

    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1.0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

}

@keyframes slideInLeft {

    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1.0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

}

@-webkit-keyframes slideInBottom {

    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1.0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

}

@keyframes slideInBottom {

    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1.0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

}

/*　Placeholder color
----------------------------------------------------------- */
*::-webkit-input-placeholder {
    font-weight: 400;
    opacity: 0.8;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

*::-moz-placeholder {
    font-weight: 400;
    opacity: 0.8;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

*::-ms-input-placeholder {
    font-weight: 400;
    opacity: 0.8;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

*:-ms-input-placeholder {
    font-weight: 400;
    opacity: 0.8;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

*::placeholder {
    font-weight: 400;
    opacity: 0.8;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*　Pseudo-hide placeholders when in focus
----------------------------------------------------------- */
*:focus::-webkit-input-placeholder {
    color: transparent;
}

*:focus::-moz-placeholder {
    color: transparent;
}

*:focus::-ms-input-placeholder {
    color: transparent;
}


*:focus:-ms-input-placeholder {
    color: transparent;
}

*:focus::placeholder {
    color: transparent;
}


/* break point --------------------------------------------
	<576px(None), >=576px(540px) , =>768px(720px) , =>992px(960px) , =>1200px(1140px) , =>1400px(1320px)
	iPhone5 320x568
	iPhone6-8 375x667 *
	iPhone6-8Plus 414x736
	iPhoneX 375x812
	iPad（iPad Mini）768x1024 *
	iPadPro 1024x1366
	Pixel2 411x731
	Pixel2 XL 411x823
	PC lg 992 *
	PC xl 1200 *
	PC xxl 1400 *
----------------------------------------------------------- */

/* Montserrat ------------------------------------------------
    Thin    100
	ExtraLight 200
	Light   300
	Regular 400
	Medium 500
	SemiBold 600
	Bold 700
	ExtraBold 800
    Black   900
----------------------------------------------------------- */

/* Noto Sans JP -------------------------------------------
    Thin    100
	Light   300
	Regular 400
	Medium  500
	Bold    700
    Black   900
----------------------------------------------------------- */

/* Noto Serif JP ------------------------------------------

	ExtraLight 200
	Light 300
	Regular 400
	Medium 500
	SemiBold 600
	Bold 700
	Black 900
----------------------------------------------------------- */

/* branc --------------------------------------------------
	1-0.25rem
	2-0.5rem
	3-1.0rem
	4-1.5rem
	5-3.0rem
----------------------------------------------------------- */


/* ---- End of file --------------------------------------- */