@charset "UTF-8";
@keyframes slideIn {
  0% {
    transform: translateY(20%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes shake-up {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10%);
  }
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

/* Set core root defaults */
/* 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;
}

/* 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;
}

/* 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 {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

body {
  background: url(../images/bg_grid_01.webp) left top repeat;
}
@media screen and (min-width: 769px) {
  body {
    padding-top: 68px;
    background-size: 32px auto;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 768.9px) {
  body {
    padding-top: 14.9333333333vw;
    background-size: 8.5333333333vw auto;
  }
}
body ruby {
  ruby-align: center;
}
body ruby rt {
  letter-spacing: -0.1em;
  margin-left: -0.3em;
}
@media screen and (max-width: 768.9px) {
  body:has(.header.-open) {
    height: 100vh;
    overflow: hidden;
  }
  body:has(.header.-open) .header-rubyBtn {
    pointer-events: none;
    z-index: -1;
  }
}
body.-modalOpen {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  overscroll-behavior: contain;
}
body.rubyOff ruby rt {
  display: none;
}
body.rubyOff .noRuby {
  display: block;
}
body.rubyOff .hasRuby {
  display: none;
}
body.rubyOff .header-rubyBtn {
  background-color: #FFFFFF;
  color: #0267B6;
}
body.rubyOff .header-rubyBtn .switch {
  background-color: #FFFFFF;
  border: 1px solid #0267B6;
  color: #0267B6;
  opacity: 0.2;
}

@media screen and (min-width: 769px) {
  .onlySP {
    display: none !important;
  }
}

@media screen and (max-width: 768.9px) {
  .onlyPC {
    display: none !important;
  }
}

.noRuby {
  display: none;
}

.hasRuby {
  display: block;
}

.fontZKGN {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.fontPoppins {
  font-family: "Poppins", sans-serif;
}

.letterSpacingExtraWide {
  letter-spacing: 0.6em;
}
.letterSpacingExtraWide ruby rt {
  margin-left: -0.3em;
}

.letterSpacingWide {
  letter-spacing: 0.4em;
}
.letterSpacingWide ruby rt {
  margin-left: -1em;
}

.letterSpacingMedium {
  letter-spacing: 0.3em;
}
.letterSpacingMedium ruby rt {
  margin-left: -0.8em;
}

.letterSpacingSmall {
  letter-spacing: 0.2em;
}
.letterSpacingSmall ruby rt {
  margin-left: -0.6em;
}

@media screen and (min-width: 769px) {
  .letterSpacingWideToSmall {
    letter-spacing: 0.4em;
  }
  .letterSpacingWideToSmall ruby rt {
    margin-left: -1em;
  }
}
@media screen and (max-width: 768.9px) {
  .letterSpacingWideToSmall {
    letter-spacing: 0.2em;
  }
  .letterSpacingWideToSmall ruby rt {
    margin-left: -0.6em;
  }
}

@media screen and (min-width: 769px) {
  .letterSpacingMediumToSmall {
    letter-spacing: 0.3em;
  }
  .letterSpacingMediumToSmall ruby rt {
    margin-left: -0.8em;
  }
}
@media screen and (max-width: 768.9px) {
  .letterSpacingMediumToSmall {
    letter-spacing: 0.2em;
  }
  .letterSpacingMediumToSmall ruby rt {
    margin-left: -0.6em;
  }
}

.js-slideIn {
  opacity: 0;
}
.js-slideIn.-show {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 0s forwards;
}

.js-fadeIn {
  opacity: 0;
  transition: 0.4s ease 0s;
}
@media screen and (min-width: 769px) {
  .js-fadeIn {
    transform: translateY(100px);
  }
}
@media screen and (max-width: 768.9px) {
  .js-fadeIn {
    transform: translateY(26.6666666667vw);
  }
}
.js-fadeIn.-show {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: 0.4s ease-out 0s;
  z-index: 1000;
}
.modal.-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal .modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal .modal-inner {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.modal .modal-close {
  position: fixed;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .modal .modal-close {
    top: 80px;
    right: 80px;
    width: 64px;
    height: 64px;
  }
}
@media screen and (max-width: 768.9px) {
  .modal .modal-close {
    top: 4.8vw;
    right: 4.2666666667vw;
    width: 17.0666666667vw;
    height: 17.0666666667vw;
  }
}

::-webkit-full-page-media, :future, :root rt {
  transform: translateY(4px);
}

::-webkit-full-page-media, :future, :root .letterSpacingExtraWide ruby rt {
  margin-left: -0.15em;
}

::-webkit-full-page-media, :future, :root .letterSpacingWide ruby rt {
  margin-left: -0.5em;
}

::-webkit-full-page-media, :future, :root .letterSpacingMedium ruby rt {
  margin-left: -0.4em;
}

::-webkit-full-page-media, :future, :root .letterSpacingSmall ruby rt {
  margin-left: -0.3em;
}

@media screen and (min-width: 769px) {
  ::-webkit-full-page-media, :future, :root .letterSpacingWideToSmall ruby rt {
    margin-left: -0.5em;
  }
}
@media screen and (max-width: 768.9px) {
  ::-webkit-full-page-media, :future, :root .letterSpacingWideToSmall ruby rt {
    margin-left: -0.3em;
  }
}

@media screen and (min-width: 769px) {
  ::-webkit-full-page-media, :future, :root .letterSpacingMediumToSmall ruby rt {
    margin-left: -0.4em;
  }
}
@media screen and (max-width: 768.9px) {
  ::-webkit-full-page-media, :future, :root .letterSpacingMediumToSmall ruby rt {
    margin-left: -0.3em;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 100;
}
@media screen and (min-width: 769px) {
  #header {
    border-bottom: 1px solid #9EB3D0;
  }
}
@media screen and (max-width: 768.9px) {
  #header {
    height: 14.9333333333vw;
    border-bottom: 0.2666666667vw solid #9EB3D0;
  }
}
#header.-open .header-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 20px 10px;
    padding: 15px 20px;
  }
}
@media screen and (max-width: 768.9px) {
  .header-inner {
    padding-inline: 4vw 2.1333333333vw;
  }
}

.header-logo {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .header-logo {
    width: 100px;
  }
}
@media screen and (max-width: 768.9px) {
  .header-logo {
    width: 20vw;
  }
}

.header-nav {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .header-nav {
    gap: 20px;
    margin-left: auto;
  }
}
@media screen and (max-width: 768.9px) {
  .header-nav {
    gap: 3.2vw;
    flex-direction: row-reverse;
  }
}

@media screen and (max-width: 768.9px) {
  .header-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11.7333333333vw;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 24vw 0;
    background-color: #ECF1F6;
    opacity: 0;
    overflow-y: scroll;
    transform: translateY(-100%);
    transition: 0.4s ease-out 0s;
    pointer-events: none;
  }
}

@media screen and (max-width: 768.9px) {
  .header-menu-title {
    color: #0267B6;
    font-size: 3.4666666667vw;
    font-weight: 700;
    line-height: 1.2307692308;
  }
}

.header-menu-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768.9px) {
  .header-menu-list {
    flex-direction: column;
    gap: 10.6666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .header-menu-item {
    border-left: 1px solid rgba(158, 179, 208, 0.2);
  }
  .header-menu-item:first-of-type {
    border-left: none;
  }
}
.header-menu-item a {
  display: inline-block;
  color: #0267B6;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .header-menu-item a {
    padding: 2px 10px;
    font-size: 1.4rem;
    line-height: 1.3333333333;
    transition: 0.4s ease-out 0s;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 768.9px) {
  .header-menu-item a {
    font-size: 6.4vw;
    font-weight: 700;
    line-height: 1.1666666667;
  }
}
@media screen and (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .header-menu-item a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768.9px) {
  .header-closeBtn {
    position: fixed;
    top: 4.8vw;
    right: 4.2666666667vw;
  }
}

.header-rubyBtn {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: #FFFFFF;
  background-color: #0267B6;
  font-weight: 900;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .header-rubyBtn {
    gap: 8px;
    min-height: 23px;
    padding-block: 2px;
    padding-inline: 12px 4px;
    border: 1px solid #0267B6;
    border-radius: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768.9px) {
  .header-rubyBtn {
    gap: 2.1333333333vw;
    padding-block: 0.5333333333vw;
    padding-inline: 2.9333333333vw 0.8vw;
    border: 0.2666666667vw solid #0267B6;
    border-radius: 3.2vw;
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .header-rubyBtn:hover {
    background-color: #0267B6 !important;
    color: #FFFFFF !important;
  }
  .header-rubyBtn:hover .switch {
    background-color: #FFFFFF !important;
    color: #0267B6 !important;
    opacity: 1 !important;
  }
}
.header-rubyBtn .switch {
  display: inline-block;
  background-color: #FFFFFF;
  color: #0267B6;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .header-rubyBtn .switch {
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768.9px) {
  .header-rubyBtn .switch {
    padding: 0.5333333333vw 1.6vw;
    border: 0.2666666667vw solid #0267B6;
    border-radius: 2.6666666667vw;
    font-size: 2.9333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .mv {
    padding: 32px 24px;
  }
}
.mv.-show .mv-inner::before, .mv.-show .mv-inner::after {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

.mv-inner {
  position: relative;
  background-color: #F9F7F2;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .mv-inner {
    padding: 6.71875vw 0;
    border: 1px solid #9EB3D0;
    border-radius: 2.5vw;
  }
}
@media screen and (max-width: 768.9px) {
  .mv-inner {
    padding: 11.7333333333vw 0 43.7333333333vw;
  }
}
.mv-inner::before, .mv-inner::after {
  display: block;
  position: absolute;
  background-position: left top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  opacity: 0;
  content: "";
}
.mv-inner::before {
  background-image: url(../images/pic_memamon_01.webp);
}
@media screen and (min-width: 769px) {
  .mv-inner::before {
    bottom: -5.078125vw;
    left: 1.171875vw;
    width: 27.734375vw;
    height: 28.828125vw;
  }
}
@media screen and (max-width: 768.9px) {
  .mv-inner::before {
    bottom: -12.5333333333vw;
    left: 2.6666666667vw;
    width: 44vw;
    height: 45.8666666667vw;
  }
}
.mv-inner::after {
  background-image: url(../images/pic_manae_01.webp);
}
@media screen and (min-width: 769px) {
  .mv-inner::after {
    bottom: -16.71875vw;
    right: 0vw;
    width: 31.484375vw;
    height: 54.609375vw;
  }
}
@media screen and (max-width: 768.9px) {
  .mv-inner::after {
    bottom: -32vw;
    right: 1.3333333333vw;
    width: 50.6666666667vw;
    height: 88vw;
  }
}

.mv-title {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .mv-title {
    width: 29.788961039%;
  }
}
@media screen and (max-width: 768.9px) {
  .mv-title {
    width: 65.3333333333vw;
  }
}

.intro {
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .intro {
    padding-block: 76px 0;
  }
}

.intro-inner {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .intro-inner {
    max-width: 1186px;
    padding-left: 9.1905564924%;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-inner {
    padding: 14.9333333333vw 6.4vw 0;
  }
}

.intro-title {
  color: #0267B6;
  font-weight: 900;
  line-height: 1.3333333333;
}
@media screen and (min-width: 769px) {
  .intro-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-title {
    font-size: 6.4vw;
  }
}

.intro-top {
  display: flex;
}
@media screen and (min-width: 769px) {
  .intro-top {
    justify-content: space-between;
    margin-top: 17px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-top {
    flex-direction: column;
    gap: 14.9333333333vw;
    margin-top: 8.5333333333vw;
  }
}

.intro-txt {
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .intro-txt {
    padding-top: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-txt {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .intro-img {
    width: 35vw;
    max-width: 448px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-img {
    width: 97.3333333333vw;
    transform: translateX(6.4vw);
  }
}

.intro-bottom {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .intro-bottom {
    padding-block: 80px 70px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-bottom {
    padding: 31.2vw 2.1333333333vw 22.4vw;
  }
}

.intro-btn {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .intro-btn {
    justify-content: center;
    width: 210px;
    height: 210px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-btn {
    display: block;
    width: 100%;
    height: 18.1333333333vw;
    padding-left: 21.8666666667vw;
    background-image: url(../images/arrow_btn_01.svg);
    background-position: right 4.2666666667vw center;
    background-size: 3.7333333333vw auto;
    background-repeat: no-repeat;
    background-color: #0267B6;
    border-radius: 3.2vw;
    text-align: left;
  }
}
@media screen and (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .intro-btn:hover::before {
    width: 100%;
    height: 100%;
    background-image: url(../images/bg_intro_btn_01_on.svg);
  }
}
@media screen and (min-width: 769px) {
  .intro-btn::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 182px;
    height: 182px;
    background: url(../images/bg_intro_btn_01.svg) left top no-repeat;
    background-size: 100% auto;
    transform: translate(-50%, -50%);
    transition: 0.3s ease-out 0s;
    content: "";
  }
}
.intro-btn::after {
  display: block;
  position: absolute;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
}
@media screen and (min-width: 769px) {
  .intro-btn::after {
    bottom: -85px;
    right: -124px;
    width: 257px;
    height: 257px;
    background-image: url(../images/img_intro_02_pc.webp);
  }
}
@media screen and (max-width: 768.9px) {
  .intro-btn::after {
    top: -10.1333333333vw;
    left: -10.6666666667vw;
    width: 32vw;
    height: 32vw;
    background-image: url(../images/img_intro_02_sp.webp);
  }
}
.intro-btn span {
  position: relative;
  color: #FFFFFF;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .intro-btn span {
    font-size: 1.6rem;
    line-height: 1.625;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-btn span {
    font-size: 4.2666666667vw;
    line-height: 1;
  }
}

@media screen and (min-width: 769px) {
  .intro-characters {
    display: flex;
    align-items: flex-start;
    position: absolute;
    bottom: max(-34.765625vw, -445px);
    left: min(29.6875vw, 380px);
  }
}
@media screen and (min-width: 769px) {
  .intro-characters.-show .intro-character.-memamon .intro-character-img {
    animation: pyoko 10s ease-in-out 2s infinite;
  }
  .intro-characters.-show .intro-character.-manae .intro-character-img {
    animation: pyoko 10s ease-in-out 7s infinite;
  }
}

@keyframes pyoko {
  0% {
    transform: translateY(0);
  }
  2.5%, 7.5% {
    transform: translateY(-2%);
  }
  5%, 10% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (min-width: 769px) {
  .intro-character {
    text-align: center;
    transition: 0.4s ease-out 0s;
    cursor: pointer;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-character {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 18.1333333333vw;
    padding-left: 38.9333333333vw;
    background: url(../images/arrow_btn_02.svg) right 5.3333333333vw center no-repeat;
    background-size: 5.3333333333vw auto;
    background-color: #FFFFFF;
    border: 0.2666666667vw solid #0267B6;
    border-radius: 9.0666666667vw;
    text-align: left;
  }
}
@media screen and (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .intro-character:hover.-memamon {
    transform: translateY(-18%);
  }
  .intro-character:hover.-manae {
    transform: translateY(-14%);
  }
  .intro-character:hover .intro-character-img {
    animation-play-state: paused !important;
  }
  .intro-character:hover .intro-character-txt {
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  .intro-character.-memamon {
    width: 20.390625vw;
    max-width: 261px;
    padding-top: min(3.515625vw, 45px);
  }
}
@media screen and (max-width: 768.9px) {
  .intro-character.-memamon {
    margin-top: 14.9333333333vw;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-character.-memamon .intro-character-img {
    left: 5.8666666667vw;
    width: 24.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .intro-character.-manae {
    width: 26.5625vw;
    max-width: 340px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-character.-manae {
    margin-top: 12.5333333333vw;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-character.-manae .intro-character-img {
    left: 4.8vw;
    width: 25.6vw;
  }
}

.intro-character-txt {
  color: #0267B6;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .intro-character-txt {
    font-size: 2.2rem;
    line-height: 1.4545454545;
    opacity: 0;
    transition: 0.4s ease-out 0s;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-character-txt {
    font-size: 5.3333333333vw;
    line-height: 1;
  }
}

.intro-character-img {
  display: block;
}
@media screen and (min-width: 769px) {
  .intro-character-img {
    margin-top: 4px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-character-img {
    position: absolute;
    bottom: 0;
  }
}

@media screen and (min-width: 769px) {
  .intro-modal-project .modal-bg {
    background-color: rgba(13, 97, 169, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-project .modal-bg {
    background-color: #FAF7F1;
  }
}
@media screen and (min-width: 769px) {
  .intro-modal-project .modal-inner {
    max-width: 717px;
    height: 717px;
    padding-top: 130px;
    background: url(../images/bg_intro_modal_pc.svg) left top no-repeat;
    background-size: 100% 100%;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-project .modal-inner {
    width: 100%;
    padding-block: 26.6666666667vw;
  }
}
.intro-modal-project .project-title {
  color: #0267B6;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .intro-modal-project .project-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-project .project-title {
    font-size: 6.4vw;
  }
}
.intro-modal-project .project-slider {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .intro-modal-project .project-slider {
    margin-top: 24px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-project .project-slider {
    margin-top: 6.4vw;
  }
}
@media screen and (min-width: 769px) {
  .intro-modal-project .project-slider .splide__slide.-slide1 .project-img {
    height: 276px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-project .project-slider .splide__slide.-slide1 .project-img {
    height: 61.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .intro-modal-project .project-slider .splide__slide.-slide2 .project-img {
    height: 243px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-project .project-slider .splide__slide.-slide2 .project-img {
    margin-top: 6.6666666667vw;
    height: 53.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .intro-modal-project .project-slider .splide__slide.-slide3 .project-img {
    height: 219px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-project .project-slider .splide__slide.-slide3 .project-img {
    height: 73.6vw;
    margin-top: 4.8vw;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-project .project-slider .splide_controls {
    margin-top: 5.3333333333vw;
  }
}
.intro-modal-project .project-txt {
  margin: 0 auto;
  color: #0267B6;
  font-weight: 700;
  line-height: 1.8571428571;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .intro-modal-project .project-txt {
    padding-inline: 20px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-project .project-txt {
    padding-inline: 8.5333333333vw;
    font-size: 3.7333333333vw;
  }
}
.intro-modal-project .project-img {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .intro-modal-project .project-img {
    margin-top: 24px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-project .project-img {
    margin-top: 14.9333333333vw;
  }
}
.intro-modal-project .project-img picture,
.intro-modal-project .project-img img {
  width: auto;
  height: 100%;
  margin: auto;
  object-fit: cover;
}
.intro-modal-project .splide__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .intro-modal-project .splide__arrows {
    gap: 9px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-project .splide__arrows {
    gap: 2.4vw;
  }
}
.intro-modal-project .splide__arrow:disabled {
  opacity: 0.2;
}
.intro-modal-project .pagination {
  color: rgba(2, 103, 182, 0.3);
  font-weight: 900;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .intro-modal-project .pagination {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-project .pagination {
    font-size: 6.4vw;
  }
}
.intro-modal-project .pagination .pagination-current {
  color: #0267B6;
}

@media screen and (min-width: 769px) {
  .intro-modal-character.-memamon .character-img {
    width: 292px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-character.-memamon .character-img {
    width: 53.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .intro-modal-character.-manae .character-img {
    width: 277px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-character.-manae .character-img {
    width: 48.2666666667vw;
  }
}
.intro-modal-character .modal-bg {
  background-color: rgba(250, 247, 241, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.intro-modal-character .modal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .intro-modal-character .modal-inner {
    gap: 104px;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-character .modal-inner {
    flex-direction: column;
    gap: 6.9333333333vw;
    padding: 0 10.6666666667vw;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-character .character-detail {
    width: 100%;
  }
}
.intro-modal-character .character-name {
  color: #0267B6;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 769px) {
  .intro-modal-character .character-name {
    margin-left: -0.2em;
    font-size: 4rem;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-character .character-name {
    font-size: 10.6666666667vw;
  }
}
.intro-modal-character .character-desc {
  color: #0267B6;
  font-weight: 500;
  line-height: 1.6666666667;
}
@media screen and (min-width: 769px) {
  .intro-modal-character .character-desc {
    margin-top: 15px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-character .character-desc {
    margin-top: 3.2vw;
    font-size: 4.8vw;
  }
}
.intro-modal-character .character-profile {
  color: #000000;
  font-weight: 500;
  line-height: 2.1666666667;
}
@media screen and (min-width: 769px) {
  .intro-modal-character .character-profile {
    margin-top: 37px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768.9px) {
  .intro-modal-character .character-profile {
    margin-top: 3.2vw;
    font-size: 4.8vw;
  }
}

.study {
  background-color: #ECF1F6;
}
@media screen and (min-width: 769px) {
  .study {
    padding-block: 126px 10px;
  }
}
@media screen and (max-width: 768.9px) {
  .study {
    padding-block: 14.9333333333vw 10.6666666667vw;
  }
}

.study-title {
  color: #0267B6;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .study-title {
    font-size: 3.6rem;
    line-height: 1.1666666667;
  }
}
@media screen and (max-width: 768.9px) {
  .study-title {
    font-size: 6.4vw;
    line-height: 1.6666666667;
  }
}

@media screen and (min-width: 769px) {
  .study-slider {
    margin-top: 68px;
  }
}
@media screen and (max-width: 768.9px) {
  .study-slider {
    margin-top: 12.8vw;
  }
}
.study-slider .splide__slide {
  background-color: #0267B6;
  background-image: url(../images/dot_study_slide.webp);
  background-repeat: repeat-y;
}
@media screen and (min-width: 769px) {
  .study-slider .splide__slide {
    max-width: 857px;
    padding-block: 18px 36px;
    border-radius: 12px;
    background-position: left 17px top;
    background-size: 12px auto;
  }
}
@media screen and (max-width: 768.9px) {
  .study-slider .splide__slide {
    width: 87.2vw;
    padding-block: 2.6666666667vw;
    border-radius: 2.1333333333vw;
    background-position: left 2.6666666667vw top;
    background-size: 2.1333333333vw auto;
  }
}
@media screen and (max-width: 768.9px) {
  .study-slider .splide__slide.-slide2 {
    padding-bottom: 9.3333333333vw;
  }
  .study-slider .splide__slide.-slide2 .explanation-img {
    position: relative;
    max-width: 100%;
    max-height: calc(49.8666666667vw + 10px);
    padding-bottom: 10px;
  }
  .study-slider .splide__slide.-slide2 .explanation-img img {
    width: auto;
    height: 100%;
    max-width: none;
    max-height: 49.8666666667vw;
  }
  .study-slider .splide__slide.-slide2 .explanation-img .scroll-hint-icon {
    top: 50%;
    transform: translateY(-50%);
  }
}
.study-slider .splide_controls {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .study-slider .splide_controls {
    margin-top: 32px;
  }
}
@media screen and (max-width: 768.9px) {
  .study-slider .splide_controls {
    margin-top: 6.4vw;
  }
}
.study-slider .splide__arrow:disabled {
  opacity: 0.2;
}
@media screen and (min-width: 769px) {
  .study-slider .splide__arrow:not(:first-of-type) {
    margin-left: 28px;
  }
}
@media screen and (max-width: 768.9px) {
  .study-slider .splide__arrow:not(:first-of-type) {
    margin-left: 7.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .study-slider .explanation.-column {
    padding-right: 1.171875vw;
  }
}
@media screen and (min-width: 769px) {
  .study-slider .explanation.-column .explanation-txt {
    padding-right: 2.734375vw;
  }
}

@media screen and (min-width: 769px) {
  .study-slider-inner {
    padding-inline: 5.15625vw 2.8125vw;
  }
}
@media screen and (max-width: 768.9px) {
  .study-slider-inner {
    padding-inline: 10.6666666667vw 4.2666666667vw;
  }
}

.study-slider-title {
  margin: 0 auto;
  color: #FFFFFF;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .study-slider-title {
    max-width: 676px;
    padding-block: 40px 50px;
    border-bottom: 1px dashed #FFFFFF;
    font-size: 3.1rem;
    line-height: 0.9677419355;
  }
}
@media screen and (max-width: 768.9px) {
  .study-slider-title {
    padding-block: 5.8666666667vw 7.4666666667vw;
    border-bottom: 0.2666666667vw dashed #FFFFFF;
    font-size: 4.8vw;
    line-height: 1.4444444444;
  }
}

.conversation {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .conversation {
    max-width: 610px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768.9px) {
  .conversation {
    margin-top: 6.9333333333vw;
  }
}

.conversation-box {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}
.conversation-box.-left {
  flex-direction: row;
}
.conversation-box.-left .conversation-txt::after {
  left: 0;
  right: auto;
  background-image: url(../images/bg_balloon_left_pc.webp);
}
@media screen and (max-width: 768.9px) {
  .conversation-box.-left .conversation-icon {
    left: 0vw;
    right: auto;
  }
}
@media screen and (min-width: 769px) {
  .conversation-box {
    gap: 16px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 768.9px) {
  .conversation-box {
    position: relative;
    padding-inline: 6.9333333333vw 7.2vw;
  }
  .conversation-box:not(:first-of-type) {
    margin-top: 9.0666666667vw;
  }
}

.conversation-icon {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .conversation-icon {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 768.9px) {
  .conversation-icon {
    position: absolute;
    bottom: -5.8666666667vw;
    right: 0vw;
    width: 12.8vw;
    height: 12.8vw;
    z-index: 1;
  }
}

.conversation-txt {
  position: relative;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .conversation-txt {
    padding: 7px 20px;
    border: 1px solid #FFFFFF;
    border-radius: 30px;
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}
@media screen and (max-width: 768.9px) {
  .conversation-txt {
    padding: 3.2vw 4.8vw;
    border: 0.2666666667vw solid #FFFFFF;
    border-radius: 4.2666666667vw;
    font-size: 3.7333333333vw;
    line-height: 1.5714285714;
  }
}
.conversation-txt::after {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/bg_balloon_right_pc.webp) left top no-repeat;
  background-size: 100% auto;
  transform: translateY(100%);
  content: "";
}
@media screen and (min-width: 769px) {
  .conversation-txt::after {
    bottom: 2px;
    width: 43px;
    height: 20px;
  }
}
@media screen and (max-width: 768.9px) {
  .conversation-txt::after {
    display: none;
  }
}

.explanation {
  width: 100%;
  margin: 0 auto;
  background-color: #FFFFFF;
}
@media screen and (min-width: 769px) {
  .explanation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    margin-top: 35px;
    padding-block: 24px;
    padding-inline: 54px 60px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 768.9px) {
  .explanation {
    margin-top: 12.2666666667vw;
    padding: 8vw 5.3333333333vw 5.3333333333vw;
    border-radius: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  .explanation.-column {
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }
}
@media screen and (min-width: 769px) {
  .explanation.-column .explanation-img {
    width: 100%;
    max-width: none;
  }
}
@media screen and (min-width: 769px) {
  .explanation.-column .explanation-txt {
    width: 100%;
  }
}
@media screen and (max-width: 768.9px) {
  .explanation.-column .explanation-txt {
    margin-top: 5.3333333333vw;
  }
}

.explanation-img {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .explanation-img {
    width: 43%;
    max-width: 261px;
  }
}
@media screen and (max-width: 768.9px) {
  .explanation-img {
    width: 100%;
  }
}

.explanation-txt {
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .explanation-txt {
    font-size: 1.4rem;
    line-height: 2;
  }
}
@media screen and (max-width: 768.9px) {
  .explanation-txt {
    margin-top: 12.2666666667vw;
    font-size: 3.7333333333vw;
    line-height: 1.8571428571;
  }
}

.symptoms {
  background-image: url(../images/pic_symptoms_manae.webp), url(../images/pic_symptoms_memamon.webp);
  background-repeat: no-repeat, no-repeat;
  background-color: #ECF1F6;
}
@media screen and (min-width: 769px) {
  .symptoms {
    background-position: left 30px bottom -110px, right -25px bottom -35px;
    background-size: 240px auto, 321px auto;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms {
    background-position: left 5.8666666667vw bottom -16vw, right 0vw bottom -5.3333333333vw;
    background-size: 32vw auto, 47.4666666667vw auto;
  }
}

.symptoms-inner {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .symptoms-inner {
    max-width: 1280px;
    padding: 126px 10px 249px;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-inner {
    padding: 14.9333333333vw 5.8666666667vw 58.6666666667vw;
  }
}

.symptoms-title {
  color: #0267B6;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .symptoms-title {
    font-size: 3.6rem;
    line-height: 1.1666666667;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-title {
    font-size: 6.4vw;
    line-height: 1.6666666667;
  }
}

.symptoms-lead {
  color: #0267B6;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .symptoms-lead {
    margin-top: 32px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-lead {
    margin-top: 4.2666666667vw;
    font-size: 4.2666666667vw;
  }
}

.symptoms-list {
  display: grid;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .symptoms-list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 48px;
    max-width: 816px;
    margin-top: 72px;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 3.2vw;
    margin-top: 10.6666666667vw;
  }
}

.symptoms-item button {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  background-color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .symptoms-item button {
    padding: 54px 0px 38px;
    border: 1px solid #0267B6;
    border-radius: 120px;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-item button {
    padding-block: 9.6vw 12.2666666667vw;
    background-image: url(../images/arrow_btn_02.svg);
    background-position: center bottom 4.2666666667vw;
    background-size: 5.8666666667vw auto;
    background-repeat: no-repeat;
    border: 0.2666666667vw solid #0267B6;
    border-radius: 32vw;
  }
}
@media screen and (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .symptoms-item button:hover .symptoms-desc {
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  .symptoms-item img {
    width: 154px;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-item img {
    width: 28.8vw;
  }
}

.symptoms-name {
  display: inline-block;
  color: #0267B6;
  font-weight: 900;
  transform: translateX(0.25em);
}
@media screen and (min-width: 769px) {
  .symptoms-name {
    margin-top: 12px;
    font-size: 2.8rem;
    line-height: 1.0714285714;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-name {
    margin-top: 1.6vw;
    font-size: 5.3333333333vw;
    line-height: 1.2;
  }
}

.symptoms-desc {
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .symptoms-desc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 106px;
    background: url(../images/arrow_btn_03.svg) center bottom 27px no-repeat;
    background-size: 34px auto;
    background-color: rgba(2, 103, 182, 0.8);
    color: #FFFFFF;
    font-size: 2rem;
    line-height: 1.95;
    opacity: 0;
    transition: 0.4s ease-out 0s;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-desc {
    margin-top: 1.6vw;
    color: #0267B6;
    font-size: 3.2vw;
    line-height: 1.6666666667;
  }
}

.symptoms-annotation {
  color: #0267B6;
  font-weight: 900;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .symptoms-annotation {
    margin-top: 48px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-annotation {
    margin-top: 3.2vw;
    font-size: 3.2vw;
  }
}

.symptoms-modal {
  overflow: scroll;
}
@media screen and (min-width: 769px) {
  .symptoms-modal {
    padding: 80px 0;
  }
}
@media screen and (min-width: 769px) {
  .symptoms-modal[data-modal=symptoms04] .explanation-img {
    max-width: 588px;
  }
}
.symptoms-modal[data-modal=symptoms05].-show .explanation .scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}
.symptoms-modal[data-modal=symptoms05].-show .explanation .scroll-hint-icon-wrap.is-active .scroll-hint-icon::before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}
.symptoms-modal[data-modal=symptoms05].-show .explanation .scroll-hint-icon-wrap.is-active .scroll-hint-icon::after {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .symptoms-modal[data-modal=symptoms05] .explanation {
    padding-right: 1.171875vw;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-modal[data-modal=symptoms05] .explanation .explanation-img {
    max-width: 100%;
    max-height: calc(49.8666666667vw + 10px);
    padding-bottom: 10px;
  }
  .symptoms-modal[data-modal=symptoms05] .explanation .explanation-img img {
    width: auto;
    height: 100%;
    max-width: none;
    max-height: 49.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .symptoms-modal[data-modal=symptoms05] .explanation .explanation-txt {
    padding-right: 2.734375vw;
  }
}
.symptoms-modal[data-modal=symptoms05] .explanation .scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0;
}
.symptoms-modal[data-modal=symptoms05] .explanation .scroll-hint-icon-wrap.is-active .scroll-hint-icon::before {
  animation: none;
}
.symptoms-modal[data-modal=symptoms05] .explanation .scroll-hint-icon-wrap.is-active .scroll-hint-icon::after {
  opacity: 0;
}
.symptoms-modal[data-modal=symptoms05] .explanation .scroll-hint-icon {
  top: 50%;
  transform: translateY(-50%);
}
.symptoms-modal .modal-bg {
  height: 100%;
}
@media screen and (min-width: 769px) {
  .symptoms-modal .modal-bg {
    background-color: rgba(250, 247, 241, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-modal .modal-bg {
    background-color: #0267B6;
  }
}
.symptoms-modal .modal-inner {
  background-color: #0267B6;
}
@media screen and (min-width: 769px) {
  .symptoms-modal .modal-inner {
    position: relative;
    width: 92%;
    max-width: 800px;
    padding: 0 22px 22px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-modal .modal-inner {
    width: 100%;
    padding: 24.5333333333vw 6.4vw 20.8vw;
  }
}
.symptoms-modal .symptoms-modal-title {
  margin: 0 auto;
  color: #FFFFFF;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .symptoms-modal .symptoms-modal-title {
    max-width: 676px;
    padding-block: 56px;
    border-bottom: 1px dashed #FFFFFF;
    font-size: 3.1rem;
    line-height: 0.9677419355;
  }
}
@media screen and (max-width: 768.9px) {
  .symptoms-modal .symptoms-modal-title {
    font-size: 6.4vw;
    line-height: 1.25;
  }
}

.sos {
  background-color: #FFFFFF;
}
@media screen and (min-width: 769px) {
  .sos {
    padding: 126px 10px 0;
  }
}
@media screen and (max-width: 768.9px) {
  .sos {
    padding: 18.6666666667vw 5.8666666667vw 0vw;
  }
}

.sos-inner {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .sos-inner {
    max-width: 960px;
    border: 2px solid #0267B6;
    border-radius: 40px;
  }
}
@media screen and (max-width: 768.9px) {
  .sos-inner {
    padding-bottom: 3.4666666667vw;
    border: 0.5333333333vw solid #0267B6;
    border-radius: 4.2666666667vw;
  }
}

.sos-top {
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .sos-top {
    width: calc(100% - 50px);
    padding: 45px 0 34px;
    border-bottom: 2px dashed #0267B6;
  }
}
@media screen and (max-width: 768.9px) {
  .sos-top {
    width: calc(100% - 13.3333333333vw);
    padding-block: 8.5333333333vw 6.4vw;
    border-bottom: 0.5333333333vw dashed #0267B6;
  }
}

.sos-title {
  display: inline-block;
  position: relative;
  color: #0267B6;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .sos-title {
    font-size: 2.4rem;
    line-height: 1;
  }
}
@media screen and (max-width: 768.9px) {
  .sos-title {
    font-size: 6.4vw;
    line-height: 1.6666666667;
  }
}
.sos-title::after {
  display: block;
  position: absolute;
  background: url(../images/img_sos_01.webp) left top no-repeat;
  background-size: 100% auto;
  content: "";
}
@media screen and (min-width: 769px) {
  .sos-title::after {
    top: -58px;
    right: -102px;
    width: 83px;
    height: 115px;
  }
}
@media screen and (max-width: 768.9px) {
  .sos-title::after {
    top: -18.6666666667vw;
    right: -10.6666666667vw;
    width: 19.2vw;
    height: 26.6666666667vw;
  }
}

.sos-lead {
  color: #0267B6;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .sos-lead {
    margin-top: 13px;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
@media screen and (max-width: 768.9px) {
  .sos-lead {
    margin-top: 3.2vw;
    font-size: 3.7333333333vw;
    line-height: 1.8571428571;
  }
}

@media screen and (min-width: 769px) {
  .sos-middle {
    padding-block: 60px 50px;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 768.9px) {
  .sos-middle {
    padding-block: 7.7333333333vw 12vw;
    padding-inline: 6.6666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .sos-checklist {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(5, auto);
    justify-content: center;
    gap: 28px 40px;
  }
}
@media screen and (max-width: 768.9px) {
  .sos-checklist {
    display: flex;
    flex-direction: column;
    gap: 6.4vw;
  }
}

.sos-checklist-item label {
  display: block;
  position: relative;
  color: #0267B6;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .sos-checklist-item label {
    padding-left: 36px;
    font-size: 1.6rem;
    line-height: 1.625;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768.9px) {
  .sos-checklist-item label {
    padding-left: 8.5333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1.5714285714;
  }
}
.sos-checklist-item label::before {
  display: block;
  position: absolute;
  left: 0;
  content: "";
}
@media screen and (min-width: 769px) {
  .sos-checklist-item label::before {
    top: 4px;
    width: 20px;
    height: 20px;
    border: 2px solid #0267B6;
  }
}
@media screen and (max-width: 768.9px) {
  .sos-checklist-item label::before {
    top: 0.2666666667vw;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    border: 0.5333333333vw solid #0267B6;
  }
}
.sos-checklist-item label input {
  display: none;
}
.sos-checklist-item label:has(input:checked)::after {
  display: block;
  position: absolute;
  transform-origin: 0 100%;
  content: "";
}
@media screen and (min-width: 769px) {
  .sos-checklist-item label:has(input:checked)::after {
    top: 10px;
    left: 12px;
    width: 21px;
    height: 10px;
    border-left: 3px solid #CB0000;
    border-bottom: 3px solid #CB0000;
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 768.9px) {
  .sos-checklist-item label:has(input:checked)::after {
    top: 2.1333333333vw;
    left: 2.9333333333vw;
    width: 5.6vw;
    height: 2.6666666667vw;
    border-left: 0.8vw solid #CB0000;
    border-bottom: 0.8vw solid #CB0000;
    transform: rotate(-45deg);
  }
}

.sos-bottom {
  background-color: #ECF1F6;
}
@media screen and (min-width: 769px) {
  .sos-bottom {
    padding: 15px 15px 23px;
    border-top: 2px solid #0267B6;
    border-radius: 0 0 40px 40px;
  }
}
@media screen and (max-width: 768.9px) {
  .sos-bottom {
    width: 81.8666666667vw;
    margin: 0 auto;
    border-radius: 2.1333333333vw;
    overflow: hidden;
  }
}

@media screen and (min-width: 769px) {
  .result {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-bottom: 20px;
  }
}

.result-num {
  background-color: #D4E4F5;
  color: #0267B6;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .result-num {
    width: 265px;
    height: 77px;
    padding-block: 30px 12px;
    border-radius: 20px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768.9px) {
  .result-num {
    width: 100%;
    height: 25.0666666667vw;
    padding-top: 10.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
.result-num span {
  display: inline-block;
  line-height: 1;
  vertical-align: top;
}
@media screen and (min-width: 769px) {
  .result-num span {
    margin-inline: 8px;
    font-size: 5.4rem;
    transform: translateY(-18px);
  }
}
@media screen and (max-width: 768.9px) {
  .result-num span {
    margin-inline: 2.1333333333vw;
    font-size: 14.4vw;
    transform: translateY(-4.8vw);
  }
}

.result-txt {
  color: #0267B6;
  font-weight: 700;
  opacity: 0;
  transition: 0.3s ease-out 0s;
}
.result-txt.-show {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .result-txt {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
@media screen and (max-width: 768.9px) {
  .result-txt {
    padding: 5.3333333333vw 2.6666666667vw 6.6666666667vw 5.3333333333vw;
    font-size: 4.2666666667vw;
    line-height: 1.875;
  }
}

.forParents {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .forParents {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding-block: 20px 0;
    border-top: 1px solid #0267B6;
  }
}
@media screen and (max-width: 768.9px) {
  .forParents {
    width: calc(100% - 9.6vw);
    padding-block: 6.4vw;
    border-top: 0.2666666667vw solid #0267B6;
  }
}

.forParents-title {
  color: #0267B6;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .forParents-title {
    flex-shrink: 0;
    width: 165px;
    border-right: 1px solid #0267B6;
    font-size: 1.8rem;
    line-height: 36px;
  }
}
@media screen and (max-width: 768.9px) {
  .forParents-title {
    font-size: 4.8vw;
    line-height: 1.4444444444;
  }
}

.forParents-txt {
  color: #0267B6;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .forParents-txt {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 768.9px) {
  .forParents-txt {
    margin-top: 4.2666666667vw;
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
  }
}

.news {
  background-color: #FFFFFF;
}
@media screen and (min-width: 769px) {
  .news {
    padding: 126px 10px 194px;
  }
}
@media screen and (max-width: 768.9px) {
  .news {
    padding: 30.4vw 6.4vw 44.8vw;
  }
}

.news-title {
  color: #0267B6;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .news-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768.9px) {
  .news-title {
    font-size: 6.4vw;
  }
}

.news-list {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .news-list {
    margin-top: 48px;
    max-width: 1024px;
  }
}
@media screen and (max-width: 768.9px) {
  .news-list {
    margin-top: 10.6666666667vw;
    border-bottom: 0.2666666667vw solid #92D0EE;
  }
}

@media screen and (min-width: 769px) {
  .news-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding-block: 32px;
    padding-inline: 0 10px;
    border-top: 1px solid #92D0EE;
  }
}
@media screen and (max-width: 768.9px) {
  .news-item {
    padding-block: 8.5333333333vw;
    border-top: 0.2666666667vw solid #92D0EE;
  }
}

.news-date {
  position: relative;
  font-weight: 300;
}
@media screen and (min-width: 769px) {
  .news-date {
    flex-shrink: 0;
    width: 130px;
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
@media screen and (max-width: 768.9px) {
  .news-date {
    display: inline-flex;
    align-items: center;
    gap: 2.1333333333vw;
    font-size: 4.2666666667vw;
    line-height: 1.875;
  }
}

.news-date-new {
  display: block;
  border-radius: 100%;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .news-date-new {
    position: absolute;
    top: 50%;
    right: 0;
    padding: 5px 6px 8px;
    font-size: 1.4rem;
    border: 1px solid #000000;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768.9px) {
  .news-date-new {
    padding: 1.3333333333vw 1.6vw 2.1333333333vw;
    font-size: 3.7333333333vw;
    border: 0.2666666667vw solid #000000;
  }
}

.news-txt {
  font-weight: 300;
}
@media screen and (min-width: 769px) {
  .news-txt {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 768.9px) {
  .news-txt {
    margin-top: 6.4vw;
    font-size: 4.2666666667vw;
    line-height: 1.75;
  }
}
.news-txt a {
  display: inline-block;
  color: inherit;
}
@media screen and (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .news-txt a:hover {
    text-decoration: underline;
  }
}
.news-txt a[target=_blank]::after {
  display: inline-block;
  background: url(../images/icon_blank_gray.svg) left top no-repeat;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (min-width: 769px) {
  .news-txt a[target=_blank]::after {
    width: 11px;
    height: 8px;
    margin-left: 8px;
  }
}
@media screen and (max-width: 768.9px) {
  .news-txt a[target=_blank]::after {
    width: 2.9333333333vw;
    height: 2.1333333333vw;
    margin-left: 4.2666666667vw;
  }
}

.activity {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .activity {
    padding-inline: 10px;
  }
}

.activity-inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .activity-inner {
    max-width: 958px;
    padding: 96px 0 0;
  }
}
@media screen and (max-width: 768.9px) {
  .activity-inner {
    padding: 0vw 9.0666666667vw 0vw;
  }
}

.activity-title {
  color: #0267B6;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .activity-title {
    margin-bottom: 40px;
    font-size: 2.4rem;
    line-height: 1;
  }
}
@media screen and (max-width: 768.9px) {
  .activity-title {
    margin-bottom: 8.5333333333vw;
    font-size: 6.4vw;
    line-height: 1.6666666667;
  }
}

@media screen and (max-width: 768.9px) {
  .kidsFuture {
    padding-top: 14.9333333333vw;
  }
}
.kidsFuture::before {
  display: block;
  position: absolute;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/bg_activity_01.webp);
  animation: shake-up 3s infinite ease-in-out 0s;
  z-index: 1;
  content: "";
}
@media screen and (min-width: 769px) {
  .kidsFuture::before {
    top: -60px;
    left: -94px;
    width: 204px;
    height: 120px;
  }
}
@media screen and (max-width: 768.9px) {
  .kidsFuture::before {
    top: -24vw;
    left: -8vw;
    width: 48.5333333333vw;
    height: 28.8vw;
  }
}

@media screen and (min-width: 769px) {
  .kidsFuture-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
  }
}
@media screen and (max-width: 768.9px) {
  .kidsFuture-list {
    display: flex;
    flex-direction: column;
    gap: 10.6666666667vw;
  }
}

.kidsFuture-item {
  height: 100%;
}
.kidsFuture-item a {
  display: flex;
  flex-direction: column;
  color: #0267B6;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .kidsFuture-item a {
    transition: 0.4s ease-out 0s;
  }
}
@media screen and (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .kidsFuture-item a:hover {
    opacity: 0.7;
  }
}
.kidsFuture-item figure {
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .kidsFuture-item figure {
    border: 1px solid #92D0EE;
    border-radius: 12px;
  }
}
@media screen and (max-width: 768.9px) {
  .kidsFuture-item figure {
    border: 0.2666666667vw solid #92D0EE;
    border-radius: 3.2vw;
  }
}

.kidsFuture-title {
  color: #0267B6;
  font-weight: 900;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .kidsFuture-title {
    margin-top: 12px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768.9px) {
  .kidsFuture-title {
    margin-top: 4.2666666667vw;
    font-size: 4.2666666667vw;
  }
}

.kidsFuture-txt {
  color: #0267B6;
  font-weight: 500;
  line-height: 1.6666666667;
}
@media screen and (min-width: 769px) {
  .kidsFuture-txt {
    margin-top: 8px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768.9px) {
  .kidsFuture-txt {
    margin-top: 2.1333333333vw;
    font-size: 3.2vw;
  }
}

@media screen and (max-width: 768.9px) {
  .medicalInfo {
    padding-top: 22.6666666667vw;
    overflow: hidden;
  }
}
.medicalInfo::before {
  display: block;
  position: absolute;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/bg_activity_02.webp);
  animation: shake-up 1s infinite ease-in-out 0.1s;
  z-index: 1;
  content: "";
}
@media screen and (min-width: 769px) {
  .medicalInfo::before {
    bottom: -98px;
    right: -57px;
    width: 77px;
    height: 78px;
  }
}
@media screen and (max-width: 768.9px) {
  .medicalInfo::before {
    top: 5.3333333333vw;
    right: -4.2666666667vw;
    width: 17.0666666667vw;
    height: 17.6vw;
  }
}

@media screen and (min-width: 769px) {
  .medicalInfo-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px 28px;
  }
}
@media screen and (max-width: 768.9px) {
  .medicalInfo-list {
    display: flex;
    flex-direction: column;
    gap: 8.5333333333vw;
  }
}

@media screen and (min-width: 769px) {
  .medicalInfo-item {
    width: calc((100% - 56px) / 3);
  }
}
.medicalInfo-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0267B6;
  color: #FFFFFF;
  font-weight: 900;
  line-height: 1.0526315789;
}
@media screen and (min-width: 769px) {
  .medicalInfo-item a {
    min-height: 64px;
    border: 2px solid #0267B6;
    border-radius: 12px;
    font-size: 1.9rem;
    transition: 0.4s ease-out 0s;
  }
}
@media screen and (max-width: 768.9px) {
  .medicalInfo-item a {
    height: 14.9333333333vw;
    border-radius: 3.2vw;
    font-size: 5.0666666667vw;
  }
}
@media screen and (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .medicalInfo-item a:hover {
    background-color: #FFFFFF;
    color: #0267B6;
  }
}
.medicalInfo-item p {
  color: #0267B6;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .medicalInfo-item p {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768.9px) {
  .medicalInfo-item p {
    margin-top: 2.1333333333vw;
    font-size: 3.2vw;
  }
}

@media screen and (min-width: 769px) {
  .questionnaire {
    padding: 96px 10px 112px;
  }
}
@media screen and (max-width: 768.9px) {
  .questionnaire {
    padding: 16vw 5.6vw 29.8666666667vw 8.5333333333vw;
  }
}

.questionnaire-inner {
  position: relative;
  margin: 0 auto;
  background-color: #ECF1F6;
}
@media screen and (min-width: 769px) {
  .questionnaire-inner {
    max-width: 660px;
    padding: 60px 10px;
    border-radius: 21px;
  }
}
@media screen and (max-width: 768.9px) {
  .questionnaire-inner {
    padding: 14.9333333333vw 6.9333333333vw;
    border-radius: 5.6vw;
  }
}
.questionnaire-inner::before {
  display: block;
  position: absolute;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/bg_questionnaire_01.webp);
  animation: shake-up 3s infinite ease-in-out 0s;
  content: "";
}
@media screen and (min-width: 769px) {
  .questionnaire-inner::before {
    top: 25px;
    left: -268px;
    width: 174px;
    height: 216px;
  }
}
@media screen and (max-width: 768.9px) {
  .questionnaire-inner::before {
    bottom: -20.5333333333vw;
    left: -9.3333333333vw;
    width: 22.9333333333vw;
    height: 28.5333333333vw;
  }
}

.questionnaire-txt {
  color: #0267B6;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .questionnaire-txt {
    font-size: 1.6rem;
    line-height: 1.875;
    text-align: center;
  }
}
@media screen and (max-width: 768.9px) {
  .questionnaire-txt {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
  }
}

.questionnaire-btn {
  display: block;
  width: 100%;
  margin: 0 auto;
  background-color: #FFFFFF;
  color: #0267B6;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .questionnaire-btn {
    width: 322px;
    margin-top: 44px;
    padding-block: 10px;
    border: 1px solid #0267B6;
    border-radius: 20px;
    font-size: 1.6rem;
    transition: 0.4s ease-out 0s;
  }
}
@media screen and (max-width: 768.9px) {
  .questionnaire-btn {
    margin-top: 8.5333333333vw;
    padding-block: 2.6666666667vw;
    border: 0.2666666667vw solid #0267B6;
    border-radius: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .questionnaire-btn:hover {
    background-color: #0267B6;
    color: #FFFFFF;
  }
}

.outro {
  position: relative;
  background-image: url(../images/bg_outro_02.webp);
  background-repeat: no-repeat;
  background-color: #ECF1F6;
}
@media screen and (min-width: 769px) {
  .outro {
    padding: 105px 10px 256px;
    background-position: bottom 13px left 8px;
    background-size: 406px auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1150px) {
  .outro {
    background-size: 31.71875vw auto;
  }
  .outro .outro-balloon {
    bottom: 18.75vw;
    left: 3.046875vw;
    width: 18.828125vw;
    height: 15.625vw;
    padding-top: 3.28125vw;
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 768.9px) {
  .outro {
    padding: 12.2666666667vw 8vw 72vw 9.8666666667vw;
    background-position: bottom 18.6666666667vw left 10.6666666667vw;
    background-size: 82.6666666667vw auto;
  }
}

.outro-txt {
  color: #0267B6;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .outro-txt {
    font-size: 2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 768.9px) {
  .outro-txt {
    font-size: 4.2666666667vw;
    line-height: 2.125;
  }
}

.outro-balloon {
  background: url(../images/bg_outro_01.svg) left top no-repeat;
  background-size: 100% auto;
  color: #0267B6;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .outro-balloon {
    position: absolute;
    bottom: 240px;
    left: 39px;
    width: 241px;
    height: 200px;
    padding-top: 42px;
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
@media screen and (max-width: 768.9px) {
  .outro-balloon {
    width: 63.4666666667vw;
    height: 53.3333333333vw;
    margin-top: 13.3333333333vw;
    padding-top: 11.4666666667vw;
    font-size: 4.2666666667vw;
    line-height: 1.875;
  }
}

.footer {
  background: #ffffff;
  color: #666666;
  position: relative;
}
.footer .footer-inner {
  display: flex;
  position: relative;
}
@media screen and (min-width: 769px) {
  .footer .footer-inner {
    justify-content: space-between;
    align-items: center;
    max-width: 1366px;
    height: 155px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768.9px) {
  .footer .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20vw 0 20vw;
  }
}
.footer .footer-logo {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768.9px) {
  .footer .footer-logo {
    order: 2;
    margin-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer .footer-logo a {
    width: 60px;
    height: 22px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 768.9px) {
  .footer .footer-logo a {
    width: 16.5333333333vw;
    height: 6.4vw;
    margin-right: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer .footer-logo p {
    font-size: 10px;
    line-height: 1.316;
  }
}
@media screen and (max-width: 768.9px) {
  .footer .footer-logo p {
    font-size: 2.9333333333vw;
    line-height: 1.5;
  }
}

.footer-nav {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .footer-nav {
    font-size: 14px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768.9px) {
  .footer-nav {
    flex-direction: column;
    order: 1;
    font-size: 3.4666666667vw;
    margin-bottom: 15.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer-nav .footer-nav-item {
    margin-right: 25px;
  }
}
@media screen and (max-width: 768.9px) {
  .footer-nav .footer-nav-item:not(:last-of-type) {
    margin-bottom: 5.3333333333vw;
  }
}
.footer-nav .footer-nav-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #000000;
}
@media screen and (min-width: 769px) {
  .footer-nav .footer-nav-item a {
    transition: 0.4s ease-out 0s;
  }
}
@media screen and (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .footer-nav .footer-nav-item a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 769px) {
  .footer-nav .footer-nav-item a::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 11px;
    margin-left: 15px;
    background: url("../images/arrow_footer_pc.webp") no-repeat center;
    background-size: contain;
  }
}
@media screen and (max-width: 768.9px) {
  .footer-nav .footer-nav-item a::after {
    content: "";
    display: inline-block;
    width: 1.6vw;
    height: 2.4vw;
    margin-left: 3.2vw;
    background: url("../images/arrow_footer_sp.webp") no-repeat center;
    background-size: contain;
  }
}

.footer-info {
  color: #999999;
}
@media screen and (min-width: 769px) {
  .footer-info {
    font-size: 11px;
  }
}
@media screen and (max-width: 768.9px) {
  .footer-info {
    order: 3;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 2.4vw;
    color: #666666;
  }
}

.reminder {
  position: fixed;
  z-index: 3;
  transform: translateY(100%);
  transition: 0.3s ease-out 0s;
}
@media screen and (min-width: 769px) {
  .reminder {
    bottom: 0;
    right: 7px;
  }
}
@media screen and (max-width: 768.9px) {
  .reminder {
    bottom: 0vw;
    right: -4vw;
  }
}
.reminder.-show {
  transform: translateY(0);
}
.reminder.-show .reminder-txt {
  transform: scale(1);
  transition-delay: 0.5s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reminder-img {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .reminder-img {
    width: 89px;
  }
}
@media screen and (max-width: 768.9px) {
  .reminder-img {
    width: 23.7333333333vw;
  }
}

.reminder-txt {
  position: absolute;
  background-color: #0267B6;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.4285714286;
  transform: scale(0);
  transform-origin: 100% 100%;
  transition: 0.3s ease-out 0s;
}
@media screen and (min-width: 769px) {
  .reminder-txt {
    top: -30px;
    left: -113px;
    padding: 11px 16px 10px;
    border: 1px solid #FFFFFF;
    border-radius: 12px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768.9px) {
  .reminder-txt {
    top: -7.4666666667vw;
    left: -30.1333333333vw;
    padding: 2.9333333333vw 4.2666666667vw 2.6666666667vw;
    border: 0.2666666667vw solid #FFFFFF;
    border-radius: 3.2vw;
    font-size: 3.7333333333vw;
  }
}

.reminder-close {
  display: block;
  position: absolute;
  background-color: #FFFFFF;
  border-radius: 100%;
}
@media screen and (min-width: 769px) {
  .reminder-close {
    top: -8px;
    left: -8px;
    width: 24px;
    height: 24px;
    border: 2px solid #0267B6;
    transition: 0.3s ease-out 0s;
  }
}
@media screen and (max-width: 768.9px) {
  .reminder-close {
    top: -2.1333333333vw;
    left: -2.1333333333vw;
    width: 6.4vw;
    height: 6.4vw;
    border: 0.5333333333vw solid #0267B6;
  }
}
@media screen and (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .reminder-close:hover {
    opacity: 0.8;
  }
}
.reminder-close::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #0267B6;
  transform: translate(-50%, -50%);
  content: "✕";
}
.reminder-close span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}