@charset "UTF-8";
.header__logo {
  position: fixed;
  top: 30px;
  left: 30px;
  max-width: 160px;
  padding: 0;
  z-index: 999;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .header__logo {
    top: 15px;
    left: 15px;
    max-width: 30vw;
  }
}
.header__logo a {
  vertical-align: middle;
}
.header__logo img {
  max-width: 100%;
}
.header__logo:hover {
  transform: translateY(-2px);
}

.header__navBtn,
.header__navBtn--close {
  display: none;
  position: fixed;
  top: 110px;
  left: 30px;
  width: 60px;
  height: 57px;
  background: url("/images/nav-open-btn@2x.png") no-repeat left center;
  background-size: contain;
  z-index: 8888;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .header__navBtn,
.header__navBtn--close {
    display: block;
    width: 42.8571428571px;
    height: 40.7142857143px;
    top: 50px;
    left: 15px;
  }
}
.header__navBtn img,
.header__navBtn--close img {
  max-width: 100%;
}
.header__navBtn:hover,
.header__navBtn--close:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.header__navBtn--close {
  background: url("/images/nav-close-btn@2x.png");
  background-size: cover;
}

.header__nav {
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 998;
  width: 220px;
  height: 100vh;
  background: linear-gradient(125deg, #67b5d5 10%, #c8e6ef 100%);
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
    width: 100%;
  }
}

.header__navDecolation, .header__navDecolationBg, .header__navDecolation4, .header__navDecolation3, .header__navDecolation2, .header__navDecolation1 {
  position: absolute;
  left: 220px;
  top: 0;
  display: block;
  width: 220px;
  height: 100vh;
  background: linear-gradient(159deg, #bee0e3 10%, #b8d9dc 45%, rgba(84, 164, 173, 0.8));
  opacity: 0;
}

.header__navDecolation1 {
  left: 220px;
}

.header__navDecolation2 {
  left: 244.4444444444px;
}

.header__navDecolation3 {
  left: 268.8888888889px;
}

.header__navDecolation4 {
  left: 293.3333333333px;
}

.header__navDecolationBg {
  width: 100vw;
  left: 317.7777777778px;
  background: #FF0000;
}

.header__navInner {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 10vh 0;
}

.header__navParent {
  margin-bottom: 100px;
}
.header__navParent li {
  display: inline;
}
@media screen and (max-width: 768px) {
  .header__navParent li {
    text-align: center;
  }
}
.header__navParent li a {
  display: block;
  width: 100%;
  padding: 20px 0 0 30px;
  letter-spacing: 2px;
  font-size: 1.4rem;
  font-weight: normal;
  color: #FFF;
  transition: 0.3s;
}
.header__navParent li a:hover {
  transform: translateX(4px);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .header__navParent li a {
    font-size: 1.8rem;
    padding: 10px 0;
  }
}

.header__navSns {
  width: 100%;
  text-align: center;
}
.header__navSns li {
  display: inline;
}
.header__navSns li a {
  display: inline-block;
  width: 40px;
  transition: 0.3s;
}
.header__navSns li a:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}
.header__navSns li img {
  width: 40px;
  height: 40px;
}

.page__inner {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .page__inner {
    padding: 1%;
  }
}

.page__column {
  width: calc(100% - 160px*1.6);
}
@media screen and (max-width: 768px) {
  .page__column {
    width: 100%;
  }
}

.page__mainTitle {
  margin: 0;
  position: fixed;
  top: 30px;
  right: 30px;
  font-family: arboria, sans-serif;
  font-weight: 100;
  font-size: 3.6rem;
  color: #67b5d5;
  line-height: 1;
  letter-spacing: 1px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .page__mainTitle {
    font-size: 2.2rem;
    top: 15px;
    right: 15px;
  }
}
.page__mainTitle span {
  display: block;
  text-align: center;
  margin-top: 5px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .page__mainTitle span {
    font-size: 1rem;
  }
}
.page__mainTitle:first-letter {
  color: #c5e2eb;
}

.page__subTitle {
  margin-top: 0;
  font-size: 2.8rem;
  line-height: 1.65;
  letter-spacing: 2px;
  font-weight: bold;
  color: #222;
}
.page__subTitle small {
  font-size: 1.6rem;
}

