@charset "UTF-8";
.appear.up .item {
  transform: translateY(40px);
}

.appear.down .item {
  transform: translateY(-40px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear.zoom .item {
  transform: translateZ(40px);
}

.appear .item {
  transition: all 0.6s ease;
  transform: translate3d(0, 0, 0);
  opacity: 0;
}
.appear.inview .item {
  transform: none;
  opacity: 1;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 1.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 2.1s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 2.4s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 2.7s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 3s;
}

.scaleDown {
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s;
}
.scaleDown.inview {
  opacity: 1;
  transform: scale(1);
}

.fadein {
  opacity: 0;
  transition: all 0.4s 0.4s;
}
.fadein.inview {
  opacity: 1;
}

.rotate3D {
  opacity: 0;
  transform: scale(0) rotateY(0deg);
  transform-style: preserve-3d;
  transition: 0.8s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.rotate3D.inview {
  opacity: 1;
  transform: scale(1) rotateY(360deg);
}

.animate-txt .char {
  opacity: 0;
  transform: translateY(-10px);
}

.animate-txt.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-txt.inview .char:nth-child(1) {
  animation-delay: 0.54s;
}
.animate-txt.inview .char:nth-child(2) {
  animation-delay: 0.58s;
}
.animate-txt.inview .char:nth-child(3) {
  animation-delay: 0.62s;
}
.animate-txt.inview .char:nth-child(4) {
  animation-delay: 0.66s;
}
.animate-txt.inview .char:nth-child(5) {
  animation-delay: 0.7s;
}
.animate-txt.inview .char:nth-child(6) {
  animation-delay: 0.74s;
}
.animate-txt.inview .char:nth-child(7) {
  animation-delay: 0.78s;
}
.animate-txt.inview .char:nth-child(8) {
  animation-delay: 0.82s;
}
.animate-txt.inview .char:nth-child(9) {
  animation-delay: 0.86s;
}
.animate-txt.inview .char:nth-child(10) {
  animation-delay: 0.9s;
}
.animate-txt.inview .char:nth-child(11) {
  animation-delay: 0.94s;
}
.animate-txt.inview .char:nth-child(12) {
  animation-delay: 0.98s;
}
.animate-txt.inview .char:nth-child(13) {
  animation-delay: 1.02s;
}
.animate-txt.inview .char:nth-child(14) {
  animation-delay: 1.06s;
}
.animate-txt.inview .char:nth-child(15) {
  animation-delay: 1.1s;
}
.animate-txt.inview .char:nth-child(16) {
  animation-delay: 1.14s;
}
.animate-txt.inview .char:nth-child(17) {
  animation-delay: 1.18s;
}
.animate-txt.inview .char:nth-child(18) {
  animation-delay: 1.22s;
}
.animate-txt.inview .char:nth-child(19) {
  animation-delay: 1.26s;
}
.animate-txt.inview .char:nth-child(20) {
  animation-delay: 1.3s;
}
.animate-txt.inview .char:nth-child(21) {
  animation-delay: 1.34s;
}
.animate-txt.inview .char:nth-child(22) {
  animation-delay: 1.38s;
}
.animate-txt.inview .char:nth-child(23) {
  animation-delay: 1.42s;
}
.animate-txt.inview .char:nth-child(24) {
  animation-delay: 1.46s;
}
.animate-txt.inview .char:nth-child(25) {
  animation-delay: 1.5s;
}
.animate-txt.inview .char:nth-child(26) {
  animation-delay: 1.54s;
}
.animate-txt.inview .char:nth-child(27) {
  animation-delay: 1.58s;
}
.animate-txt.inview .char:nth-child(28) {
  animation-delay: 1.62s;
}
.animate-txt.inview .char:nth-child(29) {
  animation-delay: 1.66s;
}
.animate-txt.inview .char:nth-child(30) {
  animation-delay: 1.7s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

* {
  transition-property: all;
  transition-duration: 0.3s;
}

html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}

body {
  font-weight: 400;
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  font-family: "Noto Sans JP", sans-serif;
  color: #282300;
  background: #FFF;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
}

#loading {
  transition: all 1s;
  /*ローディングにかかる時間*/
  background-color: white;
  z-index: 999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.spin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  border-top-color: #78C800;
  border-right-color: #78C800;
  border-bottom-color: #78C800;
  animation: spin 0.6s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  transition: 0.3s all;
}

a img {
  transition: 0.3s;
}

a img:hover {
  opacity: 0.7;
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.lg-inner {
  width: min(1080px, 90%);
  margin: 0 auto;
}

.inner {
  width: min(1080px, 90%);
  margin: 0 auto;
  text-align: center;
}

.flex {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

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

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

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}
.mv {
  position: relative;
  z-index: 1;
  padding: 0 0;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .mv {
    aspect-ratio: auto;
  }
}

.mv img.item {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .mv img.item {
    width: 120%;
    max-width: none;
    margin-left: -10%;
  }
}

/* ボタン */
.mv__btn {
  position: absolute;
  left: 50%;
  bottom: 5.5%;
  transform: translateX(-50%);
  display: block;
  width: min(40vw, 550px);
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .mv__btn {
    width: 70vw;
    bottom: 2%;
  }
}

.mv__btn:hover {
  transform: translateX(-50%) scale(1.04);
}

.mv__btn img {
  display: block;
  width: 100%;
  height: auto;
}

.catch {
  position: absolute;
  top: 15%;
  left: 55%;
  transform: translateX(-55%);
}

.catch img {
  width: 200px;
}

.name {
  position: absolute;
  top: 30%;
}
@media screen and (max-width: 960px) {
  .name {
    position: static;
  }
}
.name img {
  width: 400px;
}
@media screen and (max-width: 960px) {
  .name img {
    margin: 0 auto;
    width: 360px;
  }
}
@media screen and (max-width: 600px) {
  .name img {
    width: 260px;
  }
}

#intro {
  padding: 80px 0 80px;
}
@media screen and (max-width: 960px) {
  #intro {
    padding: 50px 0;
  }
}

.intro-box {
  margin: 0 auto;
  width: 660px;
}
@media screen and (max-width: 960px) {
  .intro-box {
    width: 90%;
  }
}

.intro-box h2 {
  font-size: clamp(2rem, 1.631rem + 1.64vw, 3.6rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  color: #78C800;
}

.intro-box p {
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}

#special_price {
  background: url("../images/spprice_rays.png") no-repeat top center/100% auto, #78C800;
  width: 100%;
  overflow: hidden;
}

#special_price .inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 80px 0px 120px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #special_price .inner {
    width: 90%;
    padding: 40px 0px 80px;
  }
}
@media screen and (max-width: 600px) {
  #special_price .inner {
    padding: 20px 0px 40px;
  }
}

