@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
:root {
  /* タイポグラフィスケール */
  --font-size-2xs: clamp(1.1rem, 0.5vw + 1.1rem, 1.3rem); /* 11px〜13px */
  --font-size-xs: clamp(1.2rem, 0.5vw + 1.1rem, 1.4rem); /* 12px〜14px */
  --font-size-sm: clamp(1.3rem, 0.5vw + 1.3rem, 1.5rem); /* 14px〜16px */
  --font-size-base: clamp(1.5rem, 0.25vw + 1.55rem, 1.6rem); /* 16px固定 */
  --font-size-lg: clamp(1.8rem, 0.75vw + 1.65rem, 2rem); /* 18px〜20px */
  --font-size-xl: clamp(2.4rem, 1.5vw + 2.1rem, 3rem); /* 24px〜30px */
  --font-size-2xl: clamp(3.2rem, 2.5vw + 2.7rem, 4rem); /* 32px〜40px */
  --font-size-3xl: clamp(4rem, 4vw + 3rem, 5.6rem); /* 40px〜56px */
  /* スペーシングシステム */
  --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem); /* min30px〜max60px */
  --space-3xl: clamp(4rem, 8vw, 8rem);
  --space-4xl: clamp(5rem, 10vw, 10rem);
  --space-xxl: clamp(10rem, 20vw, 20rem);
}

* {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 100.01%;
  list-style-type: none;
  text-align: left;
  zoom: 1;
  font-family: "IBM Plex Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.6;
}

html,
body {
  line-height: 1.6;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-size: 10px;
  scroll-behavior: smooth;
}
html p,
body p {
  font-size: var(--font-size-base);
}

body {
  margin: 0;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("../images/bg_sky.webp") center center/cover no-repeat;
  filter: blur(8px); /* ぼかし */
  transform: scale(1.02); /* ぼかした分だけ端が切れるので少し拡大 */
}

button,
input {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  text-transform: none;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: inherit;
  }
}

main {
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  background-color: #e1ebff;
  position: relative;
  z-index: 100;
  box-shadow: 0 0 45px rgba(0, 63, 109, 0.2);
}
@media (max-width: 768px) {
  main {
    max-width: auto;
    width: 100%;
    overflow: hidden;
  }
}
main .lp-pad {
  position: relative;
  display: block;
  z-index: 0;
}
main .lp-pad::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  height: 300px;
  mix-blend-mode: color-burn;
  background: linear-gradient(to bottom, rgba(0, 63, 235, 0.8) 0%, rgba(0, 110, 235, 0) 100%);
  opacity: 0;
  animation: bgFadeIn 4s ease forwards;
}
@keyframes bgFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.enquiry__btn {
  box-sizing: border-box;
  text-align: center;
}
.enquiry__btn p {
  font-size: 13px;
  text-align: center;
}
.enquiry__btn + .enquiry__btn {
  margin-top: var(--space-md);
}
.enquiry__btn a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 70%;
  padding: 0.3em 0 0.4em;
  background: #005fa3;
  color: #fff;
  border-radius: 99px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.8s ease-out;
}
@media (max-width: 768px) {
  .enquiry__btn a {
    font-size: 18px;
  }
}
.enquiry__btn a:hover {
  background: #f4d300;
  color: #111;
  transition: all 0.2s ease-out;
}
.enquiry__btn a + p {
  margin-top: var(--space-sm);
}

