@charset "UTF-8";
/* CSS Document */
/*===============================================
共通
===============================================*/
html,
body {
    height: 100%;
    margin: 0 auto;
    padding: 0;
    font-size: 0.625rem;
    font-weight: 300;
    background-color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 2px;
}
*:focus {
    outline: none;
}
body {
    display: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
img,
figure,
figcaption {
    margin: 0;
    padding: 0;
}
img {
    border: 0;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #000;
}
a:hover {
    color: #C8C8C8;
}
table {
    border-collapse: collapse;
}
.text {
    display: inline-block;
}
.pc-none {
    display: none;
}
input {
    font-size: 1.6rem
}
input:focus {
    outline: 0;
}
input[type="submit"] {
    -webkit-appearance: none;
}
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}
.wrap {
    width: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background-color: #000;
}
.more a {
    text-align: center;
    margin: 0 auto;
    background-color: #fff;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    padding: 10px 30px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
.more a:hover {
    color: #fff;
    background-color: #f97f11;
}
.pager {
    margin-top: 100px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
/*==============================================
ヘッダー
===============================================*/
nav {
    height: 0;
    position: relative;
    z-index: 1000;
}
nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
nav ul li:nth-child(1) {
    margin-right: auto;
    padding-right: 5em;
}
nav ul li:nth-child(1) img {
    width: 100%;
    height: auto;
    max-width: 250px;
    min-width: 250px;
}
nav ul li:nth-child(n+2) {
    font-size: 1.8rem;
    margin-right: 1.5em;
}
nav ul li a {
    color: #fff;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
nav ul li a:hover {
    color: #fff;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
nav ul li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}
nav ul li a:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
nav ul li:nth-last-child(1) a {
    color: red;
}
nav ul li:nth-child(1) a::after {
    background: transparent;
}
nav ul li:nth-child(1) a:hover {
    -webkit-transform: none;
    transform: none;
}
/*===============================================
index
===============================================*/
/*index スライダー-----------------------------------------*/
.slider {
    width: 100%;
    height: 900px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
.slider li {
    position: relative;
}
.slide_img {
    width: 100%;
    height: 900px;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;'
}
.slider-wrap {
    position: relative;
}
.slider-copy {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: 6rem;
    position: absolute;
    bottom: 80px;
    left: 40px;
    line-height: 1.2;
    white-space: nowrap;
}
/*index カスタム-----------------------------------------*/
.costomIndex {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
    padding: 100px 0;
    background-color: #000;
}
.costomIndex h2 {
    font-family: 'Poppins', sans-serif;
    -ms-flex-wrap: 600;
    flex-wrap: 600;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 5px;
}
.costomIndex h2 span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    display: block;
    font-size: 1.6rem;
    margin-top: 5px;
    letter-spacing: 2px;
}
.slider-costom {
    width: 85%;
    text-align: center;
    margin: 80px auto;
}
.slider-costom li div {
    margin: 0 4%;
}
.slider-costom img {
    width: 100%;
    height: auto;
}
/*マウスホバーキャプション-----------------------------------------*/
.caption {
    overflow: hidden;
    position: relative;
}
.caption a img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.caption a:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.caption figcaption {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    top: 0;
    left: 0;
    display: block;
    text-align: center;
    padding: 20px;
    color: #fff;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
    font-size: 1.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.caption figure:hover figcaption {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.caption figcaption .title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	font-size: 1.8rem;
}
/*index バナー-----------------------------------------*/
.bannerIndex {
    width: 100%;
    background-color: #f97f11;
    padding: 3px 0;
}
.bannerIndex ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.saleIndex {
    width: calc(60% - 3px);
    height: 400px;
    background: url("../img/sale-bg.jpg")no-repeat center center/cover;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
}
.shopIndex {
    width: 40%;
    height: 400px;
    background: url("../img/shop-bg.jpg")no-repeat center center/cover;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
}
.saleIndex a,
.shopIndex a {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
.bannerIndex ul li h3 {
    font-family: 'Poppins', sans-serif;
    -ms-flex-wrap: 400;
    flex-wrap: 400;
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 3px;
    white-space: nowrap;
    position: absolute;
    top: 30%;
    left: 5%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.saleIndex a:hover h3,
.shopIndex a:hover h3 {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}
.bannerIndex ul li h3 span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    display: block;
    font-size: 1.4rem;
    margin-top: 0;
}
.bannerIndex ul li h3 span::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #fff;
    margin-right: 2rem;
    vertical-align: middle;
}
.saleIndex a .buttom,
.shopIndex a .buttom {
    font-family: 'Poppins', sans-serif;
    -ms-flex-wrap: 400;
    flex-wrap: 400;
    font-size: 1.4rem;
    color: #fff;
    background-color: #000;
    padding: 10px 30px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
}
.saleIndex a:hover .buttom,
.shopIndex a:hover .buttom {
    background-color: #f97f11;
}
.subIndex {
    width: 100%;
    background: url("../img/footer-bg.jpg")no-repeat center center/cover;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    padding: 120px 0;
}
.subIndex ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.subIndex ul li {
    margin: 0 50px;
    width: 200px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    line-height: 1.4rem;
}
.subIndex ul li a {
    font-family: 'Poppins', sans-serif;
    -ms-flex-wrap: 400;
    flex-wrap: 400;
    font-size: 1.5rem;
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 70px;
    letter-spacing: 2px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
.subIndex ul li a:hover {
    background-color: #f97f11;
}
/*==============================================
ページ共通
===============================================*/
.page-copy {
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
}
.page-body {
    font-size: 1.6rem;
    color: #fff;
    margin-top: 2em;
    line-height: 1.6;
}
/*==============================================
CUSTOM
===============================================*/
.custom-wrap {
    background: url("../img/custom-bg.png")no-repeat top center;
    background-size: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    padding: 200px 10%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.custom-gallery ul {
    width: 100%;
    display: grid;
    grid-template-columns: 33.333% 33.333% 33.333%;
    grid-gap: 5em;
    margin-top: 100px;
}
.custom-gallery ul li {
    position: relative;
}
.custom-gallery ul li span {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background-color: #f97f11;
    padding: 5px 15px;
    font-size: 1.3rem;
    letter-spacing: 1px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.custom-gallery ul li img {
    width: 100%;
    height: auto;
}
/*==============================================
SHOP
===============================================*/
.shop-wrap {
    background: url("../img/custom-bg.png")no-repeat top center;
    background-size: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    padding: 200px 10% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.shop-introduction {
    margin-top: 100px;
}
.shop-introduction ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 150px;
}
.shop-introduction ul li.shop-left {
    margin-right: 8%;
    white-space: nowrap;
    min-width: 8%;
}
.shop-introduction ul li.shop-right {
    width: 80%;
}
.shop-introduction table {
    margin-bottom: 50px;
}
.shop-introduction table th {
    font-weight: normal;
    padding: 0 50px 10px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 15%;
    white-space: nowrap;
}
.shop-introduction table td {
    font-weight: normal;
    padding: 0 5em 10px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    white-space: nowrap;
}
.shop-introduction ul li.shop-right img {
    width: 100%;
    height: auto;
    max-width: 500px;
}
.gmap {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}
.gmap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}
/*==============================================
contact
===============================================*/
.contact-wrap {
    background: url("../img/custom-bg.png")no-repeat top center;
    background-size: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    padding: 200px 10% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.contact {
    background-color: #f0f0f0;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    margin-top: 80px;
    padding: 5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 200px;
}
.contact table th {
    font-weight: normal;
    font-size: 1.5rem;
    text-align: left;
    width: 30%;
    margin: 0;
    padding: 0;
}
.contact table td {
    margin: 0;
    padding: 10px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.contact input,
.contact textarea {
    border: none;
    width: 100%;
    margin: 0;
    font-size: 1.6rem;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
}
input[type="submit"] {
    font-size: 1.5rem;
    background-color: #000;
    color: #fff;
    margin-top: 50px;
    padding: 15px 0;
    width: 100%;
    max-width: 150px;
}
/*==============================================
404
===============================================*/
.notfound {
    width: 500px;
    margin: 200px auto;
}
.notfound p {
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    margin-top: 50px;
}
.notfound .more {
    margin: 50px auto 0;
    text-align: center;
}
/*==============================================
single
===============================================*/
.contents-wrap {
    width: 860px;
    padding: 0 30px;
    margin: 200px auto 100px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
}
.sliderBox {}
.contentsDays {
    font-size: 1.2rem;
}
.contentsDays::before {
    content: '';
    width: 20px;
    height: 1px;
    border-top: 1px solid #fff;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.contentsTitle {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 1em;
}
.contentsBox {
    font-size: 1.5rem;
    line-height: 2;
    margin-top: 1.5em;
    text-align: justify
}
.contentsBox p {
    margin-top: 2em;
}
.contents-wrap .more {
    margin-top: 50px;
    text-align: center;
}
/*==============================================
フッター
===============================================*/
footer {
    background-color: #000;
    padding: 0 0 80px 0;
    text-align: center;
}
footer img {
    width: 100%;
    height: auto;
    max-width: 250px;
}
footer p {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 50px;
    line-height: 2;
}
.footer-sns {
    background-color: #2C2C2C;
    padding: 50px 0;
    margin-bottom: 50px;
    border-top: 3px solid #f97f11;
}
.footer-sns div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.footer-sns div img {
    margin: 0 15px;
}
.footer-sns p {
    font-family: 'Poppins', sans-serif;
    margin: 15px 0 0;
    font-size: 1.5rem;
    line-height: 1.5;
}
.footer-sns img {
    width: 100%;
    height: auto;
    max-width: 60px;
}
.online {
    position: fixed;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    background-color: #f97f11;
    display: none;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.online a {
    color: #fff;
    font-size: 1.6rem;
    padding: 30px 15px;
    display: block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.online a:hover {
    background-color: #fff;
    color: #f97f11;
}
.coming {
    color: #fff;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 2rem;
}
/*==============================================
画面の横幅が1024pxまで
===============================================*/
@media only screen and (max-width:768px) {
    .sp-none {
        display: none;
    }
    .pc-none {
        display: block;
    }
    .open-menu {
        position: relative;
    }
    .open-menu-left {
        text-align: center;
        margin-top: 100px;
    }
    .open-menu-left h1 {
        margin-bottom: 50px;
    }
    .open-menu-left img {
        width: 100%;
        height: auto;
        max-width: 180px;
    }
    .open-menu-left li {
        margin: 2.5em 0;
    }
    .open-menu-left li a {
        color: #fff;
        font-size: 2rem;
        font-family: 'Poppins', sans-serif;
    }
    .more a {
        font-size: 3.2vw;
        -webkit-transition: 0;
        transition: 0;
    }
    .more a:hover {
        color: #000;
        background-color: #fff;
    }
    .wrap {
        min-height: inherit;
    }
    /*===============================================
index
===============================================*/
    /*index スライダー-----------------------------------------*/
    .slider {
        height: 45vh;
    }
    .slide_img {
        height: 45vh;
    }
    .slider-copy {
        font-size: 6vw;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        bottom: inherit;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    /*index カスタム-----------------------------------------*/
    .costomIndex {
        padding: 50px 0;
    }
    .costomIndex h2 {
        font-size: 4.2vw;
        letter-spacing: 3px;
    }
    .costomIndex h2 span {
        font-size: 2.4vw;
        letter-spacing: 1px;
    }
    .slider-costom {
        width: 80%;
        text-align: center;
        margin: 30px auto;
    }
    /*マウスホバーキャプション-----------------------------------------*/
    .caption a:hover img {
        -webkit-transform: none;
        transform: none;
    }
    .caption figcaption {
        display: none;
    }
    .caption figure:hover figcaption {
        -webkit-transform: none;
        transform: none;
    }
    /*index バナー-----------------------------------------*/
    .bannerIndex {
        width: 100%;
        background-color: #f97f11;
        padding: 3px 0;
    }
    .bannerIndex ul {
        display: block;
    }
    .saleIndex {
        width: 100%;
        height: 32vh;
        margin-bottom: 3px;
    }
    .shopIndex {
        width: 100%;
        height: 38vh;
    }
    .bannerIndex ul li h3 {
        font-size: 4vw;
        letter-spacing: 3px;
        text-align: center;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .saleIndex a:hover h3,
    .shopIndex a:hover h3 {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .bannerIndex ul li h3 span {
        font-size: 2.4vw;
        margin-top: 5px;
    }
    .bannerIndex ul li h3 span::before {
        content: '';
        display: none;
    }
    .saleIndex a .buttom,
    .shopIndex a .buttom {
        font-size: 3.2vw;
        padding: 10px 30px;
    }
    .saleIndex a:hover .buttom,
    .shopIndex a:hover .buttom {
        background-color: #000;
    }
    .subIndex {
        padding: 50px 0;
    }
    .subIndex ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .subIndex ul li {
        margin: 0 15px;
        width: 135px;
        height: 50px;
    }
    .subIndex ul li a {
        font-size: 1.3rem;
        line-height: 50px;
        letter-spacing: 1px;
    }
    .subIndex ul li a:hover {
        background-color: rgba(0, 0, 0, 0.9);
    }
    /*==============================================
フッター
===============================================*/
    footer {
        padding: 0 0 80px 0;
        text-align: center;
    }
    footer img {
        max-width: 30vw;
    }
    footer p {
        font-size: 3vw;
        margin-top: 20px;
        line-height: 1.7;
    }
    footer p a {
        color: #fff;
    }
    .footer-sns {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    .footer-sns p {
        font-size: 1.3rem;
    }
    .footer-sns img {
        width: 100%;
        height: auto;
        max-width: 50px;
    }
    .online {
        right: inherit;
        top: inherit;
        bottom: 0;
        width: 100%;
        -webkit-transform: none;
        transform: none;
        display: none;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    }
    .online a {
        color: #fff;
        font-size: 1.6rem;
        padding: 20px 0;
        position: relative;
    }
    .online a::after {
        content: '';
        background: url("../img/page.svg")no-repeat center center/cover;
        width: 15px;
        height: 15px;
        display: inline-block;
        margin: 0 0 0 20px;
    }
    .online a:hover {
        background-color: #f97f11;
        color: #fff;
    }
    /*==============================================
ページ共通
===============================================*/
    .page-copy {
        font-size: 5.5vw;
    }
    .page-body {
        font-size: 3vw;
        margin-top: 1em;
    }
    /*==============================================
CUSTOM
===============================================*/
    .custom-wrap {
        padding: 50px 5% 0;
    }
    .custom-gallery {
        margin-bottom: 80px;
    }
    .custom-gallery ul {
        grid-template-columns: auto auto;
        grid-gap: 20px;
        margin-top: 50px;
    }
    .custom-gallery ul li a {
        display: block;
        width: 100%;
        height: 100%;
    }
    .custom-gallery ul li span {
        padding: 5px 5px;
        font-size: 1rem;
        letter-spacing: 0;
    }
    /*==============================================
SHOP
===============================================*/
    .shop-wrap {
        padding: 50px 5% 0;
    }
    .shop-introduction {
        margin-top: 50px;
    }
    .shop-introduction ul {
        display: block;
        margin-bottom: 80px;
    }
    .shop-introduction ul li.shop-left {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1em;
    }
    .shop-introduction ul li.shop-right {
        font-size: 1.5rem;
        line-height: 1.6;
        width: 100%;
    }
    .shop-introduction table {
        margin-bottom: 30px;
    }
    .shop-introduction table th {
        display: block;
        background: rgba(255, 255, 255, 0.5);
        padding: 10px;
        width: 100%;
    }
    .shop-introduction table td {
        display: block;
        padding: 15px 10px;
        width: 100%;
    }
    /*==============================================
contact
===============================================*/
    .contact-wrap {
        padding: 50px 5% 0;
    }
    .contact {
        width: 90%;
        margin-top: 50px;
        padding: 10% 5%;
        margin-bottom: 50px;
    }
    .contact table th {
        display: block;
        width: 100%;
        padding: 0;
    }
    .contact table td {
        display: block;
        width: 100%;
    }
    input[type="submit"] {
        font-size: 1.5rem;
        background-color: #000;
        color: #fff;
        margin-top: 30px;
    }
    /*==============================================
404
===============================================*/
    .notfound {
        width: 90%;
        margin: 100px auto;
        text-align: center;
    }
    .notfound img {
        width: 60%;
        height: auto;
    }
    .notfound p {
        font-size: 1.3rem;
    }
    /*==============================================
single
===============================================*/
    .contents-wrap {
        width: 90%;
        max-width: 600px;
        padding: 0;
        margin: 50px auto;
    }
    .contentsTitle {
        font-size: 1.8rem;
    }
    .contentsBox {
        font-size: 1.4rem;
        line-height: 1.8;
    }
    .contentsBox p {
        margin-top: 2em;
    }
}
/*==============================================
画面の横幅が667pxまで
===============================================*/
@media only screen and (max-width:667px) {
    .slider-costom {
        width: 75%;
    }
}