.page__breadcrumb {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: #67b5d5;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .page__breadcrumb {
    bottom: 15px;
    left: 15px;
  }
}
.page__breadcrumb span:after {
  margin-left: 2px;
  content: "〉";
}
.page__breadcrumb span:last-child:after {
  display: none;
}
.page__breadcrumb a {
  color: #67b5d5;
  text-decoration: underline;
}

.about .page__inner {
  padding: 0;
}

.about__column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
  min-width: 720px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .about__column {
    min-width: 100%;
    height: auto;
    margin-bottom: 60px;
  }
}
.about__column img {
  max-width: 100%;
}
.about__column .about__left {
  flex: 50%;
}
.about__column .about__right {
  flex: 50%;
}
.about__column .about__profilePhoto {
  width: 100%;
  height: 100vh;
  background: url("/images/profile_photo.jpg") no-repeat right bottom;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .about__column .about__profilePhoto {
    height: 50vh;
    background: url("/images/profile_photo.jpg") no-repeat center bottom 30%;
    background-size: 100%;
  }
}
.about__column .about__text {
  margin-bottom: 60px;
}
.about__column .about__text:last-child {
  margin-bottom: 0;
}
.about__column .about__partnerName {
  font-weight: bold;
}
.about__column .about__subDescription p {
  margin: 0 0 20px;
  font-size: 1.5rem;
  letter-spacing: 1px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .about__column .about__subDescription p {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }
}
.about__column .about__subDescription p a {
  text-decoration: underline;
}
.about__column .about__subDescription p.about__subProfileText {
  font-size: 1.3rem;
}
.about__column.about__column--01 .about__left {
  flex: 1.2;
}
@media screen and (max-width: 768px) {
  .about__column.about__column--01 .about__left {
    flex: 100%;
    padding: 15vh 0 5vh 0;
  }
}
.about__column.about__column--01 .about__right {
  flex: 1.8;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .about__column.about__column--01 .about__right {
    flex: 100%;
  }
}
.about__column.about__column--01 .about__logoImg {
  width: 100%;
  height: 50vh;
  background: url("/images/logo-color.svg") no-repeat center;
  background-size: 90%;
}
@media screen and (max-width: 768px) {
  .about__column.about__column--01 .about__logoImg {
    height: 25vh;
    background: url("/images/logo-color.svg") no-repeat center;
    background-size: 70%;
  }
}
.about__column.about__column--02 {
  margin-top: -60px;
}
@media screen and (max-width: 768px) {
  .about__column.about__column--02 {
    margin-top: 0;
  }
}
.about__column.about__column--02 .about__left {
  flex: 1;
  padding: 0 30px 0 0;
}
@media screen and (max-width: 768px) {
  .about__column.about__column--02 .about__left {
    flex: 100%;
    padding: 0 30px;
    order: 2;
  }
}
.about__column.about__column--02 .about__left .about__subDescription {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .about__column.about__column--02 .about__left .about__subDescription {
    padding: 0;
  }
}
.about__column.about__column--02 .about__left .about__subDescription p {
  letter-spacing: 0;
  font-size: 1.4rem;
  line-height: 1.8;
}
.about__column.about__column--02 .about__right {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .about__column.about__column--02 .about__right {
    flex: 100%;
    order: 1;
    padding-bottom: 30px;
  }
}
.about__column.about__column--03 .about__left {
  flex: 1;
}
.about__column.about__column--03 .about__right {
  flex: 1;
  padding: 0 30px;
}
.about__column.about__column--03 .about__logoImg {
  width: 100%;
  height: 100vh;
  background: url("http://placehold.jp/800x1000.png?text=背景") no-repeat left;
  background-size: 100%;
}

.service__column {
  margin-left: auto;
  padding: 12vh 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .service__column {
    padding: 15vh 0;
  }
}

