@charset "UTF-8";
/* base */
@font-face {
  font-family: 'kaimin';
  src: url("../../assets/font/A-OTF-KaiminSoStd-Regular.otf");
  font-weight: 400;
}

@font-face {
  font-family: 'kaimin';
  src: url("../../assets/font/A-OTF-KaiminTuStd-Bold.otf");
  font-weight: 700;
}

html {
  font-size: 62.5%;
  font-weight: 500;
  font-family: "kaimin";
  color: #3e3a39;
  overflow-x: hidden;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  color: #3e3a39;
  text-decoration: none;
}

a:hover {
  color: #3e3a39;
  text-decoration: none;
  opacity: .7;
}

input, textarea {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  max-width: 100%;
}

.pc-only {
  display: block;
}

@media (max-width: 520px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}

@media (max-width: 520px) {
  .sp-only {
    display: block;
  }
}

/* base end */
.l-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .l-wrapper {
    width: 100%;
  }
}

.l-header {
  position: relative;
}

.l-main {
  position: relative;
  width: 100%;
}

.l-footer {
  padding: 0;
}

.c-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.c-fade.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.c-fade-first {
  opacity: 0;
  visibility: hidden;

  transition: opacity 3s, visibility 3s, transform 3s;
}
@media (max-width: 768px) {
  .c-fade-first {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.c-fade-first.is-fadein {
  opacity: 1;
  visibility: visible;

}

.body {
  line-height: 1.6;
  font-size: 1.5rem;
  letter-spacing: .2rem;
  background: transparent url("../../assets/img/bg_bottom_logo.svg") right 95% no-repeat;
  background-size: 40%;
  background-attachment: fixed;

  padding-top: 9rem;
}

@media (max-width: 768px) {
  .body {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .inner {
    width: 95%;
  }
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.inner-m {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .inner-m {
    width: 95%;
  }
}
@media (max-width: 768px) {
  .inner-m {
    width: 90%;
  }
}

.header { 
  position: fixed;
  top : 0;
  left: 0; 
  width: 100%;
  padding: 2rem 0 3rem;
  z-index: 800;
}
@media (max-width: 768px) {
  .header {
    padding: 2rem 0;
  }
}

.header__inner {
  width: 95%;
  margin: 0 auto;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header__logo {
  width: 100%;
  max-width: 106px;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 100px;
  }
}

.header__logo img {
  vertical-align: top;
}

.header__menu {
  box-shadow: 2px 2px 4px #aaa;
  border-radius: 10rem;
  position: relative;
  transition: all 0.5s 0s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  box-sizing: border-box;
  position: absolute;
    z-index: 50;
    right: 1rem;
    top : 0;
    background: #fff;
}

.header__menu.is-active {
  padding: 0 2rem 0 5rem;
}
@media (max-width: 768px) {
  .header__menu.is-active {
    border-radius: 10px;
    padding: 2.5rem 0 2.5rem 3rem;
    box-sizing: border-box;
    width: 80%;
    position: absolute;
    top : -.5rem;
  }
}

.header__menu:hover {
  box-shadow: 2px 2px 5px #aaa;
}

.header__menu--nav {
  display: none;
}

.header__menu.is-active .header__menu--nav {
  display: block;
}

.header__menu--list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 768px) {
  .header__menu--list {
    display: block;
  }
}

.header__menu--item {
  margin: 0 2rem 0 0;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header__menu--item {
    margin-bottom: 2rem;
  }
  .header__menu--item:last-child {
    margin-bottom: 0;
  }
}


.header__menu--item::before {
  content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3e3a39;
    position: relative;
    margin-right: .5rem;
}

.header__menu--btn {
  width: 50px;
  height: 50px;
  position: relative;
  top : 0;
  left: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__menu--btn {
    width: 50px;
    height: 50px;
  }
}

.header__menu--btn span {
  background: #3e3a39;
  width: 50%;
  height: 3px;
  display: block;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  transition: all 0.5s 0s ease;
}
@media (max-width: 768px) {
  .header__menu--btn span {
    top : 18px;
  }
}

.header__menu span:nth-child(2) {
  top: 30px;
}
@media (max-width: 768px) {
  .header__menu span:nth-child(2) {
    top : 30px;
  }
}

.header__menu.is-active .header__menu--btn span {
  transform: translateY(4px) translateX(0px) rotate(-45deg);
  -webkit-transform: translateY(4px) translateX(0px) rotate(-45deg);
}
@media (max-width: 768px) {
 .header__menu.is-active .header__menu--btn span {
    transform: translateY(4px) translateX(-14px) rotate(-45deg);
  -webkit-transform: translateY(4px) translateX(-14px) rotate(-45deg);
  }
}

.header__menu.is-active .header__menu--btn span:nth-child(2) {
  transform: translateY(-7px) translateX(0px) rotate(45deg);
  -webkit-transform: translateY(-7px)) translateX(0px) rotate(45deg);
}
@media (max-width: 768px) {
 .header__menu.is-active .header__menu--btn span:nth-child(2) {
  transform: translateY(-8px) translateX(-14px) rotate(45deg);
  -webkit-transform: translateY(-8px)) translateX(-14px) rotate(45deg);
  }
}

.main {

}

.title {
  line-height: 1.3;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .title {
    margin-bottom: 4rem;
    line-height: 1.4;
  }
}

.title__en {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .title__en {
    font-size: 2.4rem;
  }
}

.title__ja {
  font-size: 2rem;
  display: block;
}
@media (max-width: 768px) {
  .title__ja {
    font-size: 1.8rem;
  }
}

.btn__more a {
  display: block;
  width: 100%;
  box-shadow: 2px 2px 4px #aaa;
  position: relative;
  border-radius: 10rem;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1.5rem;
  background: #fff;
  transition: all 0.5s 0s ease;
}

.btn__more a:hover {
  box-shadow: 2px 2px 3px #aaa;
}

.btn__more a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3e3a39;
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s 0s ease;
}

