@charset "UTF-8";

/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* https://www.webplus.jp/                                      */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/*--------------------------------------------------------------*/


/* ========================================================

　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.70) 0%, rgba(255, 255, 255, 0) 50%), url("../img/carousel_deco_left.png") left center / auto 100% no-repeat, url("../img/carousel_deco_right.png") right center / auto 100% 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))), url("../img/carousel_deco_left.png") left center / auto 100% no-repeat, url("../img/carousel_deco_right.png") right center / auto 100% no-repeat;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0) 50%), url("../img/carousel_deco_left.png") left center / auto 100% no-repeat, url("../img/carousel_deco_right.png") right center / auto 100% no-repeat;
}

.carousel-item > img {
    width: 100%;
    height: auto;
}

/* タブレット～PC用画像を非表示に */
.carousel-item > img:last-of-type {
    display: none;
}

/* タイトル（キャッチコピー） */
.carousel-caption {
    position: absolute;
    top: 50.0%;
    left: 0;
    width: 100%;
    padding: 0;
}

.carousel-caption h1 {
    margin-top: calc(-8.0vw / 2);
    color: rgba(0, 0, 0, 1.00);
    font-family: 'Noto Serif JP', serif;
    font-size: 8.0vw;
    font-weight: 700;
    text-shadow: 0.15rem 0.15rem 0 rgba(255, 255, 255, 1.00), 0 0 0.5rem rgba(255, 255, 255, 1.00), 0 0 0.25rem rgba(255, 255, 255, 1.00);
    line-height: 150%;
    -webkit-animation: zoomIn 3.0s ease-in-out forwards;
    animation: zoomIn 3.0s ease-in-out forwards;
}

/* 改行処理 */
.carousel-caption h1 span {
    display: block;
}

/* ロゴ画像処理 */
.carousel-caption h1 img {
    width: 60.0vw;
    max-width: 64.0rem;
    height: auto;
}

/* 前・後へ移動 */
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(0, 0, 0, 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(0, 0, 0, 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.70);
    -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(31, 40, 111, 1.00);
    opacity: 1.0;
}

.carousel-indicators li.active {
    background-color: rgba(106, 0, 95, 1.00);
}

@media only screen and (min-width: 576px) {

    .carousel-caption h1 {
        margin-top: calc(-3.6rem / 2);
        font-size: 3.6rem;
        text-shadow: 0.2rem 0.2rem 0 rgba(255, 255, 255, 1.00), 0 0 0.5rem rgba(255, 255, 255, 1.00), 0 0 0.25rem rgba(255, 255, 255, 1.00);
    }

}

@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 h1 span {
        display: inline;
    }

    a span[class^="carousel-control"] {
        -webkit-transform: scale(3.0);
        -ms-transform: scale(3.0);
        transform: scale(3.0);
    }

}

@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;
    }

    /* HTMLに配置したグラデーションを非表示に、左右の飾りだけ残す */
    .carousel-item .grad-filter {
        background: url("../img/carousel_deco_left.png") left center / auto 100% no-repeat, url("../img/carousel_deco_right.png") right center / auto 100% no-repeat;
    }

    /* 背景画像として再配置（グラデーションを含む） */
    .carousel-item:nth-of-type(1) {
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0) 50%), 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))), 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%), 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%), 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))), 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%), 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%), 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))), 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%), 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%), 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))), 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%), 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%), 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))), 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%), url("../img/carousel05.jpg") center top /cover no-repeat;
    }

    .carousel-caption h1 {
        margin-top: calc(-4.8rem / 2);
        font-size: 4.8rem;
        text-shadow: 0.3rem 0.3rem 0 rgba(255, 255, 255, 1.00), 0 0 0.5rem rgba(255, 255, 255, 1.00), 0 0 0.25rem rgba(255, 255, 255, 1.00);
    }

}

@media only screen and (min-width: 1920px) {

    .carousel-caption h1 {
        margin-top: calc(-10.0rem / 2);
        font-size: 10.0rem;
    }

}

/*　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/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;
}


/* ========================================================

　#greetings

=========================================================== */

#greetings.c-article {
    padding-bottom: 0; /* 画像相対配置のため下余白調整 */
    background: url("../img/greetings_bg.png") center top 15.0rem / 700% auto no-repeat;
}

