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


.mainvisual {
  width: 100vw;
  height: 85vh;
  position: relative;
}

.mainvisual__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 75%;
}
.mainvisual h2 {
  color: white;
  font-size: 4rem;
  font-weight: normal;
  text-align: center;
  margin: 20px 0;
}
.mainvisual p {
  color: white;
  text-align: center;
  font-size: 1.8rem;
}
@media(min-width:800px) {
  .mainvisual h2 {
    font-size: 4.8rem;
  }
  .mainvisual p {
    font-size: 2.4rem;
  }
}

/*以下フェードイン表示の指定*/
.fadein {
    opacity: 0;
    animation: fadein 3s ease forwards;
}
@keyframes fadein {
    100% {  opacity: 1;}
}
 
/*以下遅延の指定*/
.txt01 {animation-delay: 1s;}
.txt02 {animation-delay: 2s;}
.txt03 {animation-delay: 3s;}

.greeting {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  background-color: white;
}
.greeting h2 {
  font-size: 2.4rem;
  font-weight: normal;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 5px solid #E2E2E2;
  position: relative;
  margin-bottom: 40px;
}
.greeting h2::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 5px;
	background-color: #7e318e;
}
.greeting__copy {
  margin-bottom: 40px;
}
.greeting__copy ul {
  margin:20px 10px 20px 30px;
}
.greeting__copy ul li {
  position: relative;
}
.greeting__copy ul li::after {
  content: '';
  display: block;
  position: absolute;
  top: .5em;
  left: -1.5em;
  width: 10px;
  height: 5px;
  border-left: 2px solid #7e318e;
  border-bottom: 2px solid #7e318e;
  transform: rotate(-45deg);
}
.greeting__name {
  text-align: right;
}