.btn__more a:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}

.btn__more a:hover::before {
  background: #fff;
}

.btn__more-inner {
  display: block;
  width: 100%;
  box-shadow: 2px 2px 4px #aaa;
  position: relative;
  border-radius: 10rem;
  text-align: center;
  padding: 0;
  background: #fff;
  transition: all 0.5s 0s ease;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
}
.btn__more-inner span {
  background: #3e3a39;
  width: 50%;
  height: 3px;
  display: block;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.btn__more-inner span:nth-child(2) {
  top: 30px;
}

.btn__more-inner.is-close span {
  transform: translateY(4px) translateX(-12px) rotate(-45deg);
  -webkit-transform: translateY(4px) translateX(-12px) rotate(-45deg);
}

.btn__more-inner.is-close span:nth-child(2) {
  transform: translateY(-6px) translateX(-12px) rotate(45deg);
  -webkit-transform: translateY(-6px) translateX(-12px) rotate(45deg);
}

.top-recruit {
  padding-bottom: 3rem;
}

.top-recruit .inner {
  padding: 14rem 0 0;
}
@media (max-width: 768px) {
  .top-recruit .inner {
    padding: 15rem 0;
  }
}

.top-recruit__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;

}
@media (max-width: 768px) {
  .top-recruit__wrap {
    display: block;
    background-position: center 40%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .top-recruit__lead {
    margin-bottom: 4rem;
  }
}


.top-recruit__movie--inner iframe {
  width: 100%;
  height: 500px;
}

.top-value .title {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .top-value .title {
    margin-bottom: 4rem;
  }
}

.top-value__lead {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
 .top-value__lead {
    margin-bottom: 4rem; 
  }
}

.top-value__list {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto 6rem;
}
@media (max-width: 768px) {
  .top-value__list {
    display: block;
    width: 100%;
    margin-bottom: 0;
  }
}

.top-value__list--wrap {
  display: none;
  transition: ease 0.3s 0s all;
}

.top-value__list--wrap.is-active {
  display: block;
}

.top-value__item {
  width: 26%;
}
@media (max-width: 768px) {
  .top-value__item {
    width: 100%;
    margin-bottom: 3rem;
  }
}

.top-value__image {
  width: 100%;
  text-align: center;
  min-height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .top-value__image {
    min-height: 100%;
    margin-bottom: 2rem;
  }
}

.top-value__image img {
  width: 50%;
}
@media (max-width: 768px) {
  .top-value__image img {
    width: 30%;
  }
}
@media (max-width: 520px) {
  .top-value__image img {
    width: 50%;
  }
}

.top-value__label {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.2;
  min-height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .top-value__label {
    font-size: 1.86rem;
    min-height: 100%;
    margin-bottom: 2rem;
  }
}

.top-value__text {
  font-size: 1.3rem;
}


.top-value__more {
  width: 50px;
  height: 50px;
  box-shadow: 2px 2px 4px #aaa;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  transition: all 0.5s 0s ease;
}

.top-value__more:hover {
  box-shadow: 2px 2px 5px #aaa;
}

.top-value__more:hover {
  cursor: pointer;
}

.top-value__more span {
  background: #3e3a39;
  width: 50%;
  height: 4px;
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.top-value__more span:nth-child(2) {
  top: 46px;
  height: 4px;
}

.top-value__more.is-close span {
  transform: translateY(10px) translateX(-18px) rotate(-45deg);
  -webkit-transform: translateY(10px) translateX(-18px) rotate(-45deg);
}

.top-value__more.is-close span:nth-child(2) {
  transform: translateY(-5px) translateX(-18px) rotate(45deg);
  -webkit-transform: translateY(-5px) translateX(-18px) rotate(45deg);
}

.btn__more {
  width: 80px;
  height: 80px;

  border-radius: 50%;
  position: relative;
  margin: 0 ;
  transition: all 0.5s 0s ease;
}
@media (max-width: 768px) {
  .btn__more {
    box-shadow: none;
  }
}

.btn__more:hover {
  cursor: pointer;
}

.btn__more-text {
  width: 200px;
}
@media (max-width: 768px) {
  .btn__more-text {
    width: 100%;
  }
}


.btn__more span {
  background: #3e3a39;
  width: 50%;
  height: 4px;
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.btn__more span:nth-child(2) {
  top: 46px;
  height: 4px;
}

.btn__more.is-close span {
  transform: translateY(10px) translateX(-18px) rotate(-45deg);
  -webkit-transform: translateY(10px) translateX(-18px) rotate(-45deg);
}

.btn__more.is-close span:nth-child(2) {
  transform: translateY(-5px) translateX(-18px) rotate(45deg);
  -webkit-transform: translateY(-5px) translateX(-18px) rotate(45deg);
}

.top-service {
  padding-bottom: 30rem;
}
@media (max-width: 768px) {
 .top-service {
    padding-bottom: 15rem;
  }
}

.top-service__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
@media (max-width: 1100px) {
  .top-service__wrap {
    display: block;
  }
  .top-service__set {
    margin-bottom: 4rem;
  }
}

.top-service__wrap-inner {
  flex-direction: column;
  align-items: flex-start;
}

.top-service__item {
  margin-bottom: 2rem;
  border-bottom: 1px solid #000;
  padding-bottom: 2rem;
  min-width: 650px;
}
@media (max-width: 768px) {
  .top-service__item {
    min-width: 100%;
  }
}

.top-service__link {
  display: block;
  box-sizing: border-box;
  transition: all 0.5s 0s ease;
}

.top-service__link-en {
  font-size: 2.2rem;
  display: block;
  transition: all 0.5s 0s ease;
}
@media (max-width: 768px) {
  .top-service__link-en {
    font-size: 2rem;
  }
}

.top-service__link-ja {
  font-size: 1.6rem;
  display: block;
}
@media (max-width: 768px) {
  .top-service__link-ja {
    font-size: 1.5rem;
  }
}

.top-service__link-lead {
  padding: 3rem 0 2rem;
  font-size: 2rem;
  font-weight: bold;
  display: block;
}
.top-service__link-text {
  padding: 2rem;
}

.top-service__link:hover .top-service__link-en {
  font-size: 2.4rem;
}

.top-service__link img {
  width: 20px;
  position: relative;
  top: -.5rem;
  left: 1rem;
}
@media (max-width: 768px) {
  .top-service__link img {
    width: 20px;
    top : -.5rem;
    left: 1rem;
  }
}

.top-about {
  padding-bottom: 30rem;
}
@media (max-width: 768px) {
  .top-about {
    padding-bottom: 15rem;
  }
}

.top-about__text {
  font-size: 1.5rem;
  margin-bottom: 6rem;
  line-height: 2.2;
}
@media (max-width: 768px) {
  .top-about__text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    letter-spacing: 0;
  }
}

.top-about__last {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .top-about__last {
    margin-bottom: 4rem;
  }
}

.top-mv {
  padding-bottom: 18rem;

}
@media (max-width: 768px) {
  .top-mv {
    padding-bottom: 10rem;
    overflow-x: hidden;
  }
}

.top-mv .inner {
  position: relative;
}

.top-mv__slider {
  width: 70%;
}
@media (max-width: 768px) {
  .top-mv__slider {
    width: 100%;
  }
}

.top-mv__slider:hover {
  cursor: pointer;
}

.top-mv__slider--item {
  margin-bottom: 2rem;
}

.top-mv__slider img {
  width: 100%;
}

.top-mv__inner {
  position: relative;
}

.top-mv__lead {
  font-size: 5.4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  width: 50%;
  opacity: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .top-mv__lead {
    opacity: 1;
    font-size: 2.6rem;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,.6);
    padding: 1rem 0;
    margin-top: -1rem;
  }
}

.top-mv__lead--main {
  min-height: 40px;
  position: relative;
}

.top-mv__lead--main2 {
  opacity: 0;
  position: absolute;
  left: 0;
  top : 30%;
}
@media (max-width: 768px) {
  .top-mv__lead--main2 {
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top : 40%;
  }
}


.top-mv__lead-sp {
  font-size: 5.4rem;
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  left: 50%;
  width: 50%;

  white-space: nowrap;
  text-align: center;
}
@media (max-width: 768px) {
  .top-mv__lead-sp {
    font-size: 2.4rem;
    transform: translateY(-30%) translateX(-50%);
    width: 100%;
    text-align: center;
   display: none;
  }
}

.top-mv__lead-sp.is-load {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-50%);
}

