@charset "UTF-8";

/*====================================================================

page.css

======================================================================*/
/*--------------------------------------------------------------------/
	service
/--------------------------------------------------------------------*/

.service-intro {
  background: url(../img/service/service_bg.jpg) center center/cover no-repeat;
  padding: 48px 0 64px;
  padding: 3rem 0 4rem;
  color: #fff !important;
}

.service-intro__catch {
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  display: block;
  letter-spacing: 0.2em;
  margin-bottom: calc(1.5rem + 1%);
  font-size: calc(3rem + 16 * (100vw - 320px) / 937);
}

.service-intro .txt p {
  line-height: 2;
  font-size: 1.2em;
}

.service-box__inner {
  padding: 48px 0 0;
  padding: 3rem 0 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 32px;
  margin-top: 2rem;
}

.service-box__inner:before {
  content: "";
  background: #f1f2f8;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.service-box__tit {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: calc(1.38rem + 12 * (100vw - 320px) / 937);
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.service-box .txt {
  line-height: 2;
  font-weight: 400;
  font-size: 1.06em;
}

/*--------------------------------------------------------------------/
	voice
/--------------------------------------------------------------------*/

.voice-list {
  display: flex;
  flex-wrap: wrap;
}

.voice-box {
  padding-bottom: 32px;
  padding-bottom: 2rem;
  position: relative;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.voice-box:before {
  content: "";
  background: #f1f2f8;
  width: 80%;
  height: 80%;
  position: absolute;
  bottom: 0;
  right: -2%;
  z-index: -1;
}

.voice-box figure {
  width: 100%;
  margin-bottom: 12px;
  margin-bottom: .75rem;
}

.voice-box h3 {
  font-size: 1.06em;
  margin-bottom: 8px;
  margin-bottom: .5rem;
}

/*--------------------------------------------------------------------/
	company
/--------------------------------------------------------------------*/

.company-greeting {
  margin-bottom: 80px;
  margin-bottom: 5rem;
  overflow: hidden;
  position: relative;
}

.company-greeting__catch {
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  display: block;
  margin-bottom: calc(1.5rem + 1%);
  font-size: calc(1.5rem + 12 * (100vw - 320px) / 937);
}

.company-greeting .l-cont {
  position: relative;
  height: 100%;
  z-index: 0;
}

.company-greeting .l-cont:before {
  content: "";
  background: #f1f2f8;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.map {
  position: relative;
  padding: 0 0 40%;
  height: 0;
  overflow: hidden;
  background-color: #fff;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/*--------------------------------------------------------------------/
	recruit
/--------------------------------------------------------------------*/

.recruit-greeting {
  margin-bottom: 64px;
  margin-bottom: 4rem;
  overflow: hidden;
  position: relative;
}

.recruit-greeting__tit {
  font-family: 'Noto Serif JP', serif;
  line-height: 1.5;
  display: block;
  margin-bottom: calc(1.5rem + 1%);
  font-size: calc(1.5rem + 12 * (100vw - 320px) / 937);
}

.recruit-greeting__tit b {
  font-size: 1.2em;
}

.recruit-greeting .l-cont {
  position: relative;
  height: 100%;
  z-index: 0;
}

.recruit-greeting .l-cont:before {
  content: "";
  background: #f1f2f8;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.recruit-voice {
  background: url(../img/recruit/recruit_voice_bg.jpg) center center/cover no-repeat;
  margin-bottom: 64px;
  margin-bottom: 4rem;
  overflow: hidden;
  position: relative;
  padding: 48px 0 64px;
  padding: 3rem 0 4rem;
  color: #fcfcfc;
}

.recruit-voice__txt .txt {
  line-height: 2;
  font-weight: 400;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.recruit-voice__pic {
  display: flex;
  justify-content: space-between;
}

.recruit-voice__pic > * {
  flex-basis: 48%;
}

/*--------------------------------------------------------------------/
	contact_form
/--------------------------------------------------------------------*/

.contact-time {
  margin-bottom: 8px;
  margin-bottom: .5rem;
}

.contact-tel {
  display: inline-block;
  font-size: 1.33em;
  line-height: 1;
  height: calc(60px - 2rem);
  padding-top: 3.2px;
  padding-top: .2rem;
  letter-spacing: 2px;
}

.contact-tel span {
  font-size: 1.6em;
  padding-left: 8px;
  padding-left: .5rem;
}

.contact-tel p {
  display: inline-block;
}

.contact-tel a {
  color: #0c0c13;
}

.contact-step {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.contact-step ol {
  counter-reset: contact-number;
}

.contact-step ol li {
  padding: 24px 19.2px 20.8px;
  padding: 1.5rem 1.2rem 1.3rem;
  color: #0c0c13;
  position: relative;
  text-align: left;
  background: #d1d4d8;
  font-size: 14.08px;
  font-size: 0.88rem;
}

.contact-step ol li:before {
  display: block;
  counter-increment: contact-number 1;
  content: "Step " counter(contact-number, decimal-leading-zero);
  line-height: 1;
}

.contact-step ol li:not(:last-child):after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}

.contact-step ol li.now {
  background: #0c0c13;
  color: #fcfcfc;
}

.contact-step ol li.now:before {
  color: #fcfcfc;
}

.contact-step ol li.before {
  background: #aaa;
  color: #fff;
}

.contact-step ol li.before:before {
  color: #fff;
}

.contact-privacy {
  padding: 24px;
  padding: 1.5rem;
  border: 1px solid #d1d4d8;
  max-height: 200px;
  overflow-y: scroll;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.contact-table {
  width: 100%;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  line-height: 1.2;
  position: relative;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.contact-table tr {
  border-bottom: 1px solid #ccc;
}

.contact-table th, .contact-table td {
  padding: 16px 20px;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 400;
}

.contact-table th {
  vertical-align: middle;
  background: #0c0c13;
  color: #ccc;
}

.contact-table th span {
  color: #fcfcfc;
  background: #df2f2f;
  margin-left: 8px;
  margin-left: .5rem;
}

.contact-table textarea {
  width: 100%;
}

.imeon {
  ime-mode: active;
}

.imeoff {
  ime-mode: disabled;
}

input,
textarea,
select {
  margin: 3px 0;
  padding: 8px;
  padding: .5rem;
  border: 1px solid #ccc;
  line-height: 1.5;
}

input {
  width: auto;
}

input.long {
  width: 100%;
}

input.middle {
  width: 100%;
}

input.short {
  width: 50%;
}

input.sub-btn {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
  padding: 8px 32px;
  padding: .5rem 2rem;
  background: #0c0c13;
  color: #fcfcfc;
  border: solid 1px #0c0c13;
  transition: 0.3s ease all;
  cursor: pointer;
  font-size: 15.04px;
  font-size: 0.94rem;
}

input.sub-btn:hover {
  background: #fff;
  color: #0c0c13;
}

input.back-btn {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
  padding: 8px 32px;
  padding: .5rem 2rem;
  background: #fff;
  color: #0c0c13;
  border: solid 1px #0c0c13;
  transition: 0.3s ease all;
  cursor: pointer;
  font-size: 15.04px;
  font-size: 0.94rem;
}

input.back-btn:hover {
  background: #0c0c13;
  color: #fcfcfc;
}

input.check-btn {
  max-width: 240px;
  margin: 0 auto;
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
  padding: 8px 32px;
  padding: .5rem 2rem;
  background: #666;
  color: #fff;
  border: solid 1px #666;
  transition: 0.3s ease all;
  cursor: pointer;
  font-size: 15.04px;
  font-size: 0.94rem;
}

input.check-btn:hover {
  background: #d1d4d8;
  border: solid 1px #d1d4d8;
}

input[type="button"], input[type="submit"] {
  -webkit-appearance: none;
}

.radio, .checkbox {
  transition: 0.3s ease all;
  position: relative;
  padding-bottom: 4.8px;
  padding-bottom: .3rem;
  margin-right: 24px;
  margin-right: 1.5rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  background-color: transparent;
  vertical-align: top;
  cursor: pointer;
}

label.radio, label.checkbox {
  display: block;
}

/* form-parts
----------------------------------------------------------------*/

@media print, screen and (min-width: 376px) {
  /*====================================================================/
	/*------------------iPhone 以上----------------
	/====================================================================*/
  html {
    width: 100%;
  }
  .voice-list > * {
    flex-basis: 48%;
  }
  .voice-list > *:nth-of-type(odd) {
    margin-right: 4%;
  }
}

@media print, screen and (min-width: 561px) {
  /*====================================================================/
	/*------------------タブレットスタイル----------------
	/====================================================================*/
  html {
    width: 100%;
  }
  #main-service {
    background: url(../img/service/main_pc.jpg) top center/cover no-repeat;
  }
  .service-intro .l-cont {
    display: flex;
  }
  .service-intro h3 {
    width: calc(92px + 2%);
    min-height: 200px;
  }
  .service-intro .txt {
    width: calc(96% - 92px);
  }
  .service-intro .txt p {
    line-height: 2;
    font-size: 1.06em;
  }
  #main-voice {
    background: url(../img/voice/main_pc.jpg) top center/cover no-repeat;
  }
  .voice-box:before {
    right: -1.5rem;
  }
  #main-company {
    background: url(../img/company/main_pc.jpg) top center/cover no-repeat;
  }
  .company-greeting__txt {
    display: flex;
    justify-content: space-between;
  }
  .company-greeting h3 {
    width: calc(92px + 2%);
    min-height: 200px;
  }
  .company-greeting .txt {
    width: calc(96% - 92px);
  }
  .company-greeting .txt p {
    line-height: 2;
    font-size: 1.06em;
  }
  #main-recruit {
    background: url(../img/recruit/main_pc.jpg) top center/cover no-repeat;
  }
  .recruit-greeting .txt p {
    line-height: 2;
    font-size: 1.06em;
  }
  #main-contact {
    background: url(../img/contact/main_pc.jpg) top center/cover no-repeat;
  }
  #main-application {
    background: url(../img/application/main_pc.jpg) top center/cover no-repeat;
  }
  input.middle {
    width: 70%;
  }
  input.short {
    width: 30%;
  }
}

