@charset "UTF-8";

/* ######################################################################################

  　Basic

  ###################################################################################### */

html {
    width: 100%;
}

body {
    width: 100%;
    font-family: adrianna, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-family: toppan-bunkyu-midashi-go-std, sans-serif;
    font-weight: 900;
    font-style: normal;
    background: #eee;
    color: #cb243c;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    text-align: justify;
    letter-spacing: 0.1rem;
    overflow-x: hidden;
}

body,
#wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

footer {
    margin-top: auto;
}

.cookie {
    font-size: 0.5rem;
    padding: 1rem;
}

.cookie a {
    text-decoration: none !important;
}

@media screen and (max-width: 959px) {
    .is-sp-hide {
        display: none;
    }
    html:before,
    html:after,
    body:before {
        content: "";
        position: fixed;
        z-index: -1 !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 10px solid #cb243c;
        z-index: 0;
    }
    html:after {
        z-index: 10;
        top: auto;
        border-width: 0 0 10px;
    }
    body:before {
        z-index: 10;
        bottom: auto;
        border-width: 10px 0 0;
    }
}

@media screen and (min-width: 960px) {
    .is-pc-hide {
        display: none;
    }
    html:before,
    html:after,
    body:before {
        content: "";
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 20px solid #cb243c;
        z-index: 0;
    }
    html:after {
        z-index: 10;
        top: auto;
        border-width: 0 0 10px;
    }
    body:before {
        z-index: 10;
        bottom: auto;
        border-width: 10px 0 0;
    }
}


/* スクロールの幅の設定 */

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}


/* スクロールの背景の設定 */

::-webkit-scrollbar-track {
    border-radius: 5px;
    -webkit-box-shadow: 0 0 4px #aaa inset;
    box-shadow: 0 0 4px #aaa inset;
    background: #fff;
}


/* スクロールのつまみ部分の設定 */

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #b98c3c;
}


/* ====================================================
    animation
  ==================================================== */

h1,
h2 {
    -webkit-animation: SlideDown 1.6s;
    animation: SlideDown 1.6s;
}

@-webkit-keyframes SlideDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-64px);
        transform: translateY(-64px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes SlideDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-64px);
        transform: translateY(-64px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.nav-list__item {
    -webkit-animation: SlideIn 1.6s;
    animation: SlideIn 1.6s;
}

@-webkit-keyframes SlideIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(64px);
        transform: translateX(64px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes SlideIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(64px);
        transform: translateX(64px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/* ######################################################################################

  　Loading

  ###################################################################################### */

.is-hide {
    display: none;
}

.fadeout-bg {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-delay: .9s;
    transition-delay: .9s;
    -webkit-transition-duration: .8s;
    transition-duration: .8s;
    opacity: 0;
    pointer-events: none;
}

.fadeout-loader {
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-delay: .9s;
    transition-delay: .9s;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    opacity: 0;
    pointer-events: none;
}

@media screen and (max-width: 959px) {}

#loader-bg {
    background: #ffffff;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

#loader {
    height: 180px;
    left: 50%;
    margin-left: -90px;
    margin-top: -70px;
    position: fixed;
    top: 50%;
    width: 180px;
}

#loader p {
    font-size: 10px;
    line-height: 3.2rem;
    text-align: center;
}

#loader p img {
    display: inline-block;
    margin-bottom: 1rem;
    -webkit-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
    -moz-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
    -ms-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
    filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
}


/* ######################################################################################

  　Parts

  ###################################################################################### */


/* hamburger
  -------------------------------------*/