.sale-visual__title {
  margin: 0 auto 22px;
}
@media screen and (max-width: 960px) {
  .sale-visual__title {
    margin: 0 auto 10px;
  }
}

.sale-visual__title img {
  display: block;
  width: min(100%, 1000px);
  height: auto;
  margin: 0 auto;
}

.sale-visual__period {
  margin: 0 auto 10px;
}

.sale-visual__period img {
  display: block;
  width: min(100%, 880px);
  height: auto;
  margin: 0 auto;
}

.sale-visual__note {
  margin: 0 0 30px;
  font-size: clamp(0.8rem, 0.68rem + 0.6vw, 1.4rem);
  line-height: 1.6;
  font-weight: 500;
}

.sale-benefits__item {
  margin: 0 0 48px;
}
@media screen and (max-width: 960px) {
  .sale-benefits__item {
    margin: 0 0 30px;
  }
}

.sale-benefits__item:last-child {
  margin-bottom: 0;
}

.sale-benefits__item img {
  display: block;
  height: auto;
  width: min(100%, 1000px);
  margin: 0 auto;
}

.fishing-price,
.pets-price {
  width: 100%;
  background: #FFFF01;
}

.fishing-price__head, .pets-price__head {
  width: 100%;
  background: #000;
  text-align: center;
  padding: 30px 0 20px;
  color: #fff;
}

