@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

html {
  color: #000;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}
html.is-fixed {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

#wrapper,
.outer-block {
  min-width: 1080px;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

#wrapper {
  min-width: 320px;
  position: relative;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .inner-block {
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 100%;
  padding: 0 30px 0 60px;
}
.c-header .hderCenterLogo img {
  z-index: 1;
}
.c-header .logo {
  font-size: 0;
}
.c-header .logo img {
  height: 21px;
}
.c-header.has-shadow {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.c-menu {
  background: #fff;
  display: none;
  position: absolute;
  top: 100%;
  left: unset;
  right: 0;
  width: 70%;
  height: 100%;
  overflow-y: auto;
}
.c-menu .list > li {
  border-bottom: 1px solid gray;
}
.c-menu .list-sub {
  display: none;
}
.c-menu .list-sub > li {
  border-top: 1px solid gray;
}
.c-menu .item,
.c-menu .item-sub {
  display: block;
  font-size: 15px;
  font-weight: bold;
  padding: 14px 0;
}
.c-menu .item br,
.c-menu .item-sub br {
  display: none;
}
.c-menu .item:not(:only-child) {
  position: relative;
}
.c-menu .item:not(:only-child)::before {
  border: solid gray;
  border-width: 0 2px 2px 0;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 3px;
  right: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 7px;
  height: 7px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-menu .item:not(:only-child).is-open::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.c-menu .item-sub {
  padding-left: 25px;
  position: relative;
}
.c-menu .item-sub::before {
  background: gray;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
}

.c-menu-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 45px;
}
.c-menu-btn .inn {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 20px;
  height: 13px;
}
.c-menu-btn .line:nth-of-type(2)::after {
  top: 0;
  content: "";
}
.c-menu-btn .line,
.c-menu-btn .line:nth-of-type(2)::after {
  background: #fff;
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-menu-btn .line:nth-of-type(1) {
  top: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.c-menu-btn .line:nth-of-type(3) {
  top: 12px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.c-menu-btn .line:nth-of-type(2) {
  top: 6px;
}
.c-menu-btn .line:nth-of-type(1), .c-menu-btn .line:nth-of-type(3) {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.c-menu-btn.is-open .line:nth-of-type(1), .c-menu-btn.is-open .line:nth-of-type(3) {
  -webkit-transform: scaleX(0) translate3d(0, 0, 0);
          transform: scaleX(0) translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.c-menu-btn.is-open .line:nth-of-type(2), .c-menu-btn.is-open .line:nth-of-type(2)::after {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.c-menu-btn.is-open .line:nth-of-type(2) {
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
          transform: rotate(45deg) translate3d(0, 0, 0);
}
.c-menu-btn.is-open .line:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg) translate3d(0, 0, 0);
          transform: rotate(90deg) translate3d(0, 0, 0);
}
.c-menu-btn.is-open .c-menu {
  opacity: 1;
}

#cover-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  background: rgba(102, 102, 102, 0.6);
  z-index: 100;
}

.c-menu-btn {
  border-radius: 100%;
  cursor: pointer;
  display: block;
  font-size: 0;
  margin: auto;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transition: 1.5s 0.3s ease-in-out;
  transition: 1.5s 0.3s ease-in-out;
  -webkit-transition-property: background, top;
  transition-property: background, top;
  z-index: 102;
}
.c-menu-btn .inn {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 23px;
  height: 16px;
}
.c-menu-btn .line:nth-of-type(2)::after {
  top: 0;
  content: "";
}
.c-menu-btn .line,
.c-menu-btn .line:nth-of-type(2)::after {
  background: #333;
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-menu-btn .line:nth-of-type(1) {
  top: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.c-menu-btn .line:nth-of-type(3) {
  top: 14px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.c-menu-btn .line:nth-of-type(2) {
  top: 7px;
}
.c-menu-btn .line:nth-of-type(1), .c-menu-btn .line:nth-of-type(3) {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.c-menu-btn.is-open .line:nth-of-type(1), .c-menu-btn.is-open .line:nth-of-type(3) {
  -webkit-transform: scaleX(0) translate3d(0, 0, 0);
          transform: scaleX(0) translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.c-menu-btn.is-open .line:nth-of-type(2), .c-menu-btn.is-open .line:nth-of-type(2)::after {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.c-menu-btn.is-open .line:nth-of-type(2) {
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
          transform: rotate(45deg) translate3d(0, 0, 0);
}
.c-menu-btn.is-open .line:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg) translate3d(0, 0, 0);
          transform: rotate(90deg) translate3d(0, 0, 0);
}

.c-menu {
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  overflow: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 0;
}
.c-menu.is-open {
  z-index: 101;
  pointer-events: auto;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.c-menu .inner {
  padding: 0 20px;
  padding-top: 30px;
}
.c-menu .box,
.c-menu .sub-box {
  position: relative;
}
.c-menu .box {
  background-color: #fff;
  border-top: 1px solid gainsboro;
}
.c-menu .box a {
  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;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 20px;
}
.c-menu .box a .sub-txt {
  color: #4DC9FF;
  font-size: 13px;
}
.c-menu .box a img {
  max-width: 25px;
  margin: 0;
  margin-right: 10px;
}
.c-menu .box:first-child {
  margin-top: 48px;
}
.c-menu .box:last-child {
  border-bottom: 1px solid gainsboro;
}
.c-menu .c-link-head,
.c-menu .sub-head {
  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;
}
.c-menu .c-link-head {
  font-size: 16px;
  height: 60px;
}
.c-menu .c-link-head + .sub-box {
  margin-top: -10px;
}
.c-menu .sub-head {
  cursor: pointer;
  font-weight: bold;
  height: 40px;
}
.c-menu .sub-head ~ .c-link-list {
  padding-top: 10px;
}
.c-menu .sub-box:last-child {
  padding-bottom: 10px;
}
.c-menu .c-link-list,
.c-menu .sub-head {
  padding-left: 28px;
}
.c-menu .c-link-list {
  display: none;
  padding-bottom: 20px;
}
.c-menu .c-link-list a {
  font-size: 13px;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .ttl01 {
  font-size: 47px;
  font-weight: bold;
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.home .ttl01 .sub-ttl {
  color: #4DC9FF;
  font-size: 28px;
  letter-spacing: 0.025em;
  display: inline-block;
  position: relative;
  padding-left: 34px;
}
.home .ttl01 .sub-ttl img {
  max-height: 36px;
  padding-right: 10px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.home .ttl01 h2 {
  font-size: 47px;
  font-weight: 700;
}
.home .c-btn-box {
  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;
}
.home .c-btn02, .home .c-btn01 {
  border-radius: 100px;
  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;
  -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;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  padding: 10px 50px;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 65px;
  background: #00AAEE;
  border: 2px solid #00AAEE;
}
.home .c-btn02 .c-svg, .home .c-btn01 .c-svg {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  height: 11px;
  aspect-ratio: 8/11;
}
.home .c-btn01 {
  background-size: 100% 200%;
  color: #fff;
  position: relative;
}
.home .c-btn01::before {
  content: "";
  position: absolute;
  right: 30px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.home .c-btn02 {
  background-size: 100% 200%;
  color: #fff;
  font-size: 22px;
  min-height: 60px;
  border-radius: 10px;
  background: #C9C9C9;
  border: 2px solid #C9C9C9;
  pointer-events: none;
}
.home .c-btn02.active {
  pointer-events: auto;
  background: #00AAEE;
  border: 2px solid #00AAEE;
}
.home .angle-bg {
  position: relative;
  background-color: rgba(77, 201, 255, 0.1);
  padding-top: 80px;
  padding-bottom: 80px;
}
.home .angle-bg:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0px;
  width: 100%;
  height: 0;
  border-style: solid;
  border-width: 30px 0 0 100vw;
  /*transparentで余分な線を消す*/
  border-color: transparent transparent transparent rgba(77, 201, 255, 0.1);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.home .angle-bg:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -21px;
  width: 0;
  height: 0;
  border-style: solid;
  /*ここで三角形のサイズを決める。必ず幅100vwにして、ブラウザサイズいっぱいにしてください。*/
  border-width: 40px 0 0 100vw;
  /*transparentで余分な線を消す*/
  border-color: rgba(77, 201, 255, 0.1) transparent transparent transparent;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.home .home-mv-section {
  position: relative;
}
.home .home-mv-section .swiper-wrapper img {
  width: 100%;
  height: 655px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .home-mv-section .txt-box {
  padding-top: 0;
  padding-bottom: 0;
  position: absolute;
  top: 345px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  font-weight: bold;
  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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.home .home-mv-section .txt-box .sub-txt {
  font-size: 30px;
  margin-bottom: 35px;
  padding: 10px;
  background: #fff;
  display: inline-block;
}
.home .home-mv-section .txt-box .txt {
  font-size: 52px;
  line-height: 1;
  padding: 24px 10px;
  background: #fff;
  margin-bottom: 64px;
  display: inline-block;
}
.home .link-area {
  padding-top: 20px;
}
.home .link-area .link-box {
  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;
}
.home .link-area .link-box .link {
  min-width: 200px;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.home .link-area .link-box .link .sub-txt {
  color: #4DC9FF;
  font-size: 13px;
}
.home .link-area .link-box .link:last-child {
  padding-right: 0;
}
.home .link-area .link-box .link + *::after {
  position: absolute;
  background: #000;
  content: "";
  margin: auto;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 70px;
  height: 3px;
  top: 0;
  bottom: 0;
  left: -30px;
  margin: auto;
}
.home .search-section {
  padding-top: 90px;
}
.home .search-section .tag-area {
  padding-top: 38px;
}
.home .search-section .tag-area ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 920px;
  margin: auto;
}
.home .search-section .tag-area ul li a {
  padding: 11px 40px;
  border: solid 2px #000;
  border-radius: 50px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: block;
  width: 100%;
  height: 100%;
}
.home .search-section .tag-area ul li a p {
  font-size: 16px;
  text-align: center;
}
.home .search-section .tag-area ul li.current a {
  background: #000;
  color: #fff;
}
.home .search-section .job-block {
  overflow: hidden;
}
.home .search-section .job-block .swiper-button-prev, .home .search-section .job-block .swiper-rtl .swiper-button-next {
  left: -80px;
  right: auto;
}
.home .search-section .job-block .swiper-button-next, .home .search-section .job-block .swiper-rtl .swiper-button-prev {
  right: -80px;
  left: auto;
}
.home .search-section .job-block .swiper-button-next:after, .home .search-section .job-block .swiper-button-prev:after {
  background: #000;
  color: #fff;
  padding: 20px 25px;
  border-radius: 50px;
}
.home .search-section .job-list {
  padding-top: 60px;
  padding-bottom: 10px;
}
.home .search-section .job-list li {
  height: 100%;
  border-radius: 4px;
  position: relative;
}
/* .home .search-section .job-list li:before {
  background: #4DC9FF;
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  margin: auto;
  height: 10%;
  width: 100%;
  border-radius: 4px;
  z-index: -2;
} */
.home .search-section .job-list li a {
  overflow: hidden;
  z-index: 0;
  border-radius: 0px 0px 0px 0px;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
}
.home .search-section .job-list li a:hover {
  opacity: 1;
}
.home .search-section .job-list li a .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home .search-section .job-list li a .img img {
  width: 100%;
  overflow: hidden;
}
.home .search-section .job-list li a .txt-box {
  background-size: 100% 200%;
  border-top: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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;
  padding: 10px 15px 20px 14px;
  background-color: #fff;
}
.home .search-section .job-list li a .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -5px;
}
.home .search-section .job-list li a .tag-list .tag {
  margin-left: 5px;
  background: #4DC9FF;
  border-radius: 100px;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  padding: 4px 10px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 5px;
}
.home .search-section .job-list li a .tag-list .tag + * {
  margin-left: 5px;
}
.home .search-section .job-list li a .ttl {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.588em;
  margin: 8px 0 17px;
}
.home .search-section .job-list li a .detail p {
  position: relative;
  padding-left: 35px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}
.home .search-section .job-list li a .detail p + * {
  margin-top: 15px;
}
.home .search-section .job-list li a .detail p:before {
  background-size: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  margin: auto;
  height: 20px;
  width: 20px;
}
.home .search-section .job-list li a .detail p.pay:before {
  background: url(../img/pay.svg) no-repeat center center;
  background-size: 100%;
  height: 27px;
  width: 27px;
  left: -2px;
}
.home .search-section .job-list li a .detail p.service:before {
  background: url(../img/service.svg) no-repeat center center;
  background-size: 100%;
  height: 20px;
  width: 20px;
}
.home .search-section .job-list li a .detail p.founding:before {
  background: url(../img/founding.svg) no-repeat center center;
  background-size: 100%;
  height: 20px;
  width: 20px;
}
.home .search-section .job-list li a .company {
  font-size: 14px;
  text-align: right;
  font-weight: bold;
  padding-top: 10px;
}
.home .search-section .swiper-pagination-bullet-active {
  background: #F18E38;
}
.home .search-section .swiper-pagination-horizontal, .home .search-section .swiper-pagination-custom, .home .search-section .swiper-pagination-fraction {
  bottom: 20px;
}
.home .search-section .swiper-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.2rem;
  text-align: center;
}
.home .search-section .swiper-controller {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 4.2rem;
}
.home .search-section .swiper-pagination {
  margin-right: auto;
}
.home .area-section {
  margin-top: 110px;
}
.home .area-section .area-list {
  padding-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.home .area-section .area-list li .img-box {
  width: 350px;
  height: 100px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.home .area-section .area-list li .img-box img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .area-section .area-list li .img-box .mask {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  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;
}
.home .area-section .area-list li + * {
  padding-left: 10px;
}
.home .area-section .pulldown-area {
  margin-top: 77px;
}
.home .area-section .pulldown-area .pulldown {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  border-radius: 5px;
}
.home .area-section .pulldown-area .pulldown select {
  padding-right: 1em;
  border: none;
  outline: none;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-overflow: ellipsis;
  cursor: pointer;
  font-size: 22px;
  text-align: center;
  text-align: -webkit-center;
  font-weight: bold;
  background: #fff;
  border: 3px solid #00AAEE;
  border-radius: 5px;
}
.home .area-section .pulldown-area .pulldown select::-ms-expand {
  display: none;
}
.home .area-section .pulldown-area .pulldown select option {
  padding: 11px 15px;
  top: 0;
  text-align: center;
  width: 100%;
  text-align: -webkit-center;
}
.home .area-section .pulldown-area .pulldown::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 40%;
  border: 10px solid transparent;
  border-top: 18px solid #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
  pointer-events: none;
}
.home .area-section .pulldown-area .pulldown::after {
  content: "";
  position: absolute;
  right: 0;
  width: 80px;
  height: 100%;
  background-color: #00AAEE;
  pointer-events: none;
  z-index: 0;
}
.home .area-section .c-btn-box {
  margin-top: 40px;
}
.home .interview-section {
  padding-top: 120px;
}
.home .interview-section .sub-ttl {
  padding-left: 60px;
  margin-bottom: 20px;
}
.home .interview-section .interview-list {
  margin-top: 70px;
}
.home .interview-section .interview-list li {
  position: relative;
}
.home .interview-section .interview-list li + * {
  margin-top: 30px;
}
.home .interview-section .interview-list li:before {
  background: #4DC9FF;
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  z-index: 0;
}
.home .interview-section .interview-list li .interview-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
.home .interview-section .interview-list li .interview-box .img-box {
  width: calc(33.3333333333% + 50px);
}
.home .interview-section .interview-list li .interview-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .interview-section .interview-list li .interview-box .txt-box {
  width: 66.6666666667%;
  padding: 45px 40px 45px 50px;
  background: #fff;
}
.home .interview-section .interview-list li .interview-box .txt-box .txt {
  font-size: 28px;
  font-weight: bold;
  padding-top: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .interview-section .interview-list li .interview-box .txt-box .name {
  font-size: 24px;
  font-weight: bold;
  padding-top: 40px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .job-section {
  margin: 100px 0;
}

.iphone .pulldown-area {
  text-align: -webkit-center !important;
  text-align: center;
}

.iphone select {
  text-align: -webkit-center !important;
  width: 100%;
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.mac .pulldown-area {
  text-align: -webkit-center !important;
  text-align: center;
}

.mac select {
  text-align: -webkit-center !important;
  padding-left: 70px !important;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */

@media only screen and (max-width: 640px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper,
  .outer-block {
    min-width: 320px;
  }
  .inner-block {
    padding: 0 20px;
  }
  /* レコメンドつけたら外す */
  /* .forrecommendation-space{
    padding-bottom: 60px;
  } */
  /* レコメンドつけたら外す */
  .pc {
    display: none !important;
  }
  .cover-bg {
    position: fixed;
    width: 100%;
    height: 200vh;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 888;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    pointer-events: none;
  }
  .cover-bg.is_active {
    opacity: 1;
    pointer-events: all;
  }
  .c-header .logo img {
    height: 15px;
  }
  .home .ttl01 {
    font-size: 25px;
  }
  .home .ttl01 .sub-ttl {
    font-size: 16px;
  }
  .home .ttl01 .sub-ttl img {
    max-height: 20px;
  }
  .home .ttl01 h2 {
    font-size: 24px;
  }
  .home .c-btn02, .home .c-btn01 {
    font-size: 14px;
    padding: 10px 20px 10px 15px;
    width: 100%;
    max-width: 205px;
    min-height: 50px;
    border-radius: 10px;
  }
  .home .c-btn02 .c-svg, .home .c-btn01 .c-svg {
    height: 8px;
    right: 15px;
  }
  .home .c-btn01::before {
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
  }
  .home .c-btn01 {
    font-size: 12px;
    letter-spacing: 0.1em;
    min-height: 40px;
    border-radius: 30px;
    max-width: 100%;
  }
  .home .angle-bg {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .home .angle-bg:before {
    left: 0px;
    width: 100%;
    top: -45px;
    border-width: 45px 0 0 100vw;
  }
  .home .angle-bg:after {
    bottom: -45px;
    border-width: 45px 0 0 100vw;
  }
  .home .home-mv-section .swiper-wrapper img {
    height: 580px;
  }
  .home .home-mv-section .txt-box {
    padding: 0 20px;
  }
  .home .home-mv-section .txt-box .sub-txt {
    font-size: 19px;
    margin-bottom: 10px;
    padding: 7px 10px;
  }
  .home .home-mv-section .txt-box .txt {
    font-size: 24px;
    padding: 10px 6px;
    margin-bottom: 0;
  }
  .home .link-area .link-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home .link-area .link-box .link {
    padding: 10px 20px;
  }
  .home .link-area .link-box .link + *::after {
    width: 100%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    height: 2px;
    left: 0;
    bottom: unset;
  }
  .home .search-section {
    padding-top: 35px;
  }
  .home .search-section .ttl01 .sub-ttl {
    padding-left: 20px;
  }
  .home .search-section .tag-area {
    padding-top: 10px;
  }
  .home .search-section .tag-area ul {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: -10px;
  }
  .home .search-section .tag-area ul li {
    margin-top: 8px;
    margin-left: 10px;
  }
  .home .search-section .tag-area ul li a {
    padding: 5px 15px;
    border: solid 1px #000;
  }
  .home .search-section .tag-area ul li a p {
    font-size: 13px;
    font-weight: 400;
  }
  .home .search-section .job-block .swiper {
    overflow: visible;
  }
  .home .search-section .job-list {
    padding-top: 28px;
  }
  .home .search-section .job-list li {
    max-width: 250px;
  }
  .home .search-section .job-list li a .img {
    max-height: 200px;
  }
  .home .search-section .job-list li a .txt-box {
    padding: 8px 8px 13px 16px;
  }
  .home .search-section .job-list li a .ttl {
    font-size: 14px;
    margin: 10px 0 20px;
  }
  .home .search-section .job-list li a .detail p {
    font-size: 12px;
    padding-left: 30px;
  }
  .home .search-section .job-list li a .detail p + * {
    margin-top: 18px;
  }
  .home .search-section .job-list li a .detail p:before {
    height: 15px;
    width: 15px;
  }
  .home .search-section .job-list li a .detail p.pay:before {
    height: 20px;
    width: 20px;
  }
  .home .search-section .job-list li a .detail p.service:before {
    height: 18px;
    width: 15px;
  }
  .home .search-section .job-list li a .detail p.founding:before {
    height: 20px;
    width: 20px;
  }
  .home .search-section .job-list li a .company {
    font-size: 14px;
    padding-top: 15px;
  }
  .home .search-section .swiper-controller {
    display: none;
  }
  .home .search-section .c-btn01 {
    margin-top: 35px;
  }
  .home .area-section {
    margin-top: 80px;
  }
  .home .area-section .sub-ttl {
    padding-left: 20px;
  }
  .home .area-section .area-list {
    padding-top: 28px;
  }
  .home .area-section .area-list li {
    width: 100%;
  }
  .home .area-section .area-list li .img-box {
    width: 100%;
  }
  .home .area-section .area-list li .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home .area-section .area-list li .img-box .mask {
    font-size: 18px;
  }
  .home .area-section .area-list li + * {
    padding-left: 0;
    padding-top: 16px;
  }
  .home .area-section .pulldown-area {
    margin-top: 40px;
  }
  .home .area-section .pulldown-area .pulldown {
    width: 100%;
    border-radius: 10px;
  }
  .home .area-section .pulldown-area .pulldown select {
    padding: 12px;
    padding-right: 52px;
    width: 100%;
    border-radius: 10px;
  }
  .home .area-section .pulldown-area .pulldown option {
    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;
  }
  .home .area-section .pulldown-area .pulldown::before {
    top: 45%;
    right: 18px;
    border: 6px solid transparent;
    border-top: 7px solid #fff; /* 好みで色を変えてください */
  }
  .home .area-section .pulldown-area .pulldown::after {
    width: 52px;
  }
  .home .area-section .c-btn-box {
    margin-top: 20px;
  }
  .home .interview-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home .interview-section .sub-ttl {
    padding-left: 30px;
    margin-bottom: 5px;
  }
  .home .interview-section .interview-list {
    margin-top: 30px;
  }
  .home .interview-section .interview-list li + * {
    margin-top: 18px;
  }
  .home .interview-section .interview-list li:before {
    top: 12px;
  }
  .home .interview-section .interview-list li .interview-box .logo {
    overflow: hidden;
    max-height: 20px;
  }
  .home .interview-section .interview-list li .interview-box .img-box {
    width: 60%;
  }
  .home .interview-section .interview-list li .interview-box .txt-box {
    width: 100%;
    padding: 10px 5px 12px 15px;
  }
  .home .interview-section .interview-list li .interview-box .txt-box .txt {
    font-size: 14px;
    padding-top: 10px;
  }
  .home .interview-section .interview-list li .interview-box .txt-box .name {
    font-size: 12px;
    padding-top: 20px;
  }
  .home .job-section {
    margin: 85px 0;
  }
  .home .job-section .sub-ttl {
    padding-left: 22px;
  }
  #interview .sub-ttl{
    padding-left: 30px;
  }
}

@media only screen and (min-width: 641px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding: 0 30px;
    /* padding: 0 30px 90px 0; */
    max-width: 1130px;
  }
  /* レコメンドつけたら外す */
  .forrecommendation-space{
    padding-bottom: 100px;
  }
  /* レコメンドつけたら外す */
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-menu-btn {
    display: none;
  }
  .c-menu-btn {
    display: none;
  }
  .home .c-btn02:hover, .home .c-btn01:hover {
    background-color: #fff;
    background-position: center bottom;
    border-color: #00AAEE;
    color: #00AAEE;
  }
  .home .c-btn01 {
    min-width: 750px;
  }
  .home .c-btn02 {
    min-width: 295px;
  }
  .home .home-mv-section .txt-box {
    max-width: 1150px;
  }
  .home .link-area .link-box .link + * {
    padding: 0 20px 0 80px;
  }
  .home .search-section .ttl01 {
    padding-top: 20px;
  }
  .home .search-section .tag-area ul {
    font-weight: bold;
  }
  .home .search-section .tag-area ul li + * {
    margin-left: 10px;
  }
  .home .search-section .tag-area ul li:nth-child(6) {
    margin-left: 0;
  }
  .home .search-section .tag-area ul li:nth-child(n+6) {
    margin-top: 10px;
  }
  .home .search-section .tag-area ul li a {
    min-width: 150px;
    cursor: pointer;
  }
  .home .search-section .tag-area ul li a:hover {
    background-color: #eee;
  }
  .home .search-section .job-list li a:hover .txt-box {
    background-position: center bottom;
  }
  .home .area-section .area-list li:hover img {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .home .area-section .area-list li:nth-child(4n) {
    padding-left: 0;
  }
  .home .area-section .area-list li:nth-child(n+4) {
    margin-top: 15px;
  }
  .home .area-section .pulldown-area {
    padding: 27px;
    text-align: center;
  }
  .home .area-section .pulldown-area .pulldown select {
    padding: 11px 15px;
    padding-right: 80px;
    width: 750px;
    height: 70px;
  }
  .home .interview-section .interview-list li .interview-box:hover .txt, .home .interview-section .interview-list li .interview-box:hover .name {
    color: #4DC9FF;
  }
}

@media only screen and (min-width: 641px) and (min-width: 1100px) {
  .home .angle-bg:before {
    left: -21px;
    width: 0;
  }
}

@media only screen and (max-width: 640px) and (min-width: 641px) {
  .home .angle-bg:before {
    left: -18px;
  }
}

@media only screen and (min-width: 641px) and (max-width: 1180px) {
  .home .home-mv-section .txt-box {
    left: 30px;
  }
}

@media only screen and (max-width: 1400px) {
  .home .search-section .job-block {
    position: relative;
  }
  .home .search-section .job-block .inner-block {
    position: unset;
  }
  .home .search-section .job-block .swiper-button-prev, .home .search-section .job-block .swiper-rtl .swiper-button-next {
    left: 4vw;
  }
  .home .search-section .job-block .swiper-button-next, .home .search-section .job-block .swiper-rtl .swiper-button-prev {
    right: 4vw;
  }
}

@media only screen and (min-width: 641px) and (max-width: 1145px) {
  .home .area-section .area-list {
    max-width: 710px;
    margin: auto;
  }
  .home .area-section .area-list li:nth-child(n+3) {
    margin-top: 15px;
    margin-left: 10px;
  }
  .home .area-section .area-list li:nth-child(3) {
    padding-left: 0;
    margin-left: 0;
  }
  .home .area-section .area-list li:nth-child(5) {
    padding-left: 0;
    margin-left: 0;
  }
}

@media screen and (max-device-width: 480px) {
  .home .area-section .pulldown-area .pulldown select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    text-align: center;
  }
}