.service_box {
  flex: calc(100% / 3 - 1%);
  max-width: calc(100% / 3 - 1%);
  width: calc(100% / 3 - 1%);
  margin: 0.5%;
  padding: 2%;
  border-radius: 2px;
  background: #FFF;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .service_box {
    flex: calc(100% / 2 - 1%);
    max-width: calc(100% / 2 - 1%);
    width: calc(100% / 2 - 1%);
    padding: 0 4%;
  }
}
.service_box .box__name {
  font-size: 2.3rem;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .service_box .box__name {
    font-size: 1.8rem;
  }
}
.service_box .box__name .name_en {
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 1px;
  color: #67b5d5;
  font-family: arboria, sans-serif;
}
.service_box .box__thumbnail {
  margin-bottom: 20px;
  text-align: center;
}
.service_box .box__thumbnail img {
  max-width: 100%;
}
.service_box .box__description {
  margin-bottom: 20px;
  padding: 0;
  font-size: 1.4rem;
  letter-spacing: 1px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .service_box .box__description {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.service_box .box__moreButton {
  text-align: right;
}

.work__column {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  min-width: 720px;
  margin-top: 0;
  margin-left: auto;
  padding: 12vh 0;
}
@media screen and (max-width: 768px) {
  .work__column {
    min-width: 100%;
    align-items: flex-start;
    padding: 15vh 0;
  }
}
.work__column img {
  max-width: 100%;
}

.work__inner {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .work__inner {
    padding-right: 1%;
  }
}

.work__index .work__item {
  flex: calc(100% / 3);
  width: calc(100% / 3);
  max-width: calc(100% / 3);
  margin-bottom: 30px;
  padding: 0;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .work__index .work__item {
    flex: calc(100% / 2);
    width: calc(100% / 2);
    max-width: calc(100% / 2);
  }
}
.work__index .work__item:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}
.work__index .work__photo {
  margin-bottom: 20px;
  padding: 0 15px;
}
.work__index .work__photo img {
  max-width: 100%;
  border-radius: 20px;
  border: 1px solid #f1f1f1;
  vertical-align: bottom;
}
.work__index .work__name {
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
}

.work__detail {
  width: calc(100% - 160px*1.6);
  max-width: calc(100% - 160px*1.6);
  height: 100vh;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .work__detail {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 15vh 0 5vh;
  }
}

.work__text {
  flex: 1;
  padding: 0 30px 0 0;
}
@media screen and (max-width: 768px) {
  .work__text {
    flex: 100%;
    order: 2;
    padding: 0;
  }
}

.work__tag {
  letter-spacing: 1px;
}

.work__subTitle {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 2px;
}

.work__client {
  margin-bottom: 5px;
  color: #464036;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.work__client .label {
  display: inline-block;
  width: 90px;
  text-align: right;
  color: #67b5d5;
}

.work__date {
  margin-bottom: 40px;
  color: #464036;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.work__date .label {
  display: inline-block;
  width: 90px;
  text-align: right;
  color: #67b5d5;
}

.work_detailTitle {
  font-size: 1.8rem;
  font-weight: bold;
}

.work__description p {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
}

.work__photo {
  flex: 2;
}
@media screen and (max-width: 768px) {
  .work__photo {
    flex: 100%;
    order: 1;
  }
}
.work__photo img {
  max-width: 100%;
}

.work__other {
  width: calc(100% - 160px*1.6);
  margin-left: auto;
  padding-right: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .work__other {
    width: 100%;
    padding-right: 0;
  }
}
.work__other .work__otherTitle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.work__other .work__otherTitle:after {
  position: absolute;
  left: 50%;
  bottom: -7vh;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 1px;
  height: 5vh;
  background: #b3b3b3;
}
.contact__inner {
  background: #fdfdfd;
}

.contact__column, .contact__formTable--done, .contact__formTable--confirmation {
  width: 50%;
  min-width: 720px;
  max-width: 1200px;
  margin: 10vh auto;
}
@media screen and (max-width: 768px) {
  .contact__column, .contact__formTable--done, .contact__formTable--confirmation {
    min-width: 100%;
    margin: 15vh auto;
  }
}
.contact__column img, .contact__formTable--done img, .contact__formTable--confirmation img {
  max-width: 100%;
}

.contact__subTitle {
  text-align: center;
}

.contact__description {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.5;
}

.contact__columnInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  margin: auto;
}

.contact__mail {
  background: #FFF;
  flex: 2;
  margin: 0.5%;
  padding: 40px;
  border-radius: 6px;
  border: 1px solid #DDD;
}
@media screen and (max-width: 768px) {
  .contact__mail {
    padding: 20px;
  }
}