@media print, screen and (min-width: 977px) {
  /*====================================================================/
	/*-------------------小さいPCスタイル----------------
	/====================================================================*/
  html {
    width: 100%;
  }
  .service-intro {
    padding: 5rem 0 6rem;
  }
  .service-intro .txt p {
    font-size: 1.33em;
  }
  .voice-box figure {
    height: 29.52vw;
  }
  .contact-step {
    margin-bottom: 3rem;
  }
  .contact-step ol {
    display: flex;
    justify-content: space-between;
  }
  .contact-step ol > * {
    width: 18%;
  }
  .contact-step ol li:not(:last-child):after {
    border-width: 10px 0 10px 14px;
    right: -14px;
    top: calc(50% - 10px);
    border-color: transparent transparent transparent #d1d4d8;
  }
  .contact-step ol li.now:after {
    border-color: transparent transparent transparent #0c0c13;
  }
  .contact-step ol li.before:after {
    border-color: transparent transparent transparent #aaa;
  }
  .contact-table th {
    width: 30%;
  }
  .contact-table td {
    width: auto;
  }
  .form-short {
    width: 15em;
    margin-right: .5rem;
  }
  .form-middle {
    width: 30em;
    margin-right: .5rem;
  }
}

@media print, screen and (min-width: 1157px) {
  /*====================================================================/
	/*-------------------PCスタイル-------------------
	/====================================================================*/
  html {
    width: 100%;
  }
  .service-intro h3 {
    flex-basis: 25%;
  }
  .service-intro__catch {
    font-size: 3rem;
  }
  .service-box__inner {
    margin-top: 3rem;
    padding-bottom: 5rem;
  }
  .service-box__inner:before {
    width: 60%;
    bottom: 0;
    right: calc(40% - 4%);
    height: 75%;
  }
  .service-box__inner .l-cont {
    display: flex;
    justify-content: space-between;
  }
  .service-box:nth-of-type(odd) .service-box__inner:before {
    right: auto;
    left: calc(40% - 4%);
  }
  .service-box:nth-of-type(odd) .l-cont {
    flex-direction: row-reverse;
  }
  .service-box__txt {
    width: 40%;
  }
  .service-box__tit {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  .service-box .txt {
    line-height: 2;
  }
  .service-box figure {
    width: 600px;
    height: 400px;
  }
  .voice-list > * {
    flex-basis: 30.54%;
  }
  .voice-list > *:nth-of-type(odd) {
    margin-right: 0;
  }
  .voice-list > *:not(:nth-of-type(3n)) {
    margin-right: 4.19%;
  }
  .voice-box figure {
    height: 223px;
  }
  .company-greeting {
    min-height: 482px;
    margin-bottom: 6rem;
  }
  .company-greeting__txt {
    width: 61%;
  }
  .company-greeting h3 {
    flex-basis: 25%;
  }
  .company-greeting__catch {
    font-size: 2.25rem;
  }
  .company-greeting .txt {
    flex-basis: 75%;
  }
  .company-greeting .l-cont {
    min-height: 482px;
  }
  .company-greeting .l-cont:before {
    top: 0;
    right: calc(100% + 2rem);
    height: 100%;
  }
  .company-greeting figure {
    position: absolute;
    top: 0;
    left: 65%;
    width: 680px;
    z-index: 1;
  }
  .recruit-greeting {
    min-height: 482px;
    margin-bottom: 5rem;
  }
  .recruit-greeting__txt {
    width: 50%;
  }
  .recruit-greeting__tit {
    font-size: 2.25rem;
  }
  .recruit-greeting .l-cont {
    min-height: 436px;
  }
  .recruit-greeting .l-cont:before {
    top: 0;
    right: calc(100% + 2rem);
    height: 100%;
  }
  .recruit-greeting figure {
    position: absolute;
    top: 0;
    left: 56%;
    width: 760px;
    z-index: 1;
  }
  .recruit-voice {
    margin-bottom: 5rem;
    padding: 6rem 0;
  }
  .recruit-voice .l-cont {
    display: flex;
    justify-content: space-between;
  }
  .recruit-voice__txt {
    flex-basis: 30%;
  }
  .recruit-voice__txt .txt {
    font-size: 1.06em;
  }
  .recruit-voice__pic {
    flex-basis: 64%;
  }
}

@media print, screen and (min-width: 1920px) {
  /*====================================================================/
	/*-------------------full PCスタイル-------------------
	/====================================================================*/
  html {
    width: 100%;
  }
}

@media screen and (max-width: 1156px) {
  /*====================================================================/
	/*------------------PC以下---------
	/====================================================================*/
  html {
    width: 100%;
  }
  .service-box__inner:before {
    top: 2rem;
    left: 30%;
    height: 70%;
  }
  .service-box:nth-of-type(odd) .service-box__inner:before {
    left: auto;
    right: 30%;
  }
  .service-box .txt {
    margin-bottom: 1rem;
  }
  .service-box figure {
    max-width: 600px;
  }
  .company-greeting__txt {
    margin-bottom: 2rem;
  }
  .company-greeting .l-cont:before {
    top: 2rem;
    left: 30%;
    height: 70%;
  }
  .company-greeting figure {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .company-greeting figure img {
    width: 100%;
  }
  .recruit-greeting__txt {
    margin-bottom: 2rem;
  }
  .recruit-greeting .l-cont:before {
    top: 2rem;
    left: 30%;
    height: 70%;
  }
  .recruit-greeting figure {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .recruit-greeting figure img {
    width: 100%;
  }
  .recruit-voice__txt {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 976px) {
  /*====================================================================/
	/*------------------スマホタブレット共通スタイル---------
	/====================================================================*/
  html {
    width: 100%;
  }
  .contact-step ol li {
    text-align: center;
    padding: .75rem;
  }
  .contact-step ol li:not(:last-child) {
    margin-bottom: 1rem;
  }
  .contact-step ol li:not(:last-child):after {
    border-width: 10px 8px 0 8px;
    bottom: -10px;
    left: calc(50% - 8px);
    border-color: #d1d4d8 transparent transparent transparent;
  }
  .contact-step ol li.now:after {
    border-color: #0c0c13 transparent transparent transparent;
  }
  .contact-step ol li.before:after {
    border-color: #aaa transparent transparent transparent;
  }
  .contact-table th, .contact-table td {
    display: block;
  }
}

@media screen and (max-width: 560px) {
  /*====================================================================/
	/*------------------スマホのみスタイル----------------
	/====================================================================*/
  html {
    width: 100%;
  }
  #main-service {
    background: url(../img/service/main_sp.jpg) top center/cover no-repeat;
  }
  .service-intro h3 {
    padding-bottom: 1rem;
  }
  #main-voice {
    background: url(../img/voice/main_sp.jpg) top center/cover no-repeat;
  }
  #main-company {
    background: url(../img/company/main_sp.jpg) top center/cover no-repeat;
  }
  .company-greeting h3 {
    padding-bottom: 1rem;
  }
  .map {
    padding-bottom: 250px;
  }
  #main-recruit {
    background: url(../img/recruit/main_sp.jpg) top center/cover no-repeat;
  }
  #main-contact {
    background: url(../img/contact/main_sp.jpg) top center/cover no-repeat;
  }
  #main-application {
    background: url(../img/application/main_sp.jpg) top center/cover no-repeat;
  }
}

@media screen and (max-width: 375px) {
  /*====================================================================/
	/*------------------iPhone 以下----------------
	/====================================================================*/
  html {
    width: 100%;
  }
}
