@charset "utf-8";
/* CSS Document */

/*//////////////////////////////

          ANIMATION

//////////////////////////////*/
/* --------JINWARI---------- */
#Wrapper .title.is-animated,
#Wrapper .ontext.is-animated,
#Wrapper .lineup_dogsup.is-animated,
#Wrapper .lineup_dogwild.is-animated,
#Wrapper .lineup_dognc.is-animated,
#Wrapper .lineup_catdd.is-animated,
#Wrapper .lineup_catwild.is-animated,
#Wrapper .lineup_catnc.is-animated,
#Wrapper .FoodContainer.is-animated,
#Wrapper .handwrite.is-animated {
    animation: fade-in 3s;
    animation-fill-mode: forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* -------JINWARI END------- */
/* --------POYOPOYO--------- */
#Wrapper .title {
    display: flex;
    overflow: hidden;
    padding-top: 0.6em;
    flex-wrap: wrap;
    justify-content: center;
}

#Wrapper .title.is-animated span {
    letter-spacing: .06em;
    margin: 0;
    /* ここからアニメーション関係 */
    transform: translateY(2em);
    animation: textanimation 1s forwards;
}

/* 1文字目 */
#Wrapper .title span:nth-child(1) {
    animation-delay: 0.05s
}

/* 2文字目 */
#Wrapper .title span:nth-child(2) {
    animation-delay: 0.1s
}

/* 3文字目 */
#Wrapper .title span:nth-child(3) {
    animation-delay: 0.15s
}

/* 4文字目 */
#Wrapper .title span:nth-child(4) {
    animation-delay: 0.2s
}

/* 5文字目 */
#Wrapper .title span:nth-child(5) {
    animation-delay: 0.25s
}

/* 6文字目 */
#Wrapper .title span:nth-child(6) {
    animation-delay: 0.3s
}

/* 7文字目 */
#Wrapper .title span:nth-child(7) {
    animation-delay: 0.35s
}

/* 8文字目 */
#Wrapper .title span:nth-child(8) {
    animation-delay: 0.4s
}

/* 9文字目 */
#Wrapper .title span:nth-child(9) {
    animation-delay: 0.45s
}

/* 10文字目 */
#Wrapper .title span:nth-child(10) {
    animation-delay: 0.5s
}

@keyframes textanimation {
    0% {
        transform: translateY(2em);
    }

    50% {
        transform: translateY(-1em);
        /* 浮き上がるアニメーションの指定 */
    }

    100% {
        transform: translateY(0);
    }
}

/* ------POYOPOYO END------- */
/* ---------PARALLAX---------- */
#Wrapper .parallax {
    position: relative;
    overflow: hidden;
    height: 35vh;
    /* 好きな高さに */
    margin-bottom: 80px;
}

#Wrapper .parallax .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 120% auto;
    /* 縦横比を維持しつつズーム */
    will-change: transform;
}

/* それぞれの画像を指定 */
#Wrapper .freshbegi .bg {
    background-image: url("../img/line-freshbegi.jpg");
}

#Wrapper .freshmeat .bg {
    background-image: url("../img/line-freshmeat.jpg");
}

/* -------PARALLAX END-------- */
/* --------SLIDER----------- */
#Wrapper .slider {
    width: 70%;
    padding: 0;
    margin: auto;
    padding: 0 30px;
}

#Wrapper .slider_lineup {
    width: 95%;
    margin: auto auto 15px auto;
}

/* ------SLIDER END--------- */
/* ---------T A B----------- */
#Wrapper .tab_wrap {
    width: 100vw;
 /*   letter-spacing: -0.04em; */
}

#Wrapper .panel_area,
#Wrapper .tab_panel {
    width: 100%;
    margin: 0 auto;
}

#Wrapper .tab_area {
    margin: auto;
    width: 100%;
  /*    letter-spacing: -0.04em; */
    border-radius: 15px;
    text-align: center;
}

#Wrapper .tab_area label.active {
    background: #703018;
    color: #fff7f2;
}

#Wrapper .tab_label_left {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

#Wrapper .tab_label_right {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* ---------TAB END--------- */

/*//////////////////////////////

             MOVIES

//////////////////////////////*/


/* ----------YOUTUBE--------- */

#Wrapper .Youtube {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    border-radius: 0;
}

#Wrapper .Youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

/* --------YOUTUBE END------- */

/*//////////////////////////////

             STYLE

//////////////////////////////*/

/* ----------BASIC----------- */

@supports(-webkit-touch-callout: none) {

    /* iPhoneの表示のみ指定を上書き */
    #Wrapper {
        height: -webkit-fill-available;
    }
}

#Wrapper {
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: 22px;
    padding: 5px 0 0;
    margin: 0px;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #703018;
    text-align: justify;
    word-break: break-all;
    text-justify: inter-ideograph;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
}

#Wrapper img {
    max-width: 100%;
}

#Wrapper div.Container {
    margin: 100px auto;
    text-align: center;
}

#Wrapper div.Container h2 img {
    width: 100%;
}

/* ---------BASIC END--------- */
/* ----------ONTEXT----------- */
#Wrapper .bgbegi,
.bgani {
    width: 100%;
    margin: 0 auto 0 auto;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    /* 文字中央寄せ */
    /*  border: solid 2px;       枠線指定 */
}


#Wrapper .ontext {
    display: inline-block;
    /* インラインブロックにする */
    width: 95%;
    text-align: left;
    margin: 0px auto 75px auto;
}

/* --------ONTEXT END--------- */
/* -----------4 CARD---------- */
#Wrapper section.bg-beige {
    width: 100%;
    height: auto;
    background-color: #EEDBC8;
    background-image: url("../img/beige_overlay.jpg");
    background-size: cover;
    background-position: top;
    padding: 1px;
}