.top-mv__lead--sub {
  font-size: 2.4rem;
  display: block;
  padding-left: 3rem;
}
@media (max-width: 768px) {
 .top-mv__lead--sub {
    font-size: 1.5rem;
    text-align: center;
    padding: 0;
  }
}


.footer__contents {
  padding: 0 0 10rem;
}

.footer__contact {
  background: #e8e4db;
  padding: 8rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__contact {
    padding: 3rem 0;
    margin-bottom: 3rem;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    
    padding-right: calc(50vw - 50%);
    padding-left: calc(50vw - 50%);
  }
}

.footer__contact--under {
  background: #e6e3da;
  margin-top: 24rem;
  padding: 7rem 0;
}

.footer__contact--btn a {
  background: #fff;
  display: block;

  width: 100%;
  max-width: 40%;
  border-radius: 10rem;
  padding: 1.5rem 0;
  margin: 0 auto;
  box-shadow: 2px 2px 4px #aaa;
  position: relative;
  transition: all 0.5s 0s ease;
}
@media (max-width: 768px) {
  .footer__contact--btn a  {
    font-size: 2rem;
    max-width: 100%;
    width: 90%;
  }
}

.footer__contact--btn a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3e3a39;
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s 0s ease;
}

.footer__contact--btn a:hover {
  opacity: 1;
  background: #000;
  color: #fff;
  cursor: pointer;
   color: #fff;
}


