

*{
  --min-viewport: 768;
  --max-viewport: 980;

  /* font-size */
  --slope-font: calc((var(--max-font-size) - var(--min-font-size)) / (var(--max-viewport) - var(--min-viewport)));
  --intercept-font: calc(var(--min-font-size) - var(--slope-font) * var(--min-viewport));
  --fluid-font-size: calc(var(--slope-font) * 100vw + var(--intercept-font) / 16 * 1rem);
  --clamp-font-size: clamp(var(--min-font-size) / 16 * 1rem, var(--fluid-font-size), var(--max-font-size) / 16 * 1rem);

  /* padding */
  --slope-padding: calc((var(--max-padding) - var(--min-padding)) / (var(--max-viewport) - var(--min-viewport)));
  --intercept-padding: calc(var(--min-padding) - var(--slope-padding) * var(--min-viewport));
  --fluid-padding: calc(var(--slope-padding) * 100vw + var(--intercept-padding) / 16 * 1rem);
  --clamp-padding: clamp(var(--min-padding) / 16 * 1rem, var(--fluid-padding), var(--max-padding) / 16 * 1rem);

}

body{
  --min-font-size: 16;
  --max-font-size: 18;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue";
  font-weight: 400;
  line-height:1.75rem;
  font-size: var(--clamp-font-size);
}
body.modal-active{
  overflow:hidden;
  height:100vh;
}
body > canvas {
  z-index:1060 !important;
}
img{
  max-width: 100%;
  height: auto;
}
small{
  font-size:80%;
}

/* navi */
header{
  position: fixed;
  display:flex;
  justify-content:space-between;
  top: 0;
  left: 0;
  width:100%;
  background-color:#ffffff;
  padding:0 0 0.5rem;
  z-index: 1040;
  box-shadow:0 1px 4px rgba(0,0,0,0.2);
}
.header-logo img{
  height: 35px;
  margin:1.25rem 0 0.65rem 1.15rem;
}
.menu {
  z-index: 1040;
}
#overlay-button {
  display: block;
  padding: 20px 0px;
  margin:0.85rem 1rem 0 0;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 3;
}
#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #000000;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #000000;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #000000;
}
input[type=checkbox] {
  display: none; 
}
input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}
input[type=checkbox]:checked ~ #overlay-button:hover span,
input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);
}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}
#overlay {
  height: 100vh;
  width: 100vw;
  background:rgb(194, 228, 242);
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  font-family: "Zen Maru Gothic", serif;
}
#overlay ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100vh;
  padding-left: 0;
  list-style-type: none;
}
#overlay ul li {
  padding: 1em;
}
#overlay ul li a {
  font-size:2rem;
  color:rgb(14, 67, 148);
  text-decoration: none;
}
#overlay ul li a:hover {
  color: #000!important;
}

.swiper-button-next,
.swiper-button-prev{
  display:none;
  color:#0E4394;
}
.swiper-container:hover .swiper-button-next,
.swiper-container:hover .swiper-button-prev{
  display:block;
}
.swiper-button-next{
  right:-15px;
  text-align:right;
}
.swiper-button-prev{
  left:-15px;
}
.swiper-button-prev:after,
.swiper-button-next:after{
  font-size:30px;
}



/* main */
section{
  padding: 5rem 1rem;
  overflow:hidden;
}
.section-container{
  max-width: 980px;
  width: 100%;
  margin:0 auto;
}
.section-container.white-round{
  padding:3rem 2rem;
  background-color:#ffffff;
  border-radius: 40px;
}
.section-container h1{
  text-align:center;
}

.icon{
  text-align:center;
}
.icon img{
  width:min(100%, 47px);
  margin: 0 0 0.25rem;
}
.h1 {
  --min-font-size: 25;
  --max-font-size: 36;
  font-size: var(--clamp-font-size);
  text-align:center;
  font-weight: 700;
  line-height: 3rem;
  margin:0 0 1.5rem;
}
.h1:not(.cp){
  font-family: "Zen Maru Gothic", serif;
}
.h2{
  --min-font-size: 24;
  --max-font-size: 36;
  font-size: var(--clamp-font-size);
  font-weight: 700;
  line-height: 2.5rem;
  font-family: "Zen Maru Gothic", serif;
}
.h3{
  --min-font-size: 20;
  --max-font-size: 24;
  font-size: var(--clamp-font-size);
  font-weight: 700;
  line-height: 2rem;
}

