@charset "UTF-8";
.appear.up .item {
  transform: translateY(35px);
}

.appear.down .item {
  transform: translateY(-35px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: white;
  border: 1px solid black;
  font-weight: 600;
  padding: 10px 40px;
  margin: 10px auto;
  cursor: pointer;
  transition: all 0.3s;
  color: black;
  text-decoration: none !important;
}
.btn.float:hover {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled:hover {
  background-color: white;
  color: black;
  box-shadow: none;
}
.btn.letter-spacing:hover {
  background-color: black;
  letter-spacing: 3px;
  color: white;
}
.btn.shadow {
  box-shadow: none;
}
.btn.shadow:hover {
  transform: translate(-2.5px, -2.5px);
  box-shadow: 5px 5px 0 0 black;
}
.btn.solid {
  box-shadow: 2px 2px 0 0 black;
  border-radius: 7px;
}
.btn.solid:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.btn.slide-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.slide-bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: -1;
}
.btn.slide-bg:hover {
  color: white;
}
.btn.slide-bg:hover::before {
  transform: none;
}
.btn.cover-3d {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 300px;
}
.btn.cover-3d span {
  display: inline-block;
  transform: translateZ(20px);
}
.btn.cover-3d::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateX(90deg);
  transition: all 0.3s;
  transform-origin: top center;
  opacity: 0;
}
.btn.cover-3d:hover {
  color: white;
}
.btn.cover-3d:hover::before {
  transform: none;
  opacity: 1;
}

.btn-cubic {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 300px;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 600;
}
.btn-cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  line-height: 48px;
  text-align: center;
  transition: all 0.3s;
  transform-origin: center center -25px;
  color: black;
}
.btn-cubic .hovering {
  background-color: black;
  color: white;
  transform: rotateX(90deg);
}
.btn-cubic .default {
  background-color: white;
  color: black;
  transform: rotateX(0);
}
.btn-cubic:hover .hovering {
  transform: rotateX(0);
}
.btn-cubic:hover .default {
  transform: rotateX(-90deg);
}

.animate-title,
.tween-animate-title {
  opacity: 0;
}
.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}
.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}
.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}

.animate-title.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-title.inview .char:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-title.inview .char:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-title.inview .char:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-title.inview .char:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-title.inview .char:nth-child(5) {
  animation-delay: 0.5s;
}
.animate-title.inview .char:nth-child(6) {
  animation-delay: 0.6s;
}
.animate-title.inview .char:nth-child(7) {
  animation-delay: 0.7s;
}
.animate-title.inview .char:nth-child(8) {
  animation-delay: 0.8s;
}
.animate-title.inview .char:nth-child(9) {
  animation-delay: 0.9s;
}
.animate-title.inview .char:nth-child(10) {
  animation-delay: 1s;
}
.animate-title.inview .char:nth-child(11) {
  animation-delay: 1.1s;
}
.animate-title.inview .char:nth-child(12) {
  animation-delay: 1.2s;
}
.animate-title.inview .char:nth-child(13) {
  animation-delay: 1.3s;
}
.animate-title.inview .char:nth-child(14) {
  animation-delay: 1.4s;
}
.animate-title.inview .char:nth-child(15) {
  animation-delay: 1.5s;
}
.animate-title.inview .char:nth-child(16) {
  animation-delay: 1.6s;
}
.animate-title.inview .char:nth-child(17) {
  animation-delay: 1.7s;
}
.animate-title.inview .char:nth-child(18) {
  animation-delay: 1.8s;
}
.animate-title.inview .char:nth-child(19) {
  animation-delay: 1.9s;
}
.animate-title.inview .char:nth-child(20) {
  animation-delay: 2s;
}
.animate-title.inview .char:nth-child(21) {
  animation-delay: 2.1s;
}
.animate-title.inview .char:nth-child(22) {
  animation-delay: 2.2s;
}
.animate-title.inview .char:nth-child(23) {
  animation-delay: 2.3s;
}
.animate-title.inview .char:nth-child(24) {
  animation-delay: 2.4s;
}
.animate-title.inview .char:nth-child(25) {
  animation-delay: 2.5s;
}
.animate-title.inview .char:nth-child(26) {
  animation-delay: 2.6s;
}
.animate-title.inview .char:nth-child(27) {
  animation-delay: 2.7s;
}
.animate-title.inview .char:nth-child(28) {
  animation-delay: 2.8s;
}
.animate-title.inview .char:nth-child(29) {
  animation-delay: 2.9s;
}
.animate-title.inview .char:nth-child(30) {
  animation-delay: 3s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
img {
  vertical-align: bottom;
}

.mt-sm, .contact__text-wrap {
  margin-top: 16px !important;
}

.mt-md, .recruite .desc .title {
  margin-top: 50px !important;
}
@media screen and (min-width: 1024px) {
  .mt-md, .recruite .desc .title {
    margin-top: 90px !important;
  }
}

.mt-lg {
  margin-top: 80px !important;
}
@media screen and (min-width: 1024px) {
  .mt-lg {
    margin-top: 150px !important;
  }
}

.mb-sm {
  margin-bottom: 16px !important;
}

.mb-md, .recruite, .company, .home__inner {
  margin-bottom: 50px !important;
}
@media screen and (min-width: 1024px) {
  .mb-md, .recruite, .company, .home__inner {
    margin-bottom: 90px !important;
  }
}

.mb-lg {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 1024px) {
  .mb-lg {
    margin-bottom: 150px !important;
  }
}

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-md {
  padding-bottom: 48px !important;
}

.pb-lg, .contact {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 1024px) {
  .pb-lg, .contact {
    padding-bottom: 150px !important;
  }
}

.content-width, .recruite .desc, .company__text, .home__inner, .welcome__description, .welcome__content .inner, .welcome .office, .footer__inner, .header__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1280px;
}

