@charset "UTF-8";

/*====================================

    ----------------------------------
        Color
    ----------------------------------

    Main     : #baffe2;


    ----------------------------------
        Font
    ----------------------------------


    ----------------------------------
        Structure
    ----------------------------------

      0. 共通（ページ内）
      1. メインビジュアル
      2. コンセプト
      3. ラインナップ
      4. ランキング
      5. 定期便
      6. インスタグラム
      7. ドッグサロンAURA
      8. フッター

====================================*/


/*===============================

共通（ページ内）

================================*/


/*===============================

メインビジュアル

================================*/


#main-visual {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: table;
}

#main-visual video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
}

#main-visual .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

#main-visual .content h1 {
    font-size: 5vw;
    animation: AnimationTitle 3s ease infinite;
    background: linear-gradient(to right, #ffffff, #7c96ac, #4a7090);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

@keyframes AnimationTitle {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@media screen and (min-width:1200px) {
    #main-visual .content h1 {
        font-size: 6.0rem;
    }
}

@media screen and (max-width:960px) {
    #main-visual .content h1 {
        font-size: 7vw;
    }
}

.sp_br {
    display: none;
}

@media screen and (max-width:960px) {
    .sp_br {
        display: block;
    }
}


/*===============================

メニュー

================================*/


.wrapper {
    width: 90%;
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    /*幅狭に設定*/
    padding-top: 50px;
    padding-bottom: 80px;
}

.wrapper:after {
    content: "";
    clear: both;
    display: block;
}

.wrapper .text p a {
    color: #4a7090;
    font-weight: bold;
    padding: 0 3px;
    text-decoration: underline;
    text-decoration-color: #4a7090;
}

.wrapper .cancel {
    margin-top: 30px;
    font-size: 1.2rem;
    color: #777;
}

.title {
    width: 100%;
    margin-bottom: 80px;
}

.title h2 {
    font-size: 5vw;
    margin-bottom: 0px;
    animation: AnimationTitle 3s ease infinite;
    background: linear-gradient(to right, #191c1f, #7c96ac, #4a7090);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

@keyframes AnimationTitle {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}


@media screen and (min-width:1200px) {
    .title h2 {
        font-size: 6.0rem;
    }
}

@media screen and (max-width:960px) {
    .title h2 {
        font-size: 7vw;
    }
}

.title span {
    padding: 0.25em 0.5em;
    /*上下 左右の余白*/
    color: #74838f;
    background: transparent;
    /*背景透明に*/
    border-left: solid 4px #74838f;
    /*左線*/
}





ul.price-list {
    list-style: none;
    column-count: 2;
    column-gap: 100px;
    margin: 0 2% 80px;
    padding: 0;
}

@media screen and (max-width:960px) {
    ul.price-list {
        column-count: 1;
    }
}

ul.price-list li {
    margin-bottom: 30px;
}

ul.price-list li .price {
    display: inline-flex;
    padding-bottom: 2px;
    border-bottom: #e0e0e0 1px solid;
    margin-bottom: 3px;
    width: 100%;
}

ul.price-list li .price img {
    display: inline-flex;
    width: 23px;
    margin-left: 15px;
}


ul.price-list li .price span {
    margin-left: auto;
    font-size: 90%;
}

ul.price-list li .price span b {
    font-size: initial;
    padding-right: 5px;
}

ul.price-list li p {
    font-size: 80%;
    color: #999;
}

ul.price-list li .note {
    background: #f4f4f4;
    padding: 10px 30px;
    margin: 50px 0;
}

ul.price-list li .note p {
    color: #777;
    margin-bottom: 3px;
}


/*===============================

フッター

================================*/

#footer-section {
    position: relative;
    background-color: #4a7090;
    width: 100%;
    padding-bottom: 130px;
    color: #FFF;
}

@media screen and (max-width: 960px) {
    #footer-section {
        padding-bottom: 100px;
    }
}

.footer {
    width: 100%;
    position: relative;
}

.footer .logo {
    position: relative;
    text-align: center;
}

.footer .logo img {
    width: 150px;
    margin: 70px auto 10px;
}

.footer p {
    font-size: 1.2rem;
    color: #FFF;
}