.fishing-price__label, .pets-price__label {
  margin: 0;
  font-size: clamp(3.5rem, 2.68rem + 4.1vw, 7.6rem);
  line-height: 0.8;
  font-weight: 800;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
}

.fishing-price__head span, .pets-price__head span {
  display: block;
  font-size: clamp(1.2rem, 0.96rem + 1.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.fishing-price__visual {
  width: 100%;
  min-height: 60vh;
  background: url("../images/fishing_bg.png") no-repeat center top/cover;
  position: relative;
}
@media screen and (max-width: 600px) {
  .fishing-price__visual {
    min-height: 30vh;
  }
}

.fishing-price__visual-inner {
  width: min(100%, 1000px);
  margin: 0 auto;
  min-height: 60vh;
  position: relative;
}
@media screen and (max-width: 600px) {
  .fishing-price__visual-inner {
    min-height: 30vh;
  }
}

.fishing-price__catch {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  display: block;
  width: min(120vh, 1000px);
}
@media screen and (max-width: 600px) {
  .fishing-price__catch {
    width: 80%;
    left: 50%;
    bottom: 10%;
  }
}

.pets-price {
  position: relative;
  width: 100%;
  overflow: visible;
  background: #ffff00;
}

.pets-price__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 600px;
  background: url("../images/pets_bg.png") no-repeat center center/cover;
  overflow: visible;
}
@media screen and (max-width: 960px) {
  .pets-price__visual {
    height: 500px;
  }
}
@media screen and (max-width: 600px) {
  .pets-price__visual {
    height: 360px;
    background-position: center center;
  }
}
@media screen and (max-width: 480px) {
  .pets-price__visual {
    height: 250px;
  }
}

.pets-price__visual-inner {
  position: relative;
  width: min(100%, 1200px);
  height: 100%;
  margin: 0 auto;
}

.pets-price__catch {
  position: absolute;
  left: 50%;
  bottom: -25%;
  transform: translateX(-50%);
  display: block;
  width: min(76vw, 1000px);
  height: auto;
  z-index: 3;
}
@media screen and (max-width: 960px) {
  .pets-price__catch {
    width: min(82vw, 800px);
    bottom: -15%;
  }
}
@media screen and (max-width: 600px) {
  .pets-price__catch {
    width: 92vw;
    bottom: -10%;
  }
}

.pets-price__yellow {
  position: relative;
  z-index: 0;
  height: 300px;
  background: #ffff00;
}
@media screen and (max-width: 960px) {
  .pets-price__yellow {
    height: 260px;
  }
}
@media screen and (max-width: 600px) {
  .pets-price__yellow {
    height: 180px;
  }
}
@media screen and (max-width: 480px) {
  .pets-price__yellow {
    height: 66px;
  }
}

.fishing-price__body {
  width: 100%;
  padding: 0 0 40px;
}
@media screen and (max-width: 960px) {
  .fishing-price__body {
    padding: 0 0 20px;
  }
}

.fishing-price__body-inner {
  width: min(100%, 1130px);
  margin: 0 auto;
  padding: 50px 65px 70px;
  background: #fff;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  .fishing-price__body-inner {
    width: 90%;
    padding: 30px 30px 40px;
  }
}
@media screen and (max-width: 480px) {
  .fishing-price__body-inner {
    width: 90%;
    padding: 20px 15px;
  }
}

.fishing-price__body--overlap .fishing-price__body-inner {
  margin: -150px auto 0;
}
@media screen and (max-width: 600px) {
  .fishing-price__body--overlap .fishing-price__body-inner {
    margin: -50px auto 0;
  }
}

