@charset "UTF-8";
/*============================================================================================================
	base
============================================================================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 70px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #333;
  --color-blue: #096BB9;
  --color-sky: #00B4ED;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.69;
  letter-spacing: 0;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.f-josefin {
  font-family: "Josefin Sans", sans-serif;
}

.f-serif-r {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.f-serif-m {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.f-sans-r {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.f-sans-m {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.f-sans-l {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*------------------------------------------
	frame
------------------------------------------*/
@media screen and (min-width: 769px) {
  body {
    min-width: 1100px;
  }
}

.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.bounceIn {
  opacity: 0;
}

.bounceIn.displayed {
  -webkit-animation: bounceIn;
          animation: bounceIn;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

/*------------------------------------------
	common button
------------------------------------------*/
.c-button {
  width: 100%;
  color: var(--color-blue);
  border-radius: 99999px;
  background: #fff;
  border: 2px solid var(--color-blue);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}
.c-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-sky);
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  height: 60px;
  background: #fff url("../img/ico_arrow-b.svg") no-repeat right 20px center;
  border-radius: 99999px;
}
.c-button a:hover {
  opacity: 1;
  background: var(--color-blue) url("../img/ico_arrow-w.svg") no-repeat right 20px center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-button a {
    font-size: 13px;
    letter-spacing: 0;
    opacity: 1;
    color: #fff;
    background: var(--color-blue) url("../img/ico_arrow-w.svg") no-repeat right 10px center;
  }
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  position: absolute;
  width: 100%;
  min-width: 1000px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}
.l-header__logo {
  width: 169px;
}
.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 160px;
}
.l-header__logo img {
  display: block;
  width: 330px;
}
.l-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  position: absolute;
  right: 100px;
}
.l-header__joblist {
  margin: 0 0 0 auto;
  width: 160px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}
.l-header__joblist span {
  position: relative;
  z-index: 2;
}
.l-header__joblist a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-sky);
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  height: 50px;
  background: var(--color-sky) url("../img/ico_arrow02.svg") no-repeat right 10px center;
}
.l-header__joblist a:hover {
  opacity: 0.7;
}
.l-header__joblist.is-blue a {
  background: var(--color-blue) url("../img/ico_arrow02.svg") no-repeat right 10px center;
}
.l-header__btnBox {
  display: none;
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) translateX(0%);
          transform: translateY(-50%) translateX(0%);
}
.l-header__btnBox-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.l-header__joblistFixed {
  background: var(--color-sky) url("../img/ico_arrow02.svg") no-repeat right 10px center;
  width: 238px;
  height: 52px;
  border: 2px solid #fff;
  border-right: none;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  z-index: 9989;
  padding: 23px 10px 23px 16px;
}
.l-header__joblistFixed.is-blue {
  background-color: var(--color-sky);
}
.l-header__joblistFixed.is-sky {
  background-color: #4DC6F2;
}
.l-header__joblistFixed.is-light-sky {
  background-color: #80D9F7;
}
.l-header__joblistFixed a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .l-header__logo a:hover {
    opacity: 0.7;
  }
  .l-header__joblistFixed {
    border-right: none;
  }
  .l-header__joblistFixed a {
    letter-spacing: 0;
    font-size: 14px;
  }
  .l-header__joblistFixed a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    min-width: 100%;
    height: 50px;
    padding: 0 0 0 4.5%;
  }
  .l-header__logo {
    width: 140px;
  }
  .l-header__logo a {
    height: 50px;
  }
  .l-header__logo img {
    width: 130px;
  }
}

