@charset "UTF-8";


/* ---------------------------------- 個人情報 ---------------------------------- */  

#sec01 .sec-in {
  position: relative;
}

#sec01 .sec-in .blur-1 {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(26%, -60%);
  z-index: -1;
}

#sec01 .sec-in .blur-2 {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-40%, -30%);
  z-index: -1;
}

.p-cont {
  width: 80%;
  margin: 0 auto 3em;
  text-align: justify;

  opacity: 0;
  transform: translateY(1em);
  transition: .5s ease all;
}
.p-cont.active {
  opacity: 1;
  transform: translateY(0);
}

.p-sub {
  font-weight: 600;
}

.p-text {
  text-indent: -1em;
  padding-left: 1em;
}
.p-text02 {
  text-indent: -2.5em;
  padding-left: 2.5em;
}

.res-in {
  width: 80%;
  margin: 0 auto 6em;
}

.reception {
  background: #E9E6D4;
  display: inline-block;
  padding: 2em 3em;

  opacity: 0;
  filter: blur(10px);
  transition: 1s ease all;
}
.reception.active {
  opacity: 1;
  filter: blur(0);
}

/*768px以下*/
@media screen and (max-width: 768px){

  .p-cont,
  .res-in {
    width: 90%;
  }


}