.content-width2, .contact__inner {
  width: 73%;
  margin: 0 auto;
  max-width: 1024px;
}

.my_flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .my_flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.purple {
  color: #904669;
}

.font-sm, .recruite .desc, .footer__company .address, .footer__bottom {
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  .font-sm, .recruite .desc, .footer__company .address, .footer__bottom {
    font-size: 16px;
  }
}

.font-md, .company__text, .contact__input, .welcome__description .description, .welcome__content .inner__item {
  font-size: 17px;
}
@media screen and (min-width: 1024px) {
  .font-md, .company__text, .contact__input, .welcome__description .description, .welcome__content .inner__item {
    font-size: 19px;
  }
}

.font-lr, .recruite .desc .title, .contact-send, .contact__text, .welcome__description .ceo span:nth-child(2), .welcome__content .inner__item .content .title, .welcome .office .subtitle, .welcome .office .inner .item .content .shop-info .sub-title, .footer__company .title {
  font-size: 19px;
}
@media screen and (min-width: 1024px) {
  .font-lr, .recruite .desc .title, .contact-send, .contact__text, .welcome__description .ceo span:nth-child(2), .welcome__content .inner__item .content .title, .welcome .office .subtitle, .welcome .office .inner .item .content .shop-info .sub-title, .footer__company .title {
    font-size: 23px;
  }
}

.font-lg, .welcome__description .title, .welcome__content .parallax-bg__title, .welcome .office .title {
  font-size: 25px;
}
@media screen and (min-width: 1024px) {
  .font-lg, .welcome__description .title, .welcome__content .parallax-bg__title, .welcome .office .title {
    font-size: 36px;
  }
}

.font-xl, .recruite__title, .company__title, .contact__title {
  font-size: 32px;
}
@media screen and (min-width: 1024px) {
  .font-xl, .recruite__title, .company__title, .contact__title {
    font-size: 46px;
  }
}

.font-2xl {
  font-size: 43px;
}
@media screen and (min-width: 1024px) {
  .font-2xl {
    font-size: 60px;
  }
}

.font-hero, .welcome .swiper .hero-title {
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .font-hero, .welcome .swiper .hero-title {
    font-size: 46px;
  }
}
@media screen and (min-width: 1024px) {
  .font-hero, .welcome .swiper .hero-title {
    font-size: 60px;
  }
}

.font-cutout {
  color: white;
  background-image: url("../../images/backfont.webp"); /* 切り抜きたい画像 */
  background-size: cover;
  -webkit-background-clip: text;
          background-clip: text; /* 画像を文字で切り抜く指定 */
  -webkit-text-fill-color: transparent;
}

