@charset "UTF-8";
/** color */
/** font-size */
/** responsive */
/** common */
#plan .wrap, #reason .wrap, #service .wrap {
  padding: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 60rem;
}
@media screen and (max-width: 820px) {
  #plan .wrap, #reason .wrap, #service .wrap {
    padding: 2rem;
    min-height: auto;
  }
}

#contact form h2, #plan .wrap h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 4rem;
}

/** default style */
html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
  background-color: #d1d1d1;
}
body a {
  text-decoration: none;
  color: #ffffff;
}

/** JS用 */
.show {
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
}

.bgWhite {
  background-color: #ffffff;
  border-bottom: none;
  box-shadow: 0 1px 2px rgba(27, 27, 27, 0.2);
}
.bgWhite a {
  color: #1b1b1b;
}

#reason .wrap .text, #service .wrap .text {
  position: relative;
  z-index: 10;
  width: 50%;
}
@media screen and (max-width: 820px) {
  #reason .wrap .text, #service .wrap .text {
    width: 100%;
  }
}
#reason .wrap .text h2, #service .wrap .text h2 {
  font-size: 4rem;
  font-weight: bold;
  border-bottom: 0.1rem solid #1b1b1b;
  padding-bottom: 0.4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 820px) {
  #reason .wrap .text h2, #service .wrap .text h2 {
    font-size: 2.4rem;
    padding-bottom: 1.6rem;
  }
}
#reason .wrap .text p, #service .wrap .text p {
  letter-spacing: 1;
  line-height: 2;
  margin-bottom: 2rem;
}

#reason .wrap img, #service .wrap img {
  position: absolute;
  right: 0;
  width: 55%;
}
@media screen and (max-width: 820px) {
  #reason .wrap img, #service .wrap img {
    width: 100%;
  }
}

#top {
  background: linear-gradient(74deg, #d1d1d1, #1b1b1b, #0b4305);
  background-size: 180% 180%;
  animation: gradient-animation 12s ease infinite;
}
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#top picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
  opacity: 0.7;
}
#top h1 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeIn 5s ease-out forwards;
  display: flex;
  justify-content: center;
  width: 100%;
}
#top h1 .text {
  height: 25rem;
}
@media screen and (max-width: 820px) {
  #top h1 .text {
    height: 13.2rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    top: 55%;
  }
  to {
    opacity: 0.3;
    top: 50%;
  }
}

#service {
  background-color: #d1d1d1;
  color: #1b1b1b;
}
#service .wrap {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 820px) {
  #service .wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 820px) {
  #service .wrap .text {
    width: 100%;
    font-size: 1.4rem;
  }
}
#service .wrap .text p {
  text-shadow: 1px 1px 1px #d1d1d1;
}
#service .wrap .text button {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #1b1b1b;
  padding: 1.6rem 8rem;
  transition: opacity 0.1s;
}
@media screen and (max-width: 820px) {
  #service .wrap .text button {
    width: 100%;
    font-size: 1.4rem;
  }
}
#service .wrap .text button:hover {
  opacity: 0.5;
}
@media screen and (max-width: 820px) {
  #service .wrap img {
    width: 100%;
  }
}

#reason {
  color: #1b1b1b;
  background-color: #ffffff;
}
#reason .white-triangle {
  width: 100%;
  height: 20rem;
  background-color: #d1d1d1;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (max-width: 820px) {
  #reason .white-triangle {
    height: 8rem;
  }
}
#reason .wrap {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
}
#reason .wrap .text {
  text-align: right;
}
@media screen and (max-width: 820px) {
  #reason .wrap .text {
    text-align: left;
    font-size: 1.4rem;
  }
}
#reason .wrap .text p {
  text-shadow: 1px 1px 1px white;
}
#reason .wrap .text button {
  border: 1px solid #d1d1d1;
  background-color: #d1d1d1;
  color: #1b1b1b;
  padding: 1.6rem 8rem;
  transition: opacity 0.1s;
}
@media screen and (max-width: 820px) {
  #reason .wrap .text button {
    width: 100%;
    font-size: 1.4rem;
  }
}
#reason .wrap .text button:hover {
  opacity: 0.5;
}
#reason .wrap img {
  left: 0;
}

