@charset "UTF-8";
h1 {
  font-size: 2.2rem;
  padding: 2% 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #001428;
  text-shadow: none;
  background: #e0effb;
  text-align: center;
}
.tab {
  display: flex;
  flex-wrap: wrap;
  background: #e0effb;
}

.tab li a {
  display: block;
  background: #777;
  margin: 0 2px;
  padding: 10px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #fff;
}

.tab li.active a {
  background: #fff;
  color: #333;
}

.area {
  display: none;
  opacity: 0;
  padding: 30px 3%;
}

.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  background: #e0edf7;
}

ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

.wrapper {
  width: 1200px;
  margin: 30px auto;
  background: #fefefe;
}

.area h2 {
  font-size: 1.3rem;
  margin: 0 0 30px 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
}

.area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: auto;
}

.area-box {
  overflow: hidden;
  object-fit: cover;
}

.area li:last-child, .list-contents li, .area li:last-child>.list-contents li {
  margin-right: 0;
}

.ghost {
  width: 300px;
  height: 300px;
}

.img-wrap {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  margin: 5% 0 10%;
  display: block;
}

/* トリミングした画像の位置調整 */

.adjustment01 {
  object-position: 40% 0;
}

.adjustment02 {
  object-position: 44% 0;
}

.adjustment03 {
  object-position: 34% 10%;
}

.adjustment04 {
  object-position: 34% 10%;
}

.adjustment05 {
  object-position: 0% 0%;
}

.adjustment06 {
  object-position: 40% 0%;
}
.adjustment07 {
  object-position: 0% 30%;
}


.button_area {
  margin-top: 70px;
  width: 1200px;
  margin: auto;
  padding: 5% 0;
}

.button_area a {
  writing-mode: horizontal-tb;
}

.btntextchange {
  position: relative;
  border: 1px solid #333333;
  border-radius: 25px;
  min-width: 210px;
  padding: 20px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: #333333;
  outline: none;
  transition: all .2s;
}

.btntextchange:hover {
  background: #333333;
  color: #fff;
}

.btntextchange span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .5s;
  display: block;
  white-space: nowrap;
}

.btntextchange span:nth-child(2) {
  opacity: 0;
}

.btntextchange:hover span:nth-child(1) {
  opacity: 0;
}

.btntextchange:hover span:nth-child(2) {
  opacity: 1;
}
@media screen and (max-width:1200px) {
  .wrapper{
    width: 95%;
    margin: auto;
  }
  .area ul{
    width: 80%;
    margin: auto;
  }
}
