@charset "UTF-8";
body {
  background-color: #EFFCFF;
}

.section-profile {
  position: relative;
  padding: 80px 0 70px;
  background-color: #C6EAF2;
}
.section-profile::before {
  content: "";
  position: absolute;
  display: block;
  top: -1px;
  width: 100%;
  height: 13.3333333333vw;
  max-height: 40px;
  background: url(..//images/decoration/header_bg2.svg) no-repeat top center/100% 100%;
}
.section-profile__container-pc-only {
  display: none;
}
.section-profile__container {
  padding: 0 16px;
}
.section-profile__container h2 {
  color: #54B8CC;
  margin: 0 0 30px 0;
  text-align: left;
  position: relative;
  z-index: 1;
  font-family: "Hachi Maru Pop", cursive;
}
.section-profile__container__wrapper__inner01__decoration {
  position: relative;
}
.section-profile__container__wrapper__inner01__decoration img {
  position: absolute;
  display: block;
}
.section-profile__container__wrapper__inner01__decoration .decoration-white {
  width: 33%;
  max-width: 200px;
  top: -25.8666666667vw;
  right: 30%;
}
.section-profile__container__wrapper__inner01__decoration .decoration-yellow {
  width: 15%;
  max-width: 100px;
  top: -12.2666666667vw;
  left: 86%;
}
.section-profile__container__wrapper__inner01__suzu-image {
  display: block;
  width: 60%;
  max-width: 450px;
  margin: 0 auto 30px;
}
.section-profile__container__wrapper__inner02 {
  position: relative;
}
.section-profile__container__wrapper__inner02 p {
  text-align: left;
  padding: 5%;
  background-image: url(..//images/decoration/lead-white_bg.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #585F62;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.section-profile__container__wrapper__inner02 p span {
  font-weight: 600;
}
.section-profile__container__wrapper__inner02 img {
  display: block;
  position: absolute;
  bottom: -21.3333333333vw;
  right: 0;
  bottom: -32vw;
  width: 21%;
  z-index: 2;
}

#screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #C6EAF2;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

body {
  background: #FFE178;
  /*遷移アニメーションと同じ色を指定*/
}

body.appear {
  background: #EFFCFF;
  /*画面を開いた後の背景色を指定*/
}

.screenbg {
  display: none;
  content: "";
  position: fixed;
  transform: scale(100);
  background-color: #FFE178;
  /*伸びる背景色の設定*/
  z-index: 999;
  /*丸のスタートの形状*/
  top: calc(50% - 1rem);
  /*50%から円の半径を引いた値*/
  left: calc(50% - 1rem);
  /*50%から円の半径を引いた値*/
  width: 2rem;
  height: 2rem;
}

/*bodyにappearクラスがついたら出現*/
body.appear .screenbg {
  display: block;
  border-radius: 50%;
  animation-name: PageAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    /*丸のスタート位置と形状*/
    transform: scale(100);
  }
  100% {
    /*丸の終了位置と形状*/
    transform: scale(0);
    display: none;
    /*終了時は消える*/
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.randomScroll-box,
.randomScroll-box2 {
  opacity: 0;
}

.profile {
  animation-name: profileAnime;
  animation-duration: 0.5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes profileAnime {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.biography {
  animation-name: profileAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes biographyAnime {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (min-width: 530px) {
  .section-profile {
    padding: 80px 0 70px;
  }
  .section-profile__container__wrapper__inner01__decoration .decoration-white {
    width: 25%;
    top: -19.0104166667vw;
    right: 40%;
  }
  .section-profile__container__wrapper__inner01__decoration .decoration-yellow {
    width: 25%;
    top: -21.3333333333vw;
    left: 66%;
  }
}
@media (min-width: 900px) {
  .section-profile {
    padding: 150px 0 150px;
  }
  .section-profile::before {
    max-height: 60px;
  }
  .section-profile__container-pc-only {
    display: block;
    padding: 0 160px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .section-profile__container-pc-only__wrapper__inner01 {
    display: flex;
  }
  .section-profile__container-pc-only__wrapper__inner01 p {
    text-align: left;
    padding: 4%;
    background-image: url(..//images/decoration/lead-white_bg.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #585F62;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
    width: 47.2222222222vw;
    height: auto;
    max-width: 680px;
    max-height: 680px;
    position: relative;
    z-index: 1;
  }
  .section-profile__container-pc-only__wrapper__inner01 p span {
    font-weight: 600;
  }
  .section-profile__container-pc-only__wrapper__inner01-decoration {
    position: relative;
    width: 21.875vw;
    height: 17.7777777778vw;
    max-width: 315px;
    max-height: 256px;
    left: 10%;
  }
  .section-profile__container-pc-only__wrapper__inner01-decoration img {
    position: absolute;
    display: block;
  }
  .section-profile__container-pc-only__wrapper__inner01-decoration .decoration-white {
    width: 39%;
  }
  .section-profile__container-pc-only__wrapper__inner01-decoration .decoration-yellow {
    width: 50%;
    top: 30%;
    left: 30%;
  }
  .section-profile__container-pc-only__wrapper__inner02 {
    position: relative;
    display: flex;
    width: 100%;
    height: 44.4444444444vw;
    max-height: 640px;
    flex-direction: row-reverse;
    justify-content: center;
  }
  .section-profile__container-pc-only__wrapper__inner02 img {
    position: absolute;
    display: block;
  }
  .section-profile__container-pc-only__wrapper__inner02 .suzu-image {
    width: 34%;
    max-width: 680px;
    top: -20%;
    left: 54%;
  }
  .section-profile__container-pc-only__wrapper__inner02 .decoration-turquoise {
    width: 18%;
    max-width: 220px;
    top: 30%;
    left: 10%;
  }
  .section-profile__container {
    margin: 0 auto;
    padding: 0 160px;
    max-width: 1440px;
  }
  .section-profile__container h2 {
    font-size: 5rem;
    line-height: 5rem;
    margin-bottom: 80px;
  }
  .section-profile__container__wrapper {
    display: none;
  }
}
.section-biography {
  position: relative;
  padding: 80px 0 70px;
  margin-bottom: 26.6666666667vw;
  background-color: #EFFCFF;
}
.section-biography .pc-only {
  display: none;
}
.section-biography::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 40px;
  top: -1px;
  background-image: url(..//images/decoration/section-Turquoise-blew_bg.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.section-biography h2 {
  font-size: 2.5rem;
  line-height: 2.5rem;
  color: #54B8CC;
  margin-bottom: 30px;
  text-align: left;
  font-family: "Hachi Maru Pop", cursive;
}
.section-biography__container {
  padding: 0 16px;
}
.section-biography__container-biography-image {
  display: block;
  width: 100%;
  max-width: 450px;
  margin: 0 auto 30px;
}
.section-biography__container__decoration02 {
  position: relative;
}
.section-biography__container__decoration02 img {
  position: absolute;
  display: block;
}
.section-biography__container__decoration02 .biography__decoration-turquoise02 {
  width: 30%;
  max-width: 70px;
  top: -4vw;
  left: 50%;
}
.section-biography__container__decoration02 .biography__decoration-yellow02 {
  width: 30%;
  max-width: 100px;
  top: -10.6666666667vw;
  left: 70%;
}
.section-biography__container__decoration {
  position: relative;
  z-index: 1;
}
.section-biography__container__decoration img {
  display: block;
  position: absolute;
}
.section-biography__container__decoration .biography__decoration-turquoise {
  width: 22%;
  max-width: 120px;
  top: -8vw;
  left: 10%;
}
.section-biography__container__decoration .biography__decoration-yellow {
  width: 18%;
  max-width: 90px;
  top: -8vw;
  left: 80%;
}
.section-biography__container-flex2__decoration02 {
  position: relative;
}
.section-biography__container-flex2__decoration02 img {
  display: block;
  position: absolute;
}
.section-biography__container-flex2__decoration02 .biography__decoration-turquoise02 {
  width: 20%;
  max-width: 60px;
  top: 30px;
  right: 40%;
}
.section-biography__container-flex2__decoration02 .biography__decoration-yellow02 {
  width: 40%;
  max-width: 100px;
  top: -30px;
  right: 3%;
}
.section-biography__container p {
  color: #fff;
  text-align: left;
  padding: 13% 5% 10%;
  background-image: url(..//images/decoration/lead-turquoise_bg.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

@media (min-width: 900px) {
  .section-biography {
    padding: 150px 0 150px;
    margin-bottom: 80px;
  }
  .section-biography::before {
    height: 5.5555555556vw;
    max-height: 80px;
  }
  .section-biography__container {
    padding: 0 160px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .section-biography__container h2 {
    font-size: 5rem;
    line-height: 5rem;
    margin-bottom: 80px;
  }
  .section-biography__container-biography-image {
    margin: 0;
    width: 57.149%;
    max-width: 640px;
  }
  .section-biography__container__decoration {
    width: 15.9722222222vw;
    max-width: 230px;
    height: 20.1388888889vw;
    max-height: 290px;
    left: 10%;
    top: -40px;
  }
  .section-biography__container__decoration .pc-only {
    display: block;
  }
  .section-biography__container__decoration .biography__decoration-yellow {
    display: none;
  }
  .section-biography__container__decoration .biography__decoration-dark-turquoise {
    width: 60%;
    max-width: 138px;
  }
  .section-biography__container__decoration .biography__decoration-turquoise {
    top: initial;
    left: initial;
    bottom: 0;
    right: 0;
  }
  .section-biography__container-flex {
    display: flex;
  }
  .section-biography__container-flex2 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 600px;
  }
  .section-biography__container-flex2 p {
    position: absolute;
    top: -20%;
    right: 0;
    width: 60.72%;
    max-width: 680px;
    padding: 5%;
    z-index: 1;
  }
  .section-biography__container-flex2__decoration02 {
    position: relative;
    width: 32%;
    height: 80%;
    top: 0;
    left: -33%;
  }
  .section-biography__container-flex2__decoration02 img {
    position: absolute;
    left: 0;
  }
  .section-biography__container-flex2__decoration02 .biography__decoration-turquoise02 {
    width: 50%;
    top: 70%;
    left: -20%;
  }
  .section-biography__container-flex2__decoration02 .biography__decoration-yellow02 {
    width: 80%;
    top: 5%;
    left: 30%;
  }
}/*# sourceMappingURL=profile.css.map */