#Wrapper .bg-beige div.Container h3 {
    padding-bottom: 80px;
    display: block;
}

/* ---------4 CARD END-------- */
/* ---------FLOAT BNR--------- */
#Wrapper .banner {
    display: none;
    position: fixed;
    margin: 10px;
    z-index: 99998;
    bottom: 0;
    left: 0;
}

#Wrapper .banner h4 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 0px;
    font-size: 24px;
}

#Wrapper .banner-body {
    width: 300px;
    color: #e27045;
    padding: 10px 10px 20px 10px;
    /*   background: #fff7f2; */
    background-color: rgba(255, 247, 242, 0.9);
    font-weight: bold;
    text-align: center;
    border-radius: 25px;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

#Wrapper .banner-close {
    font-weight: bold;
    position: absolute;
    top: -2px;
    right: -4px;
    z-index: 99999;
    padding: 4px 8px;
    border: none;
    background-color: #f8f8f8;
    border-radius: 25px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

#Wrapper .banner .banner-body a.btn_03 {
    width: 45%;
    font-size: 18px;
    padding: 5px 45px 10px 25px;
    margin-bottom: 15px;
    display: inline;
    line-height: 1.5em;
}

/* ---------FLOAT BNR--------- */
/* ----------BUTTON----------- */
#Wrapper a.btn_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: 50px;
    position: relative;
    background: #703018;
    border: 1px solid #703018;
    border-radius: 30px;
    box-sizing: border-box;
    padding: 0 45px 0 25px;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
    margin: 10px auto;
}

#Wrapper a.btn_03:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -6px;
}

#Wrapper a.btn_03:hover {
    background: #f5ddce;
    color: #703018;
}

#Wrapper a.btn_03:hover:before {
    border-top: 2px solid #703018;
    border-right: 2px solid #703018;
}

/* --------BUTTON END--------- */
/* ---------LINE UP----------- */
/*--- DOG ----*/
#Wrapper .lineup_dogsup {
    background-image: url("../img/product/dog-supremobg.jpg");
}

#Wrapper .lineup_dogwild {
    background-image: url("../img/product/dog-wildbg.jpg");
}

#Wrapper .lineup_dognc {
    background-image: url("../img/product/dog-ncbg.jpg");
}

/*--- CAT ----*/
#Wrapper .lineup_catwild {
    background-image: url("../img/product/cat-wildbg.jpg");
}

#Wrapper .lineup_catnc {
    background-image: url("../img/product/cat-ncbg.jpg");
}

#Wrapper .lineup_catdd {
    background-image: url("../img/product/cat-ddbg.jpg");
}

/* -------LINE UP END--------- */
/* ---------NT LINK----------- */
#Wrapper .ntlinks {
    padding-top: 70px;
}

#Wrapper div.contents-box4 {
    width: 23%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    font-weight: bold;
    font-size: 16px;
    margin: 0 2px 10px 2px;
}

#Wrapper div.contents-box4 img {
    width: 100%;
    transition-duration: 0.5s;
    border-radius: 15px;
}

#Wrapper div.contents-box4 div.contents-info p {
    margin: 0;
    padding: 0;
}

#Wrapper .contents-box4 a img {
    width: 100%;
    transition-duration: 0.5s;
}

#Wrapper .contents-box4:hover a img {
    transform: scale(1.1);
    transition-duration: 0.5s;
}

/* -------NT LINK END--------- */
/* ---------NT MOVIE---------- */

#Wrapper div.contents-box2 {
    width: 49%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    font-weight: bold;
    font-size: 16px;
    margin: 0 2px 10px 2px;
}

#Wrapper div.contents-box2 iframe {
    border-radius: 15px;
}

/* -------NT MOVIE END-------- */

/* --------- Slicker 矢印デザインの上書き --------- */

/* 矢印の丸い背景、色、サイズ、位置の定義 */
#Wrapper .slick-prev,
#Wrapper .slick-next {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background-color: #703018 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    /* 矢印のデザイン（丸、色、サイズなど）は共通設定またはここに記述 */
    top: 50% !important;
    transform: translateY(-50%) !important;
}


#Wrapper .slick-prev {
    left: -20px !important;
    right: auto !important;
}

/* 2. 右矢印 (.slick-next) の位置を確定 */
#Wrapper .slick-next {
    right: -20px !important;
    left: auto !important;
}

/* Slickerのデフォルト矢印（フォント）を無効化 */
#Wrapper .slick-prev:before,
#Wrapper .slick-next:before {
    content: '' !important;
}



/* 左矢印アイコン（くの字：白）*/
.slick-prev::after {
    /* 左向きSVGデータURL */
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFFFFF"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>') !important;

    /* 位置の調整 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
}

/* 右矢印アイコン（くの字：白）*/
.slick-next::after {
    /* 右向きSVGデータURL */
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFFFFF"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></svg>') !important;

    /* 位置の調整 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
}

/* --------- ドットの中央揃え修正（レスポンシブ対応版） --------- */
.slick-dots {
    /* 1. 幅を親要素全体に広げる (端から端まで) */
    width: 100% !important; 
    left: 0 !important;
    right: 0 !important;
    
    /* 2. マージンで要素を中央に配置 */
    /* .slick-dots自体は中央寄せのコンテナとして機能 */
    margin: 0 auto !important; 
    
    /* 3. 子要素（ドットのリスト）をテキストとして中央寄せ */
    /* これが効くことで、ドットのリスト全体が中央に来る */
    text-align: center !important; 
    
    /* その他の設定は維持 */
    position: absolute !important;
    bottom: -40px !important; 
    z-index: 5;
    
    /* 微調整で使った transform は削除（中央寄せが機能しない原因になるため） */
    transform: none !important; 
}