.marker{
  background-image: linear-gradient(90deg, #FEE383, #FEE383);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 35%;
  transition: all 1s ease-in-out;
}
.marker.mark{
  background-size: 100% 35%;
}

.btn-wrapper{
  text-align: center;
  margin: 2rem;
}
.btn {
  display:grid;
  margin: 0 auto;
  grid-template-columns:repeat(2, auto);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  white-space:nowrap;
}
.btn.btn-youtube {
  background-color:#ffffff;
  color: #e24044;
  border-radius:20px;
  max-width:330px;
  padding:0.5rem 1rem;
}
.btn.btn-youtube img{
  width:3rem;
  margin-right:1rem;
}
.btn.btn-x{
  border-radius:100vh;
  color: #ffffff;
  padding:0.75rem 1rem;
  max-width:330px;
  position: relative;
  z-index: 0;
}
.btn.btn-x:before{
  content: "";
  width: 100%;
  height: 100%;
  border-radius:100vh;
  position: absolute;
  z-index:-1;
  background: linear-gradient(-45deg, #0066B5 0%, #007CC5 15.27%, #8698CB 33%, #F2AECF 53.48%, #E2759C 70.94%, #D33F6B 84.73%, #E60045 100%);  left:0;
  transition: 0.5s;
}
.btn.btn-x:after{
  content: "";
  width: 100%;
  height: 100%;
  border-radius:100vh;
  position: absolute;
  z-index:-2;
  background: linear-gradient(135deg, #0066B5 0%, #007CC5 15.27%, #8698CB 33%, #F2AECF 53.48%, #E2759C 70.94%, #D33F6B 84.73%, #E60045 100%);  left:0;
  left:0;
}
.btn.btn-x:hover:before {
  opacity:0;
}
.btn.btn-x img{
  width:1.75rem;
  margin-right:1rem;
}
.hover-opacity{
  transition: opacity .2s ease-in-out;
}
.hover-opacity:hover{
  opacity:0.75;
}
.hover-underline{
  text-decoration:underline;
}
.hover-underline:hover{
  text-decoration:none;
}
.hover-shadow{
  transition: box-shadow .2s ease-in-out;
}
.hover-shadow:hover{
  box-shadow:none !important;
}
.hover-bg{
  transition: background-color .2s ease-in-out;
}
.hover-bg:hover{
  background-color:#F2FCFE;
}
.hover-x{
  transition: all .2s ease-in-out;
}


/* Key Visual */
#kv{
  color:#1493DE;
  line-height:2.5rem;
  padding-top:0;
  background-image:url("../images/bg-top.webp");
  background-position: center bottom;
  background-size: cover;
  height:100vh;
}
@media (orientation: landscape) {
  #kv{
    background-image:url("../images/bg-top-sky.webp");
  }
}

#kv .section-container{
  min-height:100vh;
  position:relative;
}
#kv .section-container .catch{
  display:flex;
  justify-content:center;
  align-items:center;
  padding-top:12vh;
  position: relative;
  z-index: 2;
}
#kv .section-container .catch img{
  height: 50vh;
  margin:0 3rem 0;
}
#kv .section-container .catchcopy h1{
  text-align: left;
  line-height:3.2rem;
  white-space:nowrap;
}
#kv .section-container .catchcopy p.lead{
  --min-font-size: 11;
  --max-font-size: 16;
  font-size: var(--clamp-font-size);
  width:min(100%, 300px);
  line-height: 2rem;
  font-weight:700;
  white-space:nowrap;
}
#kv .girl{
  position:absolute;
  bottom:0;
  width:100%;
  text-align:center;
}
#kv .girl img{
  height:36vh;
}
#kv #audio-control{
  position:absolute;
  bottom:1rem;
  right:0;
  text-align:center;
}
#kv #audio-control img{
  max-width:80%;
  margin-bottom:0.25rem;
}
#kv #audio-control .btn-audio-control{
  color:#ffffff;
  font-size:0.8rem;
  font-weight: 700;
  background:linear-gradient(90deg, #F66E84, #F3002B);
  border-radius:100vh;
  padding:0rem 1rem;
  transition: all .2s ease-in-out;
  width:134px;
  position:relative;
  text-align:left;
}
#kv #audio-control .btn-audio-control.active{
  background:linear-gradient(90deg, #042A71, #5776B5);
}
#kv #audio-control .btn-audio-control:after{
  content:"";
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  background-image:url("../images/circle-play-solid.svg");
  vertical-align: middle;
  transition: all .2s ease-in-out;
  position:absolute;
  right:6px;
  top:6px;
}
#kv #audio-control .btn-audio-control.active:after{
  content:"";
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  background-image:url("../images/circle-pause-solid.svg");
  vertical-align: middle;
  transition: all .2s ease-in-out;
  position:absolute;
  right:6px;
  top:6px;
}


