@charset "UTF-8";
body {
  font-family: 'Noto Sans CJK JP','Helvetica','Arial',sans-serif;
  color: black;
}

h1 {
  font-size: 130px;
  line-height: 1;
  font-weight: bold;
  color: white;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 60px;
  }
}

h2 {
  font-size: 28px;
  line-height: 46px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

h3 {
  font-size: 26px;
  line-height: 33px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: 18px;
    line-height: 29px;
  }
}

h4 {
  font-size: 18px;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  h4 {
    font-size: 16px;
    line-height: 26px;
  }
}

h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  h5 {
    font-size: 18px;
  }
}

p.lg {
  font-size: 18px;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  p.lg {
    font-size: 16px;
    line-height: 25px;
  }
}

p.sm, label, input, textarea {
  font-size: 16px;
  line-height: 26px;
}

@media screen and (max-width: 768px) {
  p.sm, label, input, textarea {
    font-size: 14px;
  }
}

p.xs {
  font-size: 14px;
  line-height: 17px;
}

.common__container--section {
  width: 80%;
  margin: 0 auto;
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .common__container--section {
    width: 90%;
    padding: 30px 0;
  }
}

.common__wrapper__heading {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .common__wrapper__heading {
    margin-bottom: 15px;
  }
}

.common__heading-english {
  color: #F3F3F3;
}

@media screen and (max-width: 768px) {
  .common__heading-english {
    margin-bottom: 15px;
  }
}

.common__heading--english--white {
  color: white;
}

.common__wrapper__heading--verticle {
  text-align: center;
}

.common__wrapper__heading--verticle .common__heading-english {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .common__wrapper__heading--verticle .common__heading-english {
    margin-bottom: 15px;
  }
}

.common__wrapper__heading--horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .common__wrapper__heading--horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .common__wrapper__heading--horizontal .common__heading-english {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 768px) {
  .common__wrapper__heading--horizontal .common__heading-japanese {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.common__container--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .common__container--list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.common__wrapper--list {
  width: calc( 100% / 3);
  margin: 0 40px;
}

@media screen and (max-width: 768px) {
  .common__wrapper--list {
    width: 100%;
    margin: 10px 0;
    border: 1px solid #F3F3F3;
    border-radius: 10px;
    padding: 20px;
  }
}

.common__wrapper--list .list__text--english {
  margin-bottom: 10px;
}

.common__wrapper--list .list__wrapper--title {
  min-height: 90px;
}

@media screen and (max-width: 768px) {
  .common__wrapper--list .list__wrapper--title {
    min-height: unset;
  }
}

.common__wrapper--list .list__wrapper--image {
  width: 90%;
  margin: 20px auto;
}

@media screen and (max-width: 768px) {
  .common__wrapper--list .list__wrapper--image {
    max-width: 300px;
  }
}

.common__wrapper--list .list__image {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .common__wrapper--list--white {
    border: 1px solid white;
  }
}

.common__wrapper--content {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .common__wrapper--content {
    margin-bottom: 10px;
  }
}

nav {
  position: fixed;
  bottom: 0%;
  right: 0%;
}

.nav__wrapper--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.nav__list {
  padding: 30px 30px;
  background-color: #959595;
  text-align: center;
  color: white;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .nav__list {
    padding: 20px 30px;
  }
}

.nav__list:hover {
  background-color: #5C5C5C;
  color: white;
}

.nav__list:first-child {
  border-right: 1px solid white;
  padding: 30px 50px;
}

@media screen and (max-width: 768px) {
  .nav__list:first-child {
    padding: 20px 30px;
  }
}

.section__top {
  height: 100vh;
  width: 100%;
  background-image: url("../images/グループ 43.png");
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .section__top {
    background-position-x: center;
  }
}

.top__container--content {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}

@media screen and (max-width: 768px) {
  .top__container--content {
    padding: 51px 0;
  }
}

.top__wrapper--text {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .top__wrapper--text {
    margin-top: 30px;
  }
}

.top__text--content {
  color: #5C5C5C;
}

.top__text--design {
  color: #FED645;
  font-size: 79px;
  line-height: 79px;
}

@media screen and (max-width: 768px) {
  .top__text--design {
    font-size: 56px;
    line-height: 60px;
    top: 45%;
  }
}

.about__container--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .about__container--content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about__wrapper--image {
  width: 50%;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .about__wrapper--image {
    width: unset;
    max-width: 500px;
    margin: 0 auto 20px auto;
  }
}

.about__image {
  width: 100%;
}

.about__wrapper--text {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .about__wrapper--text {
    width: unset;
  }
}

.about__text--content {
  margin-bottom: 10px;
}

.section__business {
  background-color: #F3F3F3;
}

.culture__container--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .culture__container--content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.culture__wrapper--contents {
  width: 45%;
}

@media screen and (max-width: 768px) {
  .culture__wrapper--contents {
    width: unset;
  }
}

.culture__text--english {
  margin-bottom: 10px;
}

.culture__wrapper--title {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .culture__wrapper--title {
    margin-bottom: 15px;
  }
}

.culture__text--content {
  margin-bottom: 10px;
}

.culture__wrapper--image {
  width: 55%;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .culture__wrapper--image {
    width: unset;
    max-width: 500px;
    margin: 0 auto;
  }
}

.culture__image {
  width: 100%;
}

.section__people {
  background-color: #F3F3F3;
  position: relative;
  z-index: -1;
}

.section__people::before {
  content: "";
  width: 100%;
  height: 25px;
  background-color: #FED645;
  border-radius: 20px;
  position: absolute;
  top: 60%;
  right: 0;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .section__people::before {
    top: 25%;
    height: 10px;
  }
}

.people__container--contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .people__container--contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.people__wrapper--title {
  margin-right: 20px;
  width: 40%;
}

@media screen and (max-width: 768px) {
  .people__wrapper--title {
    width: unset;
    margin-right: unset;
    margin-bottom: 20px;
  }
}

.people__wrapper--text {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .people__wrapper--text {
    width: unset;
  }
}

.people__text--content {
  margin-bottom: 10px;
}

.section__banner {
  text-align: center;
  position: relative;
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .section__banner {
    padding: 40px 0;
  }
}

.section__banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/AdobeStock_303713532.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 108%;
  z-index: -1;
}

.section__banner::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #F3F3F3;
  opacity: 0.5;
  z-index: -1;
}