/* slider - js */
.js-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
.js-mv-slider.slick-initialized {
  opacity: 1;
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer p, .l-footer li {
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.l-footer a, .l-footer span {
  line-height: inherit;
  color: inherit;
  text-decoration: none;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a, .l-footer li, .l-footer span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-footer-inner {
  overflow: hidden;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 0;
}
.l-footer-nav {
  overflow: hidden;
  display: table;
  margin: 0 auto 16px;
  padding: 0;
}
.l-footer-nav + .l-footer-nav {
  margin-bottom: 36px;
}
.l-footer-nav__item {
  float: left;
  text-align: center;
  list-style: none;
  font-weight: normal;
  font-size: 14px;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
}
.l-footer-nav__item + .l-footer-nav__item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background: #fff;
  margin: auto;
}
.l-footer-nav__item a {
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  font-size: 12px;
  text-align: center;
  font-family: "Josefin Sans", sans-serif !important;
  font-weight: 400 !important;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 20px 15px 75px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto;
  }
  .l-footer-nav + .l-footer-nav {
    margin-bottom: 36px;
  }
  .l-footer-nav__item {
    float: none;
    border-bottom: 1px dashed #fff;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item a {
    display: block;
    padding: 10px 0;
  }
  .l-footer-nav__item + .l-footer-nav__item {
    padding-left: 0;
    margin-left: 0;
  }
  .l-footer-nav__item + .l-footer-nav__item::before {
    content: none;
  }
  .l-footer-copyright {
    width: calc(100% - 30px);
    text-align: left;
    font-size: 10px;
  }
}

.pagetop {
  width: 70px;
  height: 70px;
  display: none;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 56px;
  }
}