.border-grad {
  -o-border-image: linear-gradient(to right, #c21500 0%, #ffc500 100%);
     border-image: linear-gradient(to right, #c21500 0%, #ffc500 100%);
  border-image-slice: 1;
}

.company__head, .recruite__head {
  opacity: 0;
  animation-name: opa;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes opa {
  0% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.header {
  height: 4rem;
  transition: all 1s;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(196, 54, 54);
  color: black;
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5.3rem;
  }
}
.header.outview {
  top: -10%;
}
.header.triggered {
  background-color: rgb(196, 54, 54);
  color: white;
}
.header.triggered .header__li a:hover::before {
  background-color: white;
}
.header.triggered .mobile-menu__btn span {
  background-color: white;
}
.header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav-wrap {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header__nav-wrap {
    display: block;
  }
}
.header__ul {
  display: flex;
}
.header__li {
  margin-left: 1.5em;
  width: 7vw;
  min-width: 100px;
}
.header__li a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.3em;
  width: 100%;
  z-index: 1;
}
.header__li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: all 0.3s;
}
.header__li a:hover::before {
  background-color: black;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 500px;
  color: black;
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 6rem;
  z-index: 200;
  max-width: 100vw;
  visibility: hidden;
  transition: all 0.3s;
  opacity: 0;
}
.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
}
.mobile-menu__li {
  text-align: center;
  opacity: 0;
  transform: translateY(30%);
  transition: all 0.6s;
}
.mobile-menu__li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1em;
  transition: all 0.3s;
}
.mobile-menu__li a:hover {
  background-color: rgb(196, 54, 54);
}
.menu-open .mobile-menu__li {
  opacity: 1;
  transform: none;
}
.menu-open .mobile-menu__li:nth-child(1) {
  transition-delay: 0.07s;
}
.menu-open .mobile-menu__li:nth-child(2) {
  transition-delay: 0.14s;
}
.menu-open .mobile-menu__li:nth-child(3) {
  transition-delay: 0.21s;
}
.menu-open .mobile-menu__li:nth-child(4) {
  transition-delay: 0.28s;
}
.menu-open .mobile-menu__li:nth-child(5) {
  transition-delay: 0.35s;
}
.menu-open .mobile-menu__li:nth-child(6) {
  transition-delay: 0.42s;
}
.menu-open .mobile-menu__li:nth-child(7) {
  transition-delay: 0.49s;
}
.menu-open .mobile-menu__li:nth-child(8) {
  transition-delay: 0.56s;
}
.menu-open .mobile-menu__li:nth-child(9) {
  transition-delay: 0.63s;
}
.menu-open .mobile-menu__li:nth-child(10) {
  transition-delay: 0.7s;
}

.mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .mobile-menu__btn {
    display: none;
  }
}
.mobile-menu__btn > span {
  background-color: black;
  width: 30px;
  height: 1px;
  display: block;
  margin-bottom: 9px;
  transition: transform 0.5s;
}
.mobile-menu__btn > span:nth-child(2) {
  width: 25px;
  text-align: right;
}
.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
.menu-open .mobile-menu__btn > span {
  background-color: black;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(10px) rotate(135deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-10px) rotate(-135deg);
}

