@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: clamp(14px, 4.27vw, 16px);
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: clamp(14px, 1.3333333333vw, 16px);
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #4d4d4d;
}
@media screen and (max-width: 750px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 750px) {
  .l-inner {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

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

point02(猫ちゃん)

*******************************/
.c-accordion-001 {
  width: 94%;
  justify-self: center;
  margin-inline: auto;
  border-radius: 0.875rem;
  background-color: #f8eff5;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 750px) {
  .c-accordion-001 {
    margin-bottom: 3vw;
  }
}

.c-accordion-002 {
  background-color: #e5f5e9;
}
.c-accordion__title {
  position: relative;
  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;
  padding: 0.6875rem 2rem;
  border-radius: 0.875rem;
  background-color: #d380b3;
  color: #fff;
  font-weight: bold;
  font-size: 1.625rem;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .c-accordion__title {
    font-size: 4vw;
    padding: 2vw 2vw;
  }
}

.c-accordion__title::-webkit-details-marker {
  display: none;
}

.c-accordion__title::after {
  content: "＋";
  position: absolute;
  right: 1.75rem;
  font-size: 2rem;
  color: #fff;
  transition: transform 0.3s;
}
@media screen and (max-width: 750px) {
  .c-accordion__title::after {
    font-size: 4vw;
  }
}

/* アコーディオンが開いたときは−マークに変更 */
.c-accordion-001[open] .c-accordion__title::after {
  position: absolute;
  content: "−";
  right: 1.75rem;
  color: #fff;
  /* background: #fff; */
  /* width: 1.25rem;
  height: 0.1875rem; */
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 750px) {
  .c-accordion-001[open] .c-accordion__title::after {
    right: 6%;
    font-size: 5vw;
    /* width: 4vw;
    height: 0.5vw; */
  }
}

.c-accordion__item01 {
  width: 95%;
  justify-self: center;
  margin-top: 2rem;
}
@media screen and (max-width: 750px) {
  .c-accordion__item01 {
    width: 86%;
    margin-top: 4vw;
    margin-inline: auto;
  }
}

.c-accordion__item01 img {
  aspect-ratio: 734/140;
}
@media screen and (max-width: 750px) {
  .c-accordion__item01 img {
    aspect-ratio: 458/299;
  }
}

.c-accordion__content-wrapper {
  text-align: center;
  justify-self: center;
}
.c-accordion__content-title {
  display: inline-block;
  font-size: 1.375rem;
  font-weight: bold;
  color: #fff;
  background: #d380b3;
  padding: 0.3125rem 2.75rem;
  border-radius: 1.5rem;
  margin-top: 1.875rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 750px) {
  .c-accordion__content-title {
    font-size: 3.5vw;
    padding: 0.8vw 7vw;
  }
}

.c-accordion__content-text-wrapper {
  text-align: left;
  padding: 0rem 3.125rem;
}
@media screen and (max-width: 750px) {
  .c-accordion__content-text-wrapper {
    padding-left: 9vw;
    padding-right: 5vw;
  }
}

.c-accordion__movie-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
@media screen and (max-width: 750px) {
  .c-accordion__movie-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.c-accordion__movie {
  width: 40%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 750px) {
  .c-accordion__movie {
    width: 87%;
  }
}

.c-accordion__movie-title {
  display: inline-block;
  color: #5e5e5e;
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 750px) {
  .c-accordion__movie-title {
    font-size: 4vw;
  }
}

.c-accordion__movie video {
  width: 100%;
  border-radius: 0.875rem;
  aspect-ratio: 1/1;
  margin-bottom: 0.625rem;
  display: inline-block;
  vertical-align: baseline;
}
@media screen and (max-width: 750px) {
  .c-accordion__movie video {
    width: 74%;
  }
}

.c-accordion__movie ul {
  text-align: left;
  margin-left: 1.5rem;
}
.c-accordion__text {
  position: relative;
  display: inline-block;
  font-size: 1.125rem;
  color: #4d4d4d;
  margin-bottom: 0.625rem;
  -webkit-transform: translateY(-0.625rem);
  transform: translateY(-0.625rem);
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
@media screen and (max-width: 750px) {
  .c-accordion__text {
    font-size: 3.5vw;
    margin-bottom: 3vw;
  }
}

.c-accordion-001[open] p {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}
.c-accordion__text::before {
  position: absolute;
  content: "";
  top: 0.4375rem;
  left: -1.25rem;
  background: #d380b3;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 100%;
}
@media screen and (max-width: 750px) {
  .c-accordion__text::before {
    width: 2.5vw;
    height: 2.5vw;
  }
}

.c-accordion__item02 {
  width: 92%;
  justify-self: center;
  margin-inline: auto;
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .c-accordion__item02 {
    margin-top: 5vw;
  }
}

.c-accordion__item02 img {
  aspect-ratio: 734/337;
}
@media screen and (max-width: 750px) {
  .c-accordion__item02 img {
    aspect-ratio: 458/809;
  }
}

.c-accordion-001[open],
.c-accordion-002[open] {
  padding-bottom: 2.5rem;
}
/******************************

voice(飼い主様の声)swiperカード

*******************************/
/* スライド共通のスタイル */
.c-card__image img {
  opacity: 0.3; /* 左右のスライドを薄くする */
  -webkit-transform: scale(0.8);
  transform: scale(0.8); /* 左右のスライドを小さくする */
  -webkit-transition: 0.7s;
  transition: 0.7s; /* ゆっくり小さくさせる */
}
/* アクティブなスライドのスタイル */
.splide__slide.is-active img {
  opacity: 1; /* 中央のスライドは薄くしない */
  -webkit-transform: scale(1);
  transform: scale(1); /* 中央のスライドは小さくしない */
  z-index: 1; /* 中央のスライドを一番上にする */
}
/* 左右それぞれの位置を調整 */
.splide__arrow--prev {
  left: 10%; /* 中央に近づけたい場合は数値を小さく */
}
.splide__arrow--next {
  right: 10%; /* 中央に近づけたい場合は数値を小さく */
}
@media screen and (max-width: 750px) {
  .c-card__image {
    width: 80%;
    margin-inline: auto;
  }
}

.c-card__image img {
  aspect-ratio: 601/757;
}
.splide__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  width: 5rem;
  height: 1.875rem;
  font-size: 2.375rem;
  color: #f1f9a6;
  background: none !important;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
}
@media screen and (max-width: 750px) {
  .splide__arrow {
    font-size: 6vw;
  }
}

/* 左右の位置を調整（中央に近づけたい場合は数値を小さく） */
.splide-arrow--prev {
  left: 29%;
}
@media screen and (max-width: 750px) {
  .splide-arrow--prev {
    left: 1%;
  }
}

.splide-arrow--next {
  right: 29%;
}
@media screen and (max-width: 750px) {
  .splide-arrow--next {
    right: 1%;
  }
}

/* レイアウトの為のスタイル */
.c-card__wrapper {
  width: 100%;
  margin-inline: auto;
  margin-top: 4.375rem;
}
@media screen and (max-width: 750px) {
  .c-card__wrapper {
    margin-top: 6vw;
  }
}

.c-card__text-bottom {
  font-size: 1.75rem;
  color: #fff;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 750px) {
  .c-card__text-bottom {
    font-size: 3.5vw;
  }
}

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

accuracy(高精度です)

*******************************/
.p-accuracy__content-image {
  width: 100%;
}
.p-accuracy__content-image img {
  aspect-ratio: 1440/805;
}
@media screen and (max-width: 750px) {
  .p-accuracy__content-image img {
    aspect-ratio: 750/985;
  }
}

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

  achievements(たくさんの施設で導入)

*******************************/
.p-achievements__content-image {
  position: relative;
  z-index: 0;
  margin-top: -3.125rem;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-achievements__content-image {
    margin-top: -11vw;
  }
}

.p-achievements__content-image img {
  aspect-ratio: 1440/2118;
}
@media screen and (max-width: 750px) {
  .p-achievements__content-image img {
    aspect-ratio: 750/1987;
  }
}

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

basis(線虫検査を採用)

*******************************/
.p-basis {
  background-image: url(../images/6__basis/basis__bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  padding-block: 6.25rem 3.125rem;
}
@media screen and (max-width: 750px) {
  .p-basis {
    padding-block: 18vw 2vw;
  }
}

.p-basis__wrapper {
  display: grid;
}
.p-basis__title-image {
  width: 66%;
  justify-self: center;
}
@media screen and (max-width: 1024px) {
  .p-basis__title-image {
    width: 52%;
  }
}
@media screen and (max-width: 750px) {
  .p-basis__title-image {
    width: 100%;
  }
}

.p-basis__title-image img {
  aspect-ratio: 624/279;
}
@media screen and (max-width: 750px) {
  .p-basis__title-image img {
    aspect-ratio: 624/292;
  }
}

.p-basis__gif {
  width: 70%;
  justify-self: center;
  margin-top: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-basis__gif {
    width: 52%;
  }
}
@media screen and (max-width: 750px) {
  .p-basis__gif {
    width: 100%;
    margin-top: 5vw;
  }
}

.p-basis__gif img {
  aspect-ratio: 1000/460;
}
.p-basis__item-image {
  width: 100%;
  justify-self: center;
}
@media screen and (max-width: 1024px) {
  .p-basis__item-image {
    width: 74%;
  }
}
@media screen and (max-width: 750px) {
  .p-basis__item-image {
    width: 100%;
  }
}

.p-basis__item-image img {
  aspect-ratio: 961/699;
}
@media screen and (max-width: 750px) {
  .p-basis__item-image img {
    aspect-ratio: 747/1579;
  }
}
/******************************

check(自宅で調べられる(cta))

*******************************/
.p-check {
  position: relative;
  z-index: 3;
  background-image: url(../images/5__check/check__bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  margin-top: -7%;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 750px) {
  .p-check {
    background-image: url(../images/5__check/check__bg-sp.png);
    margin-top: -13%;
  }
}

.p-check__content-image-top {
  position: relative;
  z-index: 3;
  top: -1rem;
  width: 100%;
}
.p-check__content-image-top img {
  aspect-ratio: 1440/1262;
}
@media screen and (max-width: 750px) {
  .p-check__content-image-top img {
    aspect-ratio: 750/1717;
  }
}

.p-check__wrapper {
  display: grid;
}
@media screen and (max-width: 750px) {
  .p-check__wrapper {
    padding-inline: 0;
  }
}

.p-check__content-image-bottom {
  width: 92%;
  justify-self: center;
  margin-top: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .p-check__content-image-bottom {
    width: 65%;
    margin-top: 6vw;
  }
}
@media screen and (max-width: 750px) {
  .p-check__content-image-bottom {
    width: 93%;
    margin-top: 3vw;
  }
}

.p-check__content-image-bottom img {
  aspect-ratio: 874/576;
}
@media screen and (max-width: 750px) {
  .p-check__content-image-bottom img {
    aspect-ratio: 690/600;
  }
}

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

cta(自宅で調べられる(cta))

*******************************/
.c-cta__wrapper {
  position: relative;
}
.c-cta__wrapper2 {
  position: absolute;
  content: "";
  z-index: 3;
  top: 27%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c-cta__content-image {
  width: 100%;
  justify-self: center;
  margin-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .c-cta__content-image {
    width: 70%;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 750px) {
  .c-cta__content-image {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .c-cta__content-image2 {
    width: 70%;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 750px) {
  .c-cta__content-image2 {
    width: 100%;
    margin-top: 32vw;
  }
}

.c-cta__content-image img {
  aspect-ratio: 990/822;
}
@media screen and (max-width: 750px) {
  .c-cta__content-image img {
    aspect-ratio: 750/1018;
  }
}

.c-cta__btn-image {
  position: absolute;
  bottom: 7%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 53%;
}
@media screen and (max-width: 1024px) {
  .c-cta__btn-image {
    width: 40%;
    bottom: 7%;
  }
}
@media screen and (max-width: 750px) {
  .c-cta__btn-image {
    width: 84%;
    bottom: 4%;
  }
}

.c-cta__btn-image img {
  aspect-ratio: 521/182;
  aspect-ratio: 544/134;
  -webkit-animation: boing 1.8s ease-in-out infinite;
  animation: boing 1.8s ease-in-out infinite; /* ← アニメーション追加 */
  -webkit-transform-origin: center;
  transform-origin: center;
}
@media screen and (max-width: 750px) {
  .c-cta__btn-image img {
    aspect-ratio: 671/216;
  }
}

.c-cta__btn-link {
  cursor: pointer;
}

.c-cta__btn-link:hover img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 750px) {
  .c-cta__btn-link:hover img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}

@-webkit-keyframes boing {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1.05, 0.95);
    transform: scale(1.05, 0.95);
  }
  40% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
  60% {
    -webkit-transform: scale(1.03, 0.97);
    transform: scale(1.03, 0.97);
  }
  80% {
    -webkit-transform: scale(0.97, 1.03);
    transform: scale(0.97, 1.03);
  }
}
@keyframes boing {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1.05, 0.95);
    transform: scale(1.05, 0.95);
  }
  40% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
  60% {
    -webkit-transform: scale(1.03, 0.97);
    transform: scale(1.03, 0.97);
  }
  80% {
    -webkit-transform: scale(0.97, 1.03);
    transform: scale(0.97, 1.03);
  }
}
/******************************

 check2(獣医師もおすすめ)

*******************************/
.p-check2 {
  position: relative;
}
.p-check2 {
  position: relative;
  z-index: 3;
  background-image: url(../images/5__check/check2__bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  margin-top: -7%;
  padding-bottom: 0rem;
}
@media screen and (max-width: 750px) {
  .p-check2 {
    background-image: url(../images/5__check/check2__bg-sp.png);
    margin-top: -13%;
  }
}

.p-check__content-image {
  position: relative;
  z-index: 3;
  top: -2.3125rem;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-check__content-image {
    top: -9vw;
  }
}

.p-check__content-image img {
  aspect-ratio: 1440/1378;
}
@media screen and (max-width: 750px) {
  .p-check__content-image img {
    aspect-ratio: 750/1861;
  }
}

.p-check__wrapper {
  display: grid;
}
@media screen and (max-width: 750px) {
  .p-check__wrapper {
    padding-inline: 0;
  }
}

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

comparison(早期発見と比較)

*******************************/
.p-comparison {
  padding-top: 7.5rem;
}
@media screen and (max-width: 750px) {
  .p-comparison {
    padding-top: 11vw;
  }
}

.p-comparison__content-image {
  width: 100%;
}
.p-comparison__content-image img {
  aspect-ratio: 1440/1528;
}
@media screen and (max-width: 750px) {
  .p-comparison__content-image img {
    aspect-ratio: 750/1542;
  }
}

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

early(早めの検査を)

*******************************/
.p-early {
  padding-top: 6.25rem;
}
.p-early__content-image {
  width: 100%;
}
.p-early__content-image img {
  aspect-ratio: 1440/1600;
}
@media screen and (max-width: 750px) {
  .p-early__content-image img {
    aspect-ratio: 750/1518;
  }
}

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

empathy(見逃していませんか？)

*******************************/
.p-empathy__content-image {
  position: relative;
  z-index: -1;
  margin-top: -19%;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-empathy__content-image {
    margin-top: -27%;
  }
}

.p-empathy__content-image img {
  aspect-ratio: 1440/1519;
}
@media screen and (max-width: 750px) {
  .p-empathy__content-image img {
    aspect-ratio: 750/1668;
  }
}

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

fact(知っていましたか？)

*******************************/
.p-fact__content-image {
  width: 100%;
}
.p-fact__content-image img {
  aspect-ratio: 1440/781;
}
@media screen and (max-width: 750px) {
  .p-fact__content-image img {
    aspect-ratio: 750/948;
  }
}

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

fact2(5歳からがん率上昇)

*******************************/
.p-fact2__content-image {
  position: relative;
  z-index: -2;
  margin-top: -14.2%;
}
@media screen and (max-width: 750px) {
  .p-fact2__content-image {
    margin-top: -34%;
  }
}

.p-fact2__content-image img {
  aspect-ratio: 1440/1671;
}
@media screen and (max-width: 750px) {
  .p-fact2__content-image img {
    aspect-ratio: 750/1752;
  }
}

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

faq(よくある質問)

*******************************/
.p-faq {
  padding-block: 5.625rem 6.25rem;
}
@media screen and (max-width: 750px) {
  .p-faq {
    padding-block: 18vw 12vw;
  }
}

.p-faq__wrapper {
  display: grid;
}
.p-faq__title-image {
  width: 25%;
  justify-self: center;
}
@media screen and (max-width: 750px) {
  .p-faq__title-image {
    width: 46%;
  }
}

.p-faq_title-image img {
  aspect-ratio: 349/101;
}
.p-faq__accordion-list {
  max-width: 55rem !important;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-faq__accordion-list {
    max-width: 37.5rem !important;
  }
}
@media screen and (max-width: 750px) {
  .p-faq__accordion-list {
    margin-top: 6vw !important;
    max-width: 46.875rem !important;
  }
}

.p-faq__accordion {
  background: #fff;
}
.p-faq__accordion-title {
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 1.5rem 5rem 1.5rem 7rem;
  background: #48bbe8;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .p-faq__accordion-title {
    padding: 3vw 7vw 3vw 15vw;
  }
}

.p-faq__accordion-title::before {
  position: absolute;
  content: "Q";
  left: 1.875rem;
  font-size: 2.25rem;
  font-weight: bold;
  color: #48bbe8;
  text-align: center;
  background: #f1f9a6;
  width: 3.6875rem;
  height: 3.6875rem;
  border-radius: 100%;
}
@media screen and (max-width: 750px) {
  .p-faq__accordion-title::before {
    left: 5%;
    font-size: 5.5vw;
    width: 9vw;
    height: 9vw;
  }
}

.p-faq__accordion-title::after {
  content: "＋";
  position: absolute;
  right: 1.75rem;
  font-size: 2rem;
  color: #fff;
  transition: transform 0.3s;
}
@media screen and (max-width: 750px) {
  .p-faq__accordion-title::after {
    font-size: 4vw;
    right: 3vw;
  }
}

/* アコーディオンが開いたときは−マークに変更 */
.c-accordion-001[open] .p-faq__accordion-title::after {
  position: absolute;
  content: "−";
}
@media screen and (max-width: 750px) {
  .c-accordion-001[open] .p-faq__accordion-title::after {
    right: 3vw;
    font-size: 5vw;
  }
}

.p-faq__content-wrapper {
  margin-top: 1.25rem;
  text-align: left;
}
.p-faq__text {
  display: inline-block;
  font-size: 1.125rem;
  color: #4d4d4d;
  margin-left: 1.875rem;
  margin-bottom: 0.625rem;
  -webkit-transform: translateY(-0.625rem);
  transform: translateY(-0.625rem);
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
@media screen and (max-width: 750px) {
  .p-faq__text {
    font-size: 3.5vw;
    margin-left: 4vw;
    margin-bottom: 2vw;
  }
}

.p-faq__accordion[open] p {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}
.p-faq__accordion[open] {
  padding-bottom: 0rem;
}
/******************************

追従ボタン

*******************************/
/* 追従ボタン（共通） */
.p-float__btn {
  display: inline-block;
  text-decoration: none;
}

.p-float__btn:hover img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* 画像 */
.p-float__btn-image {
  width: auto;
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .p-float__btn-image {
    width: 100%;
  }
}

.p-float__btn-image img {
  aspect-ratio: 349/470;
  width: 14.375rem;
  height: auto;
}

@media screen and (max-width: 750px) {
  .p-float__btn-image img {
    aspect-ratio: 750/218;
    width: 100%;
  }
  .p-float__btn:hover img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}

/* 追従位置設定 */
.floating-btn {
  position: fixed !important;
  bottom: 2.5rem;
  right: 3%;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(20rem);
  transform: translateY(20rem);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease,
    -webkit-transform 0.5s ease;
}
@media screen and (max-width: 750px) {
  .floating-btn {
    left: 0;
    right: 0;
    bottom: -2vw;
  }
}

.floating-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/******************************

flow(検査の流れ)

*******************************/
.p-flow {
  position: relative;
  background-color: #dcfbff;
  background-position: center 10rem;
  padding-block: 0rem 6.25rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-flow {
    padding-block: 0 12vw;
  }
}

.p-flow__content-image {
  width: 100%;
}
.p-flow__content-image img {
  aspect-ratio: 1440/2518;
}
@media screen and (max-width: 750px) {
  .p-flow__content-image img {
    aspect-ratio: 750/2424;
  }
}

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

footer

*******************************/
.p-footer {
  background: #48bbe8;
  padding-block: 2.75rem;
}
.p-footer__logo-image {
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-footer__logo-image {
    width: 50%;
  }
}
.p-footer__logo-image img {
  aspect-ratio: 276/64;
}

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

FV

*******************************/
.p-fv__image {
  width: 100%;
}
.p-fv__image img {
  aspect-ratio: 1440/700;
}
@media screen and (max-width: 750px) {
  .p-fv__image img {
    aspect-ratio: 750/1300;
  }
}

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

 message(代表メッセージ)

*******************************/
.p-message {
  position: relative;
  z-index: 0;
  background: #fff;
  padding-top: 6.25rem;
}
@media screen and (max-width: 750px) {
  .p-message {
    padding-top: 3vw;
  }
}

@media screen and (max-width: 1024px) {
  .p-message__wrapper {
    max-width: 37.5rem;
  }
}
@media screen and (max-width: 750px) {
  .p-message__wrapper {
    max-width: 46.875rem;
  }
}

.p-message__content-image {
  width: 94%;
  justify-self: center;
}
@media screen and (max-width: 750px) {
  .p-message__content-image {
    width: 91%;
  }
}

.p-recommendation__content-image img {
  aspect-ratio: 896/452;
}
.p-message__text-wrapper {
  color: #161616;
  text-align: center;
}
.p-message__text-top {
  font-size: 2.625rem;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: bold;
  font-style: normal;
  margin-block: 2.5rem;
}
@media screen and (max-width: 750px) {
  .p-message__text-top {
    font-size: 6.5vw;
  }
}

.p-message__text-bottom {
  text-align: left;
  font-size: 1.4375rem;
  line-height: 1.8695652174;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 750px) {
  .p-message__text-bottom {
    font-size: 3.6vw;
    margin-bottom: 6vw;
    padding-inline: 6vw;
  }
}

.p-message__sin {
  width: 30%;
  margin-top: -0.625rem;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .p-message__sin {
    width: 43%;
    margin-top: -7vw;
    margin-right: 7vw;
  }
}

.p-message__sin img {
  aspect-ratio: 304/71;
}
/******************************

point(3つのポイント)

*******************************/
.p-point {
  background-image: url(../images/10__point/point__bg.png);
  background-size: cover;
  background-position: center top;
  margin-top: 22.5rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 1024px) {
  .p-point {
    margin-top: 20.5rem;
  }
}
@media screen and (max-width: 750px) {
  .p-point {
    background-image: url(../images/10__point/point__bg-sp.png);
    margin-top: 61vw;
  }
}

.p-point__wrapper {
  display: grid;
  justify-self: center;
}
.p-point__title-image {
  width: 68%;
  justify-self: center;
  margin-top: -17.25rem;
}
@media screen and (max-width: 1024px) {
  .p-point__title-image {
    width: 55%;
  }
}
@media screen and (max-width: 750px) {
  .p-point__title-image {
    width: 93%;
    margin-top: -49vw;
  }
}

.p-point__title-image img {
  aspect-ratio: 663/217;
}
.p-point__list {
  margin-top: -2rem;
  justify-self: center;
}
@media screen and (max-width: 1024px) {
  .p-point__list {
    margin-top: -5rem;
  }
}
@media screen and (max-width: 750px) {
  .p-point__list {
    margin-top: -16vw;
  }
}

.p-point__item {
  justify-self: center;
  max-width: 75rem;
}
@media screen and (max-width: 1024px) {
  .p-point__item {
    max-width: 37.5rem;
  }
}
@media screen and (max-width: 750px) {
  .p-point__item {
    max-width: 46.875rem;
    border-radius: 6%;
  }
}

.p-point__item:not(:first-child) {
  margin-top: 2.375rem;
}
@media screen and (max-width: 750px) {
  .p-point__item:not(:first-child) {
    margin-top: 4vw;
  }
}

.p-point__item-image {
  width: 100%;
  justify-self: center;
}
@media screen and (max-width: 750px) {
  .p-point__item-image {
    width: 100%;
  }
}

.p-point__item:nth-child(1) .p-point__item-image img {
  aspect-ratio: 908/562;
}
@media screen and (max-width: 750px) {
  .p-point__item:nth-child(1) .p-point__item-image img {
    aspect-ratio: 661/613;
  }
}

.p-point__item:nth-child(3) .p-point__item-image img {
  aspect-ratio: 900/768;
}
@media screen and (max-width: 750px) {
  .p-point__item:nth-child(3) .p-point__item-image img {
    aspect-ratio: 653/882;
  }
}

.p-point__item:nth-child(2) {
  background-image: url(../images/10__point/point__item2-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  width: 100%;
  max-width: 95%;
  height: auto;
  border-radius: 1.875rem;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p-point__item:nth-child(2) {
    max-width: 37.5rem;
    border-radius: 0.625rem;
  }
}
@media screen and (max-width: 750px) {
  .p-point__item:nth-child(2) {
    background-image: url(../images/10__point/point__item2-bg-sp.png);
    max-width: 41.625rem;
  }
}

.p-point__item-wrapper {
  display: grid;
}
.p-point__item-title-image {
  justify-self: center;
  width: 65%;
  margin-top: 7.625rem;
}
@media screen and (max-width: 750px) {
  .p-point__item-title-image {
    width: 85%;
    margin-bottom: 5vw;
    margin-top: 17vw;
  }
}

.p-point__item-title-image img {
  aspect-ratio: 560/177;
}
@media screen and (max-width: 750px) {
  .p-point__item-title-image img {
    aspect-ratio: 560/198;
  }
}

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

アコーディオン

*******************************/
.p-point__accordion-list {
  justify-self: center;
  max-width: 53.75rem;
  width: 100%;
  margin-top: 3.75rem;
}
@media screen and (max-width: 750px) {
  .p-point__accordion-list {
    margin-top: 2vw;
    max-width: 36.625rem;
  }
}

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

 recommendation(獣医師もおすすめ)

*******************************/
.p-recommendation__content-image {
  position: relative;
  z-index: 1;
  width: 100%;
}
.p-recommendation__content-image img {
  aspect-ratio: 1440/829;
}
@media screen and (max-width: 750px) {
  .p-recommendation__content-image img {
    aspect-ratio: 750/1058;
  }
}

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

voice(飼い主様の声)

*******************************/
.p-voice {
  background-image: url(../images/11__voice/voice__bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  padding-block: 5rem 6.25rem;
}
@media screen and (max-width: 750px) {
  .p-voice {
    padding-block: 12vw 5vw;
  }
}

.p-voice__wrapper {
  display: grid;
}
.p-voice__title-image {
  width: 53%;
  justify-self: center;
}
@media screen and (max-width: 1024px) {
  .p-voice__title-image {
    width: 43%;
  }
}
@media screen and (max-width: 750px) {
  .p-voice__title-image {
    width: 83%;
  }
}

.p-voice__title-image img {
  aspect-ratio: 511/185;
}
@media screen and (max-width: 750px) {
  .p-voice__title-image img {
    aspect-ratio: 579/210;
  }
}

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

    共通img用設定

**************************************/
img,
picture {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

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

色

*******************************/
.--pink {
  background-color: #d380b3;
  font-weight: bold;
}

.--pink2 {
  background-color: #f8eff5;
}

.--green {
  background-color: #57b770;
  font-weight: bold;
}

body {
  max-width: 90rem;
  margin: 0 auto;
}
/******************************

footer

*******************************/
/* line 142, sass/_default.scss */
footer {
  background: #fff;
  padding: 10rem 0 0;
}
/* line 145, sass/_default.scss */
footer .ft-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
/* line 148, sass/_default.scss */
footer .ft-info .ft-logo {
  margin-right: 8rem;
}

/* line 152, sass/_default.scss */
footer .ft-menu {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
/* line 156, sass/_default.scss */
footer .ft-menu li {
  padding: 0 2rem;
}
/* line 158, sass/_default.scss */
footer .ft-menu li:not(:last-child) {
  border-right: 0.1rem solid #4d4d4d;
}

/* line 166, sass/_default.scss */
footer .copy {
  text-align: center;
  font-size: 1.2rem;
  padding-top: 4rem;
}

@media screen and (max-width: 1024px) {
  /* line 173, sass/_default.scss */
  footer {
    padding: 10vw 0 0;
  }
  /* line 176, sass/_default.scss */
  footer .ft-info .ft-logo {
    margin-right: 4vw;
  }
  /* line 180, sass/_default.scss */
  footer .ft-menu {
    flex-flow: wrap;
  }
  /* line 182, sass/_default.scss */
  footer .ft-menu li {
    padding: 0 3vw;
  }
  /* line 186, sass/_default.scss */
  footer .copy {
    padding-top: 4vw;
  }
}
@media screen and (max-width: 750px) {
  /* line 192, sass/_default.scss */
  footer {
    padding: 16vw 0 0;
  }
  /* line 194, sass/_default.scss */
  footer .ft-info {
    display: block;
    text-align: center;
  }
  /* line 197, sass/_default.scss */
  footer .ft-info .ft-logo {
    /* width: 60%; */
    margin: 0 auto 6vw;
  }
  .ft-address {
    margin-top: 4vw;
  }
  /* line 202, sass/_default.scss */
  footer .ft-menu {
    margin-top: 8vw;
  }
  /* line 204, sass/_default.scss */
  footer .ft-menu li {
    margin-bottom: 2vw;
  }
  /* line 208, sass/_default.scss */
  footer .copy {
    padding-top: 8vw;
    font-size: 1.1rem;
  }
}

/*# sourceMappingURL=styles.css.map */