section.section__top {
  padding: 0 30px;
}
section.section__top .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  overflow: hidden;
}
section.section__top .image-wrap .top__main-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(2); /* 彩度の調整 */
}
section.section__top .image-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px; /* グラデーションの高さ */
  background: linear-gradient(to bottom, rgba(225, 235, 255, 0) 0%, rgb(225, 235, 255) 100%);
  pointer-events: none;
}
section.section__top .top__main-bg {
  width: 100%;
}
section.section__top .top__main-visual img {
  display: block;
  margin: auto;
  padding-top: var(--space-lg);
}
section.section__top .top__main-visual img.top__main-image {
  opacity: 0;
  transform: scale(1.3);
  animation: mainVisualAppear 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  filter: drop-shadow(4px 0px 3px rgba(0, 63, 109, 0.5)) drop-shadow(0 4px 3px rgba(0, 63, 109, 0.5));
}
@keyframes mainVisualAppear {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  65% {
    opacity: 1;
    transform: scale(0.94);
  }
  82% {
    transform: scale(1.04);
  }
  92% {
    transform: scale(0.99);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
section.section__top .top__main-visual .top__main-copy {
  color: #005fa3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  letter-spacing: -0.02em; /* 字間つめ */
  margin-top: var(--space-xl);
}
@media (max-width: 768px) {
  section.section__top .top__main-visual .top__main-copy {
    font-size: 16px;
    line-height: 1.4;
  }
}
section.section__top .top__main-visual .top__main-copy strong {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 15px;
  text-underline-offset: -8px;
  text-decoration-color: #ebff10;
}
section.section__top .top__main-visual + .enquiry__btn {
  margin-top: var(--space-lg);
}
section.section__top .top__animal {
  margin: var(--space-lg) -30px -65px;
  top: -65px;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  animation: animalAppear 0.8s ease forwards;
  pointer-events: none;
}
@media (max-width: 768px) {
  section.section__top .top__animal {
    margin: var(--space-lg) -30px -45px;
    top: -45px;
  }
}
@keyframes animalAppear {
  0% {
    opacity: 0;
    transform: translateY(-12px) scale(1.3);
  }
  75% {
    opacity: 1;
    transform: translateY(2px) scale(0.94);
  }
  80% {
    transform: translateY(-1px) scale(1.03);
  }
  92% {
    opacity: 1;
    transform: translateY(0) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
section.section__top .top__animal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px; /* グラデーションの高さ */
  background: linear-gradient(to bottom, rgba(225, 235, 255, 0) 0%, rgb(225, 235, 255) 100%);
  pointer-events: none;
}
section.section__top .top__animal img.all-animal {
  display: block;
  width: 100%;
  filter: saturate(1.5); /* 彩度の調整 */
  pointer-events: none;
}
section.section__trouble {
  width: 100%;
  margin-top: var(--space-xl);
  background-color: #ffffff;
  padding: 50px 0;
}
section.section__trouble h3 {
  color: #005fa3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 30px;
  line-height: 1;
}
@media screen {
  section.section__trouble h3 {
    font-size: 25px;
    font-weight: 600;
  }
}
section.section__trouble .trouble__con {
  padding: 0 30px;
}
section.section__trouble .trouble__con .trouble__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 0;
  margin-top: var(--space-xl);
  position: relative;
}
@media (max-width: 768px) {
  section.section__trouble .trouble__con .trouble__list {
    grid-template-columns: 1fr;
    margin-inline: auto;
    width: fit-content;
    gap: 15px 0;
  }
}
section.section__trouble .trouble__con .trouble__list .trouble__item {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  section.section__trouble .trouble__con .trouble__list .trouble__item {
    width: fit-content;
  }
}
section.section__trouble .trouble__con .trouble__list .trouble__item .trouble__icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/box-square.svg") center/contain no-repeat;
  margin-right: 4px;
  vertical-align: sub;
}
section.section__trouble .trouble__con .trouble__list .trouble__item .trouble__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/check.svg") center/contain no-repeat;
  opacity: 0;
  transition: opacity 1s;
}
section.section__trouble .trouble__con .trouble__list .trouble__item .trouble__icon.is-active::after {
  opacity: 1;
}
section.section__trouble .trouble__con .trouble__list .trouble__item .trouble__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: var(--font-size-base);
  letter-spacing: -0.02em; /* 字間つめ */
}
section.section__3animal {
  margin-top: var(--space-2xl);
}
@media (max-width: 768px) {
  section.section__3animal {
    margin-top: 0;
    position: relative;
    top: -30px;
    margin-bottom: -60px;
  }
}
section.section__3animal div {
  width: 100%;
}
section.section__3animal div img.troble-animal {
  display: block;
  width: 105%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  section.section__3animal div img.troble-animal {
    width: 102%;
    box-sizing: border-box;
  }
}
section.section__3animal .animal3__h2 {
  color: #005fa3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: 26px;
  text-align: center;
  margin-top: var(--space-lg);
}
@media (max-width: 768px) {
  section.section__3animal .animal3__h2 {
    font-size: 20px;
    padding: 0;
  }
}
section.section__3animal .animal3__h2 .animal3__sp-ex {
  display: none;
}
@media (max-width: 768px) {
  section.section__3animal .animal3__h2 .animal3__sp-ex {
    display: block;
  }
}
section.section__3animal .animal3__h2 strong {
  color: #c9356a;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 26px;
}
@media (max-width: 768px) {
  section.section__3animal .animal3__h2 strong {
    font-size: 20px;
  }
}
section.section__example {
  margin: var(--space-xl) 30px 0;
  background: #fff;
  border-radius: 15px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  section.section__example {
    margin: 50px 5% 0;
  }
}
section.section__example .example__h2 {
  color: #005fa3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  padding-top: 20px;
}
@media (max-width: 768px) {
  section.section__example .example__h2 {
    font-size: 25px;
    font-weight: 600;
  }
}
section.section__example .example__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: var(--space-md);
}
section.section__example .example__list .example__item {
  box-sizing: border-box;
}
section.section__example .example__list .example__item:hover img {
  animation: shakeImage 0.8s ease-in-out;
}
@keyframes shakeImage {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(20deg);
  }
  40% {
    transform: rotate(-20deg);
  }
  60% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