/*============================================================================================================
	cv01
============================================================================================================*/
.op01 {
  position: fixed;
  z-index: 9990;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.op01__btn {
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0;
}
.op01__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-sky);
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.op01__btn.is-blue a {
  background: var(--color-sky);
}
.op01__btn.is-sky a {
  background: #4DC6F2;
}
.op01__btn.is-light-sky a {
  background: #80D9F7;
}
.op01__btn span {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .op01 {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -70px;
  }
  .op01.is-show-pc {
    right: 0;
  }
  .op01__btn {
    width: 70px;
  }
  .op01__btn + .op01__btn {
    margin-top: 24px;
  }
  .op01__btn a {
    position: relative;
    overflow: hidden;
    height: 360px;
  }
  .op01__btn a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(1, 0, 0, 1);
    transition: -webkit-transform 0.5s cubic-bezier(1, 0, 0, 1);
    transition: transform 0.5s cubic-bezier(1, 0, 0, 1);
    transition: transform 0.5s cubic-bezier(1, 0, 0, 1), -webkit-transform 0.5s cubic-bezier(1, 0, 0, 1);
    background: #FF861E;
  }
  .op01__btn a:hover {
    opacity: 1;
    letter-spacing: 0.3em;
  }
  .op01__btn a:hover::before {
    opacity: 1;
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .op01 span {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 767px) {
  .op01 {
    position: fixed;
    z-index: 9990;
    left: 0;
    bottom: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .op01.is-show-sp {
    bottom: 0;
  }
  .op01__btn {
    width: 100%;
    font-size: 11px;
    letter-spacing: 0 !important;
    text-align: center;
  }
  .op01__btn + .op01__btn {
    border-left: 1px solid #fff;
  }
  .op01__btn a {
    height: 45px;
    line-height: 1.3;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.gnavBtn {
  overflow: hidden;
  cursor: pointer;
  width: 70px;
  height: 70px;
  position: fixed;
  z-index: 9992;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #000;
}
.gnavBtn span {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 36px;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.gnavBtn span:nth-of-type(1) {
  top: 26px;
}
.gnavBtn span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.gnavBtn span:nth-of-type(3) {
  bottom: 25px;
  width: 26px;
  left: 17px;
  margin: 0 auto 0 0;
}
.gnavBtn.is-close span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-210deg);
          transform: translateY(10px) rotate(-210deg);
}
.gnavBtn.is-close span:nth-of-type(2) {
  display: none;
}
.gnavBtn.is-close span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(210deg);
          transform: translateY(-8px) rotate(210deg);
  width: 36px;
}
@media screen and (max-width: 768px) {
  .gnavBtn {
    width: 50px;
    height: 50px;
    top: 0;
    right: 0;
    border: none;
  }
  .gnavBtn span {
    width: 25px;
    background: #fff;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 16px;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 16px;
    width: 16px;
    left: 13px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
            transform: translateY(8px) rotate(-45deg);
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
            transform: translateY(-9px) rotate(45deg);
    width: 25px;
  }
}

.l-nav {
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  position: fixed;
  z-index: 9991;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.l-nav.is-open {
  right: 0;
}
.l-nav.is-open .l-nav-overlay {
  left: 0;
  width: 100%;
}
.l-nav-inner {
  width: 100%;
  height: 100%;
  padding: 150px 40px 50px;
  background: #fff;
  position: relative;
  z-index: 2;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-nav-inner::-webkit-scrollbar {
  display: none;
}
.l-nav-list {
  margin-bottom: 50px;
}
.l-nav-list__item {
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 1.4;
}
.l-nav-list__item:last-of-type {
  margin-bottom: 0;
}
.l-nav-list__item a {
  display: block;
}
.l-nav-list__item-en {
  display: block;
  margin-bottom: 5px;
  color: var(--color-sky);
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
}
.l-nav-joblistBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.l-nav-joblist {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.l-nav-joblist a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  height: 70px;
  background: var(--color-sky) url("../img/ico_arrow02.svg") no-repeat right 20px center;
}
.l-nav-joblist.is-blue a {
  background-color: var(--color-sky);
}
.l-nav-joblist.is-sky a {
  background-color: #4DC6F2;
}
.l-nav-joblist.is-light-sky a {
  background-color: #80D9F7;
}
.l-nav-overlay {
  cursor: pointer;
  position: fixed;
  width: 0;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .l-nav {
    right: -280px;
    width: 280px;
  }
  .l-nav-inner {
    padding: 70px 20px 30px;
  }
  .l-nav-list {
    margin-bottom: 30px;
  }
  .l-nav-list__item {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .l-nav-list__item-en {
    font-size: 12px;
  }
  .l-nav-joblist {
    font-size: 14px;
  }
  .l-nav-joblist a {
    height: 50px;
    background-position: right 15px center;
  }
  .l-nav-joblistBox {
    gap: 8px;
  }
}

/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  position: relative;
}
.l-mv-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -ms-grid-columns: 1fr 0px 1fr 0px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 0px;
  grid-column-gap: 0px;
}
.l-mv-container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.l-mv-container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.l-mv-container > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.l-mv-container img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-mv-catch {
  position: absolute;
  top: 37%;
  left: 4%;
  width: min(100%, 540px);
}
@media screen and (max-width: 768px) {
  .l-mv-container img {
    width: 100%;
    height: 68vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .l-mv-catch {
    top: 47.5dvh;
    width: 80%;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.l-main {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-main {
    padding: 20px 0 0;
  }
}

.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #333;
  font-size: 46px;
  line-height: 1.4;
  letter-spacing: 0;
}
.c-tit01__en {
  font-family: "Josefin Sans", sans-serif;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-top: 6px;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  border-radius: 99999px;
  color: var(--color-sky);
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 32px;
  }
  .c-tit01__en {
    font-size: 13px;
  }
}

.c-tit02 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  color: var(--color-blue);
  font-size: 28px;
  letter-spacing: 0.02em;
  background: var(--color-sky);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    font-size: 20px;
    padding: 6px;
  }
}

.js-view {
  -webkit-transition: opacity 1s, margin 0.5s, -webkit-transform 1s;
  transition: opacity 1s, margin 0.5s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s, margin 0.5s;
  transition: opacity 1s, transform 1s, margin 0.5s, -webkit-transform 1s;
}
.js-view.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
.js-view.is-fadeInUp.is-scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.js-view.is-anime01 {
  margin-top: 80px;
  opacity: 0;
}
.js-view.is-anime01.is-scrollin {
  opacity: 1;
  margin-top: 0;
  -webkit-animation: scale01 2s;
          animation: scale01 2s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.js-view.is-anime01.is-scrollin.is-delay {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .js-view.is-sp-off {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .js-view.is-anime01 {
    margin-top: 40px;
  }
}

@-webkit-keyframes scale01 {
  0%, 30%, 65% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  15% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  45% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}

@keyframes scale01 {
  0%, 30%, 65% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  15% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  45% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
/*	.secMovie
------------------------------------------*/
.secMovie {
  margin-top: 110px;
  position: relative;
}
.secMovie-movieBox {
  width: 1080px;
  aspect-ratio: 16/9;
  margin-inline: auto;
  background: #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secMovie-movieBox iframe {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .secMovie {
    margin-top: 0;
  }
  .secMovie-movieBox {
    width: 90%;
  }
}

/*============================================================================================================
	.secEnvironment
============================================================================================================*/
.secEnvironment {
  padding-block: 120px 0;
}
.secEnvironment-content {
  display: -ms-grid;
  display: grid;
  gap: 40px;
}
.secEnvironment__secTit {
  margin-bottom: 60px;
}
.secEnvironment-txtBox {
  width: min(100%, 840px);
  margin: 32px auto 0;
}
.secEnvironment__txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0;
}
.secEnvironment__txt span {
  font-weight: 700;
}
.secEnvironment__txt + .secEnvironment__txt {
  margin-top: 24px;
}
.secEnvironment-careerWrap, .secEnvironment-modelWrap, .secEnvironment-welfareWrap {
  background: #F8F8F8;
  padding: 50px;
}
.secEnvironment-model-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-rows: auto;
}
.secEnvironment-model-list__item {
  background: #fff;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  font-size: 18px;
  letter-spacing: 0.02em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  padding: 20px 20px 10px 20px;
}
.secEnvironment-model-list__item__tit {
  color: #A3A3A3;
}
.secEnvironment-model-list__item__label {
  font-size: 24px;
  letter-spacing: 0;
}
.secEnvironment-model-list__item__num {
  font-size: 50px;
  letter-spacing: 0.02em;
  color: var(--color-sky);
}
.secEnvironment-model-list__item__num span.yaku {
  font-size: 20px;
  color: #333;
  letter-spacing: 0;
}
.secEnvironment-model-list__item__num span.yen {
  font-size: 24px;
  color: #333;
  letter-spacing: 0;
}
.secEnvironment-model-txtBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 20px;
}
.secEnvironment-welfare-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-rows: auto;
}
.secEnvironment-welfare-list__item {
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  font-size: 18px;
  letter-spacing: 0.02em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
}
.secEnvironment-welfare-list__item__tit {
  background: #80D9F7;
  padding: 8px 10px;
  text-align: center;
}
.secEnvironment-welfare-list__item__label {
  background: #80D9F7;
  padding: 20px 10px;
  text-align: center;
}
.secEnvironment-welfare-list__item__txt {
  padding: 32px 20px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .secEnvironment {
    padding-block: 60px 0;
  }
  .secEnvironment-content {
    display: block;
  }
  .secEnvironment__secTit {
    margin-bottom: 40px;
  }
  .secEnvironment-txtBox {
    width: 100%;
    margin: 32px auto 0;
  }
  .secEnvironment__txt {
    font-size: 14px;
    line-height: 180%;
  }
  .secEnvironment__txt span {
    font-weight: 700;
  }
  .secEnvironment__txt + .secEnvironment__txt {
    margin-top: 24px;
  }
  .secEnvironment-career, .secEnvironment-model {
    margin-bottom: 32px;
  }
  .secEnvironment-careerWrap, .secEnvironment-modelWrap, .secEnvironment-welfareWrap {
    background: #F8F8F8;
    padding: 16px;
  }
  .secEnvironment-model-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    grid-auto-rows: auto;
  }
  .secEnvironment-model-list__item {
    background: #fff;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    font-size: 18px;
    letter-spacing: 0.02em;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
    padding: 20px 20px 10px 20px;
  }
  .secEnvironment-model-list__item__tit {
    color: #A3A3A3;
  }
  .secEnvironment-model-list__item__label {
    font-size: 22px;
    letter-spacing: 0;
  }
  .secEnvironment-model-list__item__num {
    font-size: 50px;
    letter-spacing: 0.02em;
    color: var(--color-sky);
  }
  .secEnvironment-model-list__item__num span.yaku {
    font-size: 20px;
    color: #333;
    letter-spacing: 0;
  }
  .secEnvironment-model-list__item__num span.yen {
    font-size: 24px;
    color: #333;
    letter-spacing: 0;
  }
  .secEnvironment-model-txtBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 20px;
  }
  .secEnvironment-welfare-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
    grid-auto-rows: auto;
  }
  .secEnvironment-welfare-list__item {
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    font-size: 18px;
    letter-spacing: 0.02em;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
  }
  .secEnvironment-welfare-list__item__tit {
    background: #80D9F7;
    padding: 4px 4px;
    text-align: center;
    font-size: 15px;
  }
  .secEnvironment-welfare-list__item__label {
    background: #80D9F7;
    padding: 8px 6px;
    text-align: center;
    font-size: 15px;
  }
  .secEnvironment-welfare-list__item__txt {
    padding: 16px;
    background: #fff;
    font-size: 14px;
  }
}

