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

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

          ANIMATION

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

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* -------JINWARI END------- */
/* --------POYOPOYO--------- */
.title {
    display: flex;
    overflow: hidden;
	padding-top: 0.6em;
  	flex-wrap: wrap;
 	justify-content: center;
}

.title.is-animated span {
    letter-spacing: .06em;
    margin: 0;
    /* ここからアニメーション関係 */
    transform: translateY(2em);
    animation: textanimation 1s forwards;
}
/* 1文字目 */
.title span:nth-child(1) {
    animation-delay: 0.05s
}
/* 2文字目 */
.title span:nth-child(2) {
    animation-delay: 0.1s
}
/* 3文字目 */
.title span:nth-child(3) {
    animation-delay: 0.15s
}
/* 4文字目 */
.title span:nth-child(4) {
    animation-delay: 0.2s
}
/* 5文字目 */
.title span:nth-child(5) {
    animation-delay: 0.25s
}
/* 6文字目 */
.title span:nth-child(6) {
    animation-delay: 0.3s
}
/* 7文字目 */
.title span:nth-child(7) {
    animation-delay: 0.35s
}
/* 8文字目 */
.title span:nth-child(8) {
    animation-delay: 0.4s
}
/* 9文字目 */
.title span:nth-child(9) {
    animation-delay: 0.45s
}
/* 10文字目 */
.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---------- */
.parallax {
  position: relative;
  overflow: hidden;
  height: 35vh;                /* 好きな高さに */
  margin-bottom: 80px;
}

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

/* それぞれの画像を指定 */
.freshbegi .bg {
  background-image: url("../img/line-freshbegi.jpg");
}
.freshmeat .bg {
  background-image: url("../img/line-freshmeat.jpg");
}
/* -------PARALLAX END-------- */
/* --------SLIDER----------- */
 .slider {
     width: 70%;
     padding:0;
     margin: auto;
	 padding: 0 30px ;
 }

 .slider_lineup {
     width: 85%;
     margin: auto auto 15px auto;
 }	
/* ------SLIDER END--------- */
/* ---------T A B----------- */
#Wrapper .tab_wrap {
 	width: 100vw;
  	letter-spacing: -0.04em;
}
.panel_area,.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;
}
.tab_label_left {
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

.tab_label_right {
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}
/* ---------TAB END--------- */

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

             MOVIES

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


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

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

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

}

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

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

             STYLE

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

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

html {
  height: -webkit-fill-available;
}
body {
    margin: 0;
    padding: 0;
	min-height: 100vh;
	background-color: #fff7f2;
  /* mobile viewport bug fix */
	min-height: -webkit-fill-available;
	text-align: justify;
	overflow-x: hidden;/* bodyに入れないとはみ出る */
	width: 99%;
}

@supports(-webkit-touch-callout: none){
/* iPhoneの表示のみ指定を上書き */
div#Wrapper{
  height: -webkit-fill-available;
  }
}

div#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;
}


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

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

@media (max-width: 768px) {
div#Wrapper div.Container:first {
	margin: 15px auto;
}
}

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

/* ---------BASIC END--------- */
/* ----------ONTEXT----------- */
.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;       枠線指定 */
}


.ontext {
    display:  inline-block;          /* インラインブロックにする */              
	width: 95%;
	text-align: left;
	margin: 0px auto 75px auto;
}
/* --------ONTEXT END--------- */
/* -----------4 CARD---------- */
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;
}
.bg-beige div.Container h3 {
	padding-bottom: 80px;
	display: block;
}

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

.banner h4 {
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}

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

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

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;
}
a.btn_03:hover {
  background:#f5ddce;
  color: #703018;
}
a.btn_03:hover:before {
  border-top: 2px solid #703018;
  border-right: 2px solid #703018;
}
/* --------BUTTON END--------- */
/* ---------LINE UP----------- */
	/*--- DOG ----*/
.lineup_dogsup {
	background-image: url("../img/product/dog-supremobg.jpg");
}

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

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

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

.lineup_catdd {
	background-image: url("../img/product/cat-ddbg.jpg");
}
/* -------LINE UP END--------- */
/* ---------NT LINK----------- */
.ntlinks {
	padding-top: 70px;
}

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

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

div.contents-box4 div.contents-info p {
	margin: 0;
	padding: 0;
}
.contents-box4 a img{
  width: 100%;
  transition-duration: 0.5s;
}
.contents-box4:hover a img{
  transform: scale(1.1);
  transition-duration: 0.5s;
}
/* -------NT LINK END--------- */
/* ---------NT MOVIE---------- */

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

div.contents-box2 iframe{
    border-radius: 15px;
  }
/* -------NT MOVIE END-------- */
/* --------- Swiper CSS 確定版 --------- */

/* 1. スライダーの横幅と中央揃え (最も確実な方法) */
div#Wrapper .slider-container-wrapper {
    /* 中央に寄せる設定 */
    max-width: 70% !important; 
    margin: 0 auto !important; 
    padding: 0 20px !important; 
    box-sizing: border-box !important; 
    
    /* 矢印を内側で制御するため position: relative は必須 */
    position: relative !important; 
}

/* 2. 矢印ボタンのデザイン（丸が茶色、くの字が白、太い） */
div#Wrapper .swiper-button-next,
div#Wrapper .swiper-button-prev {
    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); 
    
    /* 垂直位置の修正済みの値 */
    top: 40% !important; 
    transform: translateY(-50%) !important;
    
    /* 矢印を外側に押し出す（HTMLが子要素のため、マイナスで外へ） */
    left: -60px !important; 
    right: -60px !important; 
    
    /* 矢印アイコンの描画設定 */
    &::after {
        content: '' !important; /* デフォルト矢印を非表示 */
        width: 24px; 
        height: 24px; 
        background-size: contain;
        background-repeat: no-repeat;
    }
}

/* 矢印アイコン（くの字：白）*/
div#Wrapper .swiper-button-prev::after {
    background-image: 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; 
}
div#Wrapper .swiper-button-next::after {
    background-image: 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; 
}

/* 3. ドットと高さの修正（余白対策） */
div#Wrapper .swiper-pagination {
    bottom: 15px !important; 
    top: auto !important;
    position: absolute !important; 
}

.swiper-main,
.swiper-main .swiper-wrapper,
.swiper-main .swiper-slide {
    height: auto !important; 
    min-height: 0 !important;
}
.swiper-main .swiper-slide img {
    display: block !important;
    width: 100%;
    height: auto;
}
/* theme上書き */
#Wrapper div.Container h1,
#Wrapper div.Container h2,
#Wrapper div.Container h3,
#Wrapper .blockquote, .rte h1, .rte h2, .rte h3, .rte h4
 {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #703018;
    margin-bottom: 0.5em;
}