#plan .black-triangle {
  width: 100%;
  height: 10rem;
  background-color: #ffffff;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
}
@media screen and (max-width: 820px) {
  #plan .black-triangle {
    height: 4rem;
  }
}
#plan .wrap {
  color: #1b1b1b;
}
#plan .wrap h2 {
  text-align: center;
}
@media screen and (max-width: 820px) {
  #plan .wrap h2 {
    margin-bottom: 2.8rem;
  }
}
#plan .wrap p {
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  #plan .wrap p {
    font-size: 1.4rem;
  }
}
#plan .wrap ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media screen and (max-width: 820px) {
  #plan .wrap ul {
    flex-direction: column;
  }
}
#plan .wrap ul li {
  padding: 2rem;
  background-color: #ffffff;
  list-style: none;
  position: relative;
  width: 32%;
}
@media screen and (max-width: 820px) {
  #plan .wrap ul li {
    width: 100%;
  }
  #plan .wrap ul li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
#plan .wrap ul li h3 {
  font-size: 2rem;
  position: relative;
  padding: 0.8rem 0 0.8rem 1.2rem;
  border-bottom: 1px solid #09431e;
  line-height: 1.5;
  z-index: 10;
  margin-bottom: 0.8rem;
}
#plan .wrap ul li h3 span {
  font-size: 2.4rem;
}
#plan .wrap ul li h3::before {
  content: "";
  width: 0.4rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #09431e;
}
#plan .wrap ul li p {
  position: relative;
  z-index: 10;
}
#plan .wrap .text {
  margin-bottom: 2rem;
}
#plan .wrap .button {
  text-align: center;
}
#plan .wrap .button button {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #1b1b1b;
  padding: 1.6rem 8rem;
  transition: opacity 0.1s;
}
@media screen and (max-width: 820px) {
  #plan .wrap .button button {
    width: 100%;
    font-size: 1.4rem;
  }
}
#plan .wrap .button button:hover {
  opacity: 0.5;
}

#contact {
  background-image: url(../img/alexander.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 8rem black inset, 0 0 4rem black inset, 0 0 4rem black inset;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: darken;
  padding: 8rem 0;
}
@media screen and (max-width: 820px) {
  #contact {
    padding: 2rem;
  }
}
#contact form {
  max-width: 80rem;
  margin: 0 auto;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-right-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.5);
  padding: 2rem;
}
@media screen and (max-width: 820px) {
  #contact form {
    font-size: 1.4rem;
  }
}
#contact form h2 {
  text-align: center;
  margin-bottom: 2rem;
}
#contact form p {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 820px) {
  #contact form p {
    text-align: left;
  }
}
#contact form label {
  margin-bottom: 1.2rem;
  display: block;
}
#contact form label span {
  font-size: 1.2rem;
  background-color: #09431e;
  padding: 0.2rem 0.4rem;
  font-weight: bold;
  margin-left: 0.8rem;
  position: relative;
  top: -1px;
}
#contact form input,
#contact form textarea,
#contact form select {
  display: block;
  width: 100%;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding: 0.4rem 0.8rem;
  color: #1b1b1b;
}
@media screen and (max-width: 820px) {
  #contact form input,
  #contact form textarea,
  #contact form select {
    margin-bottom: 1.6rem;
  }
}
#contact form input:focus,
#contact form textarea:focus,
#contact form select:focus {
  outline: none;
}
#contact form textarea {
  min-height: 20rem;
}
#contact form select {
  height: 3.4rem;
}
#contact form #videoDelivery {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
#contact form #videoDelivery #mike {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
#contact form .submit {
  text-align: center;
}
#contact form .submit button {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #1b1b1b;
  padding: 1.6rem 8rem;
  transition: opacity 0.1s;
}
@media screen and (max-width: 820px) {
  #contact form .submit button {
    width: 100%;
    font-size: 1.4rem;
  }
}
#contact form .submit button:hover {
  opacity: 0.5;
}

@media screen and (max-width: 820px) {
  .pc {
    display: none;
  }
}