.fishing-price__title {
  text-align: center;
  font-size: clamp(2rem, 1.44rem + 2.8vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.fishing-price__title-main {
  color: #78C800;
}

.fishing-price__title-sub {
  color: #282300;
}

.fishing-price__limited {
  display: inline-block;
  width: 140px;
  height: auto;
  flex-shrink: 0;
  vertical-align: middle;
  margin-left: 10px;
}
@media screen and (max-width: 960px) {
  .fishing-price__limited {
    width: 90px;
    margin-top: 5px;
    margin-left: 5px;
  }
}

.fishing-price__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin: 40px 0 0;
}
@media screen and (max-width: 960px) {
  .fishing-price__items {
    gap: 25px;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .fishing-price__items {
    gap: 12px;
    margin: 16px 0 0;
  }
}

.fishing-price__items img {
  display: block;
  width: 100%;
  height: auto;
}

.fishing-price__lead {
  margin: 24px 0 0;
  text-align: center;
  font-size: clamp(1.2rem, 0.88rem + 1.6vw, 2.8rem);
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .fishing-price__lead {
    margin: 12px 0 0;
  }
}

.fishing-price__att {
  margin: 0px auto 70px;
  text-align: center;
  font-size: clamp(0.8rem, 0.66rem + 0.7vw, 1.5rem);
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .fishing-price__att {
    width: 90%;
  }
}

.fishing-banners {
  position: relative;
  width: 100%;
  padding: 46px 0 70px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .fishing-banners {
    padding: 0px 0 70px;
  }
}

.fishing-banners__inner {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 0 0px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .fishing-banners__inner {
    width: 90%;
  }
}

.fishing-banners__item {
  margin-bottom: 34px;
}
@media screen and (max-width: 960px) {
  .fishing-banners__item {
    margin-bottom: 20px;
  }
}

.fishing-banners__item:last-child {
  margin-bottom: 0;
}

.fishing-banners__item img {
  display: block;
  width: 100%;
  height: auto;
}

.fishing-banners__balloon {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  height: auto;
}

.fishing-banners__balloon--left {
  left: 5%;
  top: 14px;
  width: min(235px, 18vw);
}
@media screen and (max-width: 960px) {
  .fishing-banners__balloon--left {
    left: 0%;
    top: 20px;
  }
}

.fishing-banners__balloon--right {
  right: 5%;
  top: 360px;
  width: min(250px, 18vw);
}
@media screen and (max-width: 960px) {
  .fishing-banners__balloon--right {
    right: 0%;
    top: 300px;
  }
}

.fishing-event,
.pets-event {
  position: relative;
  width: 100%;
  background: #F8FADF;
  padding: 90px 0 150px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .fishing-event,
  .pets-event {
    padding: 60px 0 120px;
  }
}
@media screen and (max-width: 480px) {
  .fishing-event,
  .pets-event {
    padding: 40px 0 80px;
  }
}

.fishing-event__inner,
.pets-event__inner,
.pets-kinder__inner,
.pets-trim__inner {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .fishing-event__inner,
  .pets-event__inner,
  .pets-kinder__inner,
  .pets-trim__inner {
    width: 90%;
  }
}

.fishing-event__title,
.pets-event__title {
  margin: 0 auto 40px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .fishing-event__title,
  .pets-event__title {
    width: 80%;
    margin: 0 auto 20px;
  }
}

.fishing-event__title img,
.pets-event__title img {
  display: block;
  width: min(100%, 666px);
  height: auto;
  margin: 0 auto;
}

.fishing-event__banner {
  width: min(100%, 1000px);
  margin: 0 auto;
}

.fishing-event__banner img {
  display: block;
  width: 100%;
  height: auto;
}

.fishing-event__balloon {
  position: absolute;
  left: 4%;
  top: 130px;
  width: min(235px, 18vw);
  height: auto;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .fishing-event__balloon {
    left: 0%;
    top: 40px;
  }
}

.pets-event__banner {
  margin-bottom: 34px;
}
@media screen and (max-width: 960px) {
  .pets-event__banner {
    margin-bottom: 20px;
  }
}

.pets-event__banner:last-child {
  margin-bottom: 0;
}

.pets-event__banner img {
  display: block;
  width: 100%;
  height: auto;
}

.pets-event__balloon {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  height: auto;
}

.pets-event__balloon1 {
  left: 5%;
  top: 10px;
  width: min(235px, 18vw);
}
@media screen and (max-width: 960px) {
  .pets-event__balloon1 {
    left: 0%;
    top: 10px;
  }
}

.pets-event__balloon2 {
  left: 3%;
  top: 1200px;
  width: min(235px, 18vw);
}
@media screen and (max-width: 960px) {
  .pets-event__balloon2 {
    left: 0%;
    top: 600px;
  }
}

.pets-event__balloon3 {
  right: 3%;
  top: 560px;
  width: min(250px, 18vw);
}
@media screen and (max-width: 960px) {
  .pets-event__balloon3 {
    right: 0%;
    top: 300px;
  }
}

.pets-event_att {
  margin: 0px 0 50px;
  text-align: right;
  font-size: clamp(0.8rem, 0.66rem + 0.7vw, 1.5rem);
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .pets-event_att {
    margin: 0px 0 0px;
  }
}

.pets-kinder {
  position: relative;
  width: 100%;
  background: #F9EAFA;
  padding: 90px 0 150px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .pets-kinder {
    padding: 50px 0 80px;
  }
}
@media screen and (max-width: 480px) {
  .pets-kinder {
    padding: 25px 0 40px;
  }
}

.pets-kinder__title {
  margin: 0 auto 5px;
  text-align: center;
}

.pets-kinder__title img {
  display: block;
  width: min(30%, 150px);
  height: auto;
  margin: 0 auto;
}

.pets-kinder__title2 {
  text-align: center;
  margin: 0 auto 40px;
  font-size: clamp(2rem, 1.6rem + 2vw, 4rem);
  font-weight: 800;
}
@media screen and (max-width: 960px) {
  .pets-kinder__title2 {
    margin: 0 auto 20px;
  }
}

.pets-kinder__banner {
  margin-bottom: 34px;
}
@media screen and (max-width: 960px) {
  .pets-kinder__banner {
    margin-bottom: 20px;
  }
}

.pets-kinder__banner:last-child {
  margin-bottom: 0;
}

.pets-kinder__banner img {
  display: block;
  width: 100%;
  height: auto;
}

.pets-kinder__balloon {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  height: auto;
}

.pets-kinder__balloon1 {
  left: 3%;
  top: 666px;
  width: min(235px, 18vw);
}
@media screen and (max-width: 960px) {
  .pets-kinder__balloon1 {
    left: 0%;
    top: 333px;
  }
}

.pets-kinder__balloon3 {
  right: 3%;
  top: 66px;
  width: min(250px, 18vw);
}
@media screen and (max-width: 960px) {
  .pets-kinder__balloon3 {
    right: 0%;
    top: 33px;
  }
}

.pets-kinder__contact {
  font-size: clamp(1.6rem, 1.28rem + 1.6vw, 3.2rem);
  text-align: center;
  font-weight: 700;
}

.pets-kinder__contact_b1 {
  color: #F7A2C6;
}

.pets-kinder__contact_b2 {
  font-size: clamp(1.2rem, 0.96rem + 1.2vw, 2.4rem);
  font-weight: 400;
}

.pets-trim {
  position: relative;
  width: 100%;
  background: #EDEAD9;
  padding: 90px 0 150px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .pets-trim {
    padding: 50px 0 80px;
  }
}
@media screen and (max-width: 480px) {
  .pets-trim {
    padding: 25px 0 40px;
  }
}

.pets-trim__title {
  margin: 0 auto 5px;
  text-align: center;
}

.pets-trim__title img {
  display: block;
  width: 468px;
  height: auto;
  margin: 0 auto 60px;
}
@media screen and (max-width: 600px) {
  .pets-trim__title img {
    margin: 0 auto 30px;
    width: 300px;
  }
}

.pets-trim__banner {
  margin-bottom: 34px;
}
@media screen and (max-width: 960px) {
  .pets-trim__banner {
    margin-bottom: 20px;
  }
}

.pets-trim__banner:last-child {
  margin-bottom: 0;
}

.pets-trim__banner img {
  display: block;
  width: 100%;
  height: auto;
}

.pets-trim__balloon {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  height: auto;
}

.pets-trim__balloon1 {
  left: 3%;
  top: 666px;
  width: min(235px, 18vw);
}

.pets-trim__balloon3 {
  right: 3%;
  top: 66px;
  width: min(250px, 18vw);
}

.pets-trim__contact_b1 {
  color: #5C531A;
}

.open-sale {
  width: 100%;
  overflow: hidden;
}

/* 上画像 */
.open-sale__photo {
  width: 100%;
}

.open-sale__photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* 下グリーン背景 */
.open-sale__main {
  width: 100%;
  background-image: url("../images/open_sale_green_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.open-sale__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 46px 24px 52px;
  box-sizing: border-box;
  text-align: center;
}

.open-sale__copy {
  margin: 0;
}

.open-sale__copy img {
  display: block;
  width: min(100%, 780px);
  height: auto;
  margin: 0 auto;
}

/* SPあとでけす */
@media (max-width: 768px) {
  .open-sale__photo img {
    width: 100%;
  }
  .open-sale__inner {
    padding: 34px 20px 40px;
  }
  .open-sale__copy img {
    width: min(100%, 520px);
  }
}
/* 風船共通 */
.balloon_anim {
  animation: balloonFloat 3.2s ease-in-out infinite;
  transform-origin: center bottom;
}

/* 少しタイミングをずらしたい場合 */
.balloon_anim:nth-child(2) {
  animation-delay: 0.4s;
}

.balloon_anim:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes balloonFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}
.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

header {
  max-width: 1400px;
  width: 100%;
  padding: 20px 35px 0 35px;
  height: 90px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  header {
    height: 60px;
  }
}
@media screen and (max-width: 600px) {
  header {
    padding: 15px 20px 0;
  }
}

.logo {
  width: 138px;
}
@media screen and (max-width: 960px) {
  .logo {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  .logo {
    width: 100px;
  }
}

.footer {
  background: #d7efb3;
  color: #282300;
  text-align: center;
  padding: 120px 0 60px;
}
.footer a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 960px) {
  .footer {
    padding: 80px 0 40px;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 40px 0 20px;
  }
}

.foot_logo {
  width: 100%;
  margin: 0 auto;
}

.foot_logo img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .foot_logo img {
    max-width: 160px;
  }
}
@media screen and (max-width: 600px) {
  .foot_logo img {
    max-width: 120px;
  }
}

.backtotop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 80px;
  height: 80px;
  z-index: 500;
}
@media screen and (max-width: 480px) {
  .backtotop {
    width: 60px;
    height: 60px;
  }
}
.backtotop a {
  transition: 0.5s all;
}
.backtotop a:hover {
  opacity: 0.5;
}
.backtotop a img {
  width: 100%;
}

.backtotop a {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #78C800;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50px;
  transition: 0.3s all;
}
.backtotop a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  border: 3px solid white;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
.backtotop a:hover {
  opacity: 0.5;
}

.copy {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 100px;
  font-size: clamp(1.1rem, 1.04rem + 0.3vw, 1.4rem);
}

.foot_txt {
  margin: 66px 0;
  font-size: clamp(1.1rem, 0.88rem + 1.1vw, 2.2rem);
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .foot_txt {
    margin: 33px 0;
  }
}

.foot_txt2 {
  font-size: clamp(0.9rem, 0.72rem + 0.9vw, 1.8rem);
  line-height: 1.5;
  margin: 0 0 80px;
}
@media screen and (max-width: 600px) {
  .foot_txt2 {
    margin: 0 0 40px;
  }
}

.foot__banner {
  margin-bottom: 34px;
}
@media screen and (max-width: 960px) {
  .foot__banner {
    margin-bottom: 20px;
  }
}

.foot__banner:last-child {
  margin-bottom: 0;
}

.foot__banner img {
  display: block;
  width: 675px;
  height: auto;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */