/* ##############################################################################

    KEYFRAMES

############################################################################## */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.8s ease-out;
}

.fade.active {
  opacity: 1;
  transform: translateY(0);
}

/* ##############################################################################

    COMMON

############################################################################## */

html {
  height: 100%;
  overflow-y: scroll;
}

body {
  height: 100%;
}

/* layout
**************************************** */

/* --- inner --- */
.inner {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

.inner-sm {
  max-width: 880px;
}

.inner-lg {
  max-width: 1280px;
}

.inner-xl {
  width: 100%;
  max-width: 100%;
  padding-left: 0.83vw;
  padding-right: 0.83vw;
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section_pdg-sm {
  padding-top: 0.98vw;
  padding-bottom: 0.98vw;
}

/* --- hr --- */
.section_hr {
  border-color: #333;
  margin: 0 0 4px;
}

/* --- float --- */
.flt-rgt {
  float: right;
}

.flt-lft {
  float: left;
}

/* --- position --- */
.pos_rel {
  position: relative;
  z-index: 0;
}

/* --- margin --- */
.mgn-btm8 {
  margin-bottom: 8px;
}

.mgn-btm16 {
  margin-bottom: 16px;
}

.mgn-btm24 {
  margin-bottom: 24px;
}

.mgn-btm32 {
  margin-bottom: 32px;
}

.mgn-btm40 {
  margin-bottom: 40px;
}

.mgn-btm48 {
  margin-bottom: 48px;
}

.mgn-btm56 {
  margin-bottom: 56px;
}

.mgn-btm64 {
  margin-bottom: 64px;
}

.mgn-btm72 {
  margin-bottom: 72px;
}

.mgn-btm80 {
  margin-bottom: 80px;
}

/* --- pc or sp --- */
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex {
  display: none;
}

.sp-none {
  display: block;
}

.sp-none-inline {
  display: inline;
}

.sp-none-table {
  display: table;
}

.sp-none-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .inner-xl {
    padding-left: 1.5vw;
    padding-right: 1.5vw;
  }

  .section_pdg {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .mgn-btm16 {
    margin-bottom: 8px;
  }

  .mgn-btm24 {
    margin-bottom: 16px;
  }

  .mgn-btm32 {
    margin-bottom: 16px;
  }

  .mgn-btm40 {
    margin-bottom: 24px;
  }

  .mgn-btm48 {
    margin-bottom: 24px;
  }

  .mgn-btm56 {
    margin-bottom: 32px;
  }

  .mgn-btm64 {
    margin-bottom: 32px;
  }

  .mgn-btm72 {
    margin-bottom: 40px;
  }

  .mgn-btm80 {
    margin-bottom: 40px;
  }

  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex {
    display: none;
  }

  .pc-none {
    display: block;
  }

  .pc-none-inline {
    display: inline;
  }

  .pc-none-table {
    display: table;
  }

  .pc-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* flex
**************************************** */

/* --- ブロック要素 --- */
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- インライン要素 --- */
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* --- 逆向き --- */
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* --- 縦並び --- */
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* --- 水平方向揃え --- */
.flex-j-start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-j-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-j-ctr {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-j-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-j-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* --- 垂直方向揃え --- */
.flex-a-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-a-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-a-ctr {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-a-baseline {
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-a-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-c-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-c-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.flex-c-start {
  -webkit-align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.flex-c-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.flex-c-ctr {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.flex-c-baseline {
  -webkit-align-content: baseline;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}

.flex-c-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

/* --- ざっくりflexレイアウト --- */
.flex-col2,
.flex-col3,
.flex-col4 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-col2>* {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 3%;
}

.flex-col2>*:nth-child(even) {
  margin-right: 0;
}

.flex-col3>* {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 3%;
}

.flex-col3>*:nth-child(3n + 3) {
  margin-right: 0;
}

.flex-col4>* {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}

.flex-col4>*:nth-child(4n + 4) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {

  /* --- 縦並び - sp --- */
  .flex-sp-block {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* --- ざっくりflexレイアウト - sp --- */
  .flex-sp-col2>*,
  .flex-sp-col2.flex-col3>*:nth-child(3) {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .flex-sp-col2>*:nth-child(even) {
    margin-right: 0;
  }

  .flex-sp-col3>*,
  .flex-sp-col3.flex-col4>*:nth-child(4n + 4) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .flex-sp-col3>*:nth-child(3n + 3) {
    margin-right: 0;
  }

  /* --- ざっくりflexレイアウト - sp --- */
  .flex-col2.flex-sp-block>*,
  .flex-col3.flex-sp-block>*,
  .flex-col4.flex-sp-block>* {
    width: 100%;
    margin-right: 0;
  }
}

/* bg
**************************************** */
.bg-dark {
  background-color: #333;
}

.bg-wh {
  background-color: #fff;
}

.bg-pt1 {
  background-image: url(../images/common/bg-pt01.png);
}

.bg-gry {
  background-color: #fafafa;
}

/* ttl
**************************************** */

/* --- page_ttl --- */
.page_ttl {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  margin: auto;
  width: 98.5%;
  display: flex;
  align-items: center;
  background: #aaa url(../images/pagettl/pagettl-others.jpg) top center no-repeat fixed;
  padding: 80px;
  min-height: 545px;
  text-align: center;
  color: #fff;
}

.page_ttl-jp,
.page_ttl-en {
  position: relative;
  z-index: 1;
  display: block;
}

.page_ttl-jp {
  margin-bottom: 24px;
  font-size: 320%;
  letter-spacing: 0.25em;
  line-height: 1.5;
  font-family: "Ryumin Bold KL", sans-serif;
}

.page_ttl-en {
  font-size: 120%;
  text-transform: capitalize;
  font-family: satisfy, sans-serif;
  letter-spacing: 0;
  line-height: 0.5;
}

.page-company .page_ttl {
  background-image: url(../images/pagettl/pagettl-company.jpg);
}

.page-business .page_ttl {
  background-image: url(../images/pagettl/pagettl-business.jpg);
}

.page-faq .page_ttl {
  background-image: url(../images/pagettl/pagettl-faq.jpg);
}

.archive-interview .page_ttl {
  background-image: url(../images/pagettl/pagettl-interview.jpg);
}

.archive-requirements .page_ttl {
  background-image: url(../images/pagettl/pagettl-requirements.jpg);
}

.single-requirements .page_ttl {
  background-size: cover;
  background-position: top 34% center;
  background-attachment: scroll;
}

.single-requirements .page_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  widows: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.page-welfare .page_ttl {
  background-image: url(../images/pagettl/pagettl-welfare.jpg);
}

.archive .page_ttl,
.page-faq .page_ttl,
.page-thanks .page_ttl,
.page-404 .page_ttl {
  padding: 78px 80px 0;
  min-height: 380px;
}

@media all and (-ms-high-contrast: none) {
  .page_ttl {
    padding-top: 240px;
  }

  .archive .page_ttl,
  .page-faq .page_ttl,
  .page-thanks .page_ttl,
  .page-404 .page_ttl {
    padding-top: 160px;
  }
}

.page_intro {
  padding-top: 635px;
}

.page_intro-sm {
  padding-top: 470px;
}

/* --- section_ttl --- */
.section_ttl {
  text-align: center;
}

.section_ttl>* {
  display: block;
}

.section_ttl strong {
  font-size: 320%;
  line-height: 2;
  letter-spacing: 0.33em;
  font-family: "Ryumin Regular KL", sans-serif;
  font-weight: 300;
}

.section_ttl small {
  font-family: satisfy, sans-serif;
  font-weight: 400;
  font-size: 160%;
  line-height: 2.8;
  letter-spacing: 0;
  text-transform: capitalize;
}

.section_ttl-sm {
  font-size: 267%;
}

.section_catch {
  text-align: center;
  font-size: 120%;
  font-weight: 700;
}

/* --- heading --- */
.heading-1,
.heading-2,
.heading-3 {
  font-family: "Ryumin Regular KL", sans-serif;
  font-weight: 300;
}

.heading-1 {
  font-size: 320%;
  line-height: 2;
  letter-spacing: 0.33em;
}

.heading-2 {
  font-size: 213%;
  line-height: 1.8;
  letter-spacing: 0.21em;
}

.heading-3 {
  font-size: 160%;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.heading-4 {
  position: relative;
  padding-left: 0.7em;
  font-size: 120%;
  font-family: "Shuei MaruGo B", sans-serif;
  font-weight: 600;
  line-height: 1.88;
}

.heading-4::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 4px;
  height: 82%;
  background-color: #63d8b7;
}

@media only screen and (max-width: 768px) {
  .page_ttl {
    position: static;
    width: 100%;
    padding: 16px;
    min-height: 50vh;
    background-image: url(../images/pagettl/pagettl-others_sp.jpg);
    background-size: 100% auto;
  }

  .archive .page_ttl,
  .page-faq .page_ttl,
  .single-requirements .page_ttl,
  .page-thanks .page_ttl,
  .page-404 .page_ttl {
    padding: 10vh 16px 16px;
    min-height: 45vh;
  }

  .page-company .page_ttl {
    background-image: url(../images/pagettl/pagettl-company_sp.jpg);
  }

  .page-business .page_ttl {
    background-image: url(../images/pagettl/pagettl-business_sp.jpg);
  }

  .page-faq .page_ttl {
    background-image: url(../images/pagettl/pagettl-faq_sp.jpg);
  }

  .archive-interview .page_ttl {
    background-image: url(../images/pagettl/pagettl-interview_sp.jpg);
  }

  .archive-requirements .page_ttl {
    background-image: url(../images/pagettl/pagettl-requirements_sp.jpg);
  }

  .page-welfare .page_ttl {
    background-image: url(../images/pagettl/pagettl-welfare_sp.jpg);
  }

  .page_ttl-jp {
    margin-bottom: 16px;
    font-size: 7vw;
  }

  .page_ttl-en {
    font-size: 107%;
  }

  .page_intro,
  .page_intro-sm {
    padding-top: 56px;
  }

  /* --- section_ttl --- */
  .section_ttl strong {
    font-size: 7.5vw;
    line-height: 1.5;
  }

  .section_ttl small {
    font-size: 123%;
  }

  /* --- heading --- */
  .heading-1 {
    font-size: 215%;
    line-height: 1.6;
    letter-spacing: 0.27em;
  }

  .heading-2 {
    font-size: 184%;
    letter-spacing: 0.33em;
  }

  .heading-3 {
    font-size: 138%;
    line-height: 1.65;
  }

  .heading-4 {
    font-size: 123%;
  }
}

/* txt
**************************************** */
.txt-sm {
  font-size: 93%;
  line-height: 2.14;
}

.txt-xs {
  font-size: 80%;
  line-height: 1.5;
}

.txt-ctr {
  text-align: center;
}

.txt-rgt {
  text-align: right;
}

.txt-attention {
  font-size: 80%;
  line-height: 1.5;
}

.txt-attention-kome {
  position: relative;
  padding-left: 1.4em;
}

.txt-attention-kome::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.txt-link {
  text-decoration: underline;
  color: #63d8b7;
}

@media only screen and (max-width: 768px) {

  .txt-xs,
  .txt-attention {
    font-size: 92%;
  }

  .txt-ctr.txt-sp-lft {
    text-align: left;
  }
}

/* table & list
**************************************** */
table {
  width: 100%;
}

/* --- table_default --- */
.table_default th,
.table_default td {
  padding: 28px 8px 16px;
}

.table_default th {
  min-width: 165px;
  border-bottom: 2px solid #9d7860;
  color: #9d7860;
  letter-spacing: 0.145em;
}

.table_default td {
  padding: 28px 60px 16px;
  border-bottom: 1px solid #9d7860;
  border-left: 4px solid rgba(255, 255, 255, 0.01);
  letter-spacing: 0.075em;
}

/* --- table_line --- */
.table_line th,
.table_line td {
  padding: 6px 24px;
  border: 1px solid #333;
}

.table_line th {
  background-color: #9d7860;
  color: #fff;
  font-size: 107%;
}

.table_line td {
  background-color: #fff;
  font-size: 93%;
}

/* --- list ---- */
.list {
  list-style-type: none;
}

.list li:not(:last-child) {
  margin-bottom: 16px;
}

.list li {
  text-indent: -1.5em;
  padding-left: 1.65em;
  line-height: 1.73;
  letter-spacing: 0.1em;
}

.list li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #63d8b7;
  margin-right: 0.7em;
}

/* --- dlリスト --- */
.list-dl {
  position: relative;
  border-top: 1px solid #333;
}

.list-dl dt,
.list-dl dd {
  line-height: 1.73;
  letter-spacing: 0.1em;
}

.list-dl dt {
  position: absolute;
  padding-top: 24px;
  color: #9d7860;
  font-weight: 700;
}

.list-dl dd {
  padding-left: 140px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #333;
}

@media screen and (max-width: 768px) {

  .table_default th,
  .table_default td {
    display: block;
  }

  .table_default th {
    min-width: 100%;
    padding: 14px 12px 0;
    border-bottom: none;
    text-align: left;
    font-size: 107%;
  }

  .table_default td {
    padding: 4px 8px 14px;
  }

  /* --- list --- */
  .list li {
    text-indent: -1.35em;
  }

  .list li:not(:last-child) {
    margin-bottom: 6px;
  }

  .list li::before {
    width: 8px;
    height: 8px;
    transform: translateY(-2px);
  }

  /* --- list-dl --- */
  .list-dl dt {
    position: static;
  }

  .list-dl dd {
    padding-left: 0;
    padding-top: 8px;
  }
}

/* btn
**************************************** */
.btn {
  display: inline-block;
  min-width: 282px;
  padding: 8px 24px 12px;
  background-color: #fff;
  border: 1px solid;
  font-size: 107%;
  letter-spacing: 0.21em;
  text-align: center;
  font-family: "Ryumin Regular KL", sans-serif;
}

.btn:hover {
  background-color: #333;
  color: #fff;
}

.btn-arrow::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
  margin-left: 24px;
  margin-bottom: 2px;
}

.btn-en {
  font-family: satisfy, sans-serif;
  font-weight: 400;
  font-size: 160%;
  letter-spacing: 0;
}

.btn-en::after {
  content: "->";
  display: inline-block;
  margin-left: 0.25em;
}

.btn-en:hover {
  color: #fff;
}

.new_tab::after {
  content: "";
  display: inline-block;
  margin-top: -2px;
  margin-left: 8px;
  width: 16px;
  height: 16px;
  background-size: cover;
  background-image: url(../images/common/icon-new_tab.png);
  vertical-align: middle;
}

.btn.new_tab::after {
  margin-top: -4px;
}

@media only screen and (max-width: 768px) {
  .btn {
    width: 100%;
    padding: 12px;
    font-size: 122%;
  }
}

/* color
**************************************** */
.color-gre {
  color: #63d8b7;
}

.color-bro {
  color: #9d7860;
}

.color-wh {
  color: #fff;
}

/* font
**************************************** */
.font-en {
  font-family: satisfy, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.font-jp-min {
  font-family: "Ryumin Regular KL", sans-serif;
  font-weight: 300;
}

.font-jp-go {
  font-family: "Shuei MaruGo B", sans-serif;
  font-weight: 600;
}

.font-num {
  font-family: "Shuei Yokobuto Min B", sans-serif;
  font-weight: 600;
  font-style: normal;
}

/* img
**************************************** */
.img {
  display: table;
  border: 8px solid #f6f3f3;
}

.bg-pt1 .img {
  border: 8px solid #fff;
}

@media only screen and (max-width: 768px) {

  .img,
  .bg-pt1 .img {
    border-width: 4px;
  }
}

/* ##############################################################################

    HEADER

############################################################################## */
.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding: 30px 2.5vw 0;
  z-index: 10;
  transition: padding 0.8s ease-out;
}

.header--logo {
  position: relative;
  padding: 0 20px;
  margin-bottom: -4px;
  text-align: center;
  transition: opacity 0.6s ease-out;
}

.header--logo small {
  display: block;
  opacity: 1;
  margin-bottom: 16px;
  font-size: 66%;
  line-height: 1;
  letter-spacing: 0.08em;
  transition: opacity 0.4s ease-out;
}

.header hr {
  position: relative;
  flex: 1;
  border-color: #333;
  transition: opacity 0.4s ease-out;
}

.header.fixed {
  padding: 12px 2.5vw 0;
}

.header.fixed .header--logo,
.header.fixed hr {
  opacity: 0;
}

/* gnav_btn
**************************************** */
#gnav_btn {
  position: relative;
  width: 140px;
  cursor: pointer;
  z-index: 2;
}

.gnav_btn--lines {
  position: relative;
  width: 48px;
  height: 26px;
  margin-right: 18px;
}

.gnav_btn--lines span {
  transition: all 0.4s;
  box-sizing: border-box;
}

.gnav_btn--lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
}

.gnav_btn--lines span:nth-of-type(1) {
  top: 0;
}

.gnav_btn--lines span:nth-of-type(2) {
  top: 12px;
  width: 38px;
  transition: width 0.4s ease-out;
}

#gnav_btn:hover .gnav_btn--lines span:nth-of-type(2) {
  width: 100%;
}

.gnav_btn--lines span:nth-of-type(3) {
  bottom: 0;
}

.header.active .gnav_btn--lines span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
  transform: translateY(12px) rotate(-45deg);
}

.header.active .gnav_btn--lines span:nth-of-type(2) {
  opacity: 0;
}

.header.active .gnav_btn--lines span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
  transform: translateY(-12px) rotate(45deg);
}

.gnav_btn--lines+span,
.gnav_btn--lines+span .black {
  position: relative;
}

.gnav_btn--lines+span .white {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
}

/* gnav
**************************************** */
.gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 130px 20px 60px 200px;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease-out;
}

.header.active .gnav {
  opacity: 1;
  background-color: #fff;
  pointer-events: all;
  z-index: 1;
}

.gnav--list {
  max-width: 1080px;
  width: 96%;
}

.gnav--list:not(.entry--link) {
  margin-bottom: 30px;
}

.gnav--list-wide {
  max-width: 1280px;
}

.gnav--list .gnav--parent.home {
  width: 100%;
  margin-right: 0;
  margin-bottom: 30px !important;
}

.gnav--list .gnav--parent.home a {
  font-size: 160%;
  letter-spacing: 0.22em;
  font-weight: bold;
}

.gnav--list .gnav--parent.home a:hover {
  color: #63d8b7;
}

.gnav--list:not(.entry--link) .gnav--parent {
  margin-bottom: 48px;
}

.gnav--list .parent {
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.22em;
  font-size: 168%;
  font-weight: 600;
}

.gnav--child a {
  font-size: 120%;
}

.gnav--child a:hover {
  color: #63d8b7;
}

.gnav--child a.current {
  color: rgba(51, 51, 51, 0.5);
  cursor: default;
}

.gnav--child a::before {
  content: "";
  width: 1.5em;
  height: 1px;
  background-color: #333;
  display: inline-block;
  vertical-align: super;
  margin-right: 0.5em;
  transition: width 0.4s ease-out;
}

.gnav--child a:hover::before,
.gnav--child a.current::before {
  width: 2em;
}

.gnav--child a.current::before {
  background-color: rgba(51, 51, 51, 0.5);
}

.gnav--corp a {
  background-color: #f5f5f5;
  display: block;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 114%;
}

.gnav--list.entry--link {
  margin-bottom: 40px;
}

.gnav--list.entry--link li strong {
  margin-bottom: 8px;
  font-size: 234%;
}

.gnav--list.entry--link li small {
  line-height: 1.4;
}

.entry_btn a {
  position: relative;
  background-color: #fff;
  border: 1px solid #333;
  letter-spacing: 0.24em;
  font-size: 93%;
  font-weight: 600;
  padding: 9px 36px;
}

.entry_btn a:hover {
  background-color: #333;
  color: #fff;
}

.entry_btn a::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 24px;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
}

.entry_btn a span {
  position: absolute;
  top: -21px;
  left: -76px;
  font-size: 336%;
  line-height: 1;
  color: #333;
  transition: color 0.4s ease-out;
}

.entry_btn a:hover span {
  color: #63d8b7;
}

/* 色変更
**************************************** */
.change_white .gnav_btn--lines span {
  background-color: #fff;
}

.change_white .gnav_btn--lines+span .white {
  opacity: 1;
}

.change_white .gnav_btn--lines+span .black {
  opacity: 0;
}

/* activeのとき
**************************************** */
.change_white .header.active .gnav_btn--lines span {
  background-color: #000;
}

.change_white .header.active .gnav_btn--lines+span .white {
  opacity: 0;
}

.change_white .header.active .gnav_btn--lines+span .black {
  opacity: 1;
}

/* HEADER SP
**************************************** */
@media only screen and (max-width: 768px) {
  .header {
    padding: 22px 4% 0;
    align-items: center;
    flex-direction: row-reverse;
  }

  .header hr {
    display: none;
  }

  .header--logo {
    width: 34%;
    padding: 0;
    margin-bottom: 0;
  }

  .header--logo small {
    display: none;
  }

  /* --- gnav_btn --- */
  #gnav_btn {
    width: auto;
    flex-direction: row-reverse;
  }

  .gnav_btn--lines {
    width: 32px;
    height: 22px;
    margin-left: 8px;
    margin-right: 0;
  }

  .gnav_btn--lines span {
    height: 2px;
    background-color: #fff;
  }

  .gnav_btn--lines span:nth-of-type(2) {
    width: 28px;
    top: 10px;
    left: auto;
    right: 0;
  }

  .header.active .gnav_btn--lines span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }

  .header.active .gnav_btn--lines span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }

  .gnav_btn--lines+span {
    margin-top: -4px;
    line-height: 1;
  }

  .gnav_btn--lines+span .white,
  .gnav_btn--lines+span .black {
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
  }

  .gnav_btn--lines+span .white {
    opacity: 1;
  }

  .gnav_btn--lines+span .black {
    opacity: 0;
  }

  /* --- gnav --- */
  .gnav {
    display: block;
    padding: 50px 5%;
    overflow-y: scroll;
  }

  .gnav--list {
    width: 100%;
  }

  .gnav--list:not(.entry--link) {
    margin-bottom: 20px;
  }

  .gnav--list:not(.entry--link) .gnav--parent {
    margin-bottom: 16px;
  }

  .gnav--list .parent {
    border-bottom: 2px solid;
    padding-bottom: 5px;
    margin-bottom: 12px;
    font-size: 138%;
  }

  .gnav--child a {
    font-size: 116%;
  }

  .gnav--child a::before {
    width: 0.8em;
  }

  .gnav--list.entry--link {
    margin-bottom: 0;
  }

  /* --- header fixed --- */
  .header.fixed {
    padding: 18px 4% 0;
  }

  .header.active .gnav_btn--lines span,
  .header.fixed .gnav_btn--lines span {
    background-color: #333;
  }

  .header.active .gnav_btn--lines+span .white,
  .header.fixed .gnav_btn--lines+span .white {
    opacity: 0;
  }

  .header.active .gnav_btn--lines+span .black,
  .header.fixed .gnav_btn--lines+span .black {
    opacity: 1;
  }
}

/* ##############################################################################

    FOOTER

############################################################################## */
#pagetop {
  position: fixed;
  bottom: 16px;
  right: 2%;
  font-size: 100%;
}

#pagetop a {
  position: relative;
  color: #63d8b7;
}

#pagetop a::before,
#pagetop a::after {
  content: "";
  position: absolute;
  display: inline-block;
}

#pagetop a::before {
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 24px;
  background-color: #63d8b7;
}

#pagetop a::after {
  width: 8px;
  height: 8px;
  border-left: 2px solid;
  border-top: 2px solid;
  top: -31px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
}

#pagetop a:hover {
  opacity: 0.7;
}

#entry {
  padding-bottom: 358px;
}

.entry--link {
  gap: 2vw;
}

.entry--link li {
  flex: 1;
  display: flex;
}

.entry--link li a {
  height: 100%;
}

.entry--link li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 50px 24px 50px 34px;
  background-color: #204068;
  transform: scale(1);
}

.entry--link li a::after {
  content: "";
  border: 10px solid transparent;
  border-left: 10px solid #fff;
  height: 0;
  font-size: 0;
  transition: border-color 0.4s ease-out;
}

.entry--link li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9vw;
  padding: 0 18px;
}

.entry--link li h3 {
  position: relative;
  flex: 1;
}

.entry--link li h3::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 81%;
  background-color: #fff;
  margin: auto;
  opacity: 0.25;
}

.entry--link li h3>* {
  display: block;
}

.entry--link li strong {
  padding-bottom: 16px;
  font-size: 220%;
  line-height: 1;
  letter-spacing: 0.2em;
}

.entry--link li strong span {
  display: block;
  padding-top: 8px;
  font-size: 46%;
}

.entry--link li small {
  font-size: 120%;
  text-indent: 0.14em;
  transition: color 0.4s ease-out;
}

.entry--link li a:hover {
  transform: scale(1.02);
}

@media screen and (min-width: 1601px) {
  .gnav--list.entry--link li i {
    width: 120px;
  }
}

#entry .form {
  padding-top: 34px;
  padding-bottom: 34px;
}

/* --- 中途のアーカイブ --- */
.requirement_category-mincareer #entry .heading-1,
.requirement_category-mincareer #entry .entry--link {
  display: none;
}

/* footer
**************************************** */
.footer {
  background: #fff;
  padding: 0 0.83vw 64px;
  padding-bottom: 46px;
}

.footer--gallery {
  margin-bottom: 22px;
}

.footer--gallery li {
  margin-top: -244px;
  width: calc(100% / 3 - (18px * 2 / 3));
  height: 400px;
  background-position: center;
}

.footer--gallery .gallery1 {
  background-image: url(../images/common/gallery1.jpg);
}

.footer--gallery .gallery2 {
  background-image: url(../images/common/gallery3.jpg);
}

.footer--gallery .gallery3 {
  background-image: url(../images/common/gallery4.jpg);
}

.footer--content {
  margin-top: 40px;
  font-size: 93%;
}

.footer--content .nav {
  padding-left: 60px;
  margin-bottom: 24px;
}

.footer--content .nav .nav--parent {
  width: calc(100% / 4);
}

.footer--content .nav--parent .parent {
  display: block;
  margin-bottom: 8px;
  font-size: 120%;
}

.footer--content .nav--child a::before {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #333;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}

.footer--content .nav--child a:hover {
  opacity: 0.7;
}

.footer--content .nav--child .corplink {
  margin-top: 24px;
}

.footer--content .nav--child .corplink a {
  font-size: 88%;
  color: #999;
}

.footer--content .nav--child .corplink a::before {
  display: none;
}

.footer--content .nav a:hover {
  opacity: 0.7;
}

.footer--content .nav li:last-child a {
  padding-right: 0;
}

/* FOOTER SP
**************************************** */
@media only screen and (max-width: 768px) {
  #pagetop {
    right: 2%;
    bottom: 2%;
  }

  #entry {
    padding-bottom: 98px;
  }

  .entry--link {
    gap: 20px;
  }

  .entry--link li a,
  .gnav--list.entry--link li a {
    padding: 20px 10px 24px 20px;
  }

  .entry--link li a {
    min-height: 134px;
  }

  .entry--link li i {
    width: 25vw;
    padding: 0 18px 0 28px;
  }

  .entry--link li strong {
    font-size: 215%;
  }

  .entry--link li small {
    font-size: 92%;
  }

  .entry--link li a::after {
    border: 8px solid transparent;
    border-left: 8px solid #bba988;
    margin-left: 8px;
  }

  #entry .form {
    padding-top: 14px;
    padding-bottom: 28px;
  }

  .footer {
    padding-bottom: 24px;
  }

  .footer--gallery {
    margin-bottom: 12px;
  }

  .footer--gallery li {
    margin-top: -10vh;
    width: calc(100% / 3 - (8px * 2 / 3));
    height: 13vh;
    background-size: cover;
  }

  .footer--content {
    padding: 0 2%;
    margin-top: 20px;
  }

  .footer--content .logo {
    width: 32%;
    margin: auto;
  }

  .footer--content .nav {
    margin-bottom: 14px;
  }

  .footer--copyright {
    text-align: center;
  }
}

/* ##############################################################################

    INDEX

############################################################################## */
.hero {
  height: 100vh;
  background-color: #f7f4f4;
  padding-top: 16px;
  padding-left: 0.83vw;
  padding-right: 0.83vw;
}

.hero .hero--visual {
  background-size: cover;
  background-position: center;
  padding-top: 160px;
  width: 100%;
  height: 100%;
  background-image: url(../images/hero.jpg);
}

.hero .hero--ttl {
  width: 309px;
  margin: 0 auto;
}

.hero .hero--ttl>*:nth-child(1) {
  transition-delay: 2s;
}

.hero .hero--ttl>*:nth-child(2) {
  transition-delay: 1.5s;
}

.hero .hero--ttl>*:nth-child(3) {
  transition-delay: 1s;
}

/* home_about
**************************************** */
.home_about--gallery,
.home_about--newvalue {
  position: relative;
}

.home_about--newvalue::before,
.home_about--gallery::after {
  position: absolute;
  z-index: 1;
  color: #63d8b7;
  font-size: 640%;
  line-height: 1;
  letter-spacing: 0;
  font-family: satisfy, sans-serif;
}

.home_about--gallery::after {
  content: "Philosophy";
  top: -50px;
  right: 21.6vw;
}

.home_about--newvalue::before {
  content: "New Values...";
  top: -54px;
  left: 23.5vw;
}

.home_about--gallery li:not(:last-child) {
  margin-right: 0.83vw;
}

@media all and (-ms-high-contrast: none) {
  .home_about--gallery li:first-child {
    width: 45.1%;
  }

  .home_about--gallery li:nth-child(2) {
    width: 26.4%;
  }

  .home_about--gallery li:nth-child(3) {
    width: 25.9%;
  }
}

.home_about--newvalue {
  margin-top: 0.96vw;
}

.home_about--newvalue .txtarea {
  width: 49%;
  padding: 83px 4.8vw 30px 6.3vw;
}

.home_about--newvalue .heading-1 {
  font-size: 2.2vw;
  line-height: 1.8;
}

.home_about--newvalue .imgarea {
  width: 57.8%;
  background-position: center;
  background-size: cover;
  background-image: url(../images/home_about_newvalue.jpg);
}

/* home_movie
**************************************** */
.home_movie {
  padding-bottom: 0;
}

.youtube--wrapper {
  border: 4px double #333;
  line-height: 0;
  padding: 8px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

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

/* home_welfare
**************************************** */
.home_welfare {
  padding-bottom: 24px;
}

.home_welfare--content {
  margin-bottom: 128px;
}

.home_welfare--content--list li {
  padding: 6px 0.8vw 20px;
  border: 8px solid #fff;
}

.home_welfare--content--list li i {
  display: block;
  margin-bottom: 4px;
  text-align: center;
  width: 185px;
  height: 149px;
  margin-left: auto;
  margin-right: auto;
}

.home_welfare--content--list li h3 {
  margin-bottom: 12px;
  font-size: 107%;
  line-height: 1.5;
}

.home_welfare--gallery li {
  flex: 1;
  height: 384px;
  background-position: center;
}

.home_welfare--gallery li:not(:last-child) {
  margin-right: 0.83vw;
}

.home_welfare--gallery .gallery1 {
  background-image: url(../images/welfare_gallery1.jpg);
}

.home_welfare--gallery .gallery2 {
  background-image: url(../images/welfare_gallery2.jpg);
}

.home_welfare--gallery .gallery3 {
  background-image: url(../images/welfare_gallery3.jpg);
}

.home_welfare--gallery .gallery4 {
  background-image: url(../images/welfare_gallery4.jpg);
}

/* home_work
**************************************** */
.home_work--content .txtarea {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  padding: 28px 0;
}

.home_work--content .txtarea--inner {
  position: relative;
  max-width: 400px;
  width: 90%;
  padding: 78px 2px 66px;
  border-top: 4px double #333;
  border-bottom: 4px double #333;
}

.home_work--content .col-2 .txtarea--inner {
  padding-top: 62px;
}

.home_work--content .txtarea--inner h3 {
  line-height: 1.6;
  letter-spacing: 0.2em;
}

.home_work--content .num {
  position: absolute;
  top: -53px;
  left: -77px;
  display: block;
  padding-top: 20px;
  width: 96px;
  height: 96px;
  border: 1px solid;
  border-radius: 50%;
  background-color: #f6f3f3;
}

.home_work--content .col-2 .num {
  left: auto;
  right: -6px;
}

.home_work--content .num>* {
  display: block;
  text-align: center;
  line-height: 1;
}

.home_work--content .num strong.font-num {
  font-size: 293%;
  letter-spacing: 0.03em;
}

@media all and (-ms-high-contrast: none) {
  .home_work--content .num strong.font-num {
    margin-top: 16px;
  }
}

.home_work--content .num .font-en {
  position: absolute;
  right: -111px;
  bottom: -27px;
  font-size: 320%;
  white-space: nowrap;
}

.home_work--content .col-2 .num .font-en {
  right: -59px;
}

.home_work--content .imgarea {
  width: 60%;
  min-height: 878px;
  margin-right: 40px;
  background-position: center;
  background-image: url(../images/home_works_img2.jpg);
}

.home_work--content .col-2 .imgarea {
  margin-left: 40px;
  margin-right: 0;
  background-image: url(../images/home_works_img1.jpg);
}

/* home_recruit
**************************************** */
.home_recruit {
  padding-bottom: 0;
}

.home_recruit--list>* {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 640px;
  overflow: hidden;
}

.home_recruit--list>*:first-child {
  width: 100%;
}

.home_recruit--list>*::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.home_recruit--list>*:first-child::before {
  background-image: url(../images/home_recruit1.jpg);
}

.home_recruit--list>*:nth-child(3)::before {
  background-image: url(../images/home_recruit3.jpg);
}

.home_recruit--list>*:nth-child(2)::before {
  background-image: url(../images/home_recruit2.jpg);
}

.home_recruit--list>*:nth-child(4)::before {
  background-image: url(../images/home_recruit4.jpg);
}

.home_recruit--list>*:nth-child(5)::before {
  background-image: url(../images/home_recruit5.jpg);
}

.home_recruit--list>*:hover::before {
  transform: scale(1.05);
}

.home_recruit--list .recruit_post--inner {
  margin-left: 125px;
}

.home_recruit--list .heading-2 {
  position: relative;
}

.home_recruit--list .heading-2::before {
  position: absolute;
  top: 15px;
  left: -30px;
}

.civil .heading-2::before {
  content: url(../images/recruit_civil.png);
}

.building .heading-2::before {
  content: url(../images/recruit_building.png);
}

.sales .heading-2::before {
  content: url(../images/recruit_sales.png);
}

.office .heading-2::before {
  content: url(../images/recruit_office.png);
}

.home_recruit--list .job span {
  display: inline-block;
  background-color: #fff;
  padding: 2px 14px;
  font-size: 120%;
  line-height: 1.6;
}

.home_recruit--list .desp,
.home_recruit--list .link {
  padding-left: 4px;
}

.recruit_post .link a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* home_interview
**************************************** */
.home_interview {
  overflow-x: hidden;
}

#interview_slide {
  margin-left: -18px;
}

@media all and (-ms-high-contrast: none) {
  #interview_slide {
    margin-left: 0;
  }
}

#interview_slide .slick-list {
  overflow: visible;
}

#interview_slide .slick-track {
  display: flex !important;
}

#interview_slide .slick-slide {
  width: 332px !important;
  margin-right: 40px;
  opacity: 0.7;
  pointer-events: none;
}

#interview_slide .slick-slide.slick-active,
#interview_slide .slick-slide.slick-current {
  opacity: 1;
  pointer-events: auto;
}

#interview_slide .slick-arrow {
  position: absolute;
  top: -78px;
  bottom: 0;
  margin: auto;
  z-index: 1;
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  font-size: 0;
  width: 32px;
  height: 32px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  outline: 0;
  transition: border-color 0.4s ease-out;
  cursor: pointer;
}

#interview_slide .slick-arrow::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

#interview_slide .slick-arrow:hover {
  border-color: #63d8b7;
}

#interview_slide .slick-prev {
  left: -8%;
  transform: rotate(135deg);
}

#interview_slide .slick-next {
  right: -8%;
  transform: rotate(-45deg);
}

.interview_col .interview_img {
  position: relative;
  width: 332px;
  height: 450px;
  margin-bottom: 18px;
}

.interview_col .interview_img .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.interview_col a:hover .interview_img .hover {
  opacity: 1;
}

.interview_col .num {
  position: absolute;
  top: -38px;
  right: 14px;
  display: block;
  width: 72px;
  height: 72px;
  background-color: #fff;
  border: 1px solid;
  border-radius: 50%;
  padding-top: 10px;
}

.interview_col .num>* {
  display: block;
  line-height: 1;
  text-align: center;
}

.interview_col .num>* img {
  display: inline-block;
}

.interview_col .num strong.font-num {
  margin-top: -6px;
  font-size: 220%;
}

@media all and (-ms-high-contrast: none) {
  .interview_col .num {
    padding-top: 16px;
  }

  .interview_col .num strong.font-num {
    margin-top: 0;
  }
}

.interview_col .num strong.font-en {
  position: absolute;
  left: -26%;
  bottom: -20px;
  font-size: 240%;
  color: #63d8b7;
}

.interview_name>* {
  display: block;
}

.interview_name small {
  margin-bottom: 8px;
}

.interview_name strong {
  font-size: 160%;
  line-height: 1;
}

/* home_crosstalk
**************************************** */
.home_crosstalk--inner {
  width: 85%;
  margin: 0 auto;
}

.home_crosstalk--post {
  display: flex;
  align-items: center;
  min-height: 800px;
  background-size: cover;
  background-image: url(/recruitment/wp/wp-content/themes/original_theme/images/crosstalk_img.jpg);
  background-position: right center;
}

@media all and (-ms-high-contrast: none) {
  .home_crosstalk--post {
    padding-top: 240px;
  }
}

.home_crosstalk--post .ttl>* {
  display: block;
}

.home_crosstalk--post .ttl strong {
  margin-bottom: -28px;
  font-size: 426%;
  line-height: 1;
}

.home_crosstalk--post .ttl small {
  font-size: 93%;
}

.home_crosstalk--post .heading-2 {
  position: relative;
  display: table;
  margin-bottom: 56px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 16px rgba(255, 255, 255, 1), 0 0 16px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1), 0 0 2px rgba(255, 255, 255, 1), 0 0 1px rgba(255, 255, 255, 1);
  font-weight: 600;
}

.home_crosstalk--post .deco1,
.home_crosstalk--post .deco2 {
  position: absolute;
  font-size: 200%;
  line-height: 1;
}

.home_crosstalk--post .deco1 {
  top: 0;
  left: -35px;
}

@media all and (-ms-high-contrast: none) {
  .home_crosstalk--post .deco1 {
    left: -60px;
  }
}

@media (max-width: 768px) {
  .home_crosstalk--post .deco1 {
    left: 35px;
  }
}

.home_crosstalk--post .deco2 {
  content: "”";
  bottom: -45px;
}

/* INDEX SP
**************************************** */
@media only screen and (max-width: 1400px) {
  #interview_slide .slick-prev {
    left: 5%;
  }

  #interview_slide .slick-next {
    right: 5%;
  }
}

@media only screen and (max-width: 1200px) {
  .home_crosstalk--post {
    background-position: right 40% center;
  }
}

@media only screen and (max-width: 768px) {
  .hero {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero .hero--visual {
    padding-top: 22vh;
    background-image: url(../images/hero_sp.jpg);
  }

  .hero .hero--ttl {
    width: 40vw;
  }

  .hero .hero--ttl>* {
    width: calc(100% / 3 - (38px * 2 / 3));
  }

  /* --- home_about --- */
  .home_about {
    padding-top: 5vh;
  }

  .home_about .inner-xl {
    padding-left: 0;
    padding-right: 0;
  }

  .home_about--gallery {
    padding-top: 10vh;
  }

  .home_about--newvalue::before,
  .home_about--gallery::after {
    font-size: 10vw;
  }

  .home_about--gallery::after {
    top: 0;
    left: 5vw;
    right: auto;
  }

  .home_about--newvalue::before {
    top: 0;
    left: auto;
    right: 5vw;
  }

  .home_about--gallery li:not(:last-child) {
    margin-right: 0;
  }

  .home_about--gallery li:first-child {
    margin-right: 6vw;
    margin-bottom: 6vh;
    text-align: right;
  }

  .home_about--gallery li:nth-child(2) {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 6vh;
    width: 85%;
  }

  .home_about--gallery li:nth-child(3) {
    margin-right: 0;
    margin-left: auto;
    width: 85%;
  }

  .home_about--newvalue .txtarea {
    width: 100%;
    padding: 50px 5% 40px;
  }

  .home_about--newvalue .heading-1 {
    font-size: 6.6vw;
    line-height: 2.1;
  }

  .home_about--newvalue .imgarea {
    width: 100%;
    height: 375px;
  }

  /* --- home_welfare --- */
  .home_welfare {
    padding-bottom: 0;
  }

  .home_welfare--content {
    margin-bottom: 60px;
  }

  .home_welfare--content--list li {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px;
    border-width: 4px;
  }

  .home_welfare--content--list li i {
    width: 32%;
    margin-bottom: 0;
    margin-right: 8px;
    height: auto;
  }

  .home_welfare--content--list li h3 {
    margin-bottom: 8px;
  }

  .home_welfare--content--list li .txt {
    flex: 1;
  }

  .home_welfare--content--list li .txt-xs {
    font-size: 60%;
  }

  /* --- home_work --- */
  .home_work--content li {
    flex-direction: column-reverse;
  }

  .home_work--content .txtarea,
  .home_work--content .imgarea {
    width: 100%;
  }

  .home_work--content .imgarea {
    height: 51vh;
    margin-left: 0 !important;
    margin-right: 0;
    min-height: auto;
    background-size: cover;
  }

  .home_work--content .txtarea {
    display: block;
    padding: 28px 0 38px;
  }

  .home_work--content .txtarea--inner {
    width: 80%;
    padding: 36px 0 26px;
    border-top: none;
    border-bottom: none;
    margin: 0 auto;
  }

  .home_work--content .col-2 .txtarea--inner {
    padding-top: 36px;
  }

  .home_work--content .num {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto 28px;
    padding-top: 6px;
    width: 48px;
    height: 48px;
  }

  .home_work--content .num small {
    width: 60%;
    margin: 0 auto 2px;
  }

  .home_work--content .num strong.font-num {
    font-size: 169%;
  }

  .home_work--content .num .font-en {
    left: -57px;
    right: 0;
    bottom: -18px;
    font-size: 183%;
    text-align: center;
  }

  .home_work--content .col-2 .num .font-en {
    right: 0;
    left: -32px;
  }

  .home_work--content .txtarea--inner h3 {
    text-align: center;
  }

  /* --- home_recruit --- */
  .home_recruit--list>* {
    width: 100%;
    height: auto;
    min-height: 43vh;
    padding: 20px;
  }

  .home_recruit--list>*:first-child::before {
    background-image: url(../images/home_recruit1_sp.jpg);
  }

  .home_recruit--list>*:nth-child(2)::before {
    background-image: url(../images/home_recruit3_sp.jpg);
  }

  .home_recruit--list>*:nth-child(3)::before {
    background-image: url(../images/home_recruit2_sp.jpg);
  }

  .home_recruit--list>*:nth-child(4)::before {
    background-image: url(../images/home_recruit4_sp.jpg);
  }

  .home_recruit--list>*:nth-child(5)::before {
    background-image: url(../images/home_recruit5_sp.jpg);
  }

  .home_recruit--list .recruit_post--inner {
    margin-left: 0;
  }

  .home_recruit--list .recruit_post--inner::before {
    display: none;
  }

  .home_recruit--list .recruit_post--inner .heading-2 {
    font-size: 5.8vw;
    letter-spacing: 0.25em;
    line-height: 1.75;
    text-shadow: 0 0 5px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 1);
  }

  .home_recruit--list .job span {
    font-size: 107%;
  }

  /* --- interview_slide --- */
  #interview_slide {
    width: 240px;
    margin: 0 auto 40px;
  }

  #interview_slide .slick-list {
    margin-left: -16px;
  }

  #interview_slide .slick-slide {
    margin-right: 20px;
  }

  #interview_slide .slick-slide,
  .interview_col .interview_img {
    width: 240px !important;
  }

  .interview_col .interview_img,
  .interview_col .interview_img .hover {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .interview_col .interview_img {
    height: 325px;
    background-color: #ddd;
  }

  #interview_slide .interview_img .hover.pc-none {
    display: none;
  }

  #interview_slide .slick-arrow {
    width: 26px;
    height: 26px;
  }

  #interview_slide .slick-prev {
    left: -12%;
  }

  #interview_slide .slick-next {
    right: -12%;
  }

  .interview_col .num {
    top: -22px;
    right: 8px;
    padding-top: 8px;
    width: 48px;
    height: 48px;
  }

  .interview_col .num small {
    width: 70%;
    margin: 0 auto 6px;
  }

  .interview_col .num strong.font-num {
    font-size: 169%;
  }

  .interview_col .num strong.font-en {
    left: -12%;
    bottom: -18px;
    font-size: 200%;
  }

  /* --- home_crosstalk --- */
  .home_crosstalk .ttl {
    text-align: center;
  }

  .home_crosstalk--post .ttl strong {
    margin-bottom: -20px;
    font-size: 308%;
  }

  .home_crosstalk--post {
    height: auto;
    min-height: 400px;
    padding: 64px 20px 20px;
    background-image: url(../images/crosstalk_img_sp.jpg);
  }

  .home_crosstalk--inner {
    width: 100%;
  }

  .home_crosstalk--post .heading-2 {
    font-size: 5vw;
    letter-spacing: 0.15em;
    text-align: center;
    width: 100%;
  }

  .home_crosstalk--post .heading-2::before,
  .home_crosstalk--post .heading-2::after {
    display: none;
  }
}

/* ##############################################################################

    PAGE
    ―会社案内（company）
    ―福利厚生（welfare）
    ―クロストーク（crosstalk）
    ―よくある質問（faq）
    ―事業案内（business）

############################################################################## */

/* 会社案内（company）
**************************************** */
.comapany_outline iframe {
  width: 100% !important;
  border: 8px solid #f6f3f3;
}

@media only screen and (max-width: 768px) {
  .comapany_outline iframe {
    height: 300px;
    border-width: 4px;
  }
}

/* 福利厚生（welfare）
**************************************** */
.welfare_point .flex-reverse .txt {
  margin-right: 0;
  margin-left: 3%;
}

@media all and (-ms-high-contrast: none) {
  .welfare_point .flex-col2>* {
    width: 47%;
    flex: 1;
  }
}

.welfare_point--other th,
.welfare_point--other td {
  vertical-align: middle;
}

.welfare_point--other th {
  width: 200px;
}

.welfare_point--other td {
  padding-bottom: 16px;
}

.welfare_point--other ul li:not(:last-child) {
  margin-bottom: 4px;
}

/* --- welfare_training --- */
.welfare_training--step {
  position: relative;
}

.welfare_training--step::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 156px;
  width: 834px;
  height: 356px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/welfare/welfare_training_img.png);
}

.welfare_training--graf th,
.welfare_training--graf td {
  width: calc(100% / 5);
  max-width: 216px;
}

.welfare_training--graf th {
  padding: 20px 16px 0;
  line-height: 1.6;
  vertical-align: middle;
}

.welfare_training--graf td {
  border-bottom: 2px solid;
}

.welfare_training--graf td .step_ojt {
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

@media all and (-ms-high-contrast: none) {

  .welfare_training--graf th,
  .welfare_training--graf td,
  .welfare_training--graf td .step_ojt {
    width: 216px;
  }
}

.welfare_training--graf td.step1 .step_ojt {
  height: 90px;
  background-color: #63d8b7;
}

.welfare_training--graf td.step2 .step_ojt {
  height: 120px;
  background-color: #48b9a4;
}

.welfare_training--graf td.step3 .step_ojt {
  height: 160px;
  background-color: #319b92;
}

.welfare_training--graf td.step4 .step_ojt {
  height: 220px;
  background-color: #1f7c7d;
}

.welfare_training--graf td.step5 .step_ojt {
  height: 280px;
  background-color: #135e67;
}

.welfare_training--graf td.step1 .step_ojt:hover {
  background-color: rgba(99, 216, 183, 0.7);
}

.welfare_training--graf td.step2 .step_ojt:hover {
  background-color: rgba(72, 185, 164, 0.7);
}

.welfare_training--graf td.step3 .step_ojt:hover {
  background-color: rgba(49, 155, 146, 0.7);
}

.welfare_training--graf td.step4 .step_ojt:hover {
  background-color: rgba(31, 124, 125, 0.7);
}

.welfare_training--graf td.step5 .step_ojt:hover {
  background-color: rgba(19, 94, 103, 0.7);
}

.step_content {
  position: absolute;
  z-index: 1;
  top: -40px;
  left: 24px;
  width: 70%;
  background-color: #fff;
  padding: 18px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
  font-size: 92%;
  line-height: 1.6;
}

.welfare_training--graf .step_ojt:hover .step_content {
  opacity: 1;
}

.step_content .txt {
  flex: 1;
}

.step_content .txt:first-of-type {
  padding-right: 38px;
  margin-right: 34px;
  border-right: 1px solid #ddd;
}

.step_content .txt:only-of-type {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.step_content .list li:not(:last-child) {
  margin-bottom: 0;
}

.step_content h4 {
  width: 100%;
  margin-bottom: 8px;
  font-size: 107%;
}

.step_content h5 {
  margin-bottom: 4px;
  color: #aaa;
}

.welfare_training--other>* {
  border: 1px solid;
  padding: 38px;
}

@media only screen and (max-width: 768px) {
  .welfare_point .txt {
    margin-bottom: 28px;
  }

  .welfare_point .flex-reverse .txt {
    margin-left: 0;
    margin-right: 0;
  }

  .welfare_point--other {
    border-top: 1px solid;
    border-bottom: 1px solid;
  }

  .welfare_point--other th,
  .welfare_point--other td {
    display: block;
    width: 100%;
    border-top: none;
    border-bottom: none;
  }

  .welfare_training--step::after,
  .welfare_training--graf tr:last-of-type {
    display: none;
  }

  .welfare_training--graf th,
  .welfare_training--graf td {
    width: 100%;
    max-width: 100%;
  }

  .welfare_training--graf td {
    height: auto;
    display: block;
    border-bottom: none;
  }

  .welfare_training--graf td .step_ojt {
    height: auto !important;
  }

  .step_content {
    position: static;
    display: block;
    width: 100%;
    opacity: 1;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 100%;
  }

  .step_content .txt:first-of-type {
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 16px;
    border-right: none;
  }

  .step_content h5 {
    color: #666;
  }

  .step_content h4 {
    margin-bottom: 12px;
    font-size: 128%;
  }

  .welfare_training--other>* {
    padding: 20px;
  }
}

/* クロストーク（crosstalk）
**************************************** */
.crosstalk--visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92vh;
  background-position: center;
  background-size: cover;
  background-image: url(../images/crosstalk/crostalk-mainimg.jpg);
  text-shadow: 0 0 20px rgba(212, 215, 224, 1), 0 0 16px rgba(212, 215, 224, 1), 0 0 16px rgba(212, 215, 224, 1),
    0 0 2px rgba(212, 215, 224, 1), 0 0 2px rgba(212, 215, 224, 1), 0 0 1px rgba(212, 215, 224, 1);
}

.crosstalk--visual--catch {
  margin-top: -68px;
}

.crosstalk--visual .heading-1 {
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.crosstalk--profile {
  width: 80%;
  padding: 80px 0 110px;
  margin: -160px auto 80px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.crosstalk--profile .cross {
  position: relative;
  width: 86px;
  height: 86px;
  margin: 0 40px;
}

.crosstalk--profile .cross::before,
.crosstalk--profile .cross::after {
  content: "";
  position: absolute;
  top: 43px;
  width: 100%;
  height: 1px;
  background-color: #333;
}

.crosstalk--profile .cross::before {
  transform: rotate(45deg);
}

.crosstalk--profile .cross::after {
  transform: rotate(-45deg);
}

.crosstalk--profile li .imgarea {
  border-radius: 50%;
  overflow: hidden;
  margin-right: 24px;
}

.crosstalk--profile li .txtarea h3 {
  font-size: 120%;
}

.crosstalk--profile li .txtarea p {
  line-height: 1.75;
}

.talk_section:not(:last-of-type) {
  margin-bottom: 68px;
}

.talk_section .heading-2 {
  margin-bottom: 56px;
}

.talk_section--box.esaki {
  flex-direction: row-reverse;
}

.talk_section--box:not(:last-of-type) {
  margin-bottom: 32px;
}

.talk_section--box dt {
  width: 100px;
  margin-right: 18px;
  text-align: center;
  line-height: 1;
}

.talk_section--box.esaki dt {
  margin-left: 18px;
  margin-right: auto;
}

.talk_section--box dt>* {
  display: block;
  margin: 0 auto;
}

.talk_section--box dt .img {
  overflow: hidden;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 8px;
  border: none;
}

.talk_section--box dd {
  flex: 1;
  background-color: rgba(157, 120, 96, 0.15);
  border: 1px solid rgba(157, 120, 96, 0.1);
  border-radius: 2px;
  padding: 34px;
  margin-right: 118px;
  line-height: 1.7;
}

.talk_section--box.esaki dd {
  background-color: rgba(157, 120, 96, 0.08);
  margin-left: 118px;
  margin-right: 0;
}

.talk_section .img_bnr {
  margin: 100px auto 80px;
}

.talk_section:last-of-type .img_bnr {
  margin-bottom: 16px;
}

@media only screen and (max-width: 768px) {
  .crosstalk--visual {
    height: 480px;
    padding: 0 20px;
    background-image: url(../images/crosstalk/crostalk-mainimg_sp.jpg);
  }

  .crosstalk--visual .heading-1 {
    margin-bottom: 0;
    font-size: 185%;
  }

  .crosstalk--profile {
    width: 90%;
    margin: -112px auto 40px;
    padding: 28px 18px 40px;
  }

  .crosstalk--profile li .imgarea {
    margin-right: 16px;
    width: 80px;
  }

  .crosstalk--profile .cross {
    width: 56px;
    height: 56px;
    margin: 10px 0;
  }

  .crosstalk--profile .cross::before,
  .crosstalk--profile .cross::after {
    top: 28px;
  }

  .talk_section .heading-2 {
    margin-bottom: 38px;
    letter-spacing: 0.22em;
  }

  .talk_section--box dt {
    width: 78px;
    margin-right: 8px;
  }

  .talk_section--box.esaki dt {
    margin-left: 8px;
  }

  .talk_section--box dt .img {
    width: 60px;
    height: 60px;
  }

  .talk_section--box dd {
    padding: 18px;
    margin-right: 0;
  }

  .talk_section--box.esaki dd {
    margin-left: 0;
  }

  .talk_section .img_bnr {
    margin: 56px auto 0;
  }

  .talk_section:last-of-type .img_bnr {
    margin-bottom: 8px;
  }
}

/* よくある質問（faq）
**************************************** */
.faq--section:not(:last-of-type) {
  margin-bottom: 48px;
}

.faq--section h2 {
  margin-bottom: 18px;
  font-size: 233%;
}

.faq_item {
  background-color: #fafafa;
  border: 1px solid #eee;
  padding: 28px 38px;
  margin-bottom: 15px;
}

.faq_item dt {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 20px;
  text-indent: -1.75em;
  padding-left: 1.7em;
  font-size: 160%;
  line-height: 1.6;
  letter-spacing: 0.15em;
}

.faq_item dt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 28px;
  height: 1px;
  background-color: #333;
}

.faq_side_ttl {
  font-size: 240%;
  margin-left: -0.5em;
  line-height: 1.8;
  margin-bottom: 6px;
}

.faq_side_list li a {
  font-size: 108%;
}

.faq_side_list li a::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #333;
  display: inline-block;
  vertical-align: super;
  margin-right: 8px;
  transition: width 0.4s ease-out;
}

.faq_side_list li a.active {
  color: #63d8b7;
}

.faq_side_list li a.active::before {
  width: 28px;
}

@media only screen and (max-width: 1100px) {
  .page-faq .main_content {
    flex-direction: column-reverse;
  }

  .faq_side_ttl {
    margin-left: 0;
  }

  .faq_side_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .faq_side_list li {
    margin-right: 16px;
  }

  .faq_side_list li a:hover {
    color: #63d8b7;
  }

  .faq_side_list li a::before {
    width: 10px;
    margin-right: 6px;
  }
}

@media only screen and (max-width: 768px) {
  .faq--section h2 {
    margin-bottom: 18px;
    font-size: 184%;
  }

  .faq_item {
    padding: 18px;
  }

  .faq--section:not(:last-of-type) {
    margin-bottom: 38px;
  }

  .faq_item dt {
    padding-bottom: 18px;
    margin-bottom: 16px;
    text-indent: -1.85em;
    padding-left: 1.85em;
    font-size: 124%;
    line-height: 1.75;
    letter-spacing: 0.21em;
  }

  .faq_item dd br {
    display: none;
  }
}

/* 事業案内（business）
**************************************** */
@media only screen and (max-width: 768px) {
  .business_section .txt-sm {
    line-height: 1.5;
  }
}

/* ##############################################################################

    ARCHIVE
    ―募集要項（requirements）
    ―先輩社員インタビュー（interview）

############################################################################## */
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}

.wp-pagenavi a,
.wp-pagenavi .current {
  position: relative;
  max-width: 42%;
  display: inline-block;
  vertical-align: top;
  background: #333;
  line-height: 1;
  padding: 13px 16px 14px;
  border-radius: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  margin: 4px;
}

.wp-pagenavi a:hover,
.wp-pagenavi .current {
  background-color: #9d7860;
}

.wp-pagenavi .pages {
  display: none;
}

@media only screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-bottom: 40px;
  }

  .wp-pagenavi a {
    width: 100%;
    max-width: 100%;
    margin-bottom: 8px;
  }
}

/* main_column
**************************************** */
.main_column {
  flex: 1;
  margin-right: 80px;
}

/* --- post --- */
.post {
  position: relative;
}

.post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.post--date {
  color: #aaa;
  font-size: 85%;
}

.cat_list {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.post .post--img img {
  overflow: hidden;
  border-radius: 3px;
}

.cat_list a {
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
  font-size: 93%;
  color: #63d8b7;
  line-height: 1;
  float: left;
  margin-right: 4px;
  margin-bottom: 4px;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1100px) {
  .main_column {
    width: 100%;
    margin-right: 0;
  }
}

/* side_column
**************************************** */
.side_column {
  width: 264px;
}

.side_section:not(:last-child) {
  margin-bottom: 64px;
}

.side--ttl {
  font-size: 120%;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 16px;
}

.side--ttl small {
  font-size: 62%;
  opacity: 0.5;
  letter-spacing: 0.15em;
  display: block;
  line-height: 1;
  margin-top: 8px;
}

/* --- post --- */
.posts-side .post:not(:last-child) {
  margin-bottom: 16px;
}

.posts-side .post--img {
  margin-right: 16px;
  border-radius: 3px;
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.posts-side .txtarea {
  flex: 1;
}

.posts-side .post--date {
  margin-bottom: 0;
}

.posts-side .post--ttl {
  line-height: 1.4;
}

/* --- archive --- */
.side_column .archive_list--ttl::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(135deg);
  transition: 0.4s ease-out;
}

.side_column .archive_list--ttl.active::after {
  transform: rotate(315deg);
}

.side_column .archive_month {
  display: none;
}

@media screen and (max-width: 1100px) {
  .side_column {
    width: 100%;
  }
}

/* --- archive-pulldown --- */
.archive-pulldown {
  position: relative;
  margin-left: auto;
  z-index: 1;
}

.archive-pulldown .archive_list {
  position: relative;
  font-size: 92%;
}

.archive-pulldown .archive_list:not(:last-child) {
  margin-right: 24px;
}

.archive-pulldown .archive_list a {
  display: block;
  padding: 2px 16px;
  text-align: left;
}

.archive-pulldown .archive_list a:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.archive-pulldown .archive_list--label {
  margin-right: 8px;
}

.archive-pulldown .archive_list--btn {
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  padding: 8px 54px 8px 32px;
  background-color: #fff;
  border: 1px solid #ccc;
}

.archive-pulldown .archive_list--btn::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.2s ease-out;
  transform-origin: 50% 50%;
}

.archive-pulldown .active .archive_list--btn::after {
  top: 14px;
  transform: rotate(225deg);
}

.archive-pulldown .archive_list--menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-out;
}

.archive-pulldown .active .archive_list--menu {
  visibility: visible;
  opacity: 1;
}

/* 募集要項（requirements）
**************************************** */
.requirements_cat_nav {
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 4px double;
}

.requirements_cat_nav li a {
  display: block;
  padding: 2px 24px;
  text-align: center;
  color: #333;
  font-size: 140%;
}

.requirements_cat_nav li a:hover {
  background-color: #aaa;
  color: #fff;
}

.requirements_cat_nav li a.current {
  background-color: #333;
  color: #fff;
}

.requirements_post {
  position: relative;
  border: 1px solid #ddd;
  transition: all 0.4s ease-out;
}

.requirements_post .eyecatch {
  width: 100%;
  height: 243px;
  background-size: cover;
  background-position: center;
}

.requirements_post .eyecatch.no_img {
  background-image: url(../images/common/no_img.jpg);
}

.requirements_post .txtarea {
  padding: 0 24px 24px;
}

.requirements_post .txtarea p {
  color: #999;
  line-height: 1.7;
}

.requirements_post:hover {
  border-color: #333;
}

/* 先輩社員インタビュー（interview）
**************************************** */
.archive-interview .interview_list>* {
  width: 332px;
  margin-bottom: 82px;
}

.archive-interview .interview_list>*:not(:nth-child(3n)) {
  margin-right: 42px;
}

@media only screen and (max-width: 768px) {
  .archive-interview .interview_list>* {
    margin-bottom: 42px;
  }

  .archive-interview .interview_list>*:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .archive-interview .interview_col,
  .archive-interview .interview_col .interview_img {
    width: 100% !important;
    background-image: none;
    background-color: transparent;
  }

  .archive-interview .interview_col .interview_img {
    height: 200px;
  }

  .archive-interview .interview_col .interview_img .hover {
    opacity: 1;
    background-size: cover;
  }
}

/* ##############################################################################

    SINGLE
    ―募集要項（requirements）
    ―先輩社員インタビュー（interview）

############################################################################## */

/* 募集要項（requirements）
**************************************** */
.requirements_info {
  position: relative;
  padding: 60px;
}

.requirements_info--box .heading-2 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.requirements_info--box .heading-2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 1px;
  background-color: #333;
}

.requirements_info .ttl-mini {
  font-size: 93%;
  line-height: 1;
  color: #999;
  font-weight: 400;
  margin-bottom: 6px;
}

.requirement--table th {
  background-color: #f6f3f3;
}

.requirement--table td {
  padding: 28px 60px 36px;
  line-height: 1.75;
}

.requirement--table td p:not(:last-child) {
  margin-bottom: 20px;
}

.requirements--links {
  margin-top: 40px;
}

.requirements--links li {
  width: 40%;
}

.requirements--links li:first-child {
  margin-right: 18px;
}

.requirements--links li a {
  display: block;
  padding: 24px;
  padding-left: 32px;
  border: 1px solid #333;
  font-size: 133%;
  text-align: center;
  background-color: transparent;
}