.footer {
  position: relative;
  color: white;
  background-color: rgb(196, 54, 54);
  overflow: hidden;
  width: 100%;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
@media screen and (min-width: 1280px) {
  .footer__inner {
    flex-direction: row-reverse;
  }
}
.footer__inner > * {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .footer__inner > * {
    width: 47%;
  }
}
.footer__company {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
@media screen and (min-width: 1280px) {
  .footer__company {
    flex-direction: row;
  }
}
.footer__company .title {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
@media screen and (min-width: 1280px) {
  .footer__company .title {
    justify-content: flex-start;
  }
}
.footer__company .title img {
  width: 1.2em;
}
.footer__company .address {
  padding-top: 5px;
}
.footer__menu {
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .footer__menu {
    font-size: 1em;
  }
}
.footer__menu ul {
  display: flex;
  justify-content: space-between;
}
.footer__menu ul li {
  width: 23%;
}
.footer__menu ul li a::before, .footer__menu ul li a::after {
  background-color: rgb(196, 54, 54);
}
.footer__menu ul li a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.3em;
  width: 100%;
  z-index: 1;
  transition: all 0.3s;
}
.footer__menu ul li a::before {
  position: absolute;
  bottom: 0%;
  left: 0%;
  content: "";
  width: 100%;
  height: 1px;
  transition: all 0.3s;
}
.footer__menu ul li a:hover::before {
  transform: translateY(-49%);
}
.footer__menu ul li a:hover::after {
  transform: translateY(49%);
}
.footer__menu ul li a:hover::before {
  background-color: white;
}
.footer__bottom {
  text-align: center;
}

.welcome {
  overflow-x: hidden;
}
.welcome > * {
  padding-bottom: 8em;
}
@media screen and (min-width: 768px) {
  .welcome > * {
    padding-bottom: 8em;
  }
}
.welcome > *:last-child {
  padding-bottom: 3em;
}
.welcome .swiper {
  position: relative;
  height: 60vh;
}
@media screen and (min-width: 768px) {
  .welcome .swiper {
    height: 95vh;
  }
}
.welcome .swiper img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.welcome .swiper:before {
  content: "";
  width: 70%;
  height: 100%;
  background-color: white;
  position: absolute;
  top: 0;
  left: -25%;
  z-index: 100;
  transform: skew(30deg) translateX(-45%);
}
.welcome .swiper .hero-title {
  display: inline-block;
  padding: 0.5em;
  background-color: white;
  position: absolute;
  top: 60%;
  left: 10%;
  z-index: 200;
}
.welcome__description .title {
  text-align: center;
  padding-bottom: 45px;
}
.welcome__description .description {
  line-height: 2;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .welcome__description .description {
    width: 60%;
    line-height: 3;
  }
}
.welcome__description .ceo {
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.welcome__description .ceo span:nth-child(2) {
  margin-left: 0.5em;
}
.welcome__content {
  color: black;
}
.welcome__content .parallax-bg {
  position: relative;
  height: 30vh;
  background-image: url("../images/parallax.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .welcome__content .parallax-bg {
    height: 45vh;
  }
}
.welcome__content .parallax-bg__title {
  color: white;
  width: 80%;
  text-align: center;
  z-index: 100;
  padding: 1.5em 2em;
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .welcome__content .parallax-bg__title {
    width: auto;
  }
}
.welcome__content .inner__item {
  display: flex;
  flex-wrap: wrap;
  padding-top: 3em;
}
.welcome__content .inner__item .img-cover {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .welcome__content .inner__item .img-cover {
    width: 40%;
  }
}
.welcome__content .inner__item .img-cover:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  z-index: -1;
  transition: all 1s;
  transition-delay: 1s;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .welcome__content .inner__item .img-cover:before {
    border: 1px solid rgb(196, 54, 54);
  }
}
.welcome__content .inner__item .img-cover img {
  border-radius: 50%;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.welcome__content .inner__item .content {
  justify-self: center;
  align-self: center;
  padding-top: 0.5em;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .welcome__content .inner__item .content {
    padding: 1em;
  }
}
@media screen and (min-width: 768px) {
  .welcome__content .inner__item .content {
    width: 50%;
  }
}
.welcome__content .inner__item .content .title {
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5em;
  padding-bottom: 0.1em;
}
.welcome__content .inner__item .content .title:before {
  display: inline-block;
  content: "●";
  color: rgb(196, 54, 54);
  transform: scale(0);
  transition: transform 0.5s;
  transition-delay: 1.2s;
}
.welcome__content .inner__item .content .title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background-color: rgb(196, 54, 54);
  width: 100%;
  height: 1px;
  transform: translateX(100%);
  transition: transform 0.5s;
  transition-delay: 0.7s;
}
.welcome__content .inner__item:nth-child(odd) {
  flex-direction: row-reverse;
}
.welcome__content .inner__item.inview .img-cover:before {
  opacity: 1;
  transform: translateX(15px) translateY(15px);
}
.welcome__content .inner__item.inview .title:before {
  transform: none;
}
.welcome__content .inner__item.inview .title:after {
  transform: none;
}
.welcome .office .title {
  text-align: center;
}
.welcome .office .subtitle {
  padding: 0.5em;
  margin: 2.5em 0em 1em 0em;
  color: white;
  background-color: rgb(196, 54, 54);
}
.welcome .office .inner .item {
  margin-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .welcome .office .inner .item {
    flex-direction: row;
  }
}
.welcome .office .inner .item .content {
  padding-top: 0.5em;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .welcome .office .inner .item .content {
    padding: 0 1em 1em 1em;
  }
}
@media screen and (min-width: 768px) {
  .welcome .office .inner .item .content {
    width: 60%;
  }
}
.welcome .office .inner .item .content > * {
  margin-bottom: 0.5em;
}
.welcome .office .inner .item .content .img-wrap {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  height: 150px;
}
@media screen and (min-width: 768px) {
  .welcome .office .inner .item .content .img-wrap {
    height: 300px;
  }
}
.welcome .office .inner .item .content .img-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  width: 49%;
}
.welcome .office .inner .item .content .shop-info .sub-title {
  display: flex;
  align-items: center;
}
.welcome .office .inner .item .content .shop-info .sub-title:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1em;
  margin-right: 0.2em;
  background-color: rgb(196, 54, 54);
}
.welcome .office .inner .item iframe {
  min-height: 300px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .welcome .office .inner .item iframe {
    width: 40%;
  }
}

