@charset "utf-8";

                    /* 更新履歴 */

.transition, ul li i:before, ul li i:after, p {
  transition: all 0.25s ease-in-out;
}

.newsArea > ul > li, h1 {
  animation: flipdown 0.5s ease both;
}

.newsArea {
  margin: 2% 20vw;
  padding: 10px 30px;
  border: 2px solid #999;
}

.newsArea h1 {
  text-transform: uppercase;
  font-size: 1.3vw;
  line-height: 3em;
  font-weight: 700;
}

.newsArea h2 {
  font-size: 15px;
  line-height: 40px;
  font-weight: 300;
  display: block;
  background-color: #fff;
  margin: 0;
  cursor: pointer;
  color: #976d3f;
}

.newsArea p {
  font-size: 17px;
  line-height: 1.7em;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  z-index: 2;
}

.newsArea ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.newsArea ul li {
  border-top: 1px solid #976d3f;
}

.newsArea ul li:last-of-type {
  padding-bottom: 0;
}
.newsArea ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
}
.newsArea ul li i:before, ul li i:after {
  content: "";
  position: absolute;
  background-color: #976d3f;
  width: 3px;
  height: 9px;
}
.newsArea ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
.newsArea ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
.newsArea ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
.newsArea ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
.newsArea ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
.newsArea ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

@media screen and (max-width: 480px) {
  .newsArea {
    margin: 6vw 4vw;
  }
  .newsArea h1 {
    font-size: 22px;
  }
  .newsArea h2 {
    line-height: 50px;
    font-size: 20px;
  }
  .newsArea ul li i {
    margin-top: 20px;
  }
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}

                    /* 本文 */

body {
  margin: 0;
}

.lp-contents img {
  width: 100%;
}

.mainHead {
  padding: 2vw;
}

.mainHead div.mainHead-logo {
  font-weight: bold;
  text-align: center;
}

.sns {
  top: 1.8vw;
  left: 15px;
  position: absolute;
}

.sns twitter_pc img {
  width: 24px;
  height: 19;
}

.snsArea {
  margin-top: 7.5vw;
  padding: 2.5vw 0;
  background-color: #f8f5f2;
}
.snsArea ul {
  margin: 0 auto;
  width: 170px;
}
.snsArea ul li {
  margin: 0 30px;
}

@media screen and (max-width: 480px) {
  .snsArea {
    padding: 8vw 0;
  }
  .snsArea ul li {
    margin: 0 10px;
  }
  .snsArea img {
    width: 80%;
  }
}

.mapArea {
  padding: 5vw;
  background-color: #cfc1b6;
}

.Area3 {
  padding: 5vw;
  background: #282425;
}