@charset "UTF-8";
*{
	margin: 0;
	padding: 0;
}
.pic-top {
  width: 100%;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
}
.pic-top * {
  box-sizing: border-box;
}
.pic-top img {
  display: block;
  max-width: 100%;
  height: auto;
}
.pic-top a {
  text-decoration: none;
  display: inline-block;
}
.pic-top .sp {
  display: none;
}


/* -------------.visual------------- */
.visual {
  width: 1140px;
  margin: 20px auto 80px;
}
.heading01 {
  margin: 40px auto;
  text-align: center;
  font: 800 24px / 1.8 'Noto Sans JP', sans-serif;
}


/* ------------- .sec ------------- */
.sec {
  width: 1140px;
  margin: 0 auto 160px;
  position: relative;
}
.sec-inner {
  display: flex;
  align-items: center;
}
.sec-item {
  width: 262px;
}
.sec-item-list {
  display: flex;
  gap: 40px;
  margin: 0 auto;
}
.sec-item-list li {
  width: 262px;
}
.sec-text-area p {
  font: 400 14px / 1.8 'Noto Sans JP', sans-serif;
  text-align: center;
}
.u-item-meta {
  margin-top: 10px;
}

.sec01 {
  border: 2px solid #AA9C8E;
  padding: 100px 0 60px;
}
.sec01 .sec-inner {
  flex-direction: column;
}
.sec01 .sec-mv {
  margin: 0 auto;
}
.sec01 .sec-text-area {
  margin-top: 40px;
}

.sec02 {
  margin-bottom: 120px;
}
.sec02:before {
  content: "";
  display: block;
  width: 858px;
  height: 732px;
  background-color: #E9E9E9;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -1;
}
.sec02 .sec-inner {
  flex-direction: row-reverse;
}
.sec02 .sec-item {
  margin: 140px 120px 0 auto;
}
.sec02 + .sec-text-area {
  margin-bottom: 40px;
}

.sec03 {
  margin-bottom: 160px;
}
.sec03:before {
  content: "";
  display: block;
  width: 1028px;
  height: 732px;
  background-color: #E9E9E9;
  position: absolute;
  top: 180px;
  right: 0;
  z-index: -1;
}
.sec03 .sec-item {
  margin: 320px auto 0 150px;
}


/* ------------- .btn-wrap ------------- */
.btn-wrap {
  width: 900px;
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
}
.btn-wrap .btn {
  width: 290px;
  border-radius: 30px;
  background-color: #414141;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto;
  padding: 16px 0;
}


/* ------------- .fadeUp ------------- */
.pic-top .fadeUp {
  opacity: 0;
}
.pic-top .animated {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pic-top .delay1 {
  transition-delay: 1.4s;
}



