@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");
@media screen and (max-width: 768px) {
  main {
    padding: 100vh 0 0;
  }
}

.mainvisual {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .mainvisual {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.mainvisual .catch {
  width: 100%;
  text-align: center;
  font-size: 60px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .mainvisual .catch {
    width: 100%;
    font-size: 8vw;
  }
}

.mainvisual .slide_wrapp {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.mainvisual .slide_wrapp .slide_item {
  opacity: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 2s linear, -webkit-transform 9.5s linear;
  transition: opacity 2s linear, -webkit-transform 9.5s linear;
  -o-transition: opacity 2s linear, transform 9.5s linear;
  transition: opacity 2s linear, transform 9.5s linear;
  transition: opacity 2s linear, transform 9.5s linear, -webkit-transform 9.5s linear;
  position: relative;
  z-index: 1;
  min-height: 100%;
}

.mainvisual .slide_wrapp .slide_item:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

.mainvisual .slide_wrapp .slide_item.show_ {
  opacity: 1;
}

.mainvisual .slide_wrapp .slide_item.zoom_ {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.mainvisual .slide_wrapp .slide_item img {
  display: block;
  min-height: 100vh;
}

@media screen and (max-width: 768px) {
  .mainvisual .slide_wrapp li {
    width: 100vw;
    text-align: center;
  }
  .mainvisual .slide_wrapp img {
    display: block;
    width: auto;
    height: 100vh;
  }
}

.mainvisual .slider {
  display: none;
}

.mainvisual .slider li img {
  display: block;
  min-height: 100vh;
  -webkit-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 9.5s linear;
  -o-transition: 9.5s linear;
  transition: 9.5s linear;
}

.mainvisual .slider li:first-child,
.mainvisual .slider li.slick-active img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 9.5s linear;
  -o-transition: 9.5s linear;
  transition: 9.5s linear;
}

@media screen and (max-width: 768px) {
  .mainvisual .slider li {
    width: 100vw;
    text-align: center;
  }
  .mainvisual .slider li img {
    display: block;
    width: auto;
    height: 100vh;
  }
}

.go_scroll {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 63px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  z-index: 1;
}

.go_scroll a {
  padding: 0 0 36px;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.go_scroll a::after {
  content: '';
  display: block;
  width: 16px;
  height: 24px;
  background: url(../img/top/scroll_arrow.png) no-repeat center top;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-animation: fuwafuwa 2s linear infinite;
  animation: fuwafuwa 2s linear infinite;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  z-index: -1;
}

.float {
  -webkit-animation: float_9272 3s linear infinite;
  animation: float_9272 3s linear infinite;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  33.33333% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    opacity: 0;
  }
  88.77777% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  33.33333% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    opacity: 0;
  }
  88.77777% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.fade-in.on {
  opacity: 1;
  -webkit-transition: ease-out 1s;
  -o-transition: ease-out 1s;
  transition: ease-out 1s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.fade-in2 {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}

@media screen and (max-width: 768px) {
  .fade-in3 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.tit_content {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 50px;
  letter-spacing: .01em;
}

.tit_content span {
  margin: 7px 0 0;
  display: block;
  font-size: 18px;
  color: #805921;
  letter-spacing: 0em;
  font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
}

@media screen and (max-width: 768px) {
  .tit_content {
    font-size: 6.66667vw;
    text-align: center;
  }
  .tit_content span {
    font-size: 3.2vw;
  }
}

.box_supplement {
  padding: 40px 0;
  background: url(../img/common/bg_pattern.jpg) center top;
}

.box_supplement ul {
  width: 1200px;
  margin: 0 auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.box_supplement ul li {
  width: 580px;
}

.box_supplement ul li a {
  padding: 23px 0 23px 30px;
  display: block;
  position: relative;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.box_supplement ul li a:hover {
  color: #805921;
}

.box_supplement ul li a:hover img {
  opacity: 1;
}

.box_supplement ul li.dog a {
  background: url(../img/top/supplement_dog_pc.png) no-repeat center top/100%;
}

.box_supplement ul li.dog a:hover {
  background: url(../img/top/supplement_dog_hover_pc.png) no-repeat center top/100%;
}

.box_supplement ul li.dog a:hover img {
  opacity: 1;
}

.box_supplement ul li.cat a {
  background: url(../img/top/supplement_cat_pc.png) no-repeat center top/100%;
}

.box_supplement ul li.cat a:hover {
  background: url(../img/top/supplement_cat_hover_pc.png) no-repeat center top/100%;
}

.box_supplement ul li .img {
  width: 267px;
  position: absolute;
  bottom: -7px;
  right: 30px;
}

.box_supplement ul li .img img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .box_supplement {
    padding: 7vw 0 4vw;
  }
  .box_supplement ul {
    width: 92%;
    margin: 0 auto;
  }
  .box_supplement ul li {
    width: 48%;
  }
  .box_supplement ul li a {
    padding: 16.4vw 4% 3.2vw;
    font-size: 3.73333vw;
    text-align: center;
  }
  .box_supplement ul li.dog a {
    background: url(../img/top/supplement_bg_dog_sp.jpg) no-repeat center top/100%;
  }
  .box_supplement ul li.cat a {
    background: url(../img/top/supplement_bg_cat_sp.jpg) no-repeat center top/100%;
  }
  .box_supplement ul li .img {
    width: 88%;
    bottom: initial;
    top: -4.3vw;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}

.box_message {
  padding: 58px 0 120px;
  overflow: hidden;
  background: url(../img/top/message_bg.jpg) no-repeat center top/cover fixed;
}

.box_message .head_message {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-height: 1.9;
}

.box_message .text_message {
  margin: 36px auto 0;
  text-align: center;
  line-height: 2.6;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 18px;
}

.box_message .text_message p + p {
  margin: 44px auto 0;
}

@media screen and (max-width: 768px) {
  .box_message {
    padding: 11.5vw 0 16.3vw;
    background: none;
  }
  .box_message .inner {
    width: 100%;
  }
  .box_message .head_message {
    margin: 8vw auto 0;
    font-size: 4.8vw;
    font-weight: bold;
    text-align: center;
    line-height: 1.7;
  }
  .box_message .text_message {
    margin: 1.6vw auto 0;
    font-size: 3.73333vw;
    line-height: 2.55;
  }
  .box_message .text_message p + p {
    margin: 9.5vw auto 0;
  }
  .box_message::before {
    content: '';
    display: block;
    width: 100%;
    height: 100vh;
    background: url(../img/top/message_bg_sp.jpg) no-repeat center top/cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

@media screen and (max-width: 768px) {
  .white_wrap {
    background: #fff;
  }
}

.box_brand {
  padding: 150px 0 130px;
  background: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 2.4;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .box_brand {
    padding: 20vw 0 18vw;
  }
  .box_brand .img {
    width: 62%;
    margin: 0 auto;
  }
  .box_brand .text_brand {
    margin: 4.5vw auto 0;
    font-size: 4vw;
    line-height: 2;
  }
}

.box_concept {
  margin-bottom: -60px;
  padding: 60px 0 200px;
  background: url(../img/common/bg_pattern.jpg) center top;
  position: relative;
}

@media screen and (min-width: 769px) {
  .box_concept::after {
    content: '';
    display: block;
    width: 100%;
    height: 80px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.box_concept .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.box_concept .inner .txt_att {
  margin: 133px 0 0;
  font-size: 13px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: -.08em;
}

.box_concept .inner .txt_att dd {
  padding: 5px 0 0 18px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .box_concept {
    margin-bottom: 0;
    padding: 11.5vw 0 15.5vw;
  }
  .box_concept .inner {
    display: block;
  }
  .box_concept .inner .txt_att {
    margin: 5.5vw 0 0;
    font-size: 3.2vw;
  }
  .box_concept .inner .txt_att dd {
    padding: 0.3vw 0 0 1em;
    line-height: 1.7;
  }
}

.box_concept .box_left {
  width: 550px;
}

.box_concept .box_left .tit_content {
  letter-spacing: .06em;
}

.box_concept .box_left .text_concept {
  margin: 30px 0 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .box_concept .box_left {
    width: 100%;
  }
  .box_concept .box_left .text_concept {
    margin: 7.8vw 0 0;
    font-size: 4.53333vw;
    text-align: center;
    line-height: 1.8;
  }
}

.box_concept .ul_concept {
  width: 650px;
  height: 633px;
  margin: 23px 0 0;
  position: relative;
}

.box_concept .ul_concept li {
  width: 270px;
  height: 270px;
  padding: 20px 0 0;
  position: absolute;
  border: 2px solid rgba(128, 89, 33, 0.4);
  border-radius: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.box_concept .ul_concept li dt {
  font-size: 18px;
  font-weight: bold;
  color: #805921;
}

.box_concept .ul_concept li dd {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.box_concept .ul_concept li dd span {
  font-size: 10px;
  position: relative;
  top: -4px;
  right: -1px;
}

.box_concept .ul_concept li dl {
  position: relative;
}

.box_concept .ul_concept li dl::before {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(../img/top/icon_heart.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}

.box_concept .ul_concept li.life {
  padding: 30px 0 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.box_concept .ul_concept li.quality {
  padding: 25px 0 0;
  top: 140px;
  right: 0;
  margin: auto;
}

.box_concept .ul_concept li.quality dl::before {
  background-image: url(../img/top/icon_quality.png);
}

.box_concept .ul_concept li.society {
  padding: 30px 0 0;
  bottom: 0;
  right: 70px;
}

.box_concept .ul_concept li.society dl::before {
  width: 38px;
  height: 40px;
  background-image: url(../img/top/icon_society.png);
  top: -50px;
}

.box_concept .ul_concept li.environment {
  padding: 56px 0 0;
  bottom: 0;
  left: 73px;
}

.box_concept .ul_concept li.environment dl::before {
  width: 36px;
  background-image: url(../img/top/icon_environment.png);
  top: -44px;
}

.box_concept .ul_concept li.health {
  padding: 25px 0 0;
  top: 140px;
  left: 0;
}

.box_concept .ul_concept li.health dl::before {
  width: 32px;
  height: 32px;
  background-image: url(../img/top/icon_health.png);
}

@media screen and (max-width: 768px) {
  .box_concept .ul_concept {
    width: 100%;
    height: 90vw;
    margin: 4vw 0 0;
  }
  .box_concept .ul_concept li {
    width: 38vw;
    height: 38vw;
  }
  .box_concept .ul_concept li dt {
    font-size: 3.2vw;
  }
  .box_concept .ul_concept li dd {
    margin: 1vw 0 0;
    font-size: 2.4vw;
    line-height: 1.3;
  }
  .box_concept .ul_concept li dd span {
    font-size: 1.6vw;
    top: -2px;
  }
  .box_concept .ul_concept li.life dl::before, .box_concept .ul_concept li.quality dl::before, .box_concept .ul_concept li.health dl::before {
    width: 4.4vw;
    height: 4.4vw;
    top: -4.8vw;
  }
  .box_concept .ul_concept li.life {
    padding: 4vw 0 0;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
  .box_concept .ul_concept li.quality {
    padding: 3vw 0 0;
    top: 20vw;
    right: 0;
    margin: auto;
  }
  .box_concept .ul_concept li.society {
    padding: 3vw 0 0;
    bottom: initial;
    top: 52vw;
    right: 10vw;
  }
  .box_concept .ul_concept li.society dl::before {
    width: 5.5vw;
    height: 5.5vw;
    top: -6vw;
  }
  .box_concept .ul_concept li.environment {
    padding: 5vw 0 0;
    bottom: initial;
    top: 52vw;
    left: 10vw;
  }
  .box_concept .ul_concept li.environment dl::before {
    width: 5.5vw;
    height: 5.5vw;
    top: -5vw;
  }
  .box_concept .ul_concept li.health {
    padding: 3vw 0 0;
    top: 20vw;
    left: 0;
  }
}

.box_products {
  width: 100%;
  margin: -80px auto 0;
  padding: 95px 0 90px;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.box_products #slide2 {
  width: 1120px;
  position: absolute;
  left: calc(100vw - 1110px);
}

@media screen and (max-width: 1700px) {
  .box_products #slide2 {
    left: 40vw;
  }
}

@media screen and (max-width: 1200px) {
  .box_products #slide2 {
    left: 450px;
  }
}

@media screen and (max-width: 768px) {
  .box_products #slide2 {
    width: 92%;
    margin: 27.6vw auto 0;
    left: initial;
    right: 0;
  }
}

.box_products #slide2 img {
  position: absolute;
  left: 0;
  top: 0;
}

.box_products .tit_content {
  font-size: 60px;
}

.box_products .box {
  width: 580px;
  margin: 70px 0 0;
  padding: 40px 40px 60px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 15px 15px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 15px 15px 15px 0px rgba(0, 0, 0, 0.1);
}

.box_products .box .tit {
  font-size: 24px;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: -.06em;
  line-height: 2;
}

.box_products .box .txt {
  margin: 25px 0 0;
  font-size: 15px;
  line-height: 2.4;
}

.box_products .box_wrap {
  margin: 170px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.box_products .box_wrap .box_left {
  width: 600px;
  padding: 17px 0 0 232px;
  background: url(../img/top/products_img02.jpg) no-repeat left top 20px;
}

.box_products .box_wrap .box_left .ul_check {
  margin: 20px 0 0;
}

.box_products .box_wrap .box_left .ul_check li {
  margin: 22px 0 0;
  padding: 0 0 0 20px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}

.box_products .box_wrap .box_left .ul_check li:first-child {
  margin: 0;
}

.box_products .box_wrap .box_left .ul_check li::before {
  content: '\f00c';
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  left: 0;
  color: #805921;
}

.box_products .box_wrap .box_left .ul_check + p {
  margin: 22px 0 0;
}

.box_products .box_wrap .ul_right {
  width: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.box_products .box_wrap .ul_right li {
  width: 175px;
  height: 120px;
  margin-left: 17px;
  background: #ebe8d8;
  color: #666;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  line-height: 2;
}

.box_products .box_wrap .ul_right li:first-child, .box_products .box_wrap .ul_right li:nth-child(4) {
  margin-left: 0;
}

.box_products .box_wrap .ul_right li:nth-child(n + 4) {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .box_products {
    margin: 0 auto;
    padding: 11vw 0 8vw;
  }
  .box_products .tit_content {
    font-size: 8vw;
  }
  .box_products .box {
    width: 95.3%;
    margin: 52vw 0 0;
    padding: 6vw 4% 5.4vw 0;
  }
  .box_products .box .tit {
    font-size: 4.53333vw;
    line-height: 1.8;
  }
  .box_products .box .txt {
    margin: 4vw 0 0;
    font-size: 3.73333vw;
    line-height: 2;
  }
  .box_products .box_wrap {
    margin: 3vw auto 0;
    display: block;
  }
  .box_products .box_wrap .box_left {
    width: 100%;
    padding: 4.4vw 0 0 33.7%;
    background: url(../img/top/products_img02.jpg) no-repeat left top 20px/30%;
  }
  .box_products .box_wrap .box_left p {
    font-size: 3.73333vw;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
  }
  .box_products .box_wrap .box_left .ul_check {
    margin: 2.2vw 0 0;
  }
  .box_products .box_wrap .box_left .ul_check li {
    margin: 2vw 0 0;
    padding: 0 0 0 1.2em;
    font-size: 4vw;
  }
  .box_products .box_wrap .box_left .ul_check + p {
    margin: 2vw 0 0;
  }
  .box_products .box_wrap .ul_right {
    width: 100%;
    margin: 6vw 0 0;
  }
  .box_products .box_wrap .ul_right li {
    width: 31.1%;
    height: 20vw;
    margin-left: 3.3%;
    font-size: 3.2vw;
    line-height: 1.6;
  }
  .box_products .box_wrap .ul_right li:nth-child(n + 4) {
    margin-top: 3vw;
  }
}

.box_detail {
  background: url(../img/common/bg_pattern.jpg) center top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.box_detail .box {
  padding: 70px 0 80px;
}

.box_detail .box.box_dog .inbox {
  width: 574px;
  padding: 56px 0 50px 256px;
  background: url(../img/top/detail_dog.png) no-repeat left top/193px;
}

@media screen and (max-width: 768px) {
  .box_detail .box.box_dog .inbox {
    width: 100%;
  }
}

.box_detail .box.box_cat .inbox {
  padding: 55px 0 50px 322px;
  background: url(../img/top/detail_cat.png) no-repeat left 50px top 13px/217px;
}

.box_detail .box .inbox > dl {
  width: 267px;
  font-size: 15px;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.box_detail .box .inbox > dl dt {
  color: #805921;
  font-weight: bold;
}

.box_detail .box .inbox > dl dt span {
  font-size: 27px;
  display: block;
}

.box_detail .box .inbox > dl dd {
  margin: 30px 0 0;
  line-height: 2;
  letter-spacing: .12em;
}

.box_detail .box .inbox > dl dd .btn {
  margin: 30px 0 0;
}

.box_detail .box .inbox > dl dd .btn a {
  width: 100%;
  padding: 15px 0 14px;
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #805921;
  letter-spacing: .2em;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  position: relative;
}

.box_detail .box .inbox > dl dd .btn a::after {
  content: '\f105';
  font-family: "FontAwesome";
  position: absolute;
  top: 10px;
  right: 17px;
  font-size: 18px;
}

.box_detail .box .inbox > dl dd .btn a:hover {
  background: #75501c;
  opacity: 1;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.box_detail .box .over_detail {
  width: 100%;
  height: 100%;
  padding: 60px 2.8%;
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1900px) {
  .box_detail .box .over_detail {
    padding: 4% 2.8%;
  }
}

@media screen and (max-width: 1700px) {
  .box_detail .box .over_detail {
    padding: 5% 2.8%;
  }
}

@media screen and (max-width: 1400px) {
  .box_detail .box .over_detail {
    padding: 6.5% 2.8%;
  }
}

@media screen and (max-width: 768px) {
  .box_detail .box .over_detail {
    display: none !important;
  }
}

.box_detail .box .over_detail .ul_detail {
  max-width: 960px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.box_detail .box .over_detail .ul_detail li {
  width: 21%;
}

.box_detail .box .over_detail .ul_detail li img {
  width: 90%;
}

.box_detail .box .over_detail .ul_detail li dl {
  margin: 14% auto 0;
  line-height: 1.3;
}

.box_detail .box .over_detail .ul_detail li dl dt {
  font-size: 15px;
  font-weight: bold;
}

.box_detail .box .over_detail .ul_detail li dl dd {
  margin: 7% auto 0;
  font-size: 13px;
}

.box_detail .box .over_detail.dog {
  width: 50vw;
}

.box_detail .box .over_detail.cat {
  width: calc(50vw - 15px);
  left: 0;
}

.box_detail .box .over_detail p {
  width: 98%;
  margin: 2vw auto 0;
  padding: 1.2% 0;
  border: 1px solid #fff;
  font-size: 15px;
}

@media screen and (max-width: 1500px) {
  .box_detail .box .over_detail .ul_detail li dl {
    margin: 20px auto 0;
  }
  .box_detail .box .over_detail .ul_detail li dl dd {
    margin: 2px auto 0;
  }
  .box_detail .box .over_detail p {
    margin: 46px auto 0;
    padding: 7px 0 6px;
  }
}

@media screen and (max-width: 1220px) {
  .box_detail .box .over_detail {
    padding: 100px 2.8%;
  }
  .box_detail .box .over_detail .ul_detail li dl {
    margin: 20px auto 0;
  }
  .box_detail .box .over_detail .ul_detail li dl dd {
    margin: 2px auto 0;
  }
  .box_detail .box .over_detail.dog, .box_detail .box .over_detail.cat {
    width: 600px;
  }
  .box_detail .box .over_detail.dog {
    left: 600px;
  }
  .box_detail .box .over_detail p {
    margin: 46px auto 0;
    padding: 7px 0 6px;
  }
}

@media screen and (max-width: 768px) {
  .box_detail {
    padding: 0;
  }
  .box_detail .box {
    width: 50%;
    padding: 0;
  }
  .box_detail .box.box_dog .inbox {
    padding: 5vw 0 9vw;
    background: url(../img/top/detail_dog.png) no-repeat center top 6vw/59%;
  }
  .box_detail .box.box_cat .inbox {
    padding: 5vw 0 9vw;
    background: url(../img/top/detail_cat.png) no-repeat center top 6vw/70%;
  }
  .box_detail .box .inbox {
    width: 100%;
    background: tan;
  }
  .box_detail .box .inbox > dl {
    width: 86%;
    margin: 59vw auto 0;
    font-size: 3.2vw;
    letter-spacing: 0;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
  }
  .box_detail .box .inbox > dl dt {
    color: #805921;
    font-weight: bold;
  }
  .box_detail .box .inbox > dl dt span {
    margin: .8vw 0 0;
    font-size: 4.53333vw;
    display: block;
  }
  .box_detail .box .inbox > dl dd {
    margin: 1.4vw 0 0;
    line-height: 1.8;
  }
  .box_detail .box .inbox > dl dd .btn {
    margin: 4.5vw 0 0;
  }
  .box_detail .box .inbox > dl dd .btn a {
    width: 100%;
    padding: 2vw 0 2vw;
    font-size: 3.73333vw;
  }
  .box_detail .box .inbox > dl dd .btn a::after {
    top: 1.2vw;
    right: 8px;
    font-size: 16px;
  }
}

.box_contact {
  margin: 30px auto 0;
  padding: 100px 0;
  background: #f8f8f8;
}

.box_contact .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.box_contact .box_form {
  margin: 0 0 0 90px;
}

.box_contact .box_form dt {
  width: 200px;
  padding: 35px 0;
  float: left;
  position: relative;
}

.box_contact .box_form dt span {
  padding: 2px 6px;
  font-size: 14px;
  color: #fff;
  background: #999;
  position: absolute;
  right: 0;
}

@media screen and (min-width: 769px) {
  .box_contact .box_form dt span {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.box_contact .box_form dt span.required {
  background: #d40d29;
}

.box_contact .box_form dd {
  padding: 15px 0 15px 230px;
}

.box_contact .mfp_err {
  margin: 6px 0 0 2px;
  color: #d40d29;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .box_contact {
    margin: 5vw auto 0;
    padding: 10vw 0;
  }
  .box_contact .inner {
    display: block;
  }
  .box_contact .box_form {
    margin: 0;
  }
  .box_contact .box_form dt {
    width: 100%;
    padding: 5vw 0 0;
    float: none;
    font-size: 3.73333vw;
  }
  .box_contact .box_form dt span {
    padding: .4em 6px;
    font-size: 2.93333vw;
    position: relative;
    left: .7em;
    bottom: .3em;
  }
  .box_contact .box_form dd {
    padding: 1vw 0 0;
  }
  .box_contact .box_form dd .error {
    margin: 2vw 0 0 1%;
    font-size: 3.73333vw;
  }
}

.box_contact input[type="text"],
.box_contact input[type="tel"],
.box_contact input[type="email"],
.box_contact textarea {
  background: #fff;
  font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
  border: none;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  .box_contact input[type="text"],
  .box_contact input[type="tel"],
  .box_contact input[type="email"],
  .box_contact textarea {
    width: 700px !important;
    padding: 20px 15px;
  }
}

@media screen and (max-width: 768px) {
  .box_contact input[type="text"],
  .box_contact input[type="tel"],
  .box_contact input[type="email"],
  .box_contact textarea {
    width: 100% !important;
    padding: 2vw 4%;
  }
}

@media screen and (min-width: 769px) {
  .box_contact textarea {
    height: 170px !important;
  }
}

@media screen and (max-width: 768px) {
  .box_contact textarea {
    height: 40vw;
  }
}

.box_contact ::-webkit-input-placeholder {
  color: #bbb;
  opacity: 1;
}

.box_contact :-moz-placeholder {
  color: #bbb;
}

.box_contact ::-moz-placeholder {
  color: #bbb;
  opacity: 1;
}

.box_contact :-ms-input-placeholder {
  color: #bbb;
}

.box_contact .box_btn {
  margin: 30px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.box_contact .box_btn .box_agree {
  margin: 30px 0 0;
  padding: 0 0 0 30px;
}

.box_contact .box_btn .box_agree a {
  color: #805921;
  text-decoration: underline;
}

.box_contact .box_btn .box_agree a:hover {
  text-decoration: none;
  cursor: pointer;
}

.box_contact .box_btn .box_agree input[type="checkbox"] {
  display: none;
}

.box_contact .box_btn .box_agree label.mfp_checked span,
.box_contact .box_btn .box_agree label.mfp_not_checked span {
  position: relative;
}

.box_contact .box_btn .box_agree label.mfp_checked span::before,
.box_contact .box_btn .box_agree label.mfp_not_checked span::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: 0;
  left: -30px;
  border: 1px solid #a2a2a2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 2px;
}

.box_contact .box_btn .box_agree label.mfp_checked span::before {
  content: "\f00c";
  padding: 0 0 0 1px;
  font-size: 18px;
  font-family: FontAwesome;
  color: #805921;
  line-height: 18px;
}

@media screen and (max-width: 768px) {
  .box_contact .box_btn {
    margin: 3vw auto 0;
    display: block;
  }
  .box_contact .box_btn .box_agree {
    margin: 0;
    padding: 0 0 0 1.8em;
    text-align: center;
  }
  .box_contact .box_btn .box_agree label {
    font-size: 3.73333vw;
  }
  .box_contact .box_btn .box_agree label span {
    position: relative;
  }
  .box_contact .box_btn .box_agree label span::before {
    top: -.1em;
  }
}

.box_contact .box_btn .box_submit {
  width: 270px;
  position: relative;
  position: relative;
}

.box_contact .box_btn .box_submit input[type="button"],
.box_contact .box_btn .box_submit input[type="submit"],
.box_contact .box_btn .box_submit button,
.box_contact .box_btn .box_submit a {
  width: 100%;
  padding: 30px 0;
  background: #805921;
  color: #fff;
  border: none;
  font-size: 18px;
  line-height: 1;
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
}

.box_contact .box_btn .box_submit input[type="button"]:hover,
.box_contact .box_btn .box_submit input[type="submit"]:hover,
.box_contact .box_btn .box_submit button:hover,
.box_contact .box_btn .box_submit a:hover {
  cursor: pointer;
  background-color: #75501c;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.box_contact .box_btn .box_submit::before {
  content: "\f105";
  padding: 0 0 0 1px;
  font-size: 18px;
  font-family: FontAwesome;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.box_contact .box_btn .box_submit button:disabled,
.box_contact .box_btn .box_submit input[type="submit"]:disabled {
  opacity: .7;
  pointer-events: none;
  cursor: not-allowed;
  /* 禁止カーソル */
}

@media screen and (max-width: 768px) {
  .box_contact .box_btn .box_submit input[type="button"],
  .box_contact .box_btn .box_submit input[type="submit"],
  .box_contact .box_btn .box_submit button,
  .box_contact .box_btn .box_submit a {
    padding: 5vw 0;
    font-size: 3.73333vw;
    -webkit-appearance: none;
    border-radius: 0;
  }
  .box_contact .box_btn .box_submit::before {
    right: 4%;
  }
}

@media screen and (max-width: 768px) {
  .box_contact .box_btn .box_submit {
    width: 80%;
    margin: 5vw auto 0;
  }
}

.box_contact.thanks {
  padding: 150px 0 120px;
}

.box_contact.thanks .box_form {
  width: 930px;
  padding: 30px 0 0;
}

@media screen and (max-width: 768px) {
  .box_contact.thanks {
    padding: 20vw 0;
    font-size: 3.73333vw;
  }
  .box_contact.thanks .box_form {
    width: 100%;
    padding: 10vw 0 0;
  }
}

.box_contact.confirm .box_btn .box_submit {
  width: 46%;
  margin: 0;
}

@media screen and (min-width: 769px) {
  .box_contact.thanks {
    min-height: 88vh;
  }
  .box_contact.thanks .box_btn {
    margin: 200px 0 0;
  }
}

@media screen and (max-width: 768px) {
  .box_contact.thanks {
    text-align: center;
  }
  .box_contact.thanks .box_btn {
    margin: 20vw 0 0;
  }
}

@media screen and (min-width: 769px) {
  footer.thanks {
    width: 100%;
    background: #fff;
    position: fixed;
    bottom: 0;
  }
}

footer + p {
  display: none !important;
}

.box_company {
  padding: 55px 0 80px;
}

.box_company .title {
  font-size: 18px;
}

.box_company .inner {
  width: 1000px;
  margin: 0 auto 0;
}

.box_company .inner .dl_company {
  margin: 13px 0 0;
  font-size: 15px;
  background: #f5f5f5;
  border-bottom: 1px solid #ccc;
}

.box_company .inner .dl_company, .box_company .inner .dl_company dt, .box_company .inner .dl_company dd {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.box_company .inner .dl_company dt, .box_company .inner .dl_company dd {
  padding: 13px 13px 0 30px;
  border-top: 1px solid #ccc;
}

.box_company .inner .dl_company dt {
  float: left;
  width: 240px;
  font-weight: 700;
}

.box_company .inner .dl_company dd {
  margin: 0 0 0 240px;
  padding-bottom: 15px;
  background: #fff;
}

.box_company .inner .dl_company dd a {
  color: #222;
  text-decoration: none;
}

.box_company .inner .dl_company dd::after {
  content: '';
  display: block;
  clear: both;
}

@media screen and (max-width: 768px) {
  .box_company {
    padding: 10vw 0 20vw;
  }
  .box_company .title {
    font-size: 4.53333vw;
  }
  .box_company .inner {
    width: 90%;
  }
  .box_company .inner .dl_company {
    margin: 2vw 0 0;
  }
  .box_company .inner .dl_company dt, .box_company .inner .dl_company dd {
    padding: 4vw 5% 0 4%;
    font-size: 3.73333vw;
  }
  .box_company .inner .dl_company dt {
    width: 30%;
  }
  .box_company .inner .dl_company dd {
    margin: 0 0 0 30%;
    padding-bottom: 4vw;
  }
}

footer .wrap_upper {
  display: none;
}

#mfp_hidden {
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
}

#mfp_hidden input {
  margin: 10px;
}

#mfp_confirm_table {
  width: 100%;
  margin: 20px auto 0;
  border-spacing: 0;
  border-collapse: collapse;
}

#mfp_confirm_table tr th,
#mfp_confirm_table tr td {
  text-align: left;
  font-size: 16px;
  padding: 20px 10px;
}

#mfp_confirm_table tr th {
  white-space: nowrap;
  width: 240px;
}

#mfp_confirm_table tr td {
  line-height: 1.5em;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  #mfp_confirm_table {
    margin: 0 auto;
  }
  #mfp_confirm_table tr th,
  #mfp_confirm_table tr td {
    display: block;
    font-size: 3.73333vw;
    padding: 0;
  }
  #mfp_confirm_table tr th {
    width: 100%;
    margin: .8rem 0 0;
  }
  #mfp_confirm_table tr td {
    margin: 0;
  }
}

#mfp_phase_confirm {
  clear: both;
}

#mfp_overlay {
  position: absolute;
  display: none;
  z-index: 10001;
}

#mfp_overlay_inner {
  width: 90%;
  max-width: 1000px;
  max-height: 90%;
  background: #fff;
  padding: 40px 30px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow-y: auto;
}

#mfp_overlay_inner h4 {
  margin: 0 0 0 10px;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  #mfp_overlay_inner {
    width: 90%;
    max-width: 100%;
    max-height: 90%;
    padding: 10vw 6%;
    margin: 0 auto;
  }
  #mfp_overlay_inner h4 {
    margin: 0;
    font-size: 4.8vw;
  }
}

#mfp_overlay_background {
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  display: none;
  z-index: 10000;
}

.mfp_buttons {
  width: 800px;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  position: relative;
}

.mfp_buttons input[type="button"],
.mfp_buttons input[type="submit"],
.mfp_buttons button,
.mfp_buttons a {
  width: 100%;
  padding: 30px 0;
  background: #805921;
  color: #fff;
  border: none;
  font-size: 18px;
  line-height: 1;
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
}

.mfp_buttons input[type="button"]:hover,
.mfp_buttons input[type="submit"]:hover,
.mfp_buttons button:hover,
.mfp_buttons a:hover {
  cursor: pointer;
  background-color: #75501c;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.mfp_buttons::before {
  content: "\f105";
  padding: 0 0 0 1px;
  font-size: 18px;
  font-family: FontAwesome;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mfp_buttons button:disabled,
.mfp_buttons input[type="submit"]:disabled {
  opacity: .7;
  pointer-events: none;
  cursor: not-allowed;
  /* 禁止カーソル */
}

@media screen and (max-width: 768px) {
  .mfp_buttons input[type="button"],
  .mfp_buttons input[type="submit"],
  .mfp_buttons button,
  .mfp_buttons a {
    padding: 5vw 0;
    font-size: 3.73333vw;
    -webkit-appearance: none;
    border-radius: 0;
  }
  .mfp_buttons::before {
    right: 4%;
  }
}

.mfp_buttons button {
  width: 290px;
}

@media screen and (max-width: 768px) {
  .mfp_buttons {
    width: 100%;
    margin: 8vw auto 0;
    display: block;
  }
  .mfp_buttons button {
    width: 100%;
  }
  .mfp_buttons::before {
    top: 7vw;
  }
  .mfp_buttons #mfp_button_cancel {
    margin: -4vw auto 0;
  }
}
