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

common

======================================== */
.en_r {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
}

.is-fade > *:not(.is-not) {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade > .is-not {
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade.fadeIn > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.box-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.box-fade.fadeIn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p_hover a:hover {
  opacity: 0.7;
}

.svg.c_white svg {
  fill: #fff;
}
.svg.c_black svg {
  fill: #000;
}

.img-fit {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.img-fit::before {
  width: 100%;
  height: 0;
  content: '';
  display: block;
  padding-top: 100%;
  position: relative;
}
.img-fit img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.replace_img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.l_tel {
  pointer-events: none;
}

@media screen and (max-width: 800px) {
  .l_tel {
    pointer-events: auto;
  }
}
/* ========================================

link

======================================== */
.link_arrow a::after {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 800px) {
  .link_arrow a:hover {
    opacity: 0.7;
  }
  .link_arrow a:hover::after {
    translate: 4px 0px;
  }
}

.cmn_link {
  position: relative;
  padding: 120px 0;
  z-index: 10;
}
.cmn_link_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cmn_link .link {
  width: 48.3334%;
}
.cmn_link .link a {
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.06em;
  width: 100%;
  height: 150px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
}
.cmn_link .link a::after {
  width: 116px;
  height: 122px;
  display: block;
  position: absolute;
  right: 48px;
  bottom: 0;
  content: '';
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: contain;
}
@media screen and (min-width: 800px) {
  .cmn_link .link a:hover {
    opacity: 0.6;
  }
}
.cmn_link .link._about a {
  background-color: var(--c_blue);
}
.cmn_link .link._about a::after {
  background-image: url(../img/common/cmn_link_illust01.png);
}
.cmn_link .link._initiative a {
  background-color: var(--c_orange);
}
.cmn_link .link._initiative a::after {
  background-image: url(../img/common/cmn_link_illust02.png);
}

@media screen and (max-width: 800px) {
  .cmn_link {
    padding: 0;
  }
  .cmn_link .link {
    width: 50%;
  }
  .cmn_link .link a {
    font-size: 13px;
    height: 110px;
    border-radius: 0;
  }
  .cmn_link .link a::after {
    width: 100%;
    height: 58px;
    right: 0;
    position: absolute;
    bottom: 50%;
    translate: 0% -29px;
  }
  .cmn_link .link a span {
    width: 83.7334%;
    height: 58px;
    display: block;
    background-color: #fff;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cmn_link .link._about a {
    color: var(--c_blue);
    background-color: var(--c_blue);
  }
  .cmn_link .link._about a::after {
    background-image: url(../img/common/cmn_link_illust01_sp.png);
  }
  .cmn_link .link._initiative a {
    color: var(--c_orange);
    background-color: var(--c_orange);
  }
  .cmn_link .link._initiative a::after {
    background-image: url(../img/common/cmn_link_illust02_sp.png);
  }
}
/* ========================================

column

======================================== */
.column_list_item a, .cmn_column_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 800px) {
  .column_list_item a:hover .img img, .cmn_column_list_item a:hover .img img {
    opacity: 0.7;
  }
  .column_list_item a:hover h3, .cmn_column_list_item a:hover h3,
  .column_list_item a:hover .date,
  .cmn_column_list_item a:hover .date,
  .column_list_item a:hover .txt,
  .cmn_column_list_item a:hover .txt {
    color: var(--c_blue);
  }
}
.column_list_item .img, .cmn_column_list_item .img {
  aspect-ratio: 335 / 216;
  overflow: hidden;
  margin-bottom: 22px;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.column_list_item .img img, .cmn_column_list_item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.column_list_item h3, .cmn_column_list_item h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.88;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.column_list_item .cat, .cmn_column_list_item .cat {
  margin-bottom: 16px;
}
.column_list_item .cat span, .cmn_column_list_item .cat span {
  color: var(--c_blue);
  font-size: 13px;
  display: inline-block;
  padding: 5.5px 13px;
  border: 1px solid var(--c_blue);
  border-radius: 50px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.column_list_item .date, .cmn_column_list_item .date {
  color: #666;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.column_list_item .txt, .cmn_column_list_item .txt {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 800px) {
  .column_list_item .img, .cmn_column_list_item .img {
    margin-bottom: 6px;
    background-color: transparent;
    border-radius: 7px;
  }
  .column_list_item h3, .cmn_column_list_item h3 {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .column_list_item .cat, .cmn_column_list_item .cat {
    margin-bottom: 3px;
    scale: 0.8;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .column_list_item .cat span, .cmn_column_list_item .cat span {
    font-size: 10px;
  }
  .column_list_item .date, .cmn_column_list_item .date {
    font-size: 10px;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
/* ========================================

column

======================================== */
.cmn_column {
  padding: 85px 0;
  background-image: url(../img/common/cmn_column_bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cmn_column_title {
  max-width: 1086px;
  margin: 0 auto 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cmn_column_title .illust {
  width: 157px;
  margin-right: 48px;
}
.cmn_column_title h2 {
  width: 194px;
  margin-bottom: 15px;
}
.cmn_column_title .desc {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.08em;
}
.cmn_column_list {
  width: 100%;
}
.cmn_column_list_inner {
  margin-bottom: 68px;
}
.cmn_column_list_inner .slick-arrow {
  width: 48px;
  height: 48px;
  top: 108px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.cmn_column_list_inner .slick-arrow::before {
  width: 12px;
  height: 8.5px;
  display: block;
  content: '';
  background-color: #000;
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.cmn_column_list_inner .slick-arrow.slick-prev {
  left: 40px;
}
.cmn_column_list_inner .slick-arrow.slick-prev::before {
  margin-right: 2px;
  scale: -1 1;
}
.cmn_column_list_inner .slick-arrow.slick-next {
  right: 40px;
}
.cmn_column_list_inner .slick-arrow.slick-next::before {
  margin-left: 2px;
}
.cmn_column_list_inner .slick-arrow:hover {
  opacity: 0.4;
}
.cmn_column_list_item {
  width: 335px;
  margin-left: 46px;
}
.cmn_column .link {
  position: relative;
  z-index: 2;
}
.cmn_column .link a {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.06em;
  width: 300px;
  height: 50px;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 0 20px 2px;
  background-color: var(--c_blue);
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cmn_column .link a::after {
  width: 9px;
  height: 5.8px;
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 2.4px);
  right: 18px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@media screen and (max-width: 800px) {
  .cmn_column {
    padding: 28px 0 48px;
  }
  .cmn_column_title {
    display: block;
    margin-bottom: 32px;
  }
  .cmn_column_title .illust {
    width: 141px;
    margin: 0 auto 24px;
  }
  .cmn_column_title h2 {
    width: 187px;
    margin: 0 auto 10px;
  }
  .cmn_column_title .desc {
    font-size: 17px;
    line-height: 1.76;
    letter-spacing: 0;
    width: 82.1334%;
    margin: 0 auto;
  }
  .cmn_column_list {
    width: 89.3334%;
    margin: 0 auto 40px;
  }
  .cmn_column_list_inner {
    margin-bottom: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cmn_column_list_item {
    width: 45.7972%;
    margin: 0 0 15px;
  }
}
/* ========================================

page_title

======================================== */
.page_title {
  color: var(--c_orange);
  max-width: 1100px;
  position: relative;
  margin: 0 auto 82px;
  padding-top: 82px;
  padding-bottom: 18px;
  border-bottom: 2px solid #c4c4c4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page_title::before {
  width: 136px;
  height: 2px;
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  background-color: var(--c_orange);
  z-index: 2;
}
.page_title::after {
  width: 82px;
  height: 90px;
  display: block;
  content: '';
  position: absolute;
  right: 10px;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: contain;
  z-index: 2;
}
.page_title h1 {
  font-size: 30px;
  letter-spacing: 0.1em;
}
.page_title .en {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media screen and (max-width: 800px) {
  .page_title {
    width: 86.4307%;
    margin-bottom: 30px;
    padding: 0 0 12px;
  }
  .page_title h1 {
    font-size: 18px;
  }
  .page_title .en {
    font-size: 10px;
    scale: 0.8;
    margin-bottom: 6px;
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
  }
}
/* ========================================

hl01

======================================== */
.hl01 {
  color: var(--c_orange);
  font-size: 24px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hl01::before {
  width: 4px;
  height: 22px;
  display: block;
  content: '';
  margin-right: 24px;
  background-color: var(--c_orange);
  translate: 0 2px;
}

@media screen and (max-width: 800px) {
  .hl01 {
    font-size: 15px;
  }
  .hl01::before {
    width: 3px;
    height: 14px;
    margin-right: 15px;
    translate: 0 1px;
  }
}
.footer {
  margin-top: -70px;
  padding-top: 0;
}
.footer_slide {
  display: none;
}

@media screen and (max-width: 800px) {
  .footer {
    margin-top: -35px;
  }
}
/* ========================================

intro

======================================== */
.intro {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: -100px;
  padding-top: 130px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), color-stop(73%, #ffeadb));
  background: linear-gradient(0deg, #fff 0%, #ffeadb 73%);
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), color-stop(15%, rgba(255, 234, 219, 0.6)), color-stop(73%, #ffeadb));
  background: linear-gradient(0deg, #fff 0%, rgba(255, 234, 219, 0.6) 15%, #ffeadb 73%);
}
.intro_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.intro_title {
  width: 14.2021%;
  position: relative;
  margin-left: 9.5901%;
  padding-bottom: 30px;
  padding-bottom: clamp(43px, 3.1479vw, 62px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.intro_title .title {
  color: #00b2cc;
  width: 194px;
  height: 194px;
  margin-bottom: 40px;
  background-image: url(../img/recruit/page_title_bg.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.intro_title .title .en {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
}
.intro_title .title h1 {
  font-size: 21.4px;
  letter-spacing: 0.08em;
}
.intro_title h2 {
  position: relative;
  z-index: 2;
}
.intro_title h2 span {
  width: 80px;
  display: block;
}
.intro_title .img {
  width: 35.8712vw;
  min-width: 490px;
  max-width: 700px;
  position: absolute;
  right: 0;
  bottom: 0;
  margin-right: clamp(-200px, -54.6392%, -106px);
  z-index: 1;
  translate: 0% 100%;
}
.intro_title .img img {
  position: relative;
  z-index: 1;
  border-radius: 400px;
}
@media screen and (min-width: 800px) {
  .intro_title .img::before {
    width: 19.3878%;
    height: 138px;
    display: block;
    content: '';
    position: absolute;
    top: -111px;
    right: 9%;
    background-image: url(../img/recruit/intro_illust01.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
  }
}
.intro_cont {
  width: 69.7658%;
  position: relative;
  padding-bottom: 150px;
}
.intro_cont .img01 {
  position: relative;
  overflow: hidden;
  margin-bottom: 75px;
  border-radius: 1000px 0 0 1000px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 0;
}
.intro_cont .txt {
  font-size: 20px;
  font-weight: 300;
  line-height: 2.05;
  letter-spacing: 0.18em;
  position: relative;
  margin-left: 13.7461%;
  z-index: 2;
}
.intro_cont .img02 {
  width: 27.807%;
  position: absolute;
  right: 92px;
  bottom: 55px;
  z-index: 1;
}
.intro_cont .img02 img {
  position: relative;
  border-radius: 50%;
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .intro_cont .img02::before {
    width: 83px;
    height: 108px;
    display: block;
    content: '';
    position: absolute;
    top: -103px;
    right: 50%;
    background-image: url(../img/recruit/intro_illust02.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    z-index: 1;
    translate: 50% 0%;
  }
}

@media screen and (min-width: 2000px) {
  .intro_inner {
    max-width: 2000px;
    margin: 0 auto;
  }
  .intro_cont .img01 {
    height: 863.8px;
    border-radius: 1000px;
  }
}
@media screen and (max-width: 800px) {
  .intro {
    margin-top: -75px;
  }
  .intro_inner {
    display: block;
  }
  .intro_title {
    width: 100%;
    display: block;
    margin-left: 0;
    margin-bottom: 22px;
    padding-bottom: 0;
  }
  .intro_title .title {
    width: 120px;
    height: 120px;
    position: absolute;
    top: -46px;
    left: 3.2%;
    margin: 0;
    z-index: 2;
  }
  .intro_title .title .en {
    font-size: 10px;
    margin-bottom: 0;
    scale: 0.9;
  }
  .intro_title .title h1 {
    font-size: 16px;
    margin-top: 4px;
  }
  .intro_title h2 {
    margin-left: 4.8%;
  }
  .intro_title h2 span {
    width: 293px;
  }
  .intro_title .img02 {
    width: calc(100% - 57px);
    max-height: 300px;
    aspect-ratio: 953 / 590;
    overflow: hidden;
    margin-bottom: 40px;
    margin-left: auto;
    position: relative;
    border-radius: 500px 0 0 500px;
    z-index: 1;
  }
  .intro_title .img02 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0;
  }
  .intro_cont {
    width: 100%;
    padding-bottom: 0;
  }
  .intro_cont .txt {
    font-size: 16px;
    width: 90.4%;
    margin: 0 auto 27px;
  }
  .intro_cont .img02 {
    width: 100%;
    position: relative;
    right: auto;
    bottom: auto;
  }
  .intro_cont .img02 img {
    border-radius: 0;
  }
  .intro_cont .img02::before {
    width: 100%;
    height: 85px;
    display: block;
    content: '';
    background-image: url(../img/recruit/intro_illust01_sp.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
  }
}
/* ========================================

interview

======================================== */
.interview {
  background-color: #d4e6e8;
}
.interview_nav {
  color: #fff;
  padding: 50px 0 75px;
  background-color: #00b2cc;
}
.interview_nav .en {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.interview_nav h2 {
  font-size: 23px;
  text-align: center;
  letter-spacing: 0.16em;
  margin-bottom: 58px;
}
.interview_nav ul {
  max-width: 812px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.interview_nav ul li {
  width: 395px;
  overflow: hidden;
  border-radius: 16.5px;
  background-color: #fff;
}
.interview_nav ul li a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.interview_nav ul li a::before {
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.55)), color-stop(47%, rgba(0, 0, 0, 0.02)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.02) 47%);
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .interview_nav ul li a:hover {
    opacity: 0.8;
  }
}
.interview_nav ul li .img {
  position: relative;
  z-index: 1;
}
.interview_nav ul li .desc {
  font-size: 15px;
  line-height: 1.64;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 28px 16px;
  z-index: 3;
}
.interview_nav ul li .desc small {
  font-size: 13px;
  font-weight: 300;
}
.interview_list {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 110px;
}
.interview_list_item {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding-top: 105px;
}
.interview_list_item .img01 {
  margin-bottom: 38px;
}
.interview_list_item .img01 img {
  border-radius: 25px;
}
.interview_list_item .num {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  color: #00b2cc;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
.interview_list_item h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.interview_list_item .name {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 78px;
}
.interview_list_item .name small {
  font-size: 15px;
}
.interview_list_item .t {
  font-size: 18px;
  font-weight: 300;
  line-height: 2.3;
  letter-spacing: 0.1em;
}
.interview_list_item .t:not(:last-child) {
  margin-bottom: 2.5em;
}
.interview_list_item .box_img {
  margin-bottom: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.interview_list_item .box_img .img {
  width: 47.5%;
}
.interview_list_item .box_img .img img {
  border-radius: 13px;
}
.interview_list_item .img02 {
  width: 600px;
  margin: 0 auto 83px;
}
.interview_list_item .img02 img {
  border-radius: 18.5px;
}
.interview_list_item .link {
  position: relative;
  z-index: 2;
}
.interview_list_item .link a {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.06em;
  width: 255px;
  height: 45px;
  display: block;
  position: relative;
  margin: 0 auto;
  padding-bottom: 2px;
  border: 1px solid var(--c_blue);
  background-color: var(--c_blue);
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 800px) {
  .interview_list_item .link a:hover {
    color: var(--c_blue);
    background-color: #fff;
  }
}

@media screen and (max-width: 800px) {
  .interview_nav {
    padding: 33px 0 45px;
  }
  .interview_nav .en {
    font-size: 13px;
    margin-bottom: 13px;
  }
  .interview_nav h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .interview_nav ul {
    width: 90.4%;
    margin: 0 auto;
    display: block;
  }
  .interview_nav ul li {
    width: 100%;
    border-radius: 14px;
  }
  .interview_nav ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .interview_nav ul li .desc {
    font-size: 12.2px;
  }
  .interview_nav ul li .desc small {
    font-size: 11px;
  }
  .interview_list {
    width: 90.4%;
    padding-bottom: 72px;
  }
  .interview_list_item {
    padding-top: 39px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .interview_list_item .img01 {
    margin-bottom: 16px;
  }
  .interview_list_item .img01 img {
    border-radius: 10.7px;
  }
  .interview_list_item .num {
    font-size: 15px;
    text-align: center;
    width: 100%;
    margin-bottom: 19px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .interview_list_item h3 {
    font-size: 20px;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .interview_list_item .name {
    font-size: 12.8px;
    margin-bottom: 55px;
  }
  .interview_list_item .name small {
    font-size: inherit;
  }
  .interview_list_item .t {
    font-size: 16px;
    line-height: 2;
  }
  .interview_list_item .t:not(:last-child) {
    margin-bottom: 2em;
  }
  .interview_list_item .box_img {
    margin-top: -12px;
    margin-bottom: 26px;
  }
  .interview_list_item .box_img .img img {
    border-radius: 5px;
  }
  .interview_list_item .img02 {
    width: 100%;
    margin-top: -10px;
    margin-bottom: 46px;
  }
  .interview_list_item .img02 img {
    border-radius: 10.5px;
  }
}
/* ========================================

info

======================================== */
.info {
  width: 860px;
  margin: 0 auto;
  padding: 86px 0 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info h2 {
  color: var(--c_orange);
  font-size: 24px;
  letter-spacing: 0.08em;
  margin-bottom: 74px;
}
.info_list {
  width: 100%;
  margin-bottom: 43px;
}
.info_list li {
  width: 100%;
  padding: 31px 0 34px;
  border: 1px solid #cbcbcb;
  border-radius: 18.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info_list li:not(:last-child) {
  margin-bottom: 40px;
}
.info_list li .sub {
  color: #808080;
  font-size: 15px;
  letter-spacing: 0.06em;
  width: 160px;
  padding-left: 2.6em;
}
.info_list li dl dt {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
.info_list li dl dd {
  font-size: 17px;
  line-height: 1.64;
  letter-spacing: 0.06em;
}
.info .txt {
  font-size: 19px;
  line-height: 1.97;
  margin-bottom: 80px;
}
.info .link a {
  color: var(--c_orange);
  font-size: 16px;
  letter-spacing: 0.1em;
  width: 255px;
  height: 46px;
  cursor: pointer;
  margin: 0 auto;
  border: 1px solid var(--c_orange);
  border-radius: 50px;
  -webkit-transition: all .2s;
  transition: all .2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 800px) {
  .info .link a:hover {
    color: #fff;
    background-color: var(--c_orange);
  }
}

@media screen and (max-width: 800px) {
  .info {
    width: 90.4%;
    padding: 43px 0 72px;
  }
  .info h2 {
    font-size: 22px;
    margin-bottom: 38px;
  }
  .info_list {
    margin-bottom: 23px;
  }
  .info_list li {
    padding: 22px 0;
    display: block;
  }
  .info_list li:not(:last-child) {
    margin-bottom: 26px;
  }
  .info_list li .sub {
    font-size: 19px;
    width: 100%;
    text-align: center;
    padding: 0;
    margin-bottom: 30px;
  }
  .info_list li dl {
    width: 88.2006%;
    margin: 0 auto;
  }
  .info_list li dl dt {
    margin-bottom: 29px;
  }
  .info_list li dl dd {
    font-size: 17px;
  }
  .info .txt {
    margin-bottom: 60px;
  }
}
/* ========================================

message

======================================== */
.message {
  color: #fff;
  padding: 100px 0 calc(347px + 70px);
  background-image: url(../img/recruit/message_bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: cover;
}
.message h2 {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 71px;
}
.message h2 span {
  padding: 0 8px 9px;
  border-bottom: 1px solid #fff;
}
.message_inner {
  max-width: 680px;
  margin: 0 auto 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.message_inner h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.22em;
}
@media screen and (min-width: 800px) {
  .message_inner h3 {
    width: 6em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
.message_inner .txt {
  font-size: 17px;
  font-weight: 300;
  line-height: 2.26;
  letter-spacing: 0.08em;
}
.message .link a {
  font-size: 16px;
  letter-spacing: 0.1em;
  width: 255px;
  height: 46px;
  cursor: pointer;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 50px;
  -webkit-transition: all .2s;
  transition: all .2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 800px) {
  .message .link a:hover {
    color: #00b2cc;
    background-color: #fff;
  }
}

@media screen and (max-width: 800px) {
  .message {
    padding: 70px 0 190px;
    background-image: url(../img/recruit/message_bg_sp.jpg);
  }
  .message h2 {
    font-size: 20.7px;
    margin-bottom: 27px;
  }
  .message_inner {
    display: block;
    margin-bottom: 30px;
  }
  .message_inner h3 {
    font-size: clamp(18px, 5.8667vw, 22px);
    font-weight: 400;
    text-align: center;
    line-height: 1.9;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
  }
  .message_inner .txt {
    font-size: 18px;
    line-height: 2;
    width: 90.4%;
    margin: 0 auto;
  }
}