.footer__contact--btn a:hover::before {
  background: #fff;
}

.footer__sns {
  padding: 6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__sns {
    padding: 4rem 1rem;
    box-sizing: border-box;
  }
}

.footer__sns--item {
  margin: 0 3rem;
}

.footer__sns--item a {
  box-shadow: 2px 2px 4px #aaa;
  border-radius: 50%;
  display: block;
  width: 50px;
  height: 50px;
  position: relative;
  transition: all 0.5s 0s ease;
}
@media (max-width: 768px) {
  .footer__sns--item a {
    width: 50px;
    height: 50px;
  }
}


.footer__sns--item a:hover {
  box-shadow: 2px 2px 5px #aaa;
}

.footer__sns--item img {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.footer__lead {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.7rem;
}

.footer__navi {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer__navi {
    max-width: 100%;
  }
}

.footer__navi a {
  display: block;
  box-shadow: 2px 2px 4px #aaa;
  border-radius: 10rem;
  text-align: center;
  padding: 1.5rem 0 2rem;
  transition: all 0.5s 0s ease;
  background: #fff;
}
@media (max-width: 768px) {
  .footer__navi a {
    padding: 1rem; 0;
  }
}


.footer__navi a:hover {
  box-shadow: 2px 2px 5px #aaa;
}

.footer__navi a img {
  width: 70%;
}
@media (max-width: 768px) {
  .footer__navi a img {
    width: 30%;
  }
}
@media (max-width: 520px) {
  .footer__navi a img {
    width: 50%;
  }
}

.footer__wrap {
  background: #e8e4db;
  padding: 1.5rem 0;
}

.footer__wrap--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  width: 100%;
  max-width: 100px;
}
@media (max-width: 768px) {
  .footer__logo {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 40%;
    width: 40%;
  }
  .footer__logo img {
    width: 60%;
  }
}

.footer__nav--list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__nav--list {
    display: block;
  }
}

.footer__nav--item a {

  color: #808080;
  margin-right: 3rem;
}
@media (max-width: 768px) {
  .footer__nav--item a {
    font-size: 1.3rem;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .footer__nav {
    width: 60%;
    padding: 0 0 0 2rem;
    box-sizing: border-box;
  }
}

.footer__nav--item:last-child a {
  margin-right: 0;
}

.under {
  padding-bottom: 16rem;
}

.under-mv {
  width: 100%;
  margin-bottom: 22rem;
  padding-top: 5rem;
}
@media (max-width: 768px) {
 .under-mv {
  padding-top: 0;
  margin-bottom: 12rem;
  }
}

.under-mv-contact {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
 .under-mv-contact {
  margin-bottom: 5rem;
  }
}

.recruit .under-mv {
  margin-bottom: 5rem;
}

.under-mv__wrap {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .under-mv__wrap {
   display: block;
   justify-content: center;
  }
}

.under-mv__image {
  width: 50%;
}
@media (max-width: 768px) {
  .under-mv__image {
    width: 50%;
    margin: 0 auto 3.5rem;
  }
}
@media (max-width: 530px) {
  .under-mv__image {
    width: 65%;
    margin: 0 auto 2rem;
  }
}


.under-mv__image img {
  width: 100%;
  height: auto;
}

.under-mv__box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 40%;
}
@media (max-width: 768px) {
  .under-mv__box {
    width: 100%;
  }
}

