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


 :root {
  --main-color: #4E3023;
  --sub-color: #A86124;
  --red-color: #B20B0B;
  --green-color: #009140;

  --base-yellowcolor:#FDF9C4;
  --base-pinkcolor:#FFD8D8;
}

::selection {
  background-color:var(--green-color);
}

.uk-offcanvas-bar .uk-nav-default>li>a {
  color: var(--main-color);
  margin-top: 1rem;
  position: relative;
}

.uk-offcanvas-bar .uk-nav-default>li>a:hover {
  color: var(--main-color);

}

.uk-offcanvas-bar .uk-nav-default>li>a::before {
  position: absolute;
  content: "";
  top: 0;
  right: 10px;
  bottom: 0;
  left: 0px;
  width: 0%;
  border-bottom: solid 1px #001B45;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}


.uk-offcanvas-bar .uk-nav-default>li>a:hover::before {
  width: 100%;
}


.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-3xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {
  color: var(--main-color);
  letter-spacing: 1px;
}

.uk-link, a {
  color: var(--main-color);
  text-decoration: none;
  cursor: pointer;
}

.uk-link, a:hover {
  color:rgb(0, 0, 0);
  text-decoration: none;
}


.uk-button-default {
  background-color: transparent;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 3px;
}

.uk-button-default:hover {
  background-color: var(--main-color);
  color: #ffffff;
  border: 1px solid var(--main-color);
}

.uk-table th {
  vertical-align: top;
  color: #666;
  white-space: nowrap;
}

.uk-icon-button {
  color:var(--main-color);
}


.uk-button {
  text-transform: none; 
}

.uk-button-large {
  padding: 20px 40px;
  line-height: 1;
  font-size: .875rem;
}

.uk-button-secondary {
  background-color: var(--point-pink-color);
  color: #fff;
  border: 1px solid transparent;
}
.uk-button-secondary:hover {
background-color: var(--point-pink-color);
}

.uk-overlay-primary {
background: rgba(34, 34, 34, .6);
}
.uk-navbar-container:not(.uk-navbar-transparent) {
background: none;
} 


.uk-position-small {
max-width: calc(100% - (8px * 2));
margin: 8px;
}

h1, h2, h3, h4, h5, h6 {

color: var(--main-color)  !important;
}
.uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle {
min-height: 50px;
}

.uk-button-primary,.uk-button-primary:hover {
background-color:var(--green-color);
color: #fff;
border: 1px solid transparent;
}

.uk-offcanvas-bar {
background: #fff;
}

.uk-card-default {
--uk-inverse: dark;

color: var(--main-color);

}


 /* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color:var(--base-yellowcolor);
	position: fixed;
	text-align: center;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
		position: absolute;          /* 位置指定 */
		top: 50%;                    /* 親要素の半分下にずらす */
			left: 50%;                   /* 親要素の半分右にずらす */
			transform: translateY(-50%) translateX(-50%);
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

#loading .uk-icon {
  color: var(--main-color);
}

 /* END  ローディング画面 */



.fukidashi {
  position: relative;
  padding: 1rem  1rem  0.5rem  1rem;
  border-radius: 10px;
  /* border: 1px solid #b39b00; */
  background-color: #b39b0055;
}

.fukidashi:before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid var(--main-color);
  content: "";
}




html {
  font-size: 100%;
  // 600px以降から、100pxごとに1px大きくなる
  @media (min-width: 600px) {
    font-size: calc(112.5% + 4 * (100vw - 600px) / 400)
  }
 
  // 1,000px以上は、22pxに
  @media (min-width: 1000px) {
    font-size: calc(137.5%)
  }
}


body {
  color: var(--main-color) ;
}


#mainvisual {
  background-image:url(../img/paw01.webp),  url(../img/mainIMG.webp) ;
  background-position:right top, center bottom;
  background-size: contain, cover;
  background-repeat: no-repeat;
}

#illustcatbox {
  background-image: url(../img/illustCatLeft.webp);
  background-size: 30vw auto;
  background-repeat: no-repeat;
background-position: -30vw -30vw;
  animation: bgMove 0.3s ease-out forwards;
  animation-delay: 0.2s;
  animation-play-state: paused;
}


@media (max-width: 768px) {
  #illustcatbox {
  background-image: url(../img/illustCatLeft.webp);
  background-size: 40vw auto;
  background-repeat: no-repeat;
background-position: -30vw -30vw;
  animation: bgMove 0.3s ease-out forwards;
  animation-delay: 0.2s;
  animation-play-state: paused;
}
}



@keyframes bgMove {
  to {
    background-position: 0 100%;
  }
}



#campaign01Box {
  background-color: var(--base-yellowcolor);
  background-image: url(../img/pawLeft.webp),url(../img/pawRight.webp);
  background-size: 30vw auto;
  background-repeat: no-repeat;
  background-position: left top, right bottom;
  padding: 2rem;
}

@media (max-width: 768px) {
  #campaign01Box {
  background-image: url(../img/pawLeft.webp),url(../img/pawRight.webp);
  background-size: 40vw auto;
  background-repeat: repeat-y;
  background-position: left top 100px, right bottom 20px;
}

}

#mainLeadBox {
  padding-bottom: 200px;
}

@media (max-width: 768px) {
 
#mainLeadBox {
  padding-bottom: 200px;
}
}



.illustcatbox02 {
  background-image: url(../img/illustCatright.webp);
  background-size: 30vw auto;
  background-repeat: no-repeat;
background-position: calc(100% + 35vw) top;
min-height: 80vh;

}

/* アニメーション適用用のクラス */
.illustcatbox02.animate {
  animation: bgMove02 0.3s ease-out forwards;
}

@media (max-width: 768px) {
 
.illustcatbox02 {
  background-image: url(../img/illustCatright.webp);
  background-size: 40vw auto;
  background-repeat: no-repeat;
background-position: calc(100% + 35vw) bottom;

}


}

@keyframes bgMove02 {
  to {
    background-position: right bottom;
  }
}

#mainLeadBox p {
  line-height: 2;
  text-shadow:
    -1px -1px 0 var(--base-yellowcolor),
    1px -1px 0 var(--base-yellowcolor),
    -1px 1px 0 var(--base-yellowcolor),
    1px 1px 0 var(--base-yellowcolor);
}
@media (max-width: 768px) {
  #mainLeadBox p {
 font-size: 1.1rem;
}

}

.productTitle {
  background-color: var(--sub-color);
  text-align: center;
  color: #fff !important;
  font-weight: bold;
}


#campaign02Box {
  background-color: var(--base-pinkcolor);
  background-image: url(../img/pawLeft.webp),url(../img/pawRight.webp);
  background-size: 30vw auto;
  background-repeat: no-repeat;
  background-position: left top, right bottom;
  padding: 2rem;
}

.illustcatbox03 {
  padding-bottom: 50%;
  background-image: url(../img/illustCatLeft02.webp), url(../img/illustCatRight02.webp);
  background-size: 40vw auto;
  background-repeat: no-repeat;
background-position: left bottom, right bottom;


}




@media (min-width: 768px) {
 
.illustcatbox03 {
  padding-bottom: 0;
  background-image: url(../img/illustCatLeft02.webp);
  background-size: 25vw auto;
  background-repeat: no-repeat;
background-position: left top 100px;


}

.illustcatbox04 {
  padding-bottom: 0;
  background-image: url(../img/illustCatRight02.webp);
  background-size: 25vw auto;
  background-repeat: no-repeat;
background-position:  right bottom;


}

}

