@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic');
.zen-maru {
  font-family: "Zen Maru Gothic", sans-serif;
}
body {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  background: none;
  color: #1a2f86;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "nsjpr", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  min-width: unset !important;
  
}
html {
  font-size: 100%;
}
.site-header, .site-footer {
  display: none;
}
img {
  vertical-align: bottom;
  image-rendering:auto;
}
/***********************************************
  animation
***********************************************/
.fade-first {
  opacity: 0;
  transform: scale(1.05) translateZ(0);
  animation-name: fadein;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  filter: blur(6px);
  -webkit-font-smoothing: antialiased;
}
.fade-first.delay_03 {
  animation-delay: 0.3s;
}
.fade-first.delay_05 {
  animation-delay: 0.5s;
}
.fade-first.delay_08 {
  animation-delay: 0.8s;
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform:  scale(1.05) translateZ(0);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
.scroll-fade {
  opacity: 0;
  filter: blur(6px);
  transition: all 0.6s ease-out 0.3s;
  transform: scale(1.05) translateZ(0);
  -webkit-font-smoothing: antialiased;
}
.scroll-fade.show {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
/***********************************************
  loading
***********************************************/
#loading {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/***********************************************
  MainContetnts
***********************************************/
#pinpitaBox {
  max-width: 400px;
  min-height: 100vh;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0px 5px 15px 0px rgba(189, 23, 74, 0.2);
}
.mainCont {
  position: relative;
  margin: 0 auto;
  width: 100%;
  background: url("../images/pinpita/head_img.png") no-repeat center top / 100% auto, url("../images/pinpita/top_sp_star_bg.png") no-repeat center 10rem / 100% auto;
  background-color: #fff;
  padding-top: 5.3125rem;
  padding-bottom: 5rem;
}
.mainCont .pageTitle {
  text-align: center;
}
.mainCont .pageLead {
  font-size: 0.9375rem;
  text-align: center;
  font-weight: 700;
  margin-top: 0.9375rem;
  margin-bottom: 1.5625rem;
  letter-spacing: 0.05rem;
  text-indent: 0.05rem;
}
/* phone
***********************************************/
.mainCont .phoneImg {
  position: relative;
  text-align: center;
  background: url("../images/pinpita/top_sp_bg.png") no-repeat center top / 100% auto;
}
.mainCont .un_neIcon {
  position: absolute;
  top: 9.375rem;
  left: 1.5rem;
}
.mainCont .footPrints {
  text-align: left;
  padding-left: 2.5rem;
}
.mainCont .footPrints img {
  position: relative;
  margin-top: -3.5rem;
}
/* common
***********************************************/
.mainCont .grdTitle {
  background: #F8F4FC;
  background: linear-gradient(42deg, rgba(248, 244, 252, 1) 0%, rgba(226, 239, 253, 1) 100%);
  mask-repeat: no-repeat;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.mainCont .items h3 {
  position: relative;
  text-align: center;
}
.mainCont .itemLead {
  text-align: center;
  font-size: 0.8125rem;
  line-height: 2.2;
  font-weight: 500;
  margin-top: 2rem;
}
/* fisrt
***********************************************/
.mainCont .i01 .pinImg {
  text-align: center;
}
.mainCont .i01 .grdTitle {
  mask-image: url('../images/pinpita/first_bg_title.svg');
  width: 100%;
  height: 130px;
  transform: scale(1.1);
  margin-top: -1rem;
}
.mainCont .i01 h3 {
  margin-top: -5rem;
}
.mainCont .i01 .baloonsArea {
  margin-top: 2.1875rem;
  background: url("../images/pinpita/first_bg.png") no-repeat center top / cover;
  padding-bottom: 2.5rem;
}
/* second
***********************************************/
.mainCont .i02 {
  margin-top: 5rem;
}
.mainCont .i02 .grdTitle {
  mask-image: url('../images/pinpita/second_bg_title.svg');
  width: 100%;
  height: 130px;
}
.mainCont .i02 h3 {
  margin-top: -11rem;
}
.mainCont .i02 .spImg02 {
  margin-top: -2rem;
}
.mainCont .i02 .smpArea {
  text-align: center;
}
/* third
***********************************************/
.mainCont .i03 {
  margin-top: 5rem;
}
.mainCont .i03 .grdTitle {
  mask-image: url('../images/pinpita/third_bg_title.svg');
  width: 100%;
  height: 130px;
}
.mainCont .i03 h3 {
  margin-top: -11rem;
}
.mainCont .i03 .itemLead {
  margin-bottom: 1.5rem;
}
.mainCont .i03 .securityArea {
  text-align: center;
}
/***********************************************
  Side
***********************************************/
aside {
  position: fixed;
  left: 0;
  width: calc((100vw - max(16vw, 400px)) / 2);
  top: 0;
  bottom: 0;
  padding-inline: 32px;
  margin: auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 2vw;
}
aside .sideLogo {
  margin-top: 2rem;
}
aside .sideLead {
  font-size: 0.9375rem;
  text-align: center;
  font-weight: 700;
  margin-top: 0.9375rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05rem;
  text-indent: 0.05rem;
}
aside .bnrs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
aside .bnrs a {
  display: inline-block;
}
aside .shareBtn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1rem;
}
aside .shareBtn a {
  display: inline-block;
}
/***********************************************
  background
***********************************************/
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #FBD5F1;
  background: linear-gradient(0deg, rgba(251, 213, 241, 1) 30%, rgba(237, 186, 255, 1) 65%, rgba(178, 166, 252, 1) 100%);
  background-size: 200% 200%;
  overflow: clip;
  animation: Grad 20s ease infinite;
}
@keyframes Grad {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}
}
.sky {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/pinpita/sky.png") no-repeat center top 2vh / 100% auto;
  display: block;
  z-index: -4;
  animation-delay: 1s;
  opacity: 0;
}
.building {
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #F998E4 0%, #EDD3FE 30%);
  /* 画像の形をマスクにする */
  -webkit-mask-image: url("../images/pinpita/building_bottom.svg");
  mask-image: url("../images/pinpita/building_bottom.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  position: fixed;
  inset: 0;
  z-index: -3;
  animation-delay: 0.8s;
  opacity: 0;
}
.building_top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/pinpita/building_top.png") no-repeat center bottom / 100% auto;
  display: block;
  z-index: -2;
  animation-delay: 0.6s;
  opacity: 0;
}
.bg_tx {
  background: url("../images/pinpita/bg_tx.png") repeat left top;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: screen;
}
.bgAnime {
  animation-name: fadein;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
/***********************************************
  footer
***********************************************/
footer {
  padding: 0 0 3rem 0;
  border-top: 0;
  background: #9BC4FC;
  background: url("../images/pinpita/foot_wave.svg") no-repeat center top / 100% auto, linear-gradient(0deg, rgba(205, 225, 253, 1) 0%, rgba(231, 225, 253, 1) 100%);
}
footer h4 {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
footer .bnrs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
footer .bnrs a {
  display: inline-block;
}
footer .linkList {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
}
footer .linkList li {
  max-width: 50%;
  font-size: .75rem;
  padding: 0 1rem;
}
footer .linkList li + li {
  border-left: #5a91e1 solid 1px;
}
footer .linkList a {
  color: #5a91e1;
  text-decoration: none;
}
footer .shareBtn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
}
footer .shareBtn a {
  display: inline-block;
}
footer small {
  display: block;
  font-size: 0.6875rem;
  text-align: center;
  color: #5a91e1;
}
/***********************************************
  pagetop
***********************************************/
#pagetop {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(220px) translateY(-50%);
  opacity: 0;
  pointer-events: none; 
  padding: 0;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 10;
}
#pagetop.show {
  opacity: 1;
  pointer-events: auto;
}
#pagetop img{
   transition: all 0.3s ease;
}
#pagetop:hover img{
  transform: scale(0.9);
}
@media (max-width:1080px) {
  #pinpitaBox {
    margin: 0 5vw 0 auto;
  }
  aside {
    width: calc(100% - (400px + 5vw));
    padding-inline: 6vw;
  }
  aside .pinImg {
    width: 10vw;
  }
  aside .sideLogo {
    margin-top: 1.5rem;
  }
  aside .bnrs img {
    width: auto;
    height: 4.5vw;
  }
  #pagetop {
    display: none !important;
    opacity: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  a {
    transition: all 0.4s ease;
  }
  /* fisrt
  ***********************************************/
  .mainCont .i01 .grdTitle {
    margin-left: -1rem;
  }
  /***********************************************
    Side
  ***********************************************/
  aside .bnrs a:hover, aside .shareBtn a:hover {
    transform: scale(1.1);
  }
  /***********************************************
    footer
  ***********************************************/
  footer .shareBtn {
    display: none;
  }
  footer .bnrs a:hover {
    transform: scale(1.1);
  }
  footer .linkList a:hover {
    color: #eb37a2;
  }
}
@media only screen and (max-width: 767px) {
  body {
    padding: 0 5vw;
  }
  #pinpitaBox {
    margin: 0 auto;
  }
  aside {
    display: none;
  }
  
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}