#kv-under{
  background: linear-gradient(0deg, #C2E4F2, #FFFFFF);
  padding-bottom:1rem;
}
#kv-under .section-container-bottom{
  font-weight:700;
  padding:2rem 1rem;
  text-align:center;
}
#kv-under .section-container-bottom p{
  --min-font-size: 18;
  --max-font-size: 21;
  font-size: var(--clamp-font-size);
  color:#0E4394;
}
#kv-under p{
  line-height: 2.5rem;
  font-family: "Zen Maru Gothic", serif;
}
#kv-under .heart{
  margin:1rem 0;
}

/* gallery */
#gallery{
  background: #C2E4F2;
}
#gallery .section-container{
  background-color:#ffffff;
  border-radius: 40px;
  padding: 3rem 1rem;
}
#gallery .h1 {
  color:#0E4394;
  margin-bottom: 3rem;
}
.swiper-container{
  margin: 0 7rem 5rem;
  overflow: visible;
}
.swiper-pagination{
  transform: translateY(3rem);
}
.swiper-container .swiper-slide img {
  max-width: 100%;
}
.swiper-pagination-bullet-active{
  background:#0E4394;  
}
#gallery .swiper-container .swiper-slide .youtube {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow:hidden;
}
#gallery .swiper-container .swiper-slide .youtube iframe {
  width:100%;
  height:100%;
}
#gallery .swiper-wrapper.nosw{
  flex-direction:column;
}
#gallery .swiper-wrapper.nosw > .swiper-slide{
  margin-bottom:2rem;
}

.nurie-container{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  margin:3.5rem 0 4.5rem;
}
.nurie-container img{
  width:180px;
}
.nurie-container .fukidashi{
  --min-font-size:14;
  --max-font-size:16;
  font-size: var(--clamp-font-size);
  line-height:1.75rem;
  text-align:center;
  position: relative;
  border:2px solid #0E4394;
  border-radius:10px;
  font-weight:700;
  padding:0.5rem min(90vw, 2rem);
  margin-top:1.5rem;
}
.nurie-container .fukidashi a{
  --min-font-size:16;
  --max-font-size:20;
  font-size: var(--clamp-font-size);
  color:#0E4394;
  text-decoration: underline;
}
.nurie-container .fukidashi a svg{
  width:2rem;
}
.nurie-container .fukidashi a svg path{
fill:#0E4394;
}
.nurie-container .fukidashi:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 10px 20px 10px;
  border-color: transparent transparent #0E4394;
  translate: -50% -100%;
}
.nurie-container .fukidashi:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 7.8px 15.5px 7.8px;
  border-color: transparent transparent #ffffff;
  translate: -50% -100%;
}



/* voice */
#voice {
  background: #D2E5C9;
}
#voice .h1{
  color:#0E4394;
}
#voice .section-container{
  padding:0 1rem;
}
#voice .swiper-slide{
  position: relative;
  display:flex;
  height:auto;
  flex-direction: column;
}
#voice .swiper-slide > img{
  position: relative;
  z-index: 2;
  width: 50%;
  left: 25%;
}
.swiper-voice-wrapper{
  z-index: 1;
  position: relative;
  background-color: #ffffff;
  padding: 7rem 3rem 3rem;
  margin: -6rem 0 0;
  border-radius: 10px;
  flex-grow:1;
  display:flex;
  flex-direction: column;
}
.swiper-voice-wrapper h2{
  margin: 0 0 1rem;
}
.swiper-voice-wrapper h2+p{
  margin: 0 0 1rem;
  flex-grow:1;
}


