*{
  margin: 0;
  padding: 0;
  color: #fff;
}

/* header */
header {
  background-color: blueviolet;
  height: 60px;
  
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  text-align: center;
}
.head-taitle {
  padding-left: 40px;
  font-family: "Pacifico", cursive;
  font-size: 25px;
}

.head-taitle a {
  text-decoration: none;
  color: skyblue;
}

.list-tab {
  display: flex;
  padding-right: 40px;
  list-style: none;
  
}

.list-item {
  padding-left: 30px;
  
}

.list-item a {
  text-decoration: none;
}

/* body */
/* firstview */
.firstview {
  background-image: url(../image/mp01.jpg);
  background-size: cover;
  background-position: center;
  height: 1100px;
}

.firstview-message {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  height: 100%;
  letter-spacing: 0.3rem;
  font-family: "Pacifico", cursive;
  color: darkcyan;
  text-shadow: 4px 4px 2px darkgray;
}

.firstview-message span {
  color: blueviolet;
  font-size: 8rem;
}

/* about */
.about {
  background-color: black;
}

.cmn-title {
  text-align: center;
  font-weight: bold;
  padding-top: 50px;
}

.sub-title {
  display: block;
  color: #38B6FF;
}

.main-title {
  display: block;
  font-size: 2rem;
}

.about-wrapper {
  display: flex;
  justify-content: center;
  margin: 60px 130px 0;
  padding-bottom: 50px;
}

img {
  width: 250px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.about-text {
  margin-left: 80px;
  width: 500px;
}

.about-subtitle {
  font-size: 1.5rem;
  color: #38B6FF;
  margin-bottom: 0.5rem;
}

.greeting-desc {

}

.about-career {
  margin-top: 30px;
}

.career-item {
  list-style: none;
}

/* work */
.work {
  background-color: black;
  padding-top: 50px;
}

.work-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 100px ;
  padding-bottom: 100px;
  /* opacity: 0; */
  transition: 3s;
}
.work-item:nth-child(even) {
  flex-direction: row-reverse;
}

.work-item.fadeIn {
  opacity: 1;
}

.sec-margin {
  margin: 200px 0;
}

.image {
  width: 500px;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin: 0 30px;
}

.work-text {
  width: 500px;
  margin: 0 30px;
}

.work-text p {
  margin: 10px 0;
  font-size: 18px;
}

.btn {
  border-radius: 5px;
  background-color: darkcyan;
  padding: 10px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.work-title {
  color: #38B6FF;
}


/* footer */
footer {
  background-color: #333;
}

.footer-list {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.footer-item {
  list-style: none;
  padding: 0 25px;
}

.footer-item a {
  text-decoration: none;
}

.copyright {
  text-align: center;
  padding-bottom: 50px;
}