@charset "UTF-8";
/*------------背景アニメーション--------------------*/
.bg {
  animation:slide 10s ease-in-out infinite alternate;
  background-image:/* linear-gradient(-60deg, rgba(248, 193, 184, 1) 50%,rgba(182, 162, 181, 1) 50%);*/
  linear-gradient(-60deg, rgba(250, 211, 180, 1) 50%,rgba(182, 162, 181, 1) 50%);
  bottom:0;
  left:-50%;
  opacity:.2;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}
.bg2 {
  background-image: linear-gradient(85deg, rgba(182, 162, 181, 1) 50%,rgba(248, 193, 184, 0) 50%);
  animation-duration: 20s;
}
.bg3 {
  background-image: linear-gradient(200deg, #b6a2b5 50%,#f8c1b8 50%);
  animation-duration: 30s;
}
.bg4 {
  background-image: linear-gradient(60deg, #f8e3b8 30%,#b6a2b5 70%);
  animation:rotate 40s infinite;
}
/* 左右にスライドする指定 */
@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}
/* 360度に回転する指定 */
@keyframes rotate {
  0% {
		transform:rotate(0deg);
	}
	100% {
		transform:rotate(360deg)
	}
}
/*-------------------------------*/
/* .fullscreen::before {
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-4;
  width:100%;
  height:200vh;
  background-repeat:no-repeat;
  background-position:50% 85%;
  background-size:cover;
  background-image: url(../img/10-1.jpg);
} */
.about-bg {
  background-color:rgba(255,255,255,.8);
  border-top-right-radius: 250px;
  padding:10vw;
}
.about-contents{
  margin-bottom: 5rem;
}
.ds-f-C{
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.aboutimg{
  width: 100%;
  max-width: 400px;
  padding-right: 5rem;
  opacity: 0;
}
.abouttitle{
  font-size: 2.7rem;
  font-weight: normal;
  letter-spacing: 0.7rem;
  border-bottom: 1px solid #333;
  margin-bottom: 1rem;
}
.abouttext{
  line-height: 1.7;
}
.aboutlist{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.aboutlist dt{
  width: 25%;
  font-weight: bold;
}
.aboutlist dd{
  width: 75%;
  margin-bottom: 2rem;
}
/*----------------フェードインデザイン01-------------------*/
/* .zoomin {
  animation: zoomIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
} */
/*---------------------*/


/*---------------------------------------------*/
/*------------ここからレスポンシブ----------------*/
/*---------------------------------------------*/
@media (max-width:768px) {
  .ds-f-C{
    display: block;
  }
  .about-bg {
    margin-top: 15rem;
  }
  .aboutimg{
    max-width: 100%;
    padding: 10rem 5rem 5rem 0;
  }
  .aboutlist dt{
    height: auto;
  }
  .aboutlist dt,.aboutlist dd{
    width: 100%;
  }
}