/* info */
#info{
  background-color: #0E4394;
}
#info .h1:before{

}
.info-modal{
  border-top: 2px solid #0E4394;
}
.info-modal li a{
  display:inline-block;
  width: 100%;
  padding: 1rem 3rem 1rem 0;
  border-bottom: 2px dotted #0E4394;
  cursor: pointer;
  position:relative;
}
.info-modal li a:after{
  content: "";
  width: 24px;
  height: 100%;
  background-image: url("../images/plus-solid.svg");
  position: absolute;
  right: 8px;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.modal{
  position: fixed;
  top: 0;
  left: 0;
  z-index:1041;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}
.modal.is-active{
  opacity: 1;
  visibility: visible;
}
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 800px;
  width: 90%;
}
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}
.modal-content{
  background-color: #ffffff;
  padding: 2rem 2rem 2.5rem;
  text-align: left;
  border-radius: 10px;
}
.modal-title{
  line-height:1.5rem;
  border-bottom: 1px solid #0E4394;
  margin:0 0 1rem;
  padding: 0 0 0.5rem;
}
.modal.report .modal-content{
  padding-top: 0;
}
.modal.report .modal-title{
  line-height:3rem;
  display:inline-block;
  width:auto;
  padding: 0 1rem 0 0;
  border: 1px solid #000000;
  background-color:#ffffff;
  transform: rotate(-4.5deg) translate(-38px, -13px);
  white-space: nowrap;
}



/* love-blood */
#love-blood .icon img{
  width:300px;
  padding:0 1rem 2rem;
}
#love-blood .h1 {
  color:#0E4394;
  margin-bottom:4.5rem;
}
#love-blood .section-container-memo{
  border:3px solid #9DD4DB;
  border-radius:10px;
  position:relative;
  padding:3.5rem 2rem;
  background-image: url("../images/bg.webp");
}
.section-container-memo-ring{
  position:absolute;
  display:flex;
  justify-content: space-around;
  align-items: center;
  top: -25px;
  left: 0;
  width: 100%;
}
.section-container-memo-ring img{
  width:27px;
}
#love-blood .section-container-memo .h2{
  color:#0E4394;
  text-align:center;
  margin:0 auto 2rem;
  position:relative;
  max-width: 325px;
  padding:1rem 1rem 1.5rem;
  line-height:3.2rem;
}
#love-blood .section-container-memo .h2 img{
  position: absolute;
  right: 0;
  top:35px;
  width:70px;
}
#love-blood .section-container-memo .h2 strong{
  --min-font-size: 50;
  --max-font-size: 70;
  font-size: var(--clamp-font-size);
  font-weight: 900;
}
#love-blood .section-container-memo .h2:before{
  content:"";
  position: absolute;
  left: 0;
  bottom:0;
  width: 5px;
  height:50%;
  background-color: #E4A1A8;
}
#love-blood .section-container-memo .h2:after{
  content:"";
  position: absolute;
  left: 0;
  bottom:0;
  width: 65%;
  height:5px;
  background-color: #E4A1A8;
}
#love-blood .section-container-memo .h3{
  --min-font-size: 20;
  --max-font-size: 24;
  font-size: var(--clamp-font-size);
  font-weight:700;
  margin:3rem 0 1rem;
}
#love-blood .section-container-memo .report {
  text-align:center;
  padding: 5rem 0 3rem;
  display:flex;
  justify-content: center;
}
#love-blood .section-container-memo .report-lead{
  margin-bottom:2rem;
}
#love-blood .section-container-memo .report li{
  margin: 0 0 2rem;
}
#love-blood .section-container-memo .report li a {
  display: inline-block;
  border: 1px solid #242424;
  box-shadow: 3px 3px 4px #dddddd;
  background-color: #ffffff;
  position: relative;
  line-height: 3rem;
  padding:0 2rem 0 0;
  cursor: pointer;
  white-space:nowrap;
}
#love-blood .section-container-memo .report li:first-child{
  transform: rotate(-4.5deg) translate(0px, 0px);
}
#love-blood .section-container-memo .report li:nth-child(2){
  transform: rotate(2.5deg) translate(30px, 68px);
}
#love-blood .section-container-memo .report li:nth-child(3){
  transform: rotate(4.5deg) translate(-17px, -15px);
}
#love-blood .section-container-memo .report li:nth-child(4){
  transform: rotate(-2.5deg) translate(-48px, 67px);
}