.contact__mailTitle {
  margin: 40px 0;
  font-size: 2rem;
  text-align: left;
  font-weight: bold;
  color: #7facb2;
  border-bottom: 1px solid #aad7dc;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .contact__mailTitle {
    text-align: left;
    line-height: 3rem;
  }
}

.contact__mailForm {
  margin-bottom: 120px;
}
.contact__mailForm:last-child {
  margin-bottom: 0;
}
.contact__mailForm .mailForm__itemHeading {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.contact__mailForm .mailForm__item {
  margin-bottom: 16px;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .contact__mailForm .mailForm__item {
    padding-left: 0;
    padding-right: 0;
  }
}
.contact__mailForm .mailForm__item input[type=checkbox] {
  display: none;
}
.contact__mailForm .mailForm__item input[type=checkbox] + label {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .contact__mailForm .mailForm__item input[type=checkbox] + label {
    padding-left: 24px;
    font-size: 14px;
    line-height: 18px;
  }
}
.contact__mailForm .mailForm__item input[type=checkbox] + label:last-child {
  margin-bottom: 0;
}
.contact__mailForm .mailForm__item input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #7facb2;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  transition: all 0.12s, border-color 0.08s;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .contact__mailForm .mailForm__item input[type=checkbox] + label:before {
    width: 14px;
    height: 14px;
  }
}
.contact__mailForm .mailForm__item input[type=checkbox]:checked + label:before {
  width: 8px;
  top: -3px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .contact__mailForm .mailForm__item input[type=checkbox]:checked + label:before {
    width: 6px;
  }
}
.contact__mailForm .mailForm__item label {
  padding-left: 5px;
  font-size: 1.6rem;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .contact__mailForm .mailForm__item label {
    vertical-align: text-top;
  }
}
.contact__mailForm .mailForm__item input[type=text] {
  width: 100%;
  padding: 10px;
  border: 1px solid #DDD;
}
.contact__mailForm .mailForm__item input[type=text]::placeholder {
  color: #d1d1d1;
}
@media screen and (max-width: 768px) {
  .contact__mailForm .mailForm__item input[type=text] {
    font-size: 16px;
  }
}
.contact__mailForm .mailForm__item input[type=number] {
  width: 100%;
  padding: 10px;
  border: 1px solid #DDD;
}
@media screen and (max-width: 768px) {
  .contact__mailForm .mailForm__item input[type=number] {
    font-size: 16px;
  }
}
.contact__mailForm .mailForm__item textarea {
  width: 100%;
  min-height: 160px;
  padding: 10px;
  border: 1px solid #DDD;
  resize: vertical;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contact__mailForm .mailForm__item textarea {
    font-size: 16px;
  }
}
.contact__mailForm .mailForm__submit {
  text-align: center;
}
.contact__mailForm .mailForm__submit input {
  padding: 10px 40px;
  border: none;
  color: #FFF;
  font-weight: bold;
  border-radius: 4px;
  background: #67b5d5;
  text-align: center;
  transition: all 0.5s ease-out;
}
.contact__mailForm .mailForm__submit input:hover {
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.5s ease-out;
}

.contact__line {
  flex: 1;
  margin: 0.5%;
  padding: 40px 20px;
  background: #48d473;
  border-radius: 6px;
  border: 1px solid #DDD;
}

.contact__lineTitle {
  margin-top: 0;
  font-size: 1.8rem;
  color: #FFF;
}

.contact__formTable--confirmation {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .contact__formTable--confirmation {
    padding: 0 1.5%;
    margin: 15vh auto 10vh;
  }
}
.contact__formTable--confirmation .contact__mainTitle {
  color: #222;
  font-size: 26px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .contact__formTable--confirmation .contact__mainTitle {
    font-size: 20px;
  }
}
.contact__formTable--confirmation .contact__mainDescription {
  color: #7c7c7c;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact__formTable--confirmation .contact__mainDescription {
    font-size: 12px;
  }
}