.requirements--links li a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 6px;
  margin-left: 8px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: skewX(40deg);
  vertical-align: baseline;
}

.requirements--links li a:hover {
  background-color: #333;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .requirements_info {
    padding: 0;
    margin-top: -20px;
  }

  .requirement--table {
    border-top: 1px solid #9d7860;
  }

  .requirement--table th {
    padding: 6px 12px 5px;
  }

  .requirement--table td {
    padding: 8px 9px 15px;
  }

  .requirements--links li {
    width: 100%;
  }

  .requirements--links li:first-child {
    margin-right: 0;
    margin-bottom: 18px;
  }

  .requirements--links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    padding-left: 18px;
    font-size: 120%;
    text-align: left;
    background-color: transparent;
  }
}

/* 先輩社員インタビュー（interview）
**************************************** */
.interview_detail--visual {
  padding: 16px 0.83vw 0;
}

.interview_detail--visual .visual {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.interview_detail--visual .catch {
  position: relative;
  display: table;
  margin-left: 7vw;
}

.interview_detail--visual .catch strong.font-jp-min {
  color: #fff;
  font-size: 266%;
  line-height: 1.8;
  letter-spacing: 0.25em;
}

.interview_detail--visual .catch .num {
  position: absolute;
  top: -96px;
  left: 0;
  width: 72px;
  height: 72px;
  display: block;
  padding-top: 11px;
  border-radius: 50%;
  border: 1px solid;
  background-color: #fff;
}

.interview_detail--visual .catch .num>* {
  display: block;
  text-align: center;
  line-height: 1;
}

.interview_detail--visual .catch .num strong.font-num {
  margin-top: -6px;
  font-size: 220%;
  letter-spacing: 0.03em;
}

.interview_detail--visual .catch .num strong.font-en {
  position: absolute;
  left: -32%;
  bottom: -18px;
  font-size: 240%;
  color: #63d8b7;
}

.interview_detail--visual .profile {
  position: absolute;
  right: 5vw;
  bottom: -16px;
  background-color: #fff;
  border: 1px solid;
  min-width: 320px;
  padding: 24px 40px;
}

.interview_detail--visual .profile::after {
  position: absolute;
  right: 8px;
  bottom: -59px;
  content: "Profile";
  font-family: satisfy, sans-serif;
  color: #63d8b7;
  font-size: 266%;
  letter-spacing: 0;
}

.interview_detail--visual .profile .name {
  font-size: 213%;
  letter-spacing: 0.14em;
  line-height: 1;
  margin: 5px 0 14px;
}

.interview_detail--visual .profile .info {
  line-height: 1.8;
}

.interview_detail--visual .link {
  position: absolute;
  left: 2vw;
  bottom: 30px;
  font-size: 160%;
  line-height: 1;
  color: #fff;
}

.interview_detail--visual .link a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(45deg);
  margin-right: 12px;
}

.interview_detail--section:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.interview_detail--section:not(:last-of-type) {
  margin-bottom: 134px;
}

.interview_detail--section .img {
  width: 600px;
  height: 600px;
  margin-right: 80px;
}

.interview_detail--section:nth-of-type(2n) .img {
  margin-left: 80px;
  margin-right: 0;
}

.interview_ex {
  flex: 1;
}

.interview_ex dd:not(:last-of-type) {
  margin-bottom: 48px;
}

@media only screen and (max-width: 1200px) {

  .interview_detail--section,
  .interview_detail--section:nth-of-type(2n) {
    flex-direction: column;
  }

  .interview_detail--section .img,
  .interview_detail--section:nth-of-type(2n) .img {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 60px;
  }

  .interview_ex {
    padding: 0 10%;
  }
}

@media only screen and (max-width: 768px) {
  .interview_detail--visual {
    padding: 0;
  }

  .interview_detail--visual .visual {
    min-height: 55vh;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 158px 24px 70px;
  }

  .interview_detail--visual .catch {
    margin-left: 0;
  }

  .interview_detail--visual .catch strong.font-jp-min {
    font-size: 6vw;
  }

  .interview_detail--visual .catch .num {
    top: -80px;
    right: auto;
    width: 60px;
    height: 60px;
    padding-top: 13px;
  }

  .interview_detail--visual .catch .num small {
    width: 69%;
    margin: 0 auto 8px;
  }

  .interview_detail--visual .catch .num strong.font-num {
    font-size: 175%;
  }

  .interview_detail--visual .catch .num strong.font-en {
    left: -12%;
    bottom: -16px;
    font-size: 204%;
  }

  .interview_detail--visual .profile {
    position: static;
    align-self: flex-end;
    background-color: rgba(255, 255, 255, 0.85);
    min-width: 200px;
    padding: 12px 20px 14px;
    margin-top: 28px;
  }

  .interview_detail--visual .profile .name {
    font-size: 174%;
    margin: 2px 0 8px;
  }

  .interview_detail--visual .profile .job,
  .interview_detail--visual .profile .info {
    font-size: 82%;
  }

  .interview_detail--visual .profile .info {
    line-height: 1.75;
  }

  .interview_detail--visual .link a::before {
    margin-right: 6px;
    margin-left: 16px;
  }

  .interview_detail--section {
    flex-wrap: wrap;
  }

  .interview_detail--section:not(:last-of-type) {
    margin-bottom: 44px;
  }

  .interview_detail--section .img {
    width: 100%;
    height: 300px;
    background-size: cover;
    margin-right: 0;
    margin-bottom: 24px;
  }

  .interview_detail--section:nth-of-type(2n) .img {
    margin-left: 0;
  }

  .interview_ex {
    padding: 0;
  }

  .interview_ex .heading-2 br {
    display: none;
  }

  .interview_detail .profile {
    border-top: 1px solid #999;
    padding-top: 34px;
  }

  .interview_detail .profile .imgarea {
    width: 155px;
    height: 180px;
    margin-right: 24px;
    background-size: cover;
    background-position: top 15% center;
  }

  .interview_detail .profile .txtarea {
    flex: 1;
  }

  .interview_detail .profile h3 {
    font-size: 174%;
  }
}

/* ##############################################################################

    FORMY

############################################################################## */
#formy_form table {
  width: 100%;
}

#formy_form th,
#formy_form td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: solid 1px #eee;
}

#formy_form th {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
  width: 34%;
}

#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form table textarea {
  width: 100%;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  vertical-align: bottom;
}

#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form select,
#formy_form textarea {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 100%;
}

#formy_form textarea {
  height: 100px;
}

#formy_form select {
  height: 40px;
}

#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#formy_form input:hover {
  opacity: 0.7;
}

#formy_form textarea:hover {
  opacity: 0.7;
}

#formy_form input:focus {
  outline: none;
}

#formy_form .parsley-validated {
  background-color: #eee;
}

#formy_form .parsley-error {
  background-color: #fee;
}

#formy_form .parsley-success {
  background-color: #fff;
}

.help_text {
  font-size: 85%;
  color: #999;
}

.hidden_help {
  display: none;
}

.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 85%;
  padding: 8px 16px;
}

.requiredIcon {
  background: #f55;
  color: #fff;
  margin: 0 0 0 1em;
  font-size: 70%;
  padding: 2px 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  float: right;
}

#formy_btn {
  padding-top: 32px;
  text-align: center;
}

#formy_btn input {
  min-width: 220px;
  padding: 16px 32px;
  margin-right: 4px;
  margin-left: 4px;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

#formy_form ul li input[type="radio"],
#formy_form ul li input[type="checkbox"] {
  display: none !important;
}

#formy_form ul li label {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 8px 0 40px;
  cursor: pointer;
}

#formy_form ul li label:hover {
  opacity: 0.7;
}

#formy_form ul li label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #788b93;
  left: 16px;
  top: 12px;
}

#formy_form ul li input[type="radio"]+label::before {
  border-radius: 10px;
}

#formy_form ul li input[type="radio"]:checked+label,
#formy_form ul li input[type="checkbox"]:checked+label {
  color: #e75f5f;
  font-weight: bold;
}

#formy_form ul li input[type="radio"]:checked+label::before,
#formy_form ul li input[type="checkbox"]:checked+label::before {
  border-color: #e75f5f;
}

#formy_form ul li input[type="radio"]:checked+label::after,
#formy_form ul li input[type="checkbox"]:checked+label::after {
  content: "";
  width: 10px;
  height: 18px;
  top: 4px;
  left: 20px;
  border-right: 2px solid #e75f5f;
  border-bottom: 2px solid #e75f5f;
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.formy_confirm {
  background-color: #4dbaff;
}

.formy_submit_disabled {
  background-color: #ccc;
}

#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}

.autoConfirmBack {
  background-color: #aaa;
}

.formy_send {
  background-color: #ff6600;
}

#total_required {
  padding: 16px;
  color: #f55555;
  text-align: center;
}

@media only screen and (max-width: 767px) {

  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  #formy_form th {
    border-bottom: none;
    padding-bottom: 0;
    white-space: normal;
    font-weight: bold;
  }

  #formy_form td {
    padding-top: 0;
  }

  #formy_btn {
    padding-top: 8px;
  }

  #formy_btn input {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    background-size: contain;
    background-position: center;
  }
}