#love-blood .section-container-memo .report li a span.number,
.modal.report h2 span.number{
  display: inline-block;
  height:100%;
  background-color: #E4A1A8;
  padding:0 0.75rem;
  margin:0 0.75rem 0 0;
}
#love-blood .section-container-memo .report li a:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  width: 12px;
  height: 3rem;
  background-image: url("../images/chevron-right-solid.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.btn.btn-primary{
  border-radius:20px;
  max-width:300px;
  padding:1rem 1.5rem;
  color:#ffffff;
  background-color:#D72735;
}
#love-blood .btns-wrapper{
  background-color: #ffffff;
  border:3px solid #9DD4DB;
  border-radius:10px;
  position:relative;
  padding:3.5rem 2rem;
}
#love-blood .btns-wrapper .h4{
  text-align:center;
  margin:0 0 0.5rem;
}
#love-blood .btns-wrapper .btns{
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* search */
#search{
  background-image:url("../images/bg-top.webp");
  background-position: center bottom;
  background-size: cover;
}
#search .section-container{
  background-color: rgb(255, 255, 255, 0.8);
}
#search .section-container .h2{
  --min-font-size: 24;
  --max-font-size: 36;
  font-size: var(--clamp-font-size);
  line-height:3rem;
  margin: 0 0 0.5rem;
}
#search .section-container .h2 img{
margin-right: 0.5rem;
}



.bannar-wrapper{
  display: grid;
  grid-template-columns: repeat(2,clamp(260 * 768 / 1366 * 1px,260 / 1366 * 100vw,260px));
  gap: clamp(24 * 768 / 1366 * 1px,24 / 1366 * 100vw,24px);
  margin-top: clamp(100 * 768 / 1366 * 1px,100 / 1366 * 100vw,100px);
  justify-content: center;
}


/* footer */
footer {
  --min-font-size:14;
  --max-font-size:14;
  font-size: var(--clamp-font-size);
  padding-top: clamp(80 * 768 / 1366 * 1px,80 / 1366 * 100vw,80px);
}
footer .logo{
  display:flex;
  margin:0 auto;
  justify-content: center;
  align-items: center;
}
footer .logo > a{
  display:inline-block;
  margin:0 0.5rem;
}
footer .sub-nav{
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: space-between;
  width: clamp(1100 * 768 / 1366 * 1px, 1100 / 1366 * 100vw, 1100px);
  margin: clamp(80 * 768 / 1366 * 1px, 80 / 1366 * 100vw, 80px) auto clamp(41 * 768 / 1366 * 1px, 41 / 1366 * 100vw, 41px);
}
footer .sub-nav ul{
  display: grid;
  grid-template-columns: repeat(3,auto);
  gap: clamp(40 * 768 / 1366 * 1px,40 / 1366 * 100vw,40px);
}
footer .sub-nav img{
  width: clamp(60 * 768 / 1366 * 1px,60 / 1366 * 100vw,60px);
}
footer .bottom{
  padding: clamp(40 * 768 / 1366 * 1px, 40 / 1366 * 100vw, 40px) 0;
  text-align: center;
  border-top: 2px solid #e5e5e5;
  line-height:1.25rem;
}
footer .bottom .txt{
  font-size:12px;
}
footer .bottom .copyright{
  margin-top: clamp(20 * 768 / 1366 * 1px, 20 / 1366 * 100vw, 20px);
}




/* heart */
.heart-wrapper{
  text-align:center;
  margin: 3rem 0  0;
}
.click_text{
  text-align:center;
  margin-bottom:10px;
  font-size:0.9rem;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.08rem;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: rgb(201, 0, 51);
}
.heart{
  background: rgb(201, 0, 51);
  border-radius: 50%;
  border:none;
  padding:20px 20px 15px;
  box-shadow: rgba(67, 133, 187, 0.07) 0px 2px 4px;
  cursor: pointer;
  position:relative;
  transform: scale(0.0);
}
.heart.inview:not(.active){
  animation: animation-heart-beat-inview 0.4s ease-in-out;
  transform: scale(1.0);
}
.heart.inviewed:not(.active){
  animation: animation-heart-beat-slow 2.0s ease-out infinite;
}
.heart.inviewed:not(.active):hover{
  opacity:0.8;
}

.heart > div{
  position:relative;
}
.heart img{
  width:40px;
}
.heart.active{
  transform: scale(1.0);
  background: rgb(234, 234, 234);
}
.heart.active img{
  animation-name: animation;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}