section.section__example .example__list .example__item h3 {
  color: #005fa3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  margin-top: var(--space-sm);
}
@media (max-width: 768px) {
  section.section__example .example__list .example__item h3 {
    font-size: 22px;
    line-height: 1.1;
    margin: 10px 0;
  }
}
section.section__example .example__list .example__item h3 .tx__sp-ex {
  display: none;
}
@media (max-width: 768px) {
  section.section__example .example__list .example__item h3 .tx__sp-ex {
    display: block;
  }
}
section.section__example .example__list .example__item img {
  width: 40%;
  margin: var(--space-md) auto 0;
  display: block;
  transform-origin: center center;
}
section.section__example .example__list .example__item p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-top: var(--space-sm);
  text-align: center;
}
@media (max-width: 768px) {
  section.section__example .example__list .example__item p {
    font-size: 13px;
  }
}
section.section__example .example__list .example__item p strong {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin-top: var(--space-md);
}
@media (max-width: 768px) {
  section.section__example .example__list .example__item p strong {
    font-size: 18px;
  }
}
section.Google-forms {
  padding: 0;
  box-sizing: border-box;
  margin-top: var(--space-xl);
}
@media (max-width: 768px) {
  section.Google-forms {
    padding: 0;
  }
}
section.Google-forms iframe {
  border: 0 !important;
}
section.Google-forms iframe.Google__forms {
  display: block;
  width: 100%;
  height: 1500px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  section.Google-forms iframe.Google__forms {
    height: 1530px;
  }
}
section.Google-forms .DE3NNc {
  display: grid !important;
}

footer {
  padding: 0 30px;
  background-color: #fff;
}
footer .footer__container {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: var(--space-xl) auto 0;
  display: grid;
  align-items: center;
}
footer .footer__container img {
  display: block;
  width: 80%;
  margin: var(--space-lg) auto 0;
}
@media (max-width: 768px) {
  footer .footer__container img {
    width: 90%;
    margin: var(--space-xl) auto 0;
  }
}
footer .footer__copy {
  text-align: center;
  font-size: var(--font-size-base);
  margin-top: var(--space-md);
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  footer .footer__copy {
    font-size: 13px;
    margin-top: var(--space-lg);
  }
}/*# sourceMappingURL=main.css.map */