.under-mv__box.single {
  align-items: left;
  justify-content: flex-start;
  width: 100%;
  align-items: flex-start;
}

.under-mv__box img {
  width: 50%;
  height: auto;
  margin-bottom: 5rem;
}

.under-mv__lead {
  font-size: 2rem;
  font-weight: bold;
  width: 100%;
  padding: 0 0 0 3rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .under-mv__lead {
   font-size: 2rem;
   text-align: center;
   padding: 0;
  }
}
@media (max-width: 520px) {
  .under-mv__lead {
   font-size: 2.4rem;
  }
}

.under-mv__lead--left {
  text-align: left;
  font-size: 5rem;
  line-height: .8;
}
@media (max-width: 768px) {
  .under-mv__lead--left {
   font-size: 1.6rem;
  }
}

.recruit .under-mv__lead--left {
  padding: 0;
}

.under-mv__lead--en {
  font-size: 3rem;
  white-space: nowrap;
}
.under-mv__lead--left .under-mv__lead--en  {
  display: inline-block;
  width: 100%;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .under-mv__lead--en,
  .under-mv__lead--left .under-mv__lead--en {
   font-size: 2.4rem;
   letter-spacing: 0;
  }
  .under-mv__lead--left .under-mv__lead--en {
    line-height: 1.3;
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  .recruit .under-mv__lead--en {
    display: block;
    font-size: 2.2rem;
  }
}

.under__title {
  font-size: 4rem;
  margin-bottom: 8rem;
  line-height: 1.2;
  letter-spacing: .1rem;
}
@media (max-width: 768px) {
  .under__title {
    font-size: 2.4rem;
    margin-bottom: 6rem;
  }
}

.under__title-min {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .under__title-min {
    font-size: 2rem;
  }
}

.under__title-recruit {
  font-size: 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .under__title-recruit {
    font-size: 1.8rem;
  }
}


.under__title--indent {
  text-indent: -2rem;
  display: block;
}

.under__title.center {
  text-align: center;
}

.under__title--ja {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .under__title--ja {
    font-size: 1.8rem;
  }
}

.under__title--ja-mid {
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .under__title--ja-mid {
   
   line-height: 1.6;
   display: block;
   font-size: 1.6rem;
  }
  .under-mv__wrap .under__title--ja-mid { 
    text-align: center;
    font-size: 1.6rem;
  }
}

.under__title--ja-min {
  font-size: 2rem;
}

.under__title--marker {
  background: linear-gradient(transparent 60%, #ffff00 40%);
}

.about__lead {
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .about__lead {
    padding-bottom: 20rem;
  }
}

.about__lead.company__lead {
  padding-bottom: 26rem;
}

.about__lead--text {
  margin-bottom: 4rem;
}
.about__lead--map iframe {
  width: 100%;
  height: 400px;
}

.about__lead--image {
  position: relative;
  top : -10rem;
  min-height: 120rem;
}
@media (max-width: 768px) {
  .about__lead--image {
    display: none;
  }
}
.about__lead--image-sp {
  display: none;
}

.about__lead--image-01 {
  position: absolute;
  right: 0;
  top : 0;
  width: 100%;
  max-width: 300px;
}
.about__lead--image-02 {
  position: absolute;
  left: 0;
  top : 25rem;
  width: 100%;
  max-width: 500px;
}
.about__lead--image-03 {
  position: absolute;
  right: 0;
  top : 55rem;
  width: 100%;
  max-width: 470px;
}

.about__value {
  padding-bottom: 26rem;
}

.about__value--text {
  padding-bottom: 6rem;
}

.about__value--list {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about__value--list {
    display: block;
  }
}

.about__value--image {
  text-align: center;
  margin-bottom: 3rem;
  min-height: 18rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__value--image img {
  width: 50%;
  height: auto;
}
@media (max-width: 768px) {
  .about__value--image img {
    width: 30%;
  }
}
@media (max-width: 520px) {
  .about__value--image img {
    width: 50%;
  }
}

.about__value--item {
  width: 28%;
}
@media (max-width: 768px) {
  .about__value--item {
    width: 100%;
  }
}

.about__value--lead {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company__profile {
  padding-bottom: 26rem;
}

.about__profile--wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .about__profile--wrap {
    display: block;
  }
}


.about__profile--wrap .under__title {
  width: 30%;
}
@media (max-width: 768px) {
 .about__profile--wrap .under__title {
    width: 100%;
  }
}


.about__profile--table {
  width: 65%;
  border-top: 1px solid #000;
}
@media (max-width: 768px) {
 .about__profile--table {
    width: 100%;
  }
}


.about__profile--table th {
  border-bottom: 1px solid #000;
  padding: 2rem 1rem;
  box-sizing: border-box;
  width: 17%;
}
@media (max-width: 768px) {
 .about__profile--table th {
    width: 30%;
  }
}

.about__profile--table td {
  border-bottom: 1px solid #000;
  padding: 2rem 0 2rem 2rem;
  box-sizing: border-box;
  width: 83%;
}
@media (max-width: 768px) {
 .about__profile--table td {
    width: 70%;
  }
}

.about__profile--table tr:last-child th,
.about__profile--table tr:last-child td {
  border: none;
}

.about__profile--table td a {
  color: #005757;
}

.handling__lead {
  padding-bottom: 30rem;
}

.handling__text {
  margin-bottom: 4rem;
}

.handling__text.bottom {
  margin-bottom: 9rem;
}

.handling__image {
  margin: 0 0 　10rem;
}

.handling__image img {
  width: 100%;
  height: auto;
}

.handling__case {
  padding-bottom: 22rem;
}
@media (max-width: 768px) {
 .handling__case {
    padding-bottom: 12rem;
  }
}


.handling__case--wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}

.handling__case--wrap.bottom {
  padding: 0 0 0;
}

.handling__case--box {
  width: 45%;
  position: relative;
}

.handling__case--box.right::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 160px;
  background: #000;
  left: -5rem;
  bottom: 0;
}
@media (max-width: 768px) {
 .handling__case--box.right::after {
    left:  -4rem;
  }
}
@media (max-width: 520px) {
 .handling__case--box.right::after {
    left:  -2rem;
  }
}

.handling__case--label {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .handling__case--label {
    font-size: 2rem;
  }
}


.handling__case--label span {
  background: linear-gradient(transparent 60%, #ffff00 40%);
}

.handling__case--title {
  font-size: 3rem;
  line-height: 1.2;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
 .handling__case--title {
    font-size: 2rem;
    width: 90%;
  }
}

.handling__case--title.right {
  border-left: 2px solid #000;
}

.handling__case--sub {
  font-size: 2.2rem;
  margin-bottom: 4rem;
  font-weight: bold;
}
@media (max-width: 768px) {
 .handling__case--sub {
    font-size: 1.4rem;
  }
  .handling__case--text {
    font-size: 1.3rem;
  }
}

.handling__detail {
  padding-bottom: 0;
}

.handling__detail--text {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .handling__detail--text {
    margin-bottom: 3rem;
  }
}

.handling__detail--list {
  background: #e6e3da;
  margin-bottom: 6rem;
  padding: 4rem;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 520px) {
  .handling__detail--list {
    display: block;
  }
}

.handling__detail--item {
  width: 32%;
  margin: 0 1.5rem 1.5rem 0;
}
@media (max-width: 768px) {
  .handling__detail--item {
    width: 32%;
    margin: 0 1rem 1rem 0;
  }
  .handling__detail--item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 520px) {
  .handling__detail--item {
    width: 100%;
    margin: 0 0 2rem;
  }
}

.handling__detail--item:nth-child(3n) {
  margin-right: 0;
}

.handling__detail--box {
  background: #fff;
  padding: 0 2rem;
  box-sizing: border-box;
  margin-bottom: .5rem;
  min-height: 90px;
  display: flex;
  align-items: center;
}

.handling__detail--box img {
  width: auto;
  max-width: 80%;
}

.handling__detail--link {
  font-size: 1.2rem;
}
.handling__detail--link a {
  letter-spacing: 0;
}

.handling__detail--link img {
  width: 15px;
  margin: 0 0 0 .5rem;
  position: relative;
  top: -.4rem;
}

.handling__detail--wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .handling__detail--wrap {
    display: block;
    padding-bottom: 3rem;
  }
  
}

.handling__detail--banner {
  width: 100%;
  max-width: 240px;
  margin-left: 4rem;
}
@media (max-width: 768px) {
  .handling__detail--banner {
    margin-left: 0;
    margin: 0 auto;
  }
}


.oubolabo__lead {
  margin-bottom: 30rem;
}

.oubolabo__info {
  padding-bottom: 12rem;
}

.oubolabo__info--list {
  padding: 6rem 0 2rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
 .oubolabo__info--list {
   padding-top: 0;
    padding-bottom: 0;
  }
  .oubolabo__info--list-bottom {
    padding-top: 8rem;
  }
}


.oubolabo__info--item {
  width: 25%;
}
@media (max-width: 5208px) {
 .oubolabo__info--item {
   width: 50%;
  }
}


.oubolabo__info--image {
  margin-bottom: 3rem;
  text-align: center;
}

.oubolabo__info--image img {
  width: 60%;
}

.oubolabo__info--label {
  font-size: 1.4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  height: 50px;
}
@media (max-width: 768px) {
  .oubolabo__info--label {
    font-size: 1.5rem;
    height: auto;
    margin-bottom: 2rem;
  }
}
@media (max-width: 520px) {
  .oubolabo__info--label {
    font-size: 1.6rem;
    height: auto;
    margin-bottom: 2rem;
  }
}


.oubolabo__info--after {
  padding: 0 0 8rem;
  display: flex;
  justify-content: space-between;
}

.oubolabo__info--after-text {
  width: 25%;
  border-right: 1px solid #000;
  padding: 0 2rem ;
  box-sizing: border-box;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
 .oubolabo__info--after-text {
    padding: 0 1rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 520px) {
 .oubolabo__info--after-text {
    padding: 0 1rem;
    width: 50%;
  }
}

.oubolabo__info--after-text:last-child {
  padding-right: 0;
}

.oubolabo__info--after-text:last-child {
  border: none;
}

.oubolabo__flow--lead {
  text-align: center;
  margin-bottom: 6rem;
}

.oubolabo__flow--text {
  padding-bottom: 6rem;
}

.creative__text {
  padding-bottom: 6rem;
}

.creative__list {
  padding-bottom: 6rem;
}

.creative__list--text {
  margin-bottom: 4rem;
}

.creative__list--text:last-child {
  margin-bottom: 0;
}

.recruit__text {
  margin-bottom: 3rem;
}

.recruit__text.bottom {
  margin-bottom: 7rem;
}

.recruit__lead {
  padding-bottom: 26rem;
}

.recruit__story {
  padding-bottom: 12rem;
}

.recruit__story .btn__more {
  margin-left: 0;
}

.recruit__bottom {
  display: flex;
  justify-content: center;
  background: #e6e3da;
  padding: 2rem 0 0;
}
@media (max-width: 768px) {
  .recruit__bottom {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);

    padding-right: calc(50vw - 50%);
    padding-left: calc(50vw - 50%);
    display: block;
  }
}

.recruit__bottom .btn__more-text {
  margin: 0 2rem;
}
@media (max-width: 768px) {
  .recruit__bottom .btn__more-text {
    margin: 0;
  }
}
.recruit__bottom .btn__more-text img {
  width: 15px;
  position: relative;
  top : -.2rem;
  left: .7rem;
}

.more__box {
  display: none;
}

.more__box.is-show {
  display: block;
}

.service__list {
  display: flex;
    justify-content: space-between;
    margin: 0 auto 6rem;
}
@media (max-width: 768px) {
  .service__list {
    display: block;
  }
}

.service__item {
  width: 30%;
}
@media (max-width: 768px) {
  .service__item {
    width: 100%;
    margin-bottom: 10rem;
  }
}

.service__image {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .service__image {
    margin-bottom: 3rem;
  }
}

.service__label {
  text-align: left;
  font-size: 2.4rem;
  line-height: 1.2;
  min-height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .service__label {
    min-height: 100%;
    margin-bottom: 2rem;
    font-size: 2.2rem;
  }
}

.service__lead {
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.6;
  min-height: 9rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .service__lead {
    min-height: 100%;
    margin-bottom: 2rem;
  }
}

.service__text {
  min-height: 20rem;
}
@media (max-width: 768px) {
  .service__text {
    min-height: 100%;
    margin-bottom: 5rem;
  }
}


.privacy .under-mv__lead--left {
  padding-left: 0;
}
.privacy__first {
  padding: 4rem 0 0;
  box-sizing: border-box;
  font-size: 1.4rem;
}
.privacy__label {
  font-size: 1.8rem;
  padding-bottom: 3rem;
}
.privacy__text {
  font-size: 1.4rem;
  padding-bottom: 3rem;
}
.privacy__text.privacy__text--last {
  padding-bottom: 25rem;
}
.privacy__text a {
  text-decoration: underline;
}

.contact .under-mv__lead--left {
  padding-left: 0;
}
.under__title-contact {
  font-size: 1.8rem;
  margin-bottom: 4rem;
}
.under__title-contact span {
  background: linear-gradient(transparent 60%, #ffff00 40%);
}
.contact__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
}
.contact__text a {
  text-decoration: underline;
}
.contact__text-thanks {
  margin-bottom: 20rem;
}
.contact__lead {
  margin-bottom: 20rem;
}
.contact__tel {
  background: #e6e3da;
  padding: 1.5rem 0;
  width: 70%;
}
@media (max-width: 768px) {
  .contact__tel {
    width: 100%;
  }
}
.contact__tel--btn {
  text-align: center;
}
.contact__tel--btn a {
      background: #fff;
    display: block;
    width: 100%;
    max-width: 40%;
    border-radius: 10rem;
    padding: 1.5rem 0;
    margin: 0 auto;
    box-shadow: 2px 2px 4px #aaa;
    position: relative;
    transition: all 0.5s 0s ease;
    font-size: 2.5rem;
}
@media (max-width: 768px) {
  .contact__tel--btn a {
    max-width: 90%;
    margin: 0 auto;
    font-size: 1.8rem;
  }
}

.contact__tel--btn.contact__tel--btn-thanks a {
  font-size: 1.8rem;
}

.contact__tel--btn a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3e3a39;
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s 0s ease;
}
.contact__tel--btn a:hover {
  opacity: 1;
  background: #000;
  color: #fff;
  cursor: pointer;
   color: #fff;
}
.contact__tel--btn a:hover:before{
  background: #fff;
}