.banner__text--title {
  margin-top: 10px;
  z-index: 1;
  font-weight: normal;
}

.banner__text--large {
  color: #5C5C5C;
}

.contactForm__container--forms {
  width: 95%;
  margin: 0 auto;
  max-width: 800px;
}

.contactForm__wrapper--items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .contactForm__wrapper--items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 15px;
  }
}

.contactForm__item--option {
  color: #FF0027;
  margin-left: 5px;
}

.contactForm__item--input {
  border: 1px solid #BCBCBC;
  width: 75%;
  padding: 5px;
}

@media screen and (max-width: 768px) {
  .contactForm__item--input {
    width: 100%;
  }
}

.contactForm__wrapper--radio {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contactForm__wrapper--input--radio {
  margin: 0 10px;
}

.contactForm__wrapper--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 15px;
}

@media screen and (max-width: 768px) {
  .contactForm__wrapper--left {
    width: 100%;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    margin-bottom: 8px;
  }
}

.contactForm__item--button {
  background-color: #FED645;
  color: #5C5C5C;
  font-weight: normal;
  padding: 12px 80px;
}

.contactForm__item--button:hover {
  background-color: orange;
}

.contactForm__item--button:active {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .contactForm__item--button {
    padding: 10px 36px;
    font-size: 16px;
  }
}

.contactForm__item--textarea {
  height: 300px;
  padding: 2px 5px;
}

.contact__text-title {
  margin-bottom: 30px;
}

footer {
  background-color: #F3F3F3;
  padding: 5px 20px 5px 117px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 95px;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 20px;
  }
}

.footer__text--logo {
  font-weight: normal;
  color: #5C5C5C;
}

.section--confirmed {
  height: calc(100vh - 95px);
  width: 60%;
  margin: 0 auto;
  padding-top: 200px;
  min-width: 580px;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .section--confirmed {
    height: calc(100vh - 95px);
    min-width: unset;
    width: 90%;
    padding-top: 100px;
  }
}

.confirmed__heading {
  margin-bottom: 20px;
}

.section__text--large--confirmed {
  font-size: 100px;
  line-height: 98px;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: auto;
}

@media screen and (max-width: 768px) {
  .section__text--large--confirmed {
    display: block;
    font-size: 45px;
    line-height: 43px;
  }
}
/*# sourceMappingURL=index.css.map */