@keyframes animation{
  0%{
    transform:scale(1.0); 
  }
  50%{
    transform:scale(1.2);
  }
  100%{
    transform:scale(1.0);
  }
}

.css-1nuhxts {
    position: absolute;
    top: -5px;
    left: 10px;
    background: rgb(204, 142, 245);
    border-radius: 100px;
    width: 3px;
    height: 3px;
    opacity: 0;
}
.heart.active .css-1nuhxts{  
  animation: 0.25s ease 0s 1 normal none running animation-span;
}
@keyframes animation-1nuhxts{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.8;
  }
  80%{
    opacity: 0.2;
  }
  100%{
    opacity: 0.1;
    transform: translate(0px, -10px) scale(1.6);
  }
}

.css-xemkq3 {
    position: absolute;
    top: 1px;
    left: -6px;
    background: rgb(204, 142, 245);
    border-radius: 100px;
    width: 4px;
    height: 4px;
    opacity: 0;
}
.heart.active .css-xemkq3{  
  animation: 0.25s ease 0s 1 normal none running animation-1nuhxts;
}
@keyframes animation-xemkq3{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.8;
  }
  80%{
    opacity: 0.2;
  }
  100%{
    opacity: 0.1;
    transform: translate(-10px, -10px) scale(1.4);
  }
}

.css-1adxav {
    position: absolute;
    top: 20px;
    left: -8px;
    background: rgb(145, 210, 250);
    border-radius: 100px;
    width: 3px;
    height: 3px;
    opacity: 0;
}
.heart.active .css-1adxav{  
  animation: 0.25s ease 0s 1 normal none running animation-1adxav;
}
@keyframes animation-1adxav{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.8;
  }
  80%{
    opacity: 0.2;
  }
  100%{
    opacity: 0.1;
    transform: translate(-10px, 10px) scale(2);
  }
}

.css-1lz6i2i {
    position: absolute;
    bottom: 10px;
    left: 0px;
    background: rgb(255, 244, 80);
    border-radius: 100px;
    width: 2px;
    height: 2px;
    opacity: 0;
}
.heart.active .css-1lz6i2i{  
  animation: 0.25s ease 0s 1 normal none running animation-1lz6i2i;
}
@keyframes animation-1lz6i2i{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.8;
  }
  80%{
    opacity: 0.2;
  }
  100%{
    opacity: 0.1;
    transform: translate(-10px, 10px) scale(1.2);
  }
}

.css-1l5xz63 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: rgb(204, 142, 245);
    border-radius: 100px;
    width: 3px;
    height: 3px;
    opacity: 0;
}
.heart.active .css-1l5xz63{  
  animation: 0.25s ease 0s 1 normal none running animation-1l5xz63;
}
@keyframes animation-1l5xz63{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.8;
  }
  80%{
    opacity: 0.2;
  }
  100%{
    opacity: 0.1;
    transform: translate(-10px, 10px) scale(1.2);
  }
}

.css-1u5dmgm {
    position: absolute;
    top: -6px;
    right: 6px;
    background: rgb(140, 232, 195);
    border-radius: 100px;
    width: 4px;
    height: 4px;
    opacity: 0;
}
.heart.active .css-1u5dmgm{  
  animation: 0.25s ease 0s 1 normal none running animation-1u5dmgm;
}
@keyframes animation-1u5dmgm{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.8;
  }
  80%{
    opacity: 0.2;
  }
  100%{
    opacity: 0.1;
    transform: translate(10px, -10px) scale(1.1);
  }
}

.css-j02wix {
    position: absolute;
    top: 4px;
    right: -4px;
    background: rgb(255, 244, 80);
    border-radius: 100px;
    width: 3px;
    height: 3px;
    opacity: 0;
}
.heart.active .css-j02wix{  
  animation: 0.25s ease 0s 1 normal none running animation-j02wix;
}
@keyframes animation-j02wix{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.8;
  }
  80%{
    opacity: 0.2;
  }
  100%{
    opacity: 0.1;
    transform: translate(10px, -10px) scale(2);
  }
}

.css-1549goz {
    position: absolute;
    top: 14px;
    right: -10px;
    background: rgb(145, 210, 250);
    border-radius: 100px;
    width: 3px;
    height: 3px;
    opacity: 0;
}
.heart.active .css-1549goz{  
  animation: 0.25s ease 0s 1 normal none running animation-1549goz;
}
@keyframes animation-1549goz{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.8;
  }
  80%{
    opacity: 0.2;
  }
  100%{
    opacity: 0.1;
    transform: translate(10px, 0px) scale(1.5);
  }
}

