@charset "utf-8";

:root{
    --gold-1: #ffd079;
    /* ブラウン */
    --brown-1: #663609;
    /* レッド */
    --red-1: #a30300;
}
.gold{
    color: var(--gold-1);
}
.brown{
    color: var(--brown-1);
}
.red{
    color: var(--red-1);
}
.white{
    color: #fff;
}
body{
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #000;
    font-size: 2.6rem;
    font-size: 26px;
    line-height: 1.5;
}
p{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: inherit;
}
ul,li{
    list-style: none;
    margin: 0;
    padding: 0;
}
h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
    line-height: 1;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
}
figure{
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 750px){
    body{
        font-size: 3.47vw;
    }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.bold{
    font-weight: 700;
}

.inner{
    max-width: 750px;
    margin: 0 auto;
}
.content{
    max-width: 690px;
    margin: 0 auto;
}
@media screen and (max-width: 750px){
    .inner{
        max-width: 100vw;
    }
    .content{
        max-width: 92vw;
    }
}
.ttl02{
    position: relative;
    border-top: 1px solid #734f0b;
    padding-top: 40px;
    margin-bottom: 40px;
}
.ttl02::before{
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
}
.ttl02::after{
    content: "";
    display: block;
    position: absolute;
    background-color: #000;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 50px;
}
.ttl02 img{
    display: block;
    margin: 0 auto;
}
.ttl02 img + img{
    margin-top: 30px;
}
@media screen and (max-width: 750px){
    .ttl02{
        border-top: 0.13vw solid #734f0b;
        padding-top: 5.33vw;
        margin-bottom: 5.33vw;
    }
    .ttl02::before{
        top: -2.93vw;
    }
    .ttl02::after{
        top: -4vw;
        width: 13.33vw;
        height: 6.67vw;
    }
    .ttl02 img + img{
        width: 75.87vw;
        margin-top: 0.89vw;
    }
}

.subname{
    font-size: 30px;
    font-weight: 700;
}
.name{
    font-size: 40px;
    font-weight: 700;
}
.price{
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.yen{
    display: block;
    font-size: 36px;
    vertical-align: top;
}
.tax{
    display: block;
    font-size: 20px;
}
.set{
    position: absolute;
    right: 0;
    bottom: -50px;
    font-size: 20px;
    font-weight: 700;
    text-align: right;
}
.indent{
    text-indent: -1em;
    padding-left: 1em;
}

@media screen and (max-width: 750px){
    .subname{
        font-size: 4vw;
    }
    .name{
        font-size: 5.33vw;
    }
    .price{
        font-size: 7.2vw;
    }
    .yen{
        font-size: 4.8vw;
    }
    .tax{
        font-size: 2.67vw;
    }
    .set{
        bottom: -6vw;
        font-size: 2.67vw;
    }
}

.detail{
    background-color: #fff;
    padding: 20px 40px 100px;
    font-size: 26px;
    font-weight: 500;
    line-height: 38px;
}
.detail h4{
    font-size: 34px;
    font-weight: 700;
    text-align: left;
    color: var(--brown-1);
    background-color: #f0e1d3;
    padding: 24px 20px;
    margin-top: 46px;
    margin-bottom: 20px;
}
.detail p{
    line-height: 38px;
    margin-top: 30px;
    font-feature-settings: "palt";
}
.detail table , td, th {
	border-collapse: collapse;
}
.detail td, .detail th {
	padding: 3px;
	width: 30px;
	height: 25px;
}
.detail th {
    display: flex;
    width: 130px;
    height: 100%;
    text-align: left;
}
.detail td {
    width: auto;
}

.detail li{
    position: relative;
    padding-left: 20px;
    font-feature-settings: "palt";
}
.detail li::before{
    content: "";
    display: block;
    position: absolute;
    top: 19px;
    left: 7px;
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 25px;
}
.detail .brownul li::before{
    background-color: var(--brown-1);
}
.detail_logo{
    margin-inline: auto;
}
.detail_flex{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    flex-wrap: wrap;
    margin-top: 17px;
}
.detail_flex.flex02{
    gap: 30px;
}
.detail_flex.flex03{
    gap: 20px;
    margin-bottom: 10px;
}
.detail_flex.flex04{
    gap: 20px;
    margin-bottom: 10px;
}
.detail_flex p{
    margin-top: 0;
    text-align: center;
}

@media screen and (max-width: 750px){
    .detail{
        padding: 2.67vw 5.33vw 13.33vw;
        font-size: 3.47vw;
        line-height: 5.07vw;
    }
    .detail h4{
        font-size: 4.53vw;
        padding: 3.2vw 2.67vw;
        margin-top: 6.13vw;
        margin-bottom: 2.67vw;
    }
    .detail p{
        line-height: 5.07vw;
        margin-top: 4vw;
    }
    .detail td, .detail th {
        padding: 0.4vw;
        height: 3.33vw;
    }
    .detail th {
        width: 18.33vw;
    }
    .detail li{
        padding-left: 2.67vw;
    }
    .detail li::before{
        top: 2.53vw;
        left: 0.93vw;
        width: 0.67vw;
        height: 0.67vw;
        border-radius: 3.33vw;
    }
    .detail_flex{
        margin-top: 2.27vw;
    }
    .detail_flex.flex02{
        gap: 4vw;
    }
    .detail_flex.flex02 img{
        width: 38.67vw;
    }
    .detail_flex.flex03.box02 img{
        width: 39.33vw;
    }
    .detail_flex.flex03.box03 img{
        width: 25.33vw;
    }
    .detail_flex.flex03{
        gap: 2.67vw;
        margin-bottom: 1.33vw;
    }
    .detail_flex.flex03 img{
        width: 25.33vw;
    }

    .detail_logo.logo01{
        width: 37.33vw;
    }
    .detail_logo.logo02{
        width: 39.33vw;
    }
    .detail_logo.logo03{
        width: 39.33vw;
    }
}

/* 共通スタイルここまで */

/* ------------------------------------------------------------------------ */

/*  mainVisual

/* ------------------------------------------------------------------------ */

.mainVisual{
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    color: #fff;
    font-weight: 700;
}
.mainVisual_text{
    text-align: center;
    margin-top: 47px;
    font-size: 30px;
    line-height: 46px;
}
.mainVisual_menu-bg{
    position: relative;
    /* 05がある場合は734pxにしてください。 */
    /* height: 734px; */
    height: 560px;
    margin-top: 93px;
    display: flex;
    justify-content: center;
}
.mainVisual_menu-bg::before{
    content: "";
    position: absolute;
    display: block;
    background: url(../img/background/background_mainVisual_01.png) no-repeat center center / cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.mainVisual_menu{
    display: flex;
    flex-direction: column;
    max-width: 610px;
    width: 100%;
    margin-inline: auto;
    margin-top: 20px;
}
.mainVisual_menu li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 17px;
    min-height: 120px;
    border-bottom: 1px solid #bf974d;
    font-size: 40px;
    line-height: 1.2;
}
.mainVisual_menu li:nth-child(5){
    min-height: 170px;
}
.mainVisual_menu li span{
    font-size: 24px;
}
.mainVisual_menu li::before{
    content: "";
    display: block;
    width: 61px;
    height: 41px;
}
.mainVisual_menu li::after{
    content: "";
    display: block;
    position: absolute;
    background: url(../img/icon/icon_mainVisual_01.png) no-repeat center center / contain;
    width: 26px;
    height: 18px;
    right: 0;
}
.mainVisual_menu li:nth-child(1)::before{
    background: url(../img/text/text_01.png) no-repeat center center / contain;
}
.mainVisual_menu li:nth-child(2)::before{
    background: url(../img/text/text_02.png) no-repeat center center / contain;
    width: 71px;
}
.mainVisual_menu li:nth-child(3)::before{
    background: url(../img/text/text_03.png) no-repeat center center / contain;
    width: 71px;
}
.mainVisual_menu li:nth-child(4)::before{
    background: url(../img/text/text_04.png) no-repeat center center / contain;
    width: 68px;
    height: 52px;
}
.mainVisual_menu li:nth-child(5)::before{
    background: url(../img/text/text_05.png) no-repeat center center / contain;
    width: 73px;
}
@media screen and (max-width: 750px){
    .mainVisual_text{
        margin-top: 6.27vw;
        font-size: 4vw;
        line-height: 6.13vw;
    }
    .mainVisual_menu-bg{
          /* 05がある場合は97.87vwにしてください。 */
        /* height: 97.87vw; */
        height: 74.67vw;
        margin-top: 12.4vw;
    }
    .mainVisual_menu{
        max-width: 81.33vw;
        margin-top: 2.67vw;
    }
    .mainVisual_menu li{
        gap: 2.27vw;
        min-height: 16vw;
        border-bottom: 0.13vw solid #bf974d;
        font-size: 5.33vw;
    }
    .mainVisual_menu li:nth-child(5){
        min-height: 22.67vw;
    }
    .mainVisual_menu li span{
        font-size: 3.2vw;
    }
    .mainVisual_menu li::before{
        width: 8.13vw;
        height: 5.47vw;
    }
    .mainVisual_menu li::after{
        width: 3.47vw;
        height: 2.4vw;
    }
    .mainVisual_menu li:nth-child(2)::before{
        width: 9.47vw;
    }
    .mainVisual_menu li:nth-child(3)::before{
        width: 9.47vw;
    }
    .mainVisual_menu li:nth-child(4)::before{
        width: 9.07vw;
        height: 6.93vw;
    }
    .mainVisual_menu li:nth-child(5)::before{
        width: 9.73vw;
    }
}
/* ------------------------------------------------------------------------ */

/*  release

/* ------------------------------------------------------------------------ */


.release{
    margin-top: 134px;
}
.release .ttl02 p{
    font-size: 30px;
    color: #ffd079;
    margin-top: 60px;
}
.release .ttl02::before{
    background: url("../img/text/text_01.png") no-repeat center center / contain;
    top: -42px;
    width: 61px;
    height: 41px;
}
.release .merchandise{
    background-color: #ffffff;
}
.merchandise_item{
    position: relative;
    padding: 70px 20px 92px;
    border-bottom: 1px solid #999;
}
.merchandise_item::after{
    content: "";
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 160px;
    height: 50px;
}
.merchandise_item:nth-child(1),
.merchandise_item:nth-child(2),
.merchandise_item:nth-child(3){
    padding-bottom: 25px;
}
.merchandise_item:nth-child(4)::after{
    background: url("../img/img_release_01_icon.png") no-repeat center center / contain;
}
.merchandise_item:nth-child(1)::after,
.merchandise_item:nth-child(2)::after,
.merchandise_item:nth-child(3)::after{
    background: url("../img/img_release_02_icon.png") no-repeat center center / contain;
}
.merchandise_item:nth-child(3)::after{
    background: url("../img/img_release_08_icon.png") no-repeat center center / contain;
}
.merchandise_item:nth-child(5)::after,
.merchandise_item:nth-child(6)::after,
.merchandise_item:nth-child(7)::after{
    background: url("../img/img_release_04_icon.png") no-repeat center center / contain;
}
.merchandise_item .item_flex{
    display: flex;
    align-items: center;
    gap: 50px;
}
.merchandise_item .item_flex > img{
    max-width: 260px;
    width: 100%;
    height: auto;
}
.merchandise_item .item_flex > div{
    position: relative;
    flex: 1;
}

.merchandise_item .present_flex{
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 40px;
    background-color: #fff4eb;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    color: var(--brown-1);
    margin-top: 30px;
}
.merchandise_item .note{
    margin-top: 55px;
    font-size: 20px;
    font-weight: 600;
    text-align: right;
}
@media screen and (max-width: 750px){
    .release{
        margin-top: 17.87vw;
    }
    .release .ttl02 p{
        font-size: 4vw;
        margin-top: 8vw;
        margin-bottom: 8vw;
    }
    .release .ttl02 img{
        width: 82.27vw;
    }
    .release .ttl02::before{
        top: -5.6vw;
        width: 8.13vw;
        height: 5.47vw;
    }
    .merchandise_item{
        padding: 9.33vw 2.67vw 12.27vw;
        border-bottom: 0.13vw solid #999;
    }
    .merchandise_item:nth-child(2),
    .merchandise_item:nth-child(3),
    .merchandise_item:nth-child(4){
        padding-bottom: 3.33vw;
    }
    .merchandise_item::after{
        top: 2.67vw;
        right: 2.67vw;
        width: 21.33vw;
        height: 6.67vw;
    }
    .merchandise_item .item_flex{
        gap: 6.67vw;
    }
    .merchandise_item .item_flex > img{
        max-width: 34.67vw;
    }
    .merchandise_item .present_flex{
        gap: 3.73vw;
        padding: 5.33vw;
        font-size: 3.73vw;
        line-height: 4.53vw;
        margin-top: 4vw;
    }
    .merchandise_item .present_flex > img{
        width: 36vw;
    }
    .merchandise_item .note{
        margin-top: 7.33vw;
        font-size: 2.67vw;
    }
}

/* ------------------------------------------------------------------------ */

/*  event

/* ------------------------------------------------------------------------ */

.event{
    margin-top: 100px;
}
.event .ttl02{
    padding-top: 63px;
}
.event .ttl02::before {
    background: url(../img/text/text_02.png) no-repeat center center / contain;
    width: 71px;
    height: 41px;
}
.event .ttl03{
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    font-weight: 700;
    text-align: left;
    padding: 25px 20px;
    background-color: #472607;
}
.event .ttl03 > p{
    font-size: 28px;
    color: #ffd485;
}
.event .ttl03 > h3{
    font-size: 42px;
    line-height: 1;
    color: #fff;
    margin-top: 10px;
}
@media screen and (max-width: 750px){
    .event{
        margin-top: 13.33vw;
    }
    .event .ttl02 img{
        width: 52.67vw;
    }
    .event .ttl02{
        padding-top: 8.4vw;
    }
    .event .ttl02::before {
        width: 9.47vw;
        height: 5.47vw;
    }
    .event .ttl03{
        padding: 3.33vw 2.67vw;
    }
    .event .ttl03 > p{
        font-size: 3.73vw;
    }
    .event .ttl03 > h3{
        font-size: 5.6vw;
        margin-top: 1.33vw;
    }
}
/* ------------------------------------------------------------------------ */

/*  invitation

/* ------------------------------------------------------------------------ */

.invitation{
    margin-top: 100px;
}
.invitation .ttl02 > img:first-of-type {
    margin-top: 21px;
}
.invitation .ttl02::before {
    background: url(../img/text/text_03.png) no-repeat center center / contain;
    width: 71px;
    height: 42px;
}
.invitation_detail{
    position: relative;
    /* z-index: -1; */
}
.invitation_detail::before{
    position: absolute;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #ffe4b2 0px, transparent 220px);
    width: 100%;
    height: 220px;
    z-index: -1;
}
p.detail_mincho{
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    line-height: 1.5;
    text-align: center;
}
p.detail_mincho .nowrap{
    font-feature-settings: "palt";
    transform: translateX(-13px);
    display: inline-block;
}
p.p42{
    font-size: 42px !important;
    line-height: 58px;
}
p.p36{
    font-size: 36px !important;
    line-height: 50px;
}
p.p28{
    font-size: 28px !important;
}
p.p22{
    font-size: 22px !important;
}
p.p20{
    font-size: 20px !important;
}
.white{
    color: #fff !important;
}
.emphasis{
    background-color: #fffbc2;
    padding: 27px 30px;
    text-align: center;
    font-feature-settings: "palt";
}
.emphasis p{
    font-size: 30px;
    line-height: 44px;
    margin-top: 0;
}
@media screen and (max-width: 750px){
    .invitation{
        margin-top: 13.33vw;
    }
    .invitation .ttl02 > img:first-of-type {
        width: 55.87vw;
        margin-top: 2.8vw;
    }
    .invitation .ttl02::before {
        width: 9.47vw;
        height: 5.6vw;
    }
    .invitation_detail::before{
        background: linear-gradient(to bottom, #ffe4b2 0px, transparent 29.33vw);
        height: 29.33vw;
    }
    p.p42{
        font-size: 5.6vw !important;
        line-height: 7.73vw;
    }
    p.p36{
        font-size: 4.8vw !important;
        line-height: 6.67vw;
    }
    p.p28{
        font-size: 3.73vw !important;
    }
    p.p22{
        font-size: 2.93vw !important;
    }
    p.p20{
        font-size: 2.67vw !important;
    }
    .emphasis{
        padding: 3.6vw 4vw;
    }
    .emphasis p{
        font-size: 4vw;
        line-height: 5.87vw;
    }
}

/* ------------------------------------------------------------------------ */

/*  advance

/* ------------------------------------------------------------------------ */

.advance{
    margin-top: 100px;
}
.advance .ttl02::before {
    background: url(../img/text/text_04.png) no-repeat center center / contain;
    width: 68px;
    height: 52px;
}
.advance .ttl02 > img:first-of-type {
    margin-top: 24px;
}
.advance_div1{
    position: relative;
    padding-top: 60px;
    padding-inline: 30px;
    padding-bottom: 60px;
    overflow: hidden;
    z-index: 1;
}
.advance_div1::before{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #272933 0px, transparent 330px);
    width: 100%;
    height: 330px;
    z-index: -1;
}

.advance_detail{
    padding-top: 70px;
    padding-inline: 20px;
    padding-bottom: 20px;
    background-color: #fff;
}
.detail_top{
    position: relative;
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}
.detail_top::before{
    content: "";
    display: block;
    position: absolute;
    top: -30px;
    right: 20px;
    background: url(../img/icon/icon_advance_01.png) no-repeat center center / contain;
    width: 160px;
    height: 50px;
}
.schedule{
    margin-top: 32px;
    border:var(--brown-1) 1px solid ;
    padding: 40px 50px;
}
.schedule li + li{
    margin-top: 30px;
}
.note{
    margin-top: 20px;
}
.note li{
    padding-left: 1em;
    text-indent: -1em;
}
.note li::before{
    display: none;
}
.schedule_broderno{
    padding-top: 0;
    border: none !important;
}
@media screen and (max-width: 750px){
    .advance{
        margin-top: 13.33vw;
    }
    .advance .ttl02::before {
        width: 9.07vw;
        height: 6.93vw;
    }
    .advance .ttl02 > img:first-of-type {
        width: 64.67vw;
        margin-top: 3.2vw;
    }
    .advance_div1{
        padding-top: 8vw;
        padding-inline: 4vw;
        padding-bottom: 8vw;
    }
    .advance_div1::before{
        background: linear-gradient(to top, #272933 0px, transparent 44vw);
        height: 44vw;
    }

    .advance_detail{
        padding-top: 9.33vw;
        padding-inline: 2.67vw;
        padding-bottom: 2.67vw;
    }
    .detail_top{
        gap: 6.67vw;
        margin-bottom: 8vw;
    }
    .detail_top::before{
        top: -4vw;
        right: 2.67vw;
        width: 21.33vw;
        height: 6.67vw;
    }
    .detail_top img{
        width: 34.67vw;
    }
    .schedule{
        margin-top: 4vw;
        border:var(--brown-1) 0.13vw solid ;
        padding: 5.33vw 6.67vw;
    }
    .schedule li + li{
        margin-top: 4vw;
    }
    .note{
        margin-top: 2.67vw;
    }
}
/* ------------------------------------------------------------------------ */

/*  open

/* ------------------------------------------------------------------------ */

.open{
    margin-top: 100px;
    margin-bottom: 183px;
}
.open .ttl02{
    padding-top: 74px;
    margin-bottom: 10px;
}
.open .ttl02::before {
    background: url(../img/text/text_05.png) no-repeat center center / contain;
    width: 73px;
    height: 41px;
}
.open_detail{
    padding-top: 61px;
    padding-bottom: 60px;
    margin-top: 42px;
}
.open_detail .detail_logo{
    margin-bottom: 51px;
}
.open .more_btn{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    background-color: var(--brown-1);
    text-align: center;
    color: #fff;
    margin-top: 52px;
}
.open .more_btn::after{
    content: "";
    display: block;
    position: absolute;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    right: 40px;
}
.number{
    margin-bottom: 19px;
}
.number li{
    margin-top: 20px;
    padding-bottom: 20px;
    padding-left: 96px;
    border-bottom: 1px solid var(--brown-1);
}
.number li::before{
    top: 0;
    bottom: 0;
    border-radius: 0;
}

.number li:nth-child(1):before{
    background: url("../img/text/text_s_01.png") no-repeat center center / contain;
    width: 68px;
    height: 30px;
}
.number li:nth-child(2):before{
    background: url("../img/text/text_s_02.png") no-repeat center center / contain;
    width: 75px;
    height: 30px;
}
.number li:nth-child(3):before{
    background: url("../img/text/text_s_03.png") no-repeat center center / contain;
    width: 76px;
    height: 31px;
}
@media screen and (max-width: 750px){
    .open{
        margin-top: 13.33vw;
        margin-bottom: 24.4vw;
    }
    .open .ttl02 img{
        width: 80.13vw;
    }

    .open .ttl02{
        padding-top: 9.87vw;
        margin-bottom: 1.33vw;
    }
    .open .ttl02::before {
        width: 9.73vw;
        height: 5.47vw;
    }
    .open_detail{
        padding-top: 8.13vw;
        padding-bottom: 8vw;
        margin-top: 5.6vw;
    }
    .open_detail .detail_logo{
        margin-bottom: 6.8vw;
    }
    .open .more_btn{
        height: 16vw;
        margin-top: 6.93vw;
    }
    .open .more_btn::after{
        border-top: 0.4vw solid #fff;
        border-right: 0.4vw solid #fff;
        width: 1.6vw;
        height: 1.6vw;
        transform: rotate(45deg);
        right: 5.33vw;
    }
    .number{
        margin-bottom: 2.53vw;
    }
    .number li{
        margin-top: 2.67vw;
        padding-bottom: 2.67vw;
        padding-left: 12.8vw;
        border-bottom: 0.13vw solid var(--brown-1);
    }
    .number li:nth-child(1):before{
        width: 9.07vw;
        height: 4vw;
    }
    .number li:nth-child(2):before{
        width: 10vw;
        height: 4vw;
    }
    .number li:nth-child(3):before{
        width: 10.13vw;
        height: 4.13vw;
    }
}

/* ------------------------------------------------------------------------ */

/*  footer

/* ------------------------------------------------------------------------ */
footer {
	color: #fff;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
footer .postSection{

    border-top: 2px solid (var(--brown-1));
	background-color: #000;
	padding: 100px 0;
}
footer a img {
	max-width: 534px;
	width: 100%;
	height: auto;
}
footer small {
	font-size: 22px;
}
@media screen and (max-width: 480px) {
	footer small {
		font-size: 11px;
	}
}
footer a {
	display: block;
	margin: 0 auto 100px;
	width: 534px;
}
@media screen and (max-width: 750px){
	footer a{
		max-width: 71.2vw;
	}
}
footer a img {
									width: 100%;
									height: auto;
									-webkit-transition: 0.3s ease-in-out;
									transition: 0.3s ease-in-out;
									}

									footer a:hover img {
									opacity: 0.8;
									}

									#footerBnr {
									position: fixed;
									bottom: 0.5rem;
									width: 100%;
									z-index: 99;
									text-align: center;
									}

									#footerBnr a {
									display: block;
									position: absolute;
									bottom: 0;
									width: 100%;
									left: 0;
									right: 0;
									max-width: 690px;
									margin: 0 auto;
									border-radius: 90px;
									z-index: 1;
									-webkit-transition: 0.5s ease-in-out;
									transition: 0.5s ease-in-out;
									}
									@media screen and (max-width: 750px) {
									#footerBnr a {
										left: 0;
									}
									}
									#footerBnr a.footerBnr-1 {
									aspect-ratio: 4.38;
									opacity: 1;
									}
									.footerBnNarrow #footerBnr a.footerBnr-1 {
									opacity: 0;
									}
									#footerBnr a.footerBnr-2 {
									aspect-ratio: 7.88;
									opacity: 0;
									}
									.footerBnNarrow #footerBnr a.footerBnr-2 {
									opacity: 1;
									}

									#footerBnr a img {
									width: 98%;
									}

									#footerBnr a:hover {
									}
									#footerBnr a:hover img {
									-webkit-filter: brightness(160%);
											filter: brightness(160%);
											opacity: 1;
									}