.js-tab-content {
  display: none;
}
.js-tab-content.is-show {
  display: block;
}

.secEnvironment-top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  z-index: 0;
  position: relative;
}
.secEnvironment-top-nav__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  cursor: pointer;
  height: 50px;
  position: relative;
  background: #fff;
}
.secEnvironment-top-nav__item.is-active {
  height: 60px;
}
.secEnvironment-top-nav__item.is-active .secEnvironment-top-nav__txt {
  background: var(--color-sky);
  color: #fff;
  height: 100%;
}
.secEnvironment-top-nav__txt {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: #fff;
  color: #333;
  font-weight: 600;
  font-size: 21px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secEnvironment-top-nav__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secEnvironment-top-content {
  padding: 40px 0 0;
  border-top: none;
}
.secEnvironment-top-content-step {
  margin-bottom: 50px;
  text-align: center;
}
.secEnvironment-top-content-image__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 0;
  text-align: center;
}
.secEnvironment-top-content-image-imgBox {
  text-align: center;
}
.secEnvironment-top__back {
  margin: 0 0 30px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 500;
}
.secEnvironment-top__back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding: 0 45px 0 20px;
}
@media screen and (max-width: 768px) {
  .secEnvironment-top {
    margin-top: -60px;
    padding-top: 60px;
  }
  .secEnvironment-top-nav__txt {
    background-position: center bottom 15px;
    background-size: 20px;
    font-size: min(4.2vw, 16px);
  }
  .secEnvironment-top-content {
    padding: 30px 0 0;
  }
  .secEnvironment-top-content__swipe {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px auto 0;
    padding: 5px 40px 5px 0;
    background: url("../img/ico_swipe01.svg") no-repeat right center;
    font-weight: 700;
    font-size: 14px;
  }
  .secEnvironment-top-content-step {
    overflow: auto;
    margin: 0 -20px 0 0;
    padding: 0 20px 10px 0;
  }
  .secEnvironment-top-content-step img {
    max-width: none;
    width: 600px;
  }
  .secEnvironment-top-content-image {
    margin-top: 50px;
  }
  .secEnvironment-top-content-image__tit {
    margin: 0 auto 30px;
    font-size: 18px;
  }
  .secEnvironment-top-content-image-imgBox {
    overflow: auto;
    margin: 0 -20px 0 0;
    padding: 0 20px 10px 0;
    text-align: left;
  }
  .secEnvironment-top-content-image-imgBox img {
    max-width: none;
    width: 650px;
  }
  .secEnvironment-top__back a {
    padding: 0 40px 0 20px;
    background-position: right 12px center;
    background-size: 14px;
  }
}

