@charset "UTF-8";
/* base
=========================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&family=Roboto:wght@500;700&display=swap");
/* mixin
=========================================== */
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "YuGothic", "Yu Gothic", "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 36px;
}

body {
  width: 100%;
  color: #333;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

html {
  font-size: 62.5%;
  font-family: "YuGothic", "Yu Gothic", "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

a {
  display: block;
  text-decoration: none;
  color: #333;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
a:hover {
  opacity: 0.7;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

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

.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .container {
    max-width: 94%;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.6;
}

.di {
  display: inline-block;
}

.inner {
  width: 1024px;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .inner {
    width: 90%;
    margin: 0 auto;
  }
}

/* device-only
=========================================== */
.pc-only1 {
  display: block;
}
@media (max-width: 768px) {
  .pc-only1 {
    display: none;
  }
}

.sp-only1 {
  display: none;
}
@media (max-width: 768px) {
  .sp-only1 {
    display: block;
  }
}

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

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

.pc-only3 {
  display: block;
}
@media (max-width: 960px) {
  .pc-only3 {
    display: none;
  }
}

.sp-only3 {
  display: none;
}
@media (max-width: 960px) {
  .sp-only3 {
    display: block;
  }
}

/* font
=========================================== */
html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, p {
  font-size: 16px;
  font-size: 1.6rem; /* 16px*/
  line-height: 36px;
  font-weight: 500;
}
@media (max-width: 768px) {
  body, p {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

span.line {
  background: -webkit-linear-gradient(transparent 70%, #FFEB3B 70%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #FFEB3B));
  background: linear-gradient(transparent 70%, #FFEB3B 70%);
  position: relative;
  display: inline;
}

p.txt {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 225% */
  margin-bottom: 36px;
}

.txtxs {
  font-size: 8rem;
  text-align: center;
  font-weight: bold;
}

/* iOS reset
=========================================== */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]:-webkit-search-decoration,
input[type=button]:-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

/* clearfix
=========================================== */
.clearfix:before,
.clearfix:after {
  content: "";
  display: block;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* link
=========================================== */
a {
  text-decoration: none;
}
a:hover, a:link, a:active {
  text-decoration: none;
}

a.link {
  text-decoration: none;
  color: #259DF4;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-bottom: 3px;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}
a.link:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #259DF4;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 1;
}
a.link:hover {
  color: #259DF4;
  opacity: 0.7;
}
a.link:hover:before {
  opacity: 1;
}

.linkBox {
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-bottom: 0;
}
.linkBox:before {
  display: none;
}
.linkBox:hover {
  color: #259DF4;
}

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

a > img {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
a > img:hover {
  opacity: 0.8;
}

/* btn
=========================================== */
.btn {
  max-width: 290px;
  width: 100%;
  height: 66px;
  text-align: center;
  padding: 0 20px 0 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  background: #00BDFF;
  border: solid 2px #00BDFF;
  overflow: hidden;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.btn:hover {
  opacity: 1;
  background: #fff;
}
.btn:hover .btn_txt {
  color: #00BDFF;
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
}
.btn:hover .hov_icon {
  display: block;
}
.btn:hover .btn_icon {
  display: none;
}
.btn .btn_txt {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn .btn_txt::after {
  content: attr(data-content);
  position: absolute;
  top: 120%;
  left: 0%;
}
.btn .btn_icon {
  width: 28px;
  height: auto;
}
.btn .hov_icon {
  display: none;
  width: 28px;
  height: auto;
}

.btn_w {
  background: #fff;
  border-color: #00BDFF;
}
.btn_w .btn_txt {
  color: #259DF4;
}
.btn_w:hover {
  background: #00BDFF;
}
.btn_w:hover .btn_txt {
  color: #fff;
}
.btn_w:hover .hov_icon {
  display: block;
}
.btn_w:hover .btn_icon {
  display: none;
}

/* title
=========================================== */
.section_title {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .section_title {
    margin-bottom: 2rem;
  }
}

.section_title_ja {
  font-size: 1.6rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .section_title_ja {
    font-size: 1.4rem;
  }
}

.section_title_en {
  font-family: Montserrat;
  font-size: 7rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #00BDFF;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .section_title_en {
    font-size: 5rem;
  }
}
@media (max-width: 375px) {
  .section_title_en {
    font-size: 4rem;
  }
}

/* flexbox
=========================================== */
.flex {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flex .flex_img {
  width: 45%;
  max-width: 100%;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 768px) {
  .flex .flex_img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.flex .flex_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.flex .flex_txt {
  width: 50%;
}
@media (max-width: 768px) {
  .flex .flex_txt {
    width: 100%;
  }
}

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

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

.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media only screen and (max-width: 768px) {
  .spFlexRow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
/* grid
=========================================== */
.grid {
  display: grid;
  gap: 30px 20px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  .grid {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 550px) {
  .grid {
    grid-template-rows: 15fr;
    grid-template-columns: 1fr;
  }
}

.grid1 {
  display: grid;
  gap: 30px;
}

/* section
=========================================== */
section {
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* header
=========================================== */
.header {
  position: static;
  top: -30px;
  width: 100%;
  line-height: 3;
  height: 80px;
  background: -webkit-linear-gradient(359deg, #ECFAFF 2.22%, #AFE7FF 81.13%);
  background: linear-gradient(91deg, #ECFAFF 2.22%, #AFE7FF 81.13%);
  z-index: 1000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media only screen and (max-width: 425px) {
  .header {
    height: 60px;
  }
}
.header_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  position: initial;
  height: 100%;
}
.header_logo {
  display: block;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 4rem;
  width: 20%;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 1025px) {
  .header_logo {
    width: 30%;
    margin-left: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .header_logo {
    width: 40%;
    margin-left: 3rem;
  }
}
@media only screen and (max-width: 425px) {
  .header_logo {
    width: 60%;
    margin-left: 2rem;
  }
}
.header_right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .header_right {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #d9f0f7;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    padding-top: 70px;
    z-index: 1000;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header_nav {
  margin-right: 3rem;
}
@media only screen and (max-width: 1024px) {
  .header_nav {
    width: 280px;
    margin: 0 auto;
    margin-bottom: 2rem;
  }
}
.header_nav .nav_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .header_nav .nav_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (max-width: 1024px) {
  .header_nav .nav_wrapper .nav_item {
    text-align: center;
  }
}
.header_nav .nav_wrapper .nav_item a {
  display: inline-block;
  padding: 1.6rem;
  font-weight: bold;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .header_nav .nav_wrapper .nav_item a {
    padding: 1rem 8rem 1.4rem 0;
    text-align: left;
    font-size: 2rem;
  }
}
.header_nav .nav_wrapper .nav_item a::before {
  position: absolute;
  content: "interview";
  top: -1.6rem;
  left: 0;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #00BDFF;
  text-transform: uppercase;
}
@media only screen and (min-width: 1025px) {
  .header_nav .nav_wrapper .nav_item a::before {
    display: none;
  }
}
.header_nav .nav_wrapper .nav_item a::after {
  /*アンダーラインのスタイル*/
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #0DC600;
  bottom: -15px;
  left: 0;
  /*横方向0で非表示にする*/
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  /*中央を基点にアニメーション*/
  -webkit-transform-origin: center top;
  transform-origin: center top;
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header_nav .nav_wrapper .nav_item a[href="/recruit/interview_list"]::before {
  content: "interview";
}
.header_nav .nav_wrapper .nav_item a[href="/recruit/message"]::before {
  content: "message";
}
.header_nav .nav_wrapper .nav_item a[href="/recruit/education"]::before {
  content: "education";
}
.header_nav .nav_wrapper .nav_item a[href="/recruit/welfare"]::before {
  content: "welfare";
}
.header_nav .nav_wrapper .nav_item a:hover {
  color: #00BDFF;
}
.header_nav .nav_wrapper .nav_item a:hover .nav_item a::after {
  color: #00BDFF;
  /*横方向等倍まで拡大*/
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header_nav .nav_wrapper .sponly {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: #00BDFF;
  font-weight: bold;
  margin-bottom: -14px;
}
.header_cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .header_cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header_cta .shinsotsu {
  background: #259DF4;
}
.header_cta .shinsotsu a {
  pointer-events: none;
  cursor: pointer;
}
.header_cta .shinsotsu .dropdown_lists {
  display: none; /*デフォルトでは非表示*/
  width: 240px;
  position: absolute;
  top: 80px;
  right: 0;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header_cta .shinsotsu:hover .dropdown_lists {
  display: block; /*新卒にホバーしたら表示*/
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header_cta .shinsotsu .dropdown_list {
  background-color: #fff;
  height: 70px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: relative;
}
.header_cta .shinsotsu .dropdown_list img {
  padding-bottom: 1.4rem;
}
.header_cta .shinsotsu .dropdown_list:hover {
  opacity: 0.5;
}
.header_cta .shinsotsu .dropdown_list a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  pointer-events: auto;
}
.header_cta .chuto {
  background: #00BDFF;
}
.header_cta a {
  line-height: 1.6;
  text-align: center;
  padding: 1.5rem 2rem;
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .header_cta .shinsotsu, .header_cta .chuto {
    width: 280px;
    margin: 0 auto;
  }
  .header_cta .shinsotsu a, .header_cta .chuto a {
    padding: 2rem 1.6rem;
    font-size: 1.8rem;
  }
  .header_cta .shinsotsu .spbr, .header_cta .chuto .spbr {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .header_cta .shinsotsu {
    margin-bottom: 8rem;
    position: relative;
  }
  .header_cta .shinsotsu a {
    border-radius: 8px 8px 0 0;
  }
  .header_cta .shinsotsu .dropdown_lists {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    top: 64px;
    width: 100%;
  }
}

.header_right.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body.active {
  position: fixed;
  height: 100%;
  overflow: hidden;
}

#header.js-fixed {
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/*humburger
=========================================== */
.btn_open {
  display: block;
  position: absolute;
  cursor: pointer;
  width: 50px;
  height: 50px;
  right: 3%;
  z-index: 1001;
}
@media (min-width: 1025px) {
  .btn_open {
    display: none;
  }
}

/*ボタン内側*/
.btn_open span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  background: #259DF4;
  width: 45%;
}
.btn_open span:nth-of-type(1) {
  top: 15px;
}
.btn_open span:nth-of-type(2) {
  top: 23px;
}
.btn_open span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/
.btn_open.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.btn_open.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.btn_open.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* entry
=========================================== */
.entry {
  background: #00BDFF;
}
.entry .section_title {
  margin-top: -140px;
  z-index: 2;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .entry .section_title {
    margin-top: -130px;
  }
}
@media only screen and (max-width: 768px) {
  .entry .section_title {
    margin-top: -90px;
  }
}
.entry .section_title_en {
  color: #259DF4;
}
.entry .container {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.entry .content {
  background: #fff;
  border-radius: 30px;
  width: 40%;
  min-height: 150px;
  padding: 2rem 0;
}
@media only screen and (max-width: 768px) {
  .entry .content {
    width: 80%;
  }
}
@media only screen and (max-width: 425px) {
  .entry .content {
    width: 100%;
  }
}
.entry .content .entry_txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.entry .content .entry_p {
  color: #333;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  position: relative;
}
.entry .content .entry_p:after {
  position: absolute;
  content: "";
  background-image: url(/recruit/common/img/link_icon.png);
  top: 16%;
  right: -37px;
  background-size: contain;
  vertical-align: middle;
  width: 24px;
  height: 24px;
}
.entry .shinsotsu .banner_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 2.4rem;
}
.entry .shinsotsu .banner_flex a {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .entry .shinsotsu {
    margin-bottom: 2rem;
  }
}
.entry .chuto {
  padding: 5.6rem;
}

/* footer
=========================================== */
#footer {
  position: relative;
  padding: 5rem 0 2rem 0;
  background-image: url(/recruit/common/img/footer_bg.jpg);
  background-size: cover;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #footer {
    padding: 40px 0 20px;
  }
}
#footer a, #footer p {
  color: #333;
  font-size: 1.4rem;
}
#footer .copy {
  text-align: center;
  font-size: 1.2rem;
}
#footer .footer_logo {
  text-align: center;
  margin-bottom: 40px;
  width: 40%;
}
@media only screen and (max-width: 768px) {
  #footer .footer_logo {
    width: 60%;
    margin-right: auto;
  }
}
@media only screen and (max-width: 425px) {
  #footer .footer_logo {
    width: 80%;
    margin-right: auto;
  }
}
#footer .sitemap_list {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  #footer .sitemap_list {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #footer .sitemap_item {
    margin-right: auto;
  }
}
#footer .sitemap_item a {
  padding: 1.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #footer .sitemap_item a {
    padding: 0.5rem 5rem 0.5rem 0;
  }
}
#footer .sitemap_item a:hover {
  opacity: 1;
  color: #00BDFF;
}

/* pagetop
=========================================== */
#page-top {
  position: absolute;
  bottom: 20px;
  right: 40px;
  z-index: 1001;
}
#page-top a .arrow_img {
  width: 54px;
  height: auto;
}
#page-top a .arrow_img img {
  width: 100%;
}

/* interview
=========================================== */
.interview_list {
  margin-bottom: 8rem;
}
.interview_list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.interview_list li .flex_image img {
  border-radius: 30px 30px 0 0;
}
.interview_list li .flex_text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  border-radius: 0 0 30px 30px;
  padding: 20px;
}
.interview_list li .flex_text ul {
  margin-bottom: 14px;
}
.interview_list li .flex_text ul li:not(:last-child) {
  margin-right: 6px;
}
.interview_list li .flex_text li {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
  background: #00BDFF;
  text-decoration: none;
  line-height: 2em;
  border-radius: 1em;
  padding: 0 1em;
  font-weight: bold;
}
.interview_list li .flex_text p {
  display: -webkit-box;
  -webkit-box-orirent: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
}
.interview_list li .flex_text .txts {
  margin-top: auto;
  color: #C7C7C7;
  font-size: 1.6rem;
}
.interview .swiper {
  overflow: visible;
  position: relative;
}
.interview .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.interview .swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.interview .swiper-slide {
  width: 324px;
  margin-right: 0 !important;
}
@media only screen and (max-width: 768px) {
  .interview .swiper-slide {
    width: 290px;
  }
}
.interview .btn_container {
  position: absolute;
  bottom: -14rem;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 150px;
}
@media only screen and (max-width: 768px) {
  .interview .btn_container {
    width: 134px;
    bottom: -6.6rem;
  }
}
.interview .swiper-button-next, .interview .swiper-button-prev {
  position: relative;
  background: #fff;
  border-radius: 50%;
  padding: 3rem;
}
@media only screen and (max-width: 768px) {
  .interview .swiper-button-next, .interview .swiper-button-prev {
    padding: 2.6rem;
  }
}
.interview .swiper-button-next:after, .interview .swiper-button-prev:after {
  font-size: 22px;
  font-weight: 900;
  color: #259DF4;
}
@media only screen and (max-width: 768px) {
  .interview .swiper-button-next:after, .interview .swiper-button-prev:after {
    font-size: 18px;
  }
}

/* topttl
=========================================== */
.topttl {
  position: relative;
  width: 100%;
  height: 350px;
  background-image: url(/recruit/common/img/under_mv.jpg);
  background-size: cover;
}
@media only screen and (max-width: 425px) {
  .topttl {
    height: 200px;
  }
}
.topttl_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  text-align: center;
}
.topttl_en {
  font-family: "Montserrat", sans-serif;
  font-size: 7rem;
  color: #00BDFF;
  font-weight: bold;
}
@media only screen and (max-width: 425px) {
  .topttl_en {
    font-size: 5rem;
  }
}
.topttl_ja {
  font-weight: bold;
}

/* h_deco
=========================================== */
.h2_deco01 {
  border-bottom: solid 2px #9FE6FF;
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.6;
  padding: 0 0 1rem 0;
}
@media only screen and (max-width: 425px) {
  .h2_deco01 {
    font-size: 2rem;
  }
}
.h2_deco01:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #00BDFF;
  bottom: -2px;
  width: 20%;
}

.h2_deco02 {
  position: relative;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 6.4rem;
  text-align: center;
}
.h2_deco02:after {
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #00BDFF;
}

/* margin
=========================================== */
.u_content {
  margin-bottom: 6.4rem;
}

/* others
=========================================== */
.movie {
  width: 70%;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 425px) {
  .movie {
    width: 100%;
  }
}
.movie p {
  background: #259DF4;
  color: #fff;
  font-size: 2rem;
  padding: 1.4rem;
  border-radius: 12px 12px 0 0;
  text-align: center;
}
.movie iframe {
  height: 375px;
}
@media only screen and (max-width: 768px) {
  .movie iframe {
    height: 260px;
  }
}
@media only screen and (max-width: 425px) {
  .movie iframe {
    height: 180px;
  }
}/*# sourceMappingURL=common.css.map */