.contact__table {
  width: 70%;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .contact__table {
    width: 100%;
  }
}
.contact__table th {
  width: 30%;
  background: #f7f7f7;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .contact__table th {
    width: 100%;
    display: block;
  }
  .contact__table th br {
    display: none;
  }
}

.contact__table td {
  width: 70%;
  padding: 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 1px;
  font-size: 1.4rem;
  text-align: left;
}
@media (max-width: 768px) {
  .contact__table td {
    width: 100%;
    display: block;
  }
}

.contact__table--input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 1.4rem;
  border: 1px solid #ccc;
}
.contact__table--textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  height: 300px;
}
.contact__table--hissu {
  font-size: 7px;
  color: #fff;
  background: #ff9393;
  border-radius: 5px;
  margin: 0 5px 0 0;
  padding: 5px;
}
.contact__table--nini {
  font-size: 7px;
  color: #fff;
  background: #93c9ff;
  border-radius: 5px;
  margin: 0 5px 0 0;
  padding: 5px;
}
.contact__table--check-wrap {
  margin-bottom: 3rem;
}

input[type=checkbox] {
    display: none;
}
.contact__table--label {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.contact__table--label::before {
    background: #fff;
    border: 1px solid #ccc;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.contact__table--label::after {
    border-right: 3px solid #004da0;
    border-bottom: 3px solid #004da0;
    content: '';
    display: block;
    height: 9px;
    left: 10px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}
input[type=checkbox]:checked + .contact__table--label::after {
    opacity: 1;
}

.contact__table--err {
  color: red;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.contact__table--submit-wrap {
  position: relative;
  width: 70%;
}
@media (max-width: 768px) {
  .contact__table--submit-wrap {
    width: 100%;
  }
}
.contact__table--submit {
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact__table--submit {
    width: 100%;
  }
}
.contact__table--submit::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3e3a39;
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s 0s ease;
    z-index: 500;
    opacity: .4;
}
@media (max-width: 768px) {
  .contact__table--submit::before {
    left: 10%;
  }
}

.contact__table--submit.is-active::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3e3a39;
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s 0s ease;
    z-index: 500;
    opacity: 1;
}
@media (max-width: 768px) {
  .contact__table--submit.is-active::before {
    left: 10%;
  }
}

.contact__table--submit-btn {
  background: #fff;
    display: block;
    width: 100%;

    cursor: pointer;
    border-radius: 10rem;
    padding: 1.5rem 0;
    margin: 0 auto;
    box-shadow: 2px 2px 4px #aaa;
    position: relative;
    transition: all 0.5s 0s ease;
    font-size: 2rem;
    border: none;
    font-family: 'kaimin';
  src: url("../../assets/font/A-OTF-KaiminTuStd-Bold.otf");
  font-weight: 700;
}
@media (max-width: 768px) {
 .contact__table--submit-btn {
    font-size: 1.8rem;
  }
}

.contact__table--submit-btn:hover {
  opacity: 1;
  background: #000;
  color: #fff;
  cursor: pointer;
  color: #fff;
}
 .contact__table--submit:hover:before{
  background: #fff;
}

.contact__table--submit-btn:disabled {
  opacity: .4;
  pointer-events: none;
}
.contact__table--submit-btn:disabled:before{
  opacity: .4;
}
