@charset "utf-8";
/* CSS Document */

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #7e318e;
  z-index: 9999999;
  text-align: center;
  padding-top: 47vh;
  color: #fff;
  font-size: 2rem;
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleY(0);
  background-color: #7e318e;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }

  50% {
    transform-origin: top;
    transform: scaleY(1);
  }

  50.001% {
    transform-origin: bottom;
  }

  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#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;
  }
}

header {
  background-color: #7e318e;
}

h2 {
  font-size: 2.4rem;
  font-weight: normal;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 5px solid #E2E2E2;
  position: relative;
  margin-bottom: 40px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background-color: #7e318e;
}

.pagetitle {
  height: 150px;
  background-color: #7e318e;
}

.pagetitle h1 {
  padding-top: 90px;
  color: white;
  text-align: center;
  font-size: 3.2rem;
  font-weight: normal;
}

.profile {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  background-color: white;
}

.profile__wrap {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: 40px;
}

.profile__img {
  margin: 0 0 40px;
  text-align: center;
  width: 300px;
  flex: 0 0 300px;
}

.profile__img img {
  width: 300px;
  border-radius: 20px;
}

.profile__table {
  width: 320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.profile__table dt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 2px solid #7e318e;
  width: 95px;
  padding: 10px 0 10px 10px;
}

.profile__table dt:first-child {
  border-top: 2px solid #7e318e;
}

.profile__table dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 225px;
  border-bottom: 2px solid #e2e2e2;
  padding: 10px 0 10px 20px;
  white-space: nowrap;
}

.profile__table dd a {
  color: #1a0dab;
}

.profile__table dd:first-of-type {
  border-top: 2px solid #e2e2e2;
}

.history {
  background-color: #f6f8f9;
}

.history__wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.history dl {
  margin-left: 25px;
  padding: 15px 0;
  border-left: solid 3px #7e318e;
}

.history dt {
  display: block;
  padding: 0 0 0 15px;
  color: #7e318e;
  position: relative;
}

.history dt::after {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background-color: #7e318e;
  position: absolute;
  font-size: 2rem;
  left: -9px;
  top: 6px;
}

.history dd {
  padding-left: 30px;
  margin-bottom: 20px;
}

.appeal {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  background-color: white;
}

.appeal img {
  width: 30px;
  height: 30px;
  margin-right: 20px;
}

.appeal h3 {
  color: #7e318e;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.5;
}

.appeal ul li {
  display: flex;
  margin-bottom: 30px;
}