/* テキスト */
#greetings .row > div[class^="col"]:nth-of-type(2) p {
    font-family: 'Noto Serif JP', serif;
    line-height: 175%;
    text-align: justify;
}

#greetings .row > div[class^="col"]:nth-of-type(2) p:nth-last-of-type(n+2) {
    margin-bottom: 1.8rem;
}

#greetings .row > div[class^="col"]:nth-of-type(2) strong,
#greetings .row > div[class^="col"]:nth-of-type(2) em {
    font-weight: 700;
    font-style: normal;
}

/* 写真 */
#greetings .row > div[class^="col"]:nth-of-type(3) {
    padding-bottom: 7.5rem; /* 画像相対配置のため下余白調整 */
}

#greetings .row > div[class^="col"]:nth-of-type(3) > div {
    position: relative;
    height: 108.0vw; /* 高さ調整 */
}

/* １枚目の写真 */
#greetings .row > div[class^="col"]:nth-of-type(3) img:nth-of-type(1) {
    position: absolute;
    top: 0;
    right: 0;
    border: 0.5rem solid rgba(255, 255, 255, 1.00);
    z-index: 2;
}

/* ２枚目の写真 */
#greetings .row > div[class^="col"]:nth-of-type(3) img:nth-of-type(2) {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

#greetings .row > div[class^="col"]:nth-of-type(3) img {
    width: 80%;
    height: auto;
    border-radius: 1.5rem;
}

@media only screen and (min-width: 375px) {

    #greetings.c-article {
        background-size: 600% auto;
    }

}

@media only screen and (min-width: 576px) {

    #greetings.c-article {
        background-position: left -80.0rem top 15.0rem;
        background-size: 340% auto;
    }

    #greetings .row > div[class^="col"]:nth-of-type(3) > div {
        height: 60.0rem;
    }

}

@media only screen and (min-width: 768px) {

    #greetings.c-article {
        background-position: left -100.0rem top 20.0rem;
        background-size: 300% auto;
    }

    #greetings .s-heading h2 span::before,
    #greetings .s-heading h2 span::after {
        width: calc(50% - 20.0rem);
    }

    #greetings .row > div[class^="col"]:nth-of-type(2) p {
        font-size: 1.8rem;
    }

    #greetings .row > div[class^="col"]:nth-of-type(3) > div {
        height: 80.0rem;
    }

    #greetings .row > div[class^="col"]:nth-of-type(3) img {
        border-radius: 2.0rem;
    }

}

@media only screen and (min-width: 992px) {

    #greetings.c-article {
        padding-top: 15.0rem;
        padding-bottom: 10.0rem;
        background-position: left -50.0rem top 26.0rem;
        background-size: 135.0rem auto;
    }

    #greetings .s-heading aside {
        margin-bottom: 6.0rem;
    }

    #greetings .row > div[class^="col"]:nth-of-type(3) {
        padding-left: 3.0%;
        padding-bottom: 0;
    }

    #greetings .row > div[class^="col"]:nth-of-type(3) > div {
        height: 43.5rem;
    }

}

@media only screen and (min-width: 1200px) {

    #greetings.c-article {
        background-position: left -50.0rem bottom;
        background-size: 140.0rem auto;
    }

    #greetings .s-heading h2 span::before,
    #greetings .s-heading h2 span::after {
        width: calc(50% - 23.0rem);
    }

    #greetings .s-heading aside {
        margin-bottom: 8.0rem;
    }

    #greetings .row > div[class^="col"]:nth-of-type(2) p {
        font-size: 2.0rem;
    }

    #greetings .row > div[class^="col"]:nth-of-type(3) > div {
        height: 52.0rem;
    }

}

@media only screen and (min-width: 1400px) {

    #greetings.c-article {
        background-position: left -46.0rem bottom;
        background-size: 150.0rem auto;
    }

    #greetings .s-heading aside {
        margin-bottom: 10.0rem;
    }

    #greetings .row > div[class^="col"]:nth-of-type(3) > div {
        height: 61.0rem;
    }

}