.css-1ujavvd {
    position: absolute;
    bottom: 8px;
    right: 0px;
    background: rgb(145, 210, 250);
    border-radius: 100px;
    width: 2px;
    height: 2px;
    opacity: 0;
}
.heart.active .css-1ujavvd{  
  animation: 0.25s ease 0s 1 normal none running animation-1ujavvd;
}
@keyframes animation-1ujavvd{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.8;
  }
  80%{
    opacity: 0.2;
  }
  100%{
    opacity: 0.1;
    transform: translate(10px, 10px) scale(2);
  }
}

.css-unnc0 {
    position: absolute;
    bottom: 1px;
    right: 8px;
    background: rgb(255, 244, 80);
    border-radius: 100px;
    width: 2px;
    height: 2px;
    opacity: 0;
}
.heart.active .css-unnc0{  
  animation: 0.25s ease 0s 1 normal none running animation-unnc0;
}
@keyframes animation-unnc0{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.8;
  }
  80%{
    opacity: 0.2;
  }
  100%{
    opacity: 0.1;
    transform: translate(10px, 10px) scale(2);
  }
}

.heart_main{
  z-index: 1051;
  width:300px;
  height:300px;
  position: fixed;
  inset: 0;
  margin: auto;
  animation: animation-heart-hide 0.3s ease-out;
  opacity:0;
  display:none;
}
.heart_main > svg{
  overflow:visible;
}
.heart_main.active{
  animation: animation-heart 0.6s cubic-bezier(0.22, 1, 0.36, 1)  forwards;
}
.heart_main.completing{
  opacity: 1;
  animation: animation-heart-completing 2.0s ease-out forwards;
}
.heart_main.complete{
  opacity: 1;
  display:block !important;
  animation: animation-heart-beat 2.0s ease-out infinite;
}
@keyframes animation-heart{
  0% {
    transform: scale(0.3) rotate(50deg);
    opacity: 0;
  }
  50%{
    transform: scale(1.1) rotate(-10deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes animation-heart-hide{
  from { 
    transform: scale(1.0);
    opacity:1;
  }
  to { 
    transform: scale(1.3);
    opacity:0;
  }
}
@keyframes animation-heart-completing{
  0%{
    transform: scale(1.0);
  }
  90%{
    transform: scale(0.8);
  }
  95%{
    transform: scale(1.3);
  }
  100%{
    transform: scale(1.0);
  }
}


@keyframes animation-heart-beat{
  0% {
    transform: scale(1.0);
  }
  5%{
    transform: scale(1.05);
  }
  10%{
    transform: scale(0.95);
  }
  15%{
    transform: scale(1.0);
  }
  30% {
    transform: scale(1.0);
  }
  35%{
    transform: scale(1.05);
  }
  40%{
    transform: scale(0.95);
  }
  45%{
    transform: scale(1.0);
  }
}
@keyframes animation-heart-beat-inview{
  0% {
    transform: rotate(0deg) scale(0.1);
  }
  70%{
    transform: rotate(370deg) scale(1.0);
  }
  80%{
    transform: rotate(350deg) scale(1.0);
  }
  90%{
    transform: rotate(360deg) scale(1.0);
  }
}
@keyframes animation-heart-beat-slow{
  0% {
    transform: scale(1.0);
  }
  50%{
    transform: scale(1.1);
  }
  100%{
    transform: scale(1.0);
  }
}
.heart-outline{
  fill:none;
  stroke-width:5;
}
#wave{
  transform: translateY(0%);
}
#wave.full-1{
  animation: animation-full-1 0.8s cubic-bezier(0.25, 1, 0.5, 1)  forwards;
}
@keyframes animation-full-1{
  from{
    transform: translateY(0%);
  }
  to{
    transform: translateY(-25%);
  }
}
#wave.full-2{
  animation: animation-full-2 0.8s cubic-bezier(0.25, 1, 0.5, 1)  forwards;
}
@keyframes animation-full-2{
  from{
    transform: translateY(-25%);
  }
  to{
    transform: translateY(-50%);
  }
}
#wave.full-3{
  animation: animation-full-3 0.8s cubic-bezier(0.25, 1, 0.5, 1)  forwards;
}
@keyframes animation-full-3{
  from{
    transform: translateY(-50%);
  }
  to{
    transform: translateY(-75%);
  }
}
#wave.full-4{
  animation: animation-full-4 1.7s cubic-bezier(0.25, 1, 0.5, 1)  forwards;
}
@keyframes animation-full-4{
  from{
    transform: translateY(-75%);
  }
  to{
    transform: translateY(-100%);
  }
}