@media screen and (max-width: 959px) {
    #hamburger {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        cursor: pointer;
        -webkit-transition: 1s;
        transition: 1s;
        border-radius: 24px;
        -webkit-border-radius: 24px;
        -moz-border-radius: 24px;
        -ms-border-radius: 24px;
        -o-border-radius: 24px;
        padding: 1.8rem 1rem;
        z-index: 10;
        background: #fff;
    }
    .hamburger_inner {
        height: 24px;
    }
    .inner_line {
        display: block;
        position: absolute;
        width: 26px;
        height: 2px;
        background-color: #cb243c;
        -webkit-transition: 1s;
        transition: 1s;
    }
    #line1 {
        top: 14px;
    }
    #line2 {
        top: 21px;
    }
    #line3 {
        bottom: 14px;
    }
    .line_1 {
        -webkit-transform: translateY(7px) rotate(-45deg);
        transform: translateY(7px) rotate(-45deg);
        top: 0;
    }
    .line_2 {
        opacity: 0;
    }
    .line_3 {
        -webkit-transform: translateY(-6px) rotate(45deg);
        transform: translateY(-6px) rotate(45deg);
        bottom: 0;
    }
    #nav.show {
        z-index: 10;
    }
}

@media screen and (min-width: 960px) {
    #hamburger {
        display: none;
    }
}


/* nav
  -------------------------------------*/

* {
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 959px) {
    #nav {
        opacity: 0;
        visibility: hidden;
        -webkit-transition: .3s ease;
        transition: .3s ease;
    }
    #nav.show {
        opacity: 1;
        visibility: visible;
        -webkit-animation: fadein 1s;
        animation: fadein 1s;
    }
    @-webkit-keyframes fadein {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    @keyframes fadein {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    nav {
        background-color: #fff;
        position: fixed;
        height: 100vh;
        width: 100vw;
        top: 0;
        right: 0;
        -webkit-transition: .3s;
        transition: .3s;
        padding: 8rem 4rem 6rem;
        background-repeat: no-repeat;
        -webkit-transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
        z-index: 10;
    }
    .nav-home {
        padding: 4rem;
    }
    .nav-list {
        text-align: right;
    }
    .nav-list__item {
        font-size: 2.4rem;
    }
    .nav-list__item_sub {
        font-size: 1.4rem;
    }
    .nav-list__item-link {
        display: block;
        text-decoration: none;
        padding: 1rem;
        -webkit-transition: .5s;
        transition: .5s;
        padding: 1.6rem;
    }
    #home {
        background-image: url("../img/logo.svg");
        background-size: 12rem, 0 0;
        background-repeat: no-repeat;
    }
    #home::before {
        content: "";
    }
    .nav-list {
        margin-top: 2rem;
    }
    .nav-list li a:first-of-type {
        border: none;
    }
    .nav-list__item {
        font-size: 1.8rem;
    }
    .nav-list__item_sub {
        font-size: 1.4rem;
        margin-left: 2.4rem;
    }
    .nav-list__item_sub:last-child {
        margin-bottom: 3rem;
    }
    .nav-list__item-link {
        text-decoration: none;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 1rem;
        -webkit-transition: .5s;
        transition: .5s;
        padding: 1.6rem 1rem;
    }
    .nav-list__item-link_sub {
        text-decoration: none;
        line-height: 3.2rem;
    }
}

@media screen and (min-width: 960px) {
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        -webkit-transition: .5s;
        transition: .5s;
        padding: 4rem 5rem;
        -webkit-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        -moz-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        -ms-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        display: flex;
        z-index: 10;
    }
    nav a:hover {
        color: #b98c3c;
        -webkit-text-decoration-color: transparent;
        text-decoration-color: transparent;
        -webkit-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .nav-list {
        text-align: left;
        display: flex;
    }
    .nav-list__item {
        font-size: 1.8rem;
        text-decoration: none;
        margin-right: 4rem;
    }
    .nav-list__item .nav-list__item-link {
        text-decoration: none;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-transition: .5s;
        transition: .5s;
        position: relative;
        z-index: 1;
    }
    .nav-list__item:hover .nav-list__item-link:after {
        width: 100%;
    }
}


/* ====================================================
    footer
  ==================================================== */