.contact__formTable--confirmation--detail {
  border: 1px solid #dddddd;
  padding: 60px 40px;
}
@media screen and (max-width: 768px) {
  .contact__formTable--confirmation--detail {
    padding: 20px;
  }
}
.contact__formTable--confirmation--detail .contact__mailTitle {
  text-align: left;
  margin: 0 0 15px 0;
  font-size: 1.4rem;
  color: #7facb2;
  border: none;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .contact__formTable--confirmation--detail .contact__mailTitle {
    margin-bottom: 5px;
  }
}
.contact__formTable--confirmation--detail .contact__mailForm {
  background: #f6fafb;
  padding: 14px 20px 12px;
  border-bottom: 1px solid #b2dade;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contact__formTable--confirmation--detail .contact__mailForm {
    margin-bottom: 20px;
  }
}

.formTable__Submit {
  text-align: center;
  margin-top: 60px;
}
.formTable__Submit.is_submit {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .formTable__Submit.is_submit {
    flex-direction: column-reverse;
  }
}

.formTable__button--confirmation {
  display: inline-block;
  width: 49%;
  padding: 15px 20px;
  color: #FFF;
  font-weight: bold;
  background: #79abb2;
  border: 1px solid #79abb2;
  border-radius: 6px;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .formTable__button--confirmation {
    width: 100%;
    margin-bottom: 10px;
  }
}
.formTable__button--confirmation:hover {
  cursor: pointer;
  background: rgba(122, 171, 179, 0.7);
}

.formTable__button--historyBack {
  display: inline-block;
  width: auto;
  padding: 15px 25px;
  font-weight: bold;
  color: #848484;
  background: #FFF;
  border: 1px solid #848484;
  border-radius: 6px;
  transition: 0.5s;
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  .formTable__button--historyBack {
    width: 60%;
    margin: 0 auto;
  }
}
.formTable__button--historyBack.is_error {
  margin-right: 0;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .formTable__button--historyBack.is_error {
    width: 50%;
  }
}
.formTable__button--historyBack:hover {
  cursor: pointer;
  color: rgba(36, 36, 36, 0.5);
}

.contact__formTable--done {
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .contact__formTable--done {
    padding: 0 1.5%;
  }
}
.contact__formTable--done .contact__mainTitle {
  font-size: 2.4rem;
  color: #91cfd5;
  margin-bottom: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .contact__formTable--done .contact__mainTitle {
    font-size: 2rem;
  }
}
.contact__formTable--done .contact__mainImg__Logo {
  margin-bottom: 20px;
  width: 400px;
}
@media screen and (max-width: 768px) {
  .contact__formTable--done .contact__mainImg__Logo {
    width: 250px;
    max-width: 100%;
  }
}
.contact__formTable--done .contact__mainDescription {
  font-size: 1.8rem;
  color: #464036;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact__formTable--done .contact__mainDescription {
    font-size: 1.7rem;
  }
}
.contact__formTable--done .contact__mainButton__Return {
  margin-top: 40px;
}
.contact__formTable--done .contact__mainButton__Return a {
  display: inline-block;
  padding: 10px 20px;
  background: #91cfd5;
  border-radius: 6px;
  color: #fff;
  transition: all 0.5s ease-out;
}
.contact__formTable--done .contact__mainButton__Return a:hover {
  opacity: 0.5;
  transition: all 0.5s ease-out;
}

footer {
  position: fixed;
  display: inline;
  margin: 0;
  padding: 0;
  bottom: 30px;
  left: 30px;
  color: #67b5d5;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  footer {
    display: inline-block;
    width: 50%;
    padding: 5px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    text-align: left;
  }
}
footer p {
  margin: 0;
}

.Footer__copyright {
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  .Footer__copyright {
    margin: 0;
  }
}

.contact_Button {
  position: fixed;
  bottom: -11px;
  right: 0;
  background: #6BADB4;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  .contact_Button {
    font-size: 1.6rem;
    bottom: -6px;
  }
}
.contact_Button:hover {
  bottom: 0;
  opacity: 0.8;
  transition: all 0.5s ease-out;
}
.contact_Button a {
  display: block;
  color: #fff;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .contact_Button a {
    padding: 15px;
  }
}

* {
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  font-size: 62.5%;
  font-family: din-2014, "Noto Sans JP", "メイリオ", Meiryo, Helvetica, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
}

body {
  background: #FFF;
  font-size: 1.6em;
  color: #464036;
  margin: 0;
  padding: 0;
}

main {
  width: 100%;
  padding: 0 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  main {
    padding: 0;
    max-width: 100%;
  }
}

.pageLoadingBasic, #sitePage #pageLoading, #siteTop #pageLoading {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
}