.modal-wrap{
  position:relative;
  display:none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color:#ffffff;
}
.modal-wrap-progress{
  position:relative;
  display:none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity:0.5;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
}
.modal-wrap.active,
.modal-wrap-progress.active{
  display:block;
  animation: animation-modal 0.15s linear;
}
.modal-wrap .modal-close{
  position:absolute;
  right:5px;
  top:0px;
  cursor:pointer;
  background:transparent;
  border:none;
  color:#000000;
  font-size:3rem;
}
@keyframes animation-modal{
  from{
    opacity:0;
  }
  to{
    opacity:0.5;
  }
}
.modal-message {
  --min-font-size:20;
  --max-font-size:24;
  font-size: var(--clamp-font-size);
  font-weight:700;
  display:none;
  position: fixed;
  top: calc((100dvh/2) - 185px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1052;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100vw;
  color:#0E4394;
}
.modal-message.active {
  display:flex;
}




@media screen and (max-width:1024px) {
  .swiper-container{
    margin: 0 0 5rem;
  }
  #kv .section-container .catch {
    padding-top:calc(25dvh - 23px);
  }
  #kv .section-container .catch img{
    height:30vh;
  }
  #kv .girl img{
    height:28vh;
  }
}
@media screen and (max-width:992px) {
  #kv .section-container .catch img{
    height:30vh;
  }
  #kv .section-container .catchcopy h1{
    line-height:2.5rem;
  }
  #kv .section-container .catchcopy p.lead{
    line-height:1.35rem;    
  }
  #voice .swiper-slide > img{
    width: 60%;
    left: 20%;
  }
}
@media screen and (max-width:768px) and (orientation: portrait) {

  #kv .section-container .catch {
    padding-top:12vh;
  }
  #kv .section-container .catch{
    flex-direction: column;
  }
  #kv .section-container .catch img{
    height:30vh;
  }
  #kv .section-container .catchcopy h1{
    line-height:2.35rem;
    margin-bottom:calc(0.5vh*4);
  }
  #kv .section-container .catchcopy p.lead{
    line-height:1.3rem;    
  }
  #kv .girl img{
    height:20vh;
  }
  .swiper-voice-wrapper{
    padding: 7rem 1rem 1rem;
  }
  .section-container.white-round,
  #love-blood .section-container-memo{
    padding:3rem 1rem;
  }
  #love-blood .section-container-memo .h2{
    max-width:262px;
  }
  #love-blood .btns-wrapper .btns{
    flex-direction: column;
  }
  #love-blood .section-container-memo .report{
    display:inline;
  }
  #love-blood .section-container-memo .report li:first-child{
    transform: rotate(-4.5deg) translate(-80px, 0px);
  }
  #love-blood .section-container-memo .report li:nth-child(2){
    transform: rotate(2.5deg) translate(60px, 0px);
  }
  #love-blood .section-container-memo .report li:nth-child(3){
    transform: rotate(4.5deg) translate(-28px, 0px);
  }
  #love-blood .section-container-memo .report li:nth-child(4){
    transform: rotate(-2.5deg) translate(60px, 0px);
  }

  .modal-content{
    padding: 2rem 1rem 2.5rem;
  }
  .modal.report h2 span.number{
    margin: 0 0.3rem 0 0;
  }
  footer .sub-nav{
    grid-template-columns: 1fr;
    width: 100%;
  }
  footer .sub-nav .nav{
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: calc(56 / 768 * 60vw);
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: calc(80 / 768 * 60vw);
    margin-bottom: calc(80 / 768 * 60vw);
    text-align: center;
  }
  footer .sub-nav .sns{
    gap: calc(60 / 768 * 100vw);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer .bottom {
    padding:calc(56 / 768 * 100vw) calc(40 / 768 * 100vw) calc(32 / 768 * 100vw);
  }

}

@media screen and (max-width:375px) {
  #gallery .h1{
    font-size:24px !important;
  }
  .h3{
    font-size:19px !important;
  }

}