.contact-send {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1em;
  opacity: 0;
  transition: opacity 1.5s;
  border-radius: 5px;
}
.contact-send.visible {
  opacity: 1;
}

.contact__title {
  text-align: center;
}
.contact__input {
  margin-top: 1em;
  padding: 0.7em;
  width: 100%;
  border: 1px solid black;
  border-radius: 3px;
}
.contact__input:first-child {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .contact__input {
    margin-top: 2em;
  }
  .contact__input:first-child {
    margin-top: 3.5em;
  }
}
.contact__input.btn {
  position: relative;
  border: 1px solid black;
  color: white;
  background-color: rgb(80, 80, 80);
  letter-spacing: 2em;
}
.company {
  color: black;
  background-color: white;
}
.company__head {
  position: relative;
  width: 100vw;
  height: 40vh;
}
@media screen and (min-width: 768px) {
  .company__head {
    height: 55vh;
  }
}
.company__head > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company__title {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 0.3em 0.5em;
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .company__title {
    padding: 0.7em 2em;
  }
}
.company__text {
  padding-top: 2em;
}
.company__text .company__item {
  padding: 1.5em 0 0.3em 0;
  border-bottom: 1px solid rgb(196, 54, 54);
}
@media screen and (min-width: 768px) {
  .company__text .company__item {
    padding: 2.5em 0 0.5em 2em;
  }
}
.company__text .company__item .texts {
  display: flex;
  flex-wrap: wrap;
  line-height: 2;
}
.company__text .company__item .texts .title {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .company__text .company__item .texts .title {
    text-align: center;
    width: 24%;
  }
}
.company__text .company__item .texts .title:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1em;
  margin-right: 0.2em;
  background-color: rgb(196, 54, 54);
}
.company__text .company__item .texts .detail-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .company__text .company__item .texts .detail-wrap {
    width: 72%;
  }
}
.company__text .company__item .texts .detail-wrap .detail {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .company__text .company__item .texts .detail-wrap .detail {
    flex-direction: row;
  }
}
.company__text .company__item .texts .detail-wrap .detail:not(:last-child) {
  padding-bottom: 1em;
}

.recruite {
  color: black;
  background-color: white;
}
.recruite__head {
  position: relative;
  width: 100vw;
  height: 40vh;
}
@media screen and (min-width: 768px) {
  .recruite__head {
    height: 55vh;
  }
}
.recruite__head > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruite__title {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 0.3em 0.5em;
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .recruite__title {
    padding: 0.7em 2em;
  }
}
.recruite .desc {
  max-width: 1024px;
}
.recruite .desc .title {
  text-align: center;
}
.recruite .desc table {
  width: 100%;
}
.recruite .desc table tbody tr {
  border: solid 1px rgb(196, 54, 54);
  height: 60px;
}
.recruite .desc table tbody td {
  padding: 0.5em;
}
.recruite .desc table tbody .t-title {
  border-right: solid 1px rgb(196, 54, 54);
  width: 30%;
  text-align: center;
}
.recruite .desc table tbody .desc {
  width: 70%;
}/*# sourceMappingURL=style.css.map */