@media only screen and (min-width: 1920px) {

    #greetings.c-article {
        padding-top: 20.0rem;
        background-position: left -21.0rem bottom;
        background-size: 150.0rem auto;
    }

    #greetings .s-heading h2 span::before,
    #greetings .s-heading h2 span::after {
        width: calc(50% - 27.0rem);
    }

    #greetings .s-heading aside {
        margin-bottom: 12.0rem;
    }

    #greetings .row > div[class^="col"]:nth-of-type(2) p {
        font-size: 2.2rem;
    }

}


/* ========================================================

　#works

=========================================================== */

#works .row > div[class^="col"]:nth-of-type(n+2) 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;
    position: relative;
    background-color: rgba(0, 0, 0, 1.00); /* 透過するので背景を黒に */
}

#works .row > div[class^="col"]:nth-of-type(n+2) a::after {
    content: none; /* マウスオーバー時のアンダーラインを解除 */
}

/* コーナーの飾りなど */
#works .row > div[class^="col"]:nth-of-type(n+2) .inner {
    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;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url("../img/corner_topleft.png") left 1.0rem top 1.0rem, url("../img/corner_topright.png") right 1.0rem top 1.0rem, url("../img/corner_bottomleft.png") bottom 1.0rem left 1.0rem, url("../img/corner_bottomright.png") bottom 1.0rem right 1.0rem;
    background-size: 1.5rem auto;
    background-repeat: no-repeat;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* マウスオーバー時、コーナーの飾りを端へ寄せる */
#works .row > div[class^="col"]:nth-of-type(n+2) a:hover div {
    background-position: left 0.5rem top 0.5rem, right 0.5rem top 0.5rem, bottom 0.5rem left 0.5rem, bottom 0.5rem right 0.5rem;
}

#works .row > div[class^="col"]:nth-of-type(n+2) img {
    width: 100%;
    height: auto;
    opacity: 0.75; /* 透過させて背景色の黒を見せる */
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#works .row > div[class^="col"]:nth-of-type(n+2) a:hover img {
    opacity: 1.0; /* マウスオーバー時は透過オフ */
}

/* タイトル */
#works .row > div[class^="col"]:nth-of-type(n+2) h3 {
    margin-bottom: 2.0vw;
    color: rgba(255, 255, 255, 1.00);
    font-size: min(8.0vw, 3.6rem);
    font-weight: 700;
    text-shadow: 0.15rem 0.15rem 0 rgba(0, 0, 0, 1.00), 0 0 0.5rem rgba(0, 0, 0, 0), 0 0 0.25rem rgba(0, 0, 0, 0);
    letter-spacing: 0.5rem;
}

/* 詳しく見る */
#works .row > div[class^="col"]:nth-of-type(n+2) p {
    margin: 0;
    color: rgba(255, 255, 255, 1.00);
    font-size: min(5.0vw, 1.8rem);
}

#works .row > div[class^="col"]:nth-of-type(n+2) p {
    margin: 0;
    color: rgba(255, 255, 255, 1.00);
    font-size: min(5.0vw, 1.8rem);
}

/* バナーの上余白 */
#works .row > div[class^="col"]:nth-of-type(n+3) {
    margin-top: 1.0rem;
}

@media only screen and (min-width: 576px) {

    #works .row > div[class^="col"]:nth-of-type(n+2) .inner {
        background-position: left 1.5rem top 1.5rem, right 1.5rem top 1.5rem, bottom 1.5rem left 1.5rem, bottom 1.5rem right 1.5rem;
        background-size: 2.0rem auto;
    }

    #works .row > div[class^="col"]:nth-of-type(n+3) {
        margin-top: 1.5rem;
    }

}

@media only screen and (min-width: 768px) {

    #works .s-heading h2 span::before,
    #works .s-heading h2 span::after {
        width: calc(50% - 15.0rem);
    }

    #works .row > div[class^="col"]:nth-of-type(n+2) .inner {
        background-size: 1.5rem auto;
    }

    #works .row > div[class^="col"]:nth-of-type(n+3) {
        margin-top: 0;
    }

    #works .row > div[class^="col"]:nth-of-type(n+4) {
        margin-top: 1.5rem;
    }

}

