/* FV */
#fvContainer {
  width: 100%;
  height: 400px;
  margin-top: 100px;
  background: #f2f2f2;
  position: relative;
  overflow: hidden;
}

.title {
  width: 100%;
  position: relative;
}

#fvContainer .title {
  position: absolute;
  top: 48%;
  left: 15%;
  z-index: 1;
}

.title h1, .title h2 {
  padding-right: 12px;
  font-size: 80px;
  font-weight: 100;
  line-height: 0.9;
  display: inline-block;
  position: relative;
}

.titleAni {
  width: 100%;
  height: 19px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.titleAni::after {
  width: 100%;
  font-size: 80px;
  font-weight: 100;
  line-height: 0.9;
  color: #fff;
  background: #fc6a09;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

#fvContainer .titleAni::after  {
  content: "About";
}

.fontAni::after {
  animation: fontAni 1s 0.5s both;
}

@keyframes fontAni {
  0% {width: 0%;}
  100% {width: 100%;}
}

.title p {
  color: #fc6a09;
  letter-spacing: 3px;
  margin-top: 5px;
}

.fvBack {
  font-size: 500px;
  line-height: 0.7;
  letter-spacing: 7px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}



/* about */
#aboutContainer {
  width: calc(50% + 550px);
  margin: 0 50px 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.aboutTitle {
  flex: 0 0 360px;
  margin-right: 80px;
  align-self: flex-end;
}

.aboutTitle dt {
  font-size: 145px;
  margin-left: -10px;
  letter-spacing: 5px;
  line-height: 1;
}

.aboutTitle dd:first-of-type {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 8px;
  line-height: 1.5;
}

.aboutTitle dd:last-of-type {
  font-size: 14px;
  letter-spacing: 1px;
}

.aboutImg {
  flex: 1 1 auto;
  width: calc(100% - 440px);
}

.aboutImg img {
  width: 100%;
  vertical-align: bottom;
}

.aboutText {
  flex: 0 1 700px;
  margin-top: 80px;
  font-weight: 300;
  letter-spacing: 1px;
}




/* Price */
#priceContainer {
  width: calc(100% - 100px);
  margin: 150px 0 0;
}

.priceContentsContainer {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

#priceContainer .titleAni::after {
  content: "Prices";
}

.priceContents {
  width: 100%;
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}

.price {
  flex: 0 1 31.5%;
  /* height: 160px; */
  margin: 0 1%;
  border: 1px solid #000;
  border-radius: 0 20px 0 20px;
  background: rgba(255, 255, 255, 0.75);
  position: relative;
}
.price:first-of-type {
  margin-left: 0;
}
.price:last-of-type {
  margin-right: 0;
}
.price::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fc6a09;
  border-radius: 0 20px 0 20px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}

.price dt {
  font-size: 48px;
  font-weight: 100;
  line-height: 1;
  font-family: 'Raleway', 'Noto Sans JP', sans-serif;
}

.price dd {
  padding: 60px 36px 70px;
  font-size: 20px;
  font-weight: 300;
  line-height: 0.72;
}




/* Contact */
#contactContainer {
  width: calc(100% - 100px);
  margin-top: 250px;
  padding: 130px 0;
  background: url(../../img/contactBack.jpg) center center / cover no-repeat;
  text-align: center;
}

#contactContainer a {
  color: #fff;
}

#contactContainer .title h2 {
  color: #fff;
  position: relative;
}
#contactContainer .title h2::after {
  content: "";
  width: 120px;
  height: 7px;
  transform: skewX(40deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 110%;
}

#contactContainer p {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
}