/*============================================================================================================
	.secAbout
============================================================================================================*/
.secAbout {
  padding-block: 120px 120px;
}
.secAbout__secTit {
  margin-bottom: 80px;
}
.secAbout-txtBox {
  width: 100%;
  max-width: 800px;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 40px;
}
.secAbout__tit {
  color: var(--color-sky);
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 48px;
}
.secAbout__txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 220%;
  letter-spacing: 1.28px;
}
.secAbout__txt span {
  font-weight: 700;
}
.secAbout__txt + .secAbout__txt {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .secAbout {
    padding-block: 60px 40px;
  }
  .secAbout__secTit {
    margin-bottom: 40px;
  }
  .secAbout-txtBox {
    width: 100%;
    max-width: 800px;
    padding-left: 10px;
    padding-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 40px;
  }
  .secAbout__tit {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .secAbout__txt {
    font-size: 15px;
    line-height: 200%;
    letter-spacing: 0;
  }
  .secAbout__txt span {
    font-weight: 700;
  }
  .secAbout__txt + .secAbout__txt {
    margin-top: 18px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  padding-block: 0;
}
.secGallery img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secGallery {
    padding-block: 0;
  }
}

/*============================================================================================================
	.secMessage
============================================================================================================*/
.secMessage {
  padding-block: 120px 0;
}
.secMessage__secTit {
  margin-bottom: 80px;
}
.secMessage-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 500px;
  grid-template-columns: 1fr 500px;
}
.secMessage-imgBox img {
  margin-bottom: 16px;
}
.secMessage-imgBox__prof {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0.08em;
}
.secMessage-imgBox__name {
  font-size: 28px;
  line-height: 130%;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.secMessage-txtBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.secMessage-txtBox__tit {
  color: var(--color-sky);
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 32px;
  letter-spacing: 0;
}
.secMessage-txtBox__txt {
  font-size: 15px;
  line-height: 185%;
  letter-spacing: 0;
}
.secMessage-txtBox__txt span {
  font-weight: 700;
}
.secMessage-txtBox__txt + .secMessage-txtBox__txt {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding-block: 60px 0;
  }
  .secMessage__secTit {
    margin-bottom: 40px;
  }
  .secMessage-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secMessage-imgBox {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 40px auto 0;
    padding: 0 40px;
  }
  .secMessage-imgBox img {
    margin-bottom: 16px;
  }
  .secMessage-imgBox__prof {
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0.08em;
  }
  .secMessage-imgBox__name {
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0.08em;
    margin-top: 2px;
  }
  .secMessage-txtBox {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .secMessage-txtBox__tit {
    color: var(--color-sky);
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 32px;
    letter-spacing: 0;
  }
  .secMessage-txtBox__txt {
    font-size: 15px;
    line-height: 185%;
    letter-spacing: 0;
  }
  .secMessage-txtBox__txt span {
    font-weight: 700;
  }
  .secMessage-txtBox__txt + .secMessage-txtBox__txt {
    margin-top: 18px;
  }
}

/*============================================================================================================
	.secCompany
============================================================================================================*/
.secCompany {
  padding-block: 120px;
}
.secCompany__secTit {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .secCompany {
    padding-block: 60px;
  }
  .secCompany__secTit {
    margin-bottom: 40px;
  }
}

/*------------------------------------------
	.c-outline .c-table
------------------------------------------*/
.c-outline-inner {
  width: min(90%, 920px);
  margin: 0 auto;
}

.c-table01 {
  table-layout: auto;
}
.c-table01 th, .c-table01 td {
  padding: 24px 0 24px;
  line-height: 2;
  font-size: 16px;
  letter-spacing: 0;
}
.c-table01 th {
  width: 170px;
  border-bottom: 1px solid var(--color-sky);
  font-weight: 700;
  vertical-align: top;
  position: relative;
}
.c-table01 td {
  border-bottom: 1px solid #E7E7E7;
  font-weight: 400;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .c-table01 th, .c-table01 td {
    padding: 15px 5px 15px 5px;
    letter-spacing: 0;
    font-size: 12px;
  }
  .c-table01 th {
    width: 80px;
  }
  .c-table01 th::before {
    top: 23px;
    width: 8px;
    height: 8px;
  }
}

.c-two-cols {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-two-cols {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry a {
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secEntry a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(87deg, #00B4ED 0%, #A5E5FA 100%);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secEntry__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 754px;
  color: #fff;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.secEntry__txt::after {
  content: "";
  display: block;
  width: 114px;
  height: 14px;
  background: url(../img/ico_arrow03.svg) no-repeat center 43%/100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secEntry__txt-en {
  display: block;
  line-height: 140%;
  font-size: 82px;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 769px) {
  .secEntry a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secEntry a:hover {
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secEntry a:hover::after {
    background: linear-gradient(87deg, #0085B0 0%, #7FE0FF 100%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .secEntry a {
    height: 220px;
  }
  .secEntry__txt {
    padding-right: 90px;
    font-size: 18px;
  }
  .secEntry__txt::after {
    width: 70px;
    height: 70px;
  }
  .secEntry__txt-en {
    font-size: 50px;
  }
}

input {
  min-width: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.secSearch {
  position: absolute;
  bottom: 2%;
  width: 100%;
}
.secSearch-inner {
  width: 94%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  padding: 24px 40px;
}
.secSearch__secTit {
  position: relative;
  top: 28px;
  font-size: 59px;
  color: #fff;
  font-weight: 700;
  padding-left: 3%;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .secSearch {
    position: relative;
  }
  .secSearch-inner {
    width: 100%;
    margin: 0 auto;
    padding: 24px 24px;
  }
  .secSearch__secTit {
    position: relative;
    top: 28px;
    font-size: 34px;
    color: var(--color-sky);
    font-weight: 700;
    padding-left: 0;
    text-align: center;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.jobSearch__select {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 0.5fr 32px 1fr 32px 1.5fr;
  grid-template-columns: 1fr 0.5fr 1fr 1.5fr;
  gap: 32px;
}
.jobSearch__select-item {
  width: 100%;
  position: relative;
}
.jobSearch__select-item::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url("../../career/img/ico_arrow04.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: -24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.jobSearch__select-item:first-of-type::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .jobSearch__select {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .jobSearch__select-item::before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    background: url("../../career/img/ico_arrow04.svg") no-repeat center center/contain;
    position: absolute;
    top: -40%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
  .jobSearch__select .jobSearch__select {
    display: block;
  }
}

.jobSearch__select > div select#js-type {
  width: 100%;
}

.jobSearch__select > div select#js-job {
  width: 100%;
}

.jobSearch__select > div select#js-salary {
  width: 100%;
}

.jobSearch__select > div input#js-keyword {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .jobSearch__select > div {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .jobSearch__select > div + div {
    margin-top: 15px;
  }
}
.jobSearch__select > div select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url(../../career/img/ico_arrow01.svg);
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 16px 8px;
  border: 1px solid #B8B8B8;
  border-radius: 4px;
  color: #7C7C7C;
  font-size: 16px;
  height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .jobSearch__select > div select {
    font-size: 16px;
    height: 50px;
  }
}
.jobSearch__select > div select::-ms-expand {
  display: none;
}

.jobSearch__select > div input {
  border: 1px solid #B8B8B8;
  border-radius: 4px;
  font-size: 16px;
  height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .jobSearch__select > div input {
    font-size: 16px;
    height: 50px;
  }
}
.jobSearch__buttonBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .jobSearch__buttonBox {
    margin-top: 20px;
  }
}

.jobSearch__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background-color: var(--color-sky);
  color: #fff;
  font-size: 18px;
  height: 65px;
  letter-spacing: 0;
  width: min(100%, 280px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .jobSearch__button {
    font-size: 16px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
  .jobSearch__button img {
    width: 20px;
  }
}
@media screen and (min-width: 769px) {
  .jobSearch__button:hover {
    background-color: var(--color-blue);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.jobSearch__clear {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background-color: #7C7C7C;
  color: #fff;
  font-size: 18px;
  height: 65px;
  letter-spacing: 0;
  width: min(100%, 100px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .jobSearch__clear {
    font-size: 16px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
  }
  .jobSearch__clear img {
    width: 20px;
  }
}
@media screen and (min-width: 769px) {
  .jobSearch__clear:hover {
    background-color: #999999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.jobSearch__select > div select,
.jobSearch__select > div input {
  border: 1px solid #B8B8B8;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.jobSearch__select > div select:focus,
.jobSearch__select > div input:focus {
  border-width: 2px;
  border-color: var(--color-sky);
  outline: none;
}
/*# sourceMappingURL=style.css.map */