@media only screen and (min-width: 992px) {

    #works.c-article {
        padding-top: 15.0rem;
    }

    #works .row > div[class^="col"]:nth-of-type(n+2) .inner {
        background-position: left 2.0rem top 2.0rem, right 2.0rem top 2.0rem, bottom 2.0rem left 2.0rem, bottom 2.0rem right 2.0rem;
        background-size: 3.0rem auto;
    }

    #works .row > div[class^="col"]:nth-of-type(n+2) h3 {
        font-size: 4.0rem;
        letter-spacing: 0.75rem;
    }

}

@media only screen and (min-width: 1200px) {

    #works .s-heading h2 span::before,
    #works .s-heading h2 span::after {
        width: calc(50% - 17.0rem);
    }

    #works .row > div[class^="col"]:nth-of-type(n+2) h3 {
        margin-bottom: 3.0rem;
        font-size: 5.0rem;
        text-shadow: 0.3rem 0.3rem 0 rgba(0, 0, 0, 1.00), 0 0 0.5rem rgba(0, 0, 0, 0), 0 0 0.25rem rgba(0, 0, 0, 0);
        letter-spacing: 1.0rem;
    }

    #works .row > div[class^="col"]:nth-of-type(n+2) p {
        font-size: 2.0rem;
    }

}

@media only screen and (min-width: 1920px) {

    #works.c-article {
        padding-top: 20.0rem;
    }

    #works .s-heading h2 span::before,
    #works .s-heading h2 span::after {
        width: calc(50% - 20.0rem);
    }

    #works .row > div[class^="col"]:nth-of-type(n+2) h3 {
        font-size: 6.0rem;
        text-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, 1.00), 0 0 0.5rem rgba(0, 0, 0, 0), 0 0 0.25rem rgba(0, 0, 0, 0);
    }

    #works .row > div[class^="col"]:nth-of-type(n+2) p {
        font-size: 2.4rem;
    }

}


/* ========================================================

　#example

=========================================================== */

/* 共通パーツとしてcommon.cssに記述 /*


/* ========================================================

　#information

=========================================================== */

/* スロール時の位置調整 */
#information.c-article {
    margin-top: calc(-18.0vw);
    padding-top: calc(7.5rem + 18.0vw);
}

/* ボーダー（赤） */
#information .s-heading h2 {
    background: url("../img/border_red.png") center center repeat-x;
    color: rgba(230, 0, 18, 1.00);
}

/* 両端の●（赤） */
#information .s-heading h2::before,
#information .s-heading h2::after {
    color: rgba(255, 0, 0, 1.00);
}

/* 記事リスト */
#information ul {
    padding: 0;
    list-style: none;
}

#information li {
    padding-bottom: 1.0rem;
    border-bottom: 0.1rem dashed rgba(209, 192, 165, 1.00);
}

/* リストの上余白 */
#information li:nth-of-type(n+2) {
    margin-top: 2.5rem;
}

/* 日付 */
#information a div {
    margin-bottom: 0.5rem;
    color: rgba(51, 51, 51, 1.00);
}

/* 記事タイトル */
#information a h3 {
    color: rgba(51, 51, 51, 1.00);
    font-weight: 400;
    line-height: 150%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* マウスオーバー時の矢印 */
#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(235, 97, 0, 1.00);
}

#information a:hover h3 {
    color: rgba(235, 97, 0, 1.00);
}

#information a::after {
    content: none; /* マウスオーバー時のアンダーラインを解除 */
}

#information a span {
    margin-left: 1.0rem;
    color: rgba(255, 0, 0, 1.00);
    font-size: 75%;
}

@media only screen and (min-width: 768px) {

    #information.c-article {
        margin-top: calc(-8.0rem);
        padding-top: calc(10.0rem + 8.0rem);
    }

    #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);
    }

}

@media only screen and (min-width: 1200px) {

    #information .s-heading h2 span::before,
    #information .s-heading h2 span::after {
        width: calc(50% - 13.0rem);
    }

}

@media only screen and (min-width: 1920px) {

    #information .s-heading h2 span::before,
    #information .s-heading h2 span::after {
        width: calc(50% - 15.0rem);
    }

}


/* ---- End of file --------------------------------------- */