@charset "UTF-8";

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

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

    Main     : #baffe2;


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


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

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

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


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

共通（ページ内）

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


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

ポップアップ

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

#popup_btn,
.popup {
    display: none;
    opacity: 0
}

#popup_btn:checked~.popup {
    display: block;
    opacity: 1;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.close_popup {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .7);
    z-index: 10000;
    cursor: pointer;
}

.popup_wrap {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 90%;
    height: fit-content;
    max-width: 400px;
    padding: 40px 40px;
    background: #fff;
    border-radius: 10px;
    z-index: 10001;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
}

@media screen and (max-width:560px) {
    .popup_wrap {
        padding: 40px 20px;
        width: 90%;
    }
}

.popup_wrap .notion {
    text-align: center;
}

.popup_wrap .notion span {
    margin-bottom: 24px;
    display: inline-block;
    font-weight: bold;
    font-size: 2.2rem;
    padding: 0px 20px;
}

.popup_wrap p {
    margin-bottom: 24px;
    text-align: center;
    color: #888;
}

.popup_wrap p:last-child {
    margin-bottom: 0;
}

.popup_wrap::-webkit-scrollbar {
    display: none;
}

.close_btn {
    position: absolute;
    right: 18px;
    top: 8px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    margin: 0;
}


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

メインビジュアル

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


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

#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 {
    color: #FFF;
}

.sp_br {
    display: none;
}

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

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

トリミング内容

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

#trim-content {
    position: relative;
    margin: 0 auto;
    /*幅狭に設定*/
    padding-top: 80px;
    padding-bottom: 90px;
    background-color: #f3f8f9;

}

#trim-content:after {
    content: "";
    clear: both;
    display: block;
}

#trim-content .title {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

#trim-content .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 80px;
    width: 90%;
    max-width: 1080px;
}

@media screen and (max-width:960px) {
    #trim-content .container {
        margin: 0 auto 40px;
    }
}



/* アコーディオンメニュー */

#trim-content .container .category {
    width: 100%;
}

/* Acordeon styles */
#trim-content .container .tab {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
    background-color: #97c9c7;
    color: #FFF;
    font-weight: bold;
}

#trim-content .container input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

#trim-content .container label {
    position: relative;
    display: block;
    /* アコーディオン タブ背景色 */
    cursor: pointer;
    line-height: 72px;
    padding-left: 20px;
}

#trim-content .container .tab-content {
    max-height: 0;
    overflow: hidden;
    /* タブ内背景色 */
    -webkit-transition: max-height .20s;
    -o-transition: max-height .20s;
    transition: max-height .20s;
}

/* :checked */
#trim-content .container input:checked~.tab-content {
    max-height: 3000px;
}

/* Icon */
#trim-content .container label::after {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    text-align: center;
    -webkit-transition: all .20s;
    -o-transition: all .20s;
    transition: all .20s;
    line-height: 72px;
    font-size: 4.0rem;
    margin-right: 20px;
}

#trim-content .container input[type=checkbox]+label::after {
    content: "+";
}

#trim-content .container input[type=checkbox]:checked+label::after {
    transform: rotate(45deg);
}

#trim-content .table_design03 {
    border-collapse: collapse;
    width: 100%;
}

#trim-content .table_design03 tr {
    padding: 20px;
}

#trim-content .table_design03 th {
    width: 30%;
    padding: 15px;
    background-color: #97c9c7;
    color: #FFF;
    border-top: 3px solid #f3f8f9;
    text-align: center;
}

#trim-content .table_design03 td {
    width: 70%;
    padding: 15px;
    background-color: #FFF;
    border-top: 3px solid #f3f8f9;
    color: #191c1f;
}

#trim-content .container .tab-content p {
    background-color: #f3f8f9;
    font-weight: normal;
    color: #6d6d6d;
    font-size: 90%;
    padding: 10px 5px;
}

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

トリミングメニュー

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

#trimming-menu {
    position: relative;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 90px;
}

#trimming-menu .title {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}


.table-container {
    width: 90%;
    margin: 0 auto 40px;
    font-size: 90%;
    max-width: 1080px;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

.table-container table th,
.table-container table td {
    padding: 20px 2px;
    text-align: center;
}

.table-container table th {
    background-color: #97c9c7;
    color: #FFF;
}

.table-container table .th1 {
    width: 34%;
}

.table-container table .th2 {
    width: 22%;
}

.table-container table tr:nth-child(odd) {
    background-color: #f3f8f9;
}

@media screen and (max-width: 560px) {
    .table-container {
        margin: 0 auto 30px;
        font-size: 70%;
    }

    .table-container table th,
    .table-container table td {
        padding: 10px 1px;
    }
}

.text-container {
    padding: 0 30px;
    margin: 0 auto;
    width: 90%;
    font-size: 90%;
    max-width: 1080px;
    color: #888;
}

@media screen and (max-width: 560px) {
    .text-container {
        padding: 0 8px;
        font-size: 70%;
    }
}

.text-container p {
    margin-bottom: 30px;
}

.text-container>ul {
    margin-bottom: 30px;
}

.text-container>ul li {
    margin: 5px 0;
}


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

オプション

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

#opt {
    position: relative;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #f3f8f9;
}

#opt:after {
    content: "";
    clear: both;
    display: block;
}

#opt .title {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

#opt .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 80px;
    max-width: 1080px;
    width: 90%;
}

@media screen and (max-width:960px) {
    #opt .container {
        margin: 0 auto 40px;
    }
}

#opt .container .box {
    position: relative;
    width: 48%;
    margin-bottom: 30px;
    background-color: #FFF;
    padding: 20px;
}

@media screen and (max-width:560px) {
    #opt .container .box {
        width: 100%;
    }
}

#opt .container .box .price {
    display: inline-flex;
    padding-bottom: 5px;
    border-bottom: #ccc 1px dotted;
    width: 100%;
    font-weight: bold;
    font-size: 1.6rem;
}

#opt .container .box .price span {
    margin-left: auto;
}

#opt .container .box p {
    font-size: 90%;
    margin-top: 10px;
    color: #888;
}

#opt .container p {
    color: #888;
}


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

フッター

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

#footer-section {
    position: relative;
    background-color: #c4e5e6;
    width: 100%;
    padding-bottom: 50px;
    color: #FFF;
}


.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;
}