@media screen and (max-width: 959px) {
    .footer {
        text-align: center;
        bottom: 0;
        width: 100%;
    }
    .copyright {
        font-size: 0.8rem;
        padding: 6rem;
        text-align: center;
    }
}

@media screen and (min-width: 960px) {
    .footer {
        text-align: center;
    }
    .copyright {
        font-size: 0.8rem;
        padding: 4rem;
        position: relative;
        height: 100%;
        text-align: center;
    }
}


/* top
  -------------------------------------*/

.js-scroll-fadein {
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
    visibility: hidden;
    opacity: 0;
}

.js-scroll-fadein.is-fadein {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 959px) {
    .btn-top {
        right: 2rem;
        bottom: 2rem;
        position: fixed;
        z-index: 10;
        text-align: center;
    }
}

@media screen and (min-width: 960px) {
    .btn-top {
        position: fixed;
        width: 4.6rem;
        right: 4rem;
        bottom: 3.6rem;
        cursor: pointer;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        z-index: 10;
        text-align: center;
    }
    .btn-top:hover {
        color: #b98c3c;
    }
    .btn-top_ .btn-top__txt {
        font-size: 4rem;
    }
}


/* ######################################################################################

  　Page

  ###################################################################################### */


/* ====================================================
    hero
  ==================================================== */

@media screen and (max-width: 959px) {
    .hero {
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        top: 0;
        /* background-image: url(../img/2011+10.png); */
        z-index: -1;
    }
    .hero-box {}
    .hero-box__img {
        -webkit-filter: drop-shadow(1px 3px 5px rgba(255, 255, 255, 0.2));
        -moz-filter: drop-shadow(1px 3px 5pxrgba(255, 255, 255, 0.2));
        -ms-filter: drop-shadow(1px 3px 5pxrgba(255, 255, 255, 0.2));
        filter: drop-shadow(1px 3px 5px rgba(255, 255, 255, 0.2));
        z-index: 1;
        width: 80vw;
    }
    .hero-section {
        padding: 2rem;
        margin-top: -16rem;
    }
}

@media screen and (min-width: 960px) {
    .hero {
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        top: 0;
        /* background-image: url(../img/2011+10.png); */
        z-index: -1;
    }
    .hero-box {
        padding: 2rem;
    }
    .hero-box__img {
        -webkit-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        -moz-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        -ms-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        z-index: 1;
        width: 60vw;
        max-height: 60vh;
    }
    .hero-section {
        padding: 4rem;
        width: 30rem;
        position: absolute;
        top: 0;
        right: 0;
    }
}


/* ====================================================
    section
  ==================================================== */