#siteTop #pageLoading {
  background: linear-gradient(0deg, #67b5d5 10%, #c8e6ef 100%);
  z-index: -1;
}
#siteTop #pageLoading:after {
  position: fixed;
  left: 0;
  top: 0;
  content: "";
  background: url("/images/bg-noise.png");
  background-size: 382px;
  background-repeat: repeat;
  display: block;
  width: 100%;
  height: 100vh;
  opacity: 0.05;
}

#sitePage #pageLoading {
  background: #FFF;
  z-index: 9555;
}
#sitePage #pageLoading .pageLoadingLogo {
  position: absolute;
  display: block;
  width: 210px;
  height: 48px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9666;
}
#sitePage #pageLoading .pageLoadingLogo video,
#sitePage #pageLoading .pageLoadingLogo img {
  max-width: 100%;
}

.button__Primary {
  display: inline-block;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  padding: 16px 60px;
  border-radius: 2px;
  background: #67b5d5;
  transition: 0.3s;
}
.button__Primary:hover {
  opacity: 0.6;
}

.button__detail {
  display: inline-block;
  color: #222;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
}
.button__detail:after {
  content: "〉";
  margin-left: 20px;
  font-weight: normal;
  font-size: 90%;
  color: #888;
  display: inline-block;
  transition: 0.3s;
}
.button__detail:hover {
  opacity: 0.6;
}
.top__intro {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .top__intro {
    width: 80%;
  }
}
.top__intro img {
  width: auto;
  max-width: 360px;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .top__intro img {
    width: 80%;
  }
}

.top__mainTitle {
  margin-top: 0;
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .top__mainTitle {
    font-size: 1.6rem;
  }
}
.top__mainTitle span {
  display: block;
  margin-top: 20px;
  font-size: 4.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .top__mainTitle span {
    font-size: 2.8rem;
    margin-top: 0;
  }
}
.top__mainTitle .highlight {
  color: #67b5d5;
}

.top__mainDescription {
  margin-bottom: 30px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .top__mainDescription {
    width: 100%;
  }
}
.top__mainDescription p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .top__mainDescription p {
    font-size: 1.6rem;
  }
}

.top__mainMoreButton {
  text-align: center;
}

.top__main {
  width: calc(100% - 250px);
  padding: 0;
  margin-left: auto;
  background: url("/images/top-main.jpg") no-repeat center right;
  background-size: 60%;
}
@media screen and (max-width: 768px) {
  .top__main {
    width: 100%;
    background: url("/images/top-main.jpg") no-repeat bottom right;
    background-size: 100%;
    margin-bottom: 60px;
  }
}

.top__mainInner {
  height: 100vh;
  padding: 12.5vh 0;
}
@media screen and (max-width: 768px) {
  .top__mainInner {
    padding: 24vh 15px 0;
  }
}

.top__service {
  width: calc(100% - 160px*1.4);
  margin-left: auto;
  padding: 0 0 120px;
}
@media screen and (max-width: 768px) {
  .top__service {
    width: 100%;
  }
}

.top__serviceInner {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.top__serviceTitle {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top__serviceTitle {
    margin-bottom: 15px;
  }
}

.top__contact {
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .top__contact {
    padding: 4rem 0 8rem;
  }
}

.contact__mainTitle {
  font-size: 3rem;
  text-align: center;
}

.js-headerNav {
  opacity: 0;
  left: -5px;
}

.js-navMenu {
  opacity: 0;
  bottom: -5px;
}

#siteTop #pageLoading video,
#siteTop #pageLoading img {
  display: none;
}
#siteTop .js-fadeLogo,
#siteTop .js-fadeLogo01,
#siteTop .js-fadeLogo02,
#siteTop .js-headerLogo,
#siteTop .js-headerNavOpenBtn,
#siteTop .js-fadecontactButton,
#siteTop .js-footer {
  opacity: 0;
}
#siteTop .js-fadeLogo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#siteTop .js-fadeLogo01,
#siteTop .js-fadeLogo02 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#siteTop .js-fademain,
#siteTop .js-fadeservice {
  transform: translateY(-4px);
  opacity: 0;
  display: none;
}
.js-headerNavCloseBtn {
  display: none;
}

a {
  color: #41aed0;
}