@charset "UTF-8";
/**
 * font読み込み設定
 */
@font-face {
  font-family: Futura;
  src: url("../font/FuturaICG.otf");
}
@font-face {
  font-family: FuturaICGLight;
  src: url("../font/FuturaICGLight.otf");
}
@font-face {
  font-family: HiraginoSans;
  src: url("../font/HiraginoSansW3.ttf");
}
/**
 * mixin style設定
 */
@media screen and (max-width: 833px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 834px) {
  .is-sp {
    display: none !important;
  }
}
.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: 1.5s;
}

.is-fadeIn {
  opacity: 1;
  visibility: visible;
}

.nowrap {
  white-space: nowrap;
}

/**
 * common
 */
body {
  position: relative;
  font-family: "HiraginoSans";
}

p {
  margin: 0;
  font-size: 16px;
}

a {
  font-size: 16px;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: 100%;
}

.inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.util__title {
  margin-bottom: 70px;
  font-family: "FuturaICG";
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: normal;
}

/**
 * header
 */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: 1s;
}
@media screen and (max-width: 833px) {
  .header {
    padding-top: 20px;
  }
}
@media screen and (min-width: 834px) {
  .header {
    padding-top: 45px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
}
.header__left {
  width: 30%;
}
@media screen and (max-width: 833px) {
  .header__left {
    height: 80px;
  }
}
@media screen and (min-width: 834px) {
  .header__left {
    height: 180px;
  }
}
.header__image {
  -o-object-fit: contain;
     object-fit: contain;
}
.header__right {
  display: flex;
  width: 70%;
}
@media screen and (max-width: 833px) {
  .header__right {
    justify-content: end;
  }
}
@media screen and (min-width: 834px) {
  .header__right {
    justify-content: space-evenly;
  }
}
.header__nav--link {
  font-family: "FuturaICG";
  color: #fff;
}
.header .openBtn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.header .openBtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.header .openBtn span:nth-of-type(1) {
  top: 15px;
}
.header .openBtn span:nth-of-type(2) {
  top: 23px;
}
.header .openBtn span:nth-of-type(3) {
  top: 31px;
}
.header .openBtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.header .openBtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .openBtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.header__sp {
  position: fixed;
  top: 0;
  left: -50%;
  right: 100%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  background-color: #fff;
  z-index: 100;
  transition: 0.5s;
}
.header__sp.is-active {
  left: 0;
  right: 50%;
  animation: slideIn 0.5s ease-in-out;
}
.header__sp--nav {
  padding-top: 10px;
  padding-bottom: 10px;
}
.header__sp--link {
  font-family: "FuturaICG";
  color: #000;
}

.is-hide {
  top: -225px;
}

@keyframes slideIn {
  0% {
    left: -50%;
    right: 100%;
  }
  100% {
    left: 0;
    right: 50%;
  }
}
/**
 * heroView
 */
.heroView {
  position: relative;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
}
@media screen and (max-width: 833px) {
  .heroView {
    aspect-ratio: 375/500;
    background-image: url(../image/mian_sp.png);
  }
}
@media screen and (min-width: 834px) {
  .heroView {
    aspect-ratio: 1920/870;
    background-image: url(../image/main.png);
  }
}
.heroView__inner {
  width: 100%;
  height: 100%;
}
.heroView__title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "FuturaICG";
  color: #fff;
}
@media screen and (max-width: 833px) {
  .heroView__title {
    width: 87.5%;
    font-size: 42px;
  }
}
@media screen and (min-width: 834px) {
  .heroView__title {
    font-size: 60px;
    white-space: nowrap;
  }
}

/**
 * subView
 */
.subView {
  position: relative;
  color: #fff;
  line-height: 1.83;
  letter-spacing: 0.05em;
  background-color: #000;
}
@media screen and (max-width: 833px) {
  .subView {
    font-size: 15px;
    text-align: center;
    aspect-ratio: 375/270;
  }
}
@media screen and (min-width: 834px) {
  .subView {
    font-size: 18px;
    aspect-ratio: 1920/350;
  }
}
.subView__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.subView__image {
  position: absolute;
  left: calc(50% - 12.5px);
  top: -42.5px;
  transform: translateX(-50%);
  width: 25px;
  height: 85px;
  animation: upDown 2s infinite;
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25px);
  }
  100% {
    transform: translateY(0);
  }
}
/**
 * service
 */