@media screen and (max-width: 959px) {
    .main-section__wrp {
        margin: 10rem 2rem 0;
    }
    .main-section__box {
        padding-top: 3rem;
        margin-bottom: 10rem;
    }
    .main-section__box:last-child {
        margin-bottom: 0;
    }
    .main-section__ttl {
        margin: auto;
        font-size: 3.6rem;
        text-align: center;
        display: block;
        margin-bottom: 6rem;
    }
    .main-section__txt p {
        margin-bottom: 2.4rem;
    }
    .main-section__txt p a {
        text-decoration: none;
        border-bottom: 2px solid;
    }
    .main-section__list a {
        text-decoration: none;
    }
    .main-section__list img {
        margin-bottom: 1.6rem;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .section__about .main-section__txt {
        font-size: 1.8rem;
        margin: 0 auto;
    }
    .section__about .main-section__txt p {
        margin-bottom: 3rem;
    }
    .section__lineup .main-section__list {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .section__lineup .main-section__list-item {
        display: flex;
        /* box-shadow: rgba(0, 0, 0, 0.1) 0px 100px 80px -7px; */
        margin-bottom: 12rem;
    }
    .section__lineup .main-section__list-item:last-child {
        margin-bottom: 0;
    }
    .section__lineup .main-section__list a {
        text-decoration: none;
        overflow: hidden;
        height: 100%;
    }
    .section__lineup .list__ttl {
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 3rem;
        line-height: 3.8rem;
    }
    .section__lineup .list__ttl_sub {
        font-size: 1.8rem;
        text-align: center;
        background: #fff;
        color: #b98c3c;
        padding: 0 2rem;
        display: inline-block;
        vertical-align: bottom;
    }
    .section__lineup .list__txt {
        font-size: 2rem;
        text-align: center;
        background: #cb243c;
        color: #fff;
        padding: 4rem;
        display: inline-table;
        width: 100%;
        height: 32rem;
    }
    .section__lineup .list__txt_sub {
        font-size: 2.8rem;
        text-align: center;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        display: inline-block;
        border-bottom: 1px solid #fff;
    }
    .section__lineup .list__txt_sub .tag {
        font-size: 1.8rem;
        background: #b98c3c;
        color: #fff;
        padding: 1rem 2rem;
        margin-bottom: 2rem;
        display: inline-block;
    }
    .section__lineup .list__ttl a,
    .section__lineup .list__txt a:hover {
        color: #b98c3c;
        -webkit-text-decoration-color: transparent;
        text-decoration-color: transparent;
        -webkit-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .section__lineup .list__thmb img {
        margin-bottom: -1rem;
    }
    .section__comment .main-section__list-item {
        display: block;
        width: 100%;
        margin: 0 auto 6rem;
        padding: 2em;
        background-color: #fff;
        color: #cb243c;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
    }
    .section__comment .list__ttl {
        font-size: 2.4rem;
        margin-bottom: 3rem;
        text-align: center;
        display: inline-block;
        width: 100%;
    }
    .section__comment .list__ttl_em {
        background-color: #cb243c;
        color: #ffffff;
        font-size: 1.8rem;
        padding: 1rem;
        vertical-align: middle;
        margin-bottom: 2rem;
        display: inherit;
    }
    .section__comment .list__ttl_sub {
        font-size: 1.6rem;
        padding: 1rem;
        vertical-align: middle;
    }
    .section__comment .list__txt {
        font-size: 1.8rem;
        color: #b98c3c;
    }
    .section__comment .list__thmb {
        margin: 0 auto;
        text-align: center;
    }
    .section__comment .list__thmb-img {
        width: 80%;
        height: auto;
        margin-top: 1rem;
    }
    .list__thmb-img_01 {}
    .list__thmb-img_02 {}
    .list__thmb-img_03 {
        margin-bottom: -2rem;
    }
    .bracket {
        padding: 20px;
        position: relative;
    }
    .bracket::before,
    .bracket::after {
        content: '';
        width: 20px;
        height: 20px;
        position: absolute;
    }
    .bracket::before {
        border-left: solid 2px#b98c3c;
        border-top: solid 2px#b98c3c;
        top: 0;
        left: 0;
    }
    .bracket::after {
        border-right: solid 2px#b98c3c;
        border-bottom: solid 2px#b98c3c;
        bottom: 0;
        right: 0;
    }
    .section__banner {
        padding-top: 0;
    }
    .section__banner img {
        -webkit-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        -moz-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        -ms-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
    }
}

@media screen and (min-width: 960px) {
    .main-section {}
    .main-section__wrp {
        width: 80%;
        max-width: 1400px;
        margin: auto;
    }
    .main-section__box {
        width: 100%;
        padding-top: 14rem;
        margin-bottom: 20rem;
    }
    .main-section__ttl {
        margin: auto;
        font-size: 8.6rem;
        text-align: center;
        display: block;
        margin-bottom: 6rem;
    }
    .section__about .main-section__txt {
        font-size: 2.8rem;
        width: 80%;
        margin: 0 auto;
        padding: 7rem;
    }
    .section__about .main-section__txt p {
        margin-bottom: 3rem;
    }
    .section__lineup .main-section__list {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .section__lineup .main-section__list-item {
        width: 32%;
        display: flex;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 100px 80px -50px;
    }
    .section__lineup .main-section__list a {
        text-decoration: none;
        overflow: hidden;
    }
    .section__lineup .list__ttl {
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 4rem;
        line-height: 3.8rem;
    }
    .section__lineup .list__ttl_sub {
        font-size: 1.8rem;
        text-align: center;
        background: #b98c3c;
        color: #fff;
        padding: 0 2rem;
        margin-right: 2rem;
        margin-bottom: 1rem;
        display: inline-block;
        vertical-align: bottom;
    }
    .section__lineup .list__txt {
        font-size: 2rem;
        text-align: center;
        background: #cb243c;
        color: #fff;
        padding: 4rem;
        display: inline-table;
        width: 100%;
        height: 100%;
    }
    .section__lineup .list__txt_sub {
        font-size: 3.2rem;
        text-align: center;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        display: inline-block;
        border-bottom: 1px solid #fff;
    }
    .section__lineup .list__txt_sub .tag {
        font-size: 1.8rem;
        background: #b98c3c;
        color: #fff;
        padding: 1rem 2rem;
        margin-bottom: 2rem;
        display: inline-block;
    }
    .section__lineup .list__ttl a,
    .section__lineup .list__txt a:hover {
        color: #b98c3c;
        -webkit-text-decoration-color: transparent;
        text-decoration-color: transparent;
        -webkit-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .section__lineup .list__thmb {}
    .section__lineup .list__thmb:hover {
        border: 10px solid #b98c3c;
        border-bottom: 14px solid #b98c3c;
        -webkit-text-decoration-color: transparent;
        text-decoration-color: transparent;
        -webkit-transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    .section__lineup .list__thmb img {
        margin-bottom: -0.9rem;
        overflow: hidden;
    }
    .section__comment .main-section__list-item {
        display: block;
        width: 70%;
        margin: 0 auto 4rem;
        padding: 6rem;
        background-color: #fff;
        color: #cb243c;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
    }
    .section__comment .list__ttl {
        font-size: 3.2rem;
        margin-bottom: 3rem;
    }
    .section__comment .list__ttl_em {
        background-color: #cb243c;
        color: #ffffff;
        font-size: 1.8rem;
        padding: 1rem;
        vertical-align: middle;
        margin-bottom: 2rem;
        display: inline-flex;
        margin-right: 2rem;
    }
    .section__comment .list__ttl_sub {
        font-size: 1.8rem;
        padding: 1rem;
        vertical-align: middle;
    }
    .section__comment .list__txt {
        font-size: 2rem;
        color: #b98c3c;
    }
    .section__comment .list__thmb {
        display: inline-flex;
        vertical-align: middle;
    }
    .section__comment .list__thmb-img {
        max-width: 40%;
        height: auto;
        position: absolute;
        right: 6rem;
    }
    .list__thmb-img_01 {
        width: 38%;
    }
    .list__thmb-img_02 {}
    .list__thmb-img_03 {
        width: 34%;
        margin-bottom: -2rem;
    }
    .bracket {
        padding: 30px;
        position: relative;
    }
    .bracket::before,
    .bracket::after {
        content: '';
        width: 30px;
        height: 30px;
        position: absolute;
    }
    .bracket::before {
        border-left: solid 2px#b98c3c;
        border-top: solid 2px#b98c3c;
        top: 0;
        left: 0;
    }
    .bracket::after {
        border-right: solid 2px#b98c3c;
        border-bottom: solid 2px#b98c3c;
        bottom: 0;
        right: 0;
    }
    .section__banner {
        padding-top: 0;
        text-align: center;
    }
    .section__banner img {
        /* box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px; */
        width: 70%;
        -webkit-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        -moz-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        -ms-filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
        filter: drop-shadow(1px 3px 5px rgba(15, 144, 182, 0.2));
    }
}