.service {
  padding-top: 150px;
  padding-bottom: 150px;
}
.service__inner {
  padding-left: 15px;
  padding-right: 15px;
}
.service__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
.service__imageBox {
  position: relative;
}
@media screen and (max-width: 833px) {
  .service__imageBox {
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .service__imageBox {
    width: calc(50% - 15px);
    margin-right: 30px;
  }
  .service__imageBox:nth-of-type(2n) {
    margin-right: 0;
  }
}
.service__imageBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}
.service__imageBox:hover::before {
  background-color: rgba(0, 0, 0, 0);
}
.service__textBox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.service__textBox--JP {
  font-family: "HiraginoSans";
}
@media screen and (max-width: 833px) {
  .service__textBox--JP {
    font-size: 16px;
  }
}
@media screen and (min-width: 834px) {
  .service__textBox--JP {
    font-size: 18px;
  }
}
.service__textBox--EN {
  font-family: "FuturaICG";
}
@media screen and (max-width: 833px) {
  .service__textBox--EN {
    font-size: 16px;
  }
}
@media screen and (min-width: 834px) {
  .service__textBox--EN {
    font-size: 18px;
  }
}

/**
 * about
 */
.about {
  padding-top: 150px;
  padding-bottom: 150px;
  color: #fff;
  background-color: #000;
  background-image: url(../image/bg_logo.svg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 40%;
}
.about__table {
  margin: 0 auto;
}
@media screen and (max-width: 833px) {
  .about__table {
    width: 80%;
  }
}
@media screen and (min-width: 834px) {
  .about__table {
    width: 70%;
  }
}
.about__table--row {
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: #fff 1px solid;
}
.about__table--row:first-of-type {
  border-top: #fff 1px solid;
}
.about__table--header {
  font-size: 14px;
}
@media screen and (max-width: 833px) {
  .about__table--header {
    width: 35%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (min-width: 834px) {
  .about__table--header {
    width: 30%;
    padding-left: 10%;
  }
}
.about__table--text {
  font-size: 14px;
}
@media screen and (max-width: 833px) {
  .about__table--text {
    width: 65%;
  }
}
@media screen and (min-width: 834px) {
  .about__table--text {
    width: 70%;
  }
}
.about__map {
  text-align: center;
}
.about__map iframe {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
.about__map {
  padding-top: 60px;
}

/**
 * contact
 */
.contact {
  padding-top: 150px;
  padding-bottom: 150px;
}
.contact__wrap {
  margin: 0 auto;
  font-size: 14px;
}
@media screen and (max-width: 833px) {
  .contact__wrap {
    width: 90%;
  }
}
@media screen and (min-width: 834px) {
  .contact__wrap {
    width: 70%;
  }
}
.contact__text {
  font-size: 14px;
}
@media screen and (max-width: 833px) {
  .contact__form {
    margin: 50px auto 0;
  }
}
@media screen and (min-width: 834px) {
  .contact__form {
    margin: 70px auto 0;
  }
}
.contact__row {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  min-height: 30px;
  line-height: 30px;
}
@media screen and (max-width: 833px) {
  .contact__row {
    font-size: 14px;
    flex-direction: column;
  }
}
.contact__btn {
  position: relative;
  display: block;
  margin: 50px auto 0;
  width: 100%;
  max-width: 300px;
}
.contact__btn input[type=submit] {
  padding: 15px 0;
  width: 100%;
  color: #fff;
  background-color: #000;
  border-radius: 50px;
  cursor: pointer;
}
.contact__btn::after {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../image/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 833px) {
  .contact__left {
    padding-right: 0;
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .contact__left {
    padding-right: 50px;
    width: 35%;
  }
}
.contact__left .required-label {
  position: relative;
}
.contact__left .required-label::after {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  content: "必須";
  padding: 0 5px;
  height: 17.5px;
  font-size: 10px;
  line-height: 17.5px;
  background: #E5E5E5;
  border-radius: 5px;
}
.contact__left .confirm-label {
  position: relative;
}
.contact__left .confirm-label::after {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  content: "確認用";
  padding: 0 5px;
  height: 17.5px;
  font-size: 10px;
  line-height: 17.5px;
  background: #E5E5E5;
  border-radius: 5px;
}
.contact__right {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 833px) {
  .contact__right {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .contact__right {
    flex-wrap: initial;
    justify-content: space-around;
    width: 65%;
  }
}
@media screen and (max-width: 833px) {
  .contact__right--noWrap {
    justify-content: center;
  }
}
.contact__right input[type=checkbox] {
  margin-right: 10px;
  accent-color: #555;
  transform: scale(1.5);
}
.contact__right input[type=text],
.contact__right input[type=email],
.contact__right textarea {
  padding: 5px 10px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: solid 1px #4D4D4D;
}
.contact__right .required-label {
  position: relative;
}
@media screen and (max-width: 833px) {
  .contact__right .required-label {
    margin: 0;
  }
}
@media screen and (min-width: 834px) {
  .contact__right .required-label {
    margin-left: 160px;
  }
}
.contact__right .required-label::after {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  content: "必須";
  padding: 0 5px;
  height: 17.5px;
  font-size: 10px;
  line-height: 17.5px;
  background: #E5E5E5;
  border-radius: 5px;
}

/**
 * footer
 */
.footer__top {
  background-color: #000;
}
.footer__wrap {
  display: flex;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media screen and (max-width: 833px) {
  .footer__wrap {
    flex-direction: column;
  }
}
@media screen and (min-width: 834px) {
  .footer__wrap {
    flex-direction: row;
  }
}
.footer__left {
  width: 35%;
}
@media screen and (max-width: 833px) {
  .footer__image {
    height: 95px;
  }
}
@media screen and (min-width: 834px) {
  .footer__image {
    height: 135px;
  }
}
.footer__right {
  display: flex;
  align-items: start;
  justify-content: space-around;
}
@media screen and (max-width: 833px) {
  .footer__right {
    flex-direction: column;
    align-items: center;
    width: 35%;
    text-align: center;
  }
}
@media screen and (min-width: 834px) {
  .footer__right {
    flex-direction: row;
    width: 65%;
  }
}
.footer__bottom {
  background-color: #333;
}
.footer__nav {
  font-family: "FuturaICG";
}
@media screen and (max-width: 833px) {
  .footer__nav {
    margin-top: 10px;
  }
}
.footer__nav--link {
  color: #fff;
}
.footer__copy {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: small;
  color: #fff;
  text-align: center;
}

/**
 * confirm
 */
.confirm {
  margin: 50px auto 0;
  padding: 0 15px;
  width: 100%;
  max-width: 700px;
}
.confirm__title {
  text-align: center;
}
.confirm__subtitle {
  text-align: center;
}
.confirm__row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 30px 0;
  border-bottom: solid 1px #cbcbcb;
}
.confirm__row input[type=submit] {
  padding: 15px 0;
  width: 100%;
  max-width: 150px;
  color: #fff;
  background-color: #000;
  border-radius: 50px;
}
.confirm__row button {
  margin-left: 15px;
  padding: 15px 0;
  width: 100%;
  max-width: 150px;
  color: #000;
  background-color: #fff;
  border: solid 1px #000;
  border-radius: 50px;
}
.confirm__left {
  font-weight: bold;
}
@media screen and (max-width: 833px) {
  .confirm__left {
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .confirm__left {
    width: 40%;
  }
}
@media screen and (max-width: 833px) {
  .confirm__right {
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .confirm__right {
    width: 60%;
  }
}

/**
 * send
 */
.send {
  margin: 50px auto 0;
  padding: 0 15px;
  width: 100%;
  max-width: 700px;
  text-align: center;
}

/**
 * loading
 */
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #333;
  text-align: center;
  color: #fff;
}

#splashLogo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash_logo img {
  width: 260px;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**
 * animation
 */
.TextTyping span {
  display: none;
}

.TextTyping::after {
  content: "|";
  animation: typinganime 1s ease infinite;
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */