@charset "UTF-8";
/* CSS Document */

/*セクション間余白----------------------------------------------------------- */
section {
  padding: 7vw 0;
  clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% calc(100% - 7vw), 0 100%);
}

/*色関連----------------------------------------------------------- */
.bg_cl1 {background-color: #f5f5f5;}
.bg_cl2 {background-color: #ffffe5;}
.bg_cl3 {background-image: -webkit-linear-gradient( 0deg, rgb(237,247,255) 0%, rgb(229,254,255) 100%);}
.bg_cl4 {
  background-image: -webkit-linear-gradient( 0deg, rgb(237,247,255) 0%, rgb(229,254,255) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(237,247,255) 0%, rgb(229,254,255) 100%);
}
.cl_white {color: #fff;}
.cl_base {color: #ff00cc;}
.cl_main {color: #ef3300;}
.cl_accent {color: #4265a1;}
.cl_other1 {color: #4265a1;}
.cl_other2 {color: #4265a1;}
.cls-1 {fill: #231815;}

/*テキスト関連----------------------------------------------------------- */
.highlight {
  background: -webkit-linear-gradient(transparent 60%, #efef23 50%);
  background: -o-linear-gradient(transparent 60%, #efef23 50%);
  background: linear-gradient(transparent 60%, #efef23 50%);
  font-weight: bold;
}

/*リンク色----------------------------------------------------------- */
a:link,
a:visited {
  color: #4265a1;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/*はみ出し画像中央----------------------------------------------------------- */
.wic_wrap {overflow-x: hidden;}
.wic img {
  width: auto;
  max-width: unset;
}

.wic1 { margin-left: calc(50% - 1000px); }
.wic1 img {
  width: 2000px;
  max-width: 2000px;
}

.wic2 { margin-left: calc(50% - 600px); }
.wic2 img {
  width: 1200px;
  max-width: 1200px;
}

.wic3 { margin-left: calc(50% - 800px); }
.wic3 img {
  width: 1600px;
  max-width: 1600px;
}

/*Page Top----------------------------------------------------------- */
.pagetop a {
  background: var(--bg-gradation);
}

/*LoadingAnime----------------------------------------------------------- */
.loading_wrap {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}
.spinner-box {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  position: relative;
  background: #fff;
}
  .spinner-box:before {
    position: absolute;
    content: "loading";
    color: #171b1d;
    z-index: 1;
}
.circle-border {
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(79,172,254);
  background: var(--bg-gradation);
  animation: spin .8s linear 0s infinite;
}
.circle-core {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to{
    transform: rotate(359deg);
  }
}

/*progress----------------------------------------------------------- */
.progress {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px; /* バーの高さを指定 */
  background-color: #f3f3f3; /* バーの背景色を指定 */
  z-index: 100;
}
.progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bg-gradation);
  height: 100%;
  width: 0;
}

/*Header----------------------------------------------------------- */
header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  transition: .5s;
  background: #fff;
  z-index: 999;
}
header .logo {
  padding-left: 30px;
  position: relative;
}
header .logo svg {
  width: 130px;
}
header .logo .font_jos {
  font-size: 12px;
  padding-left: 10px;
  width: 100%;
  /* position: absolute;
  top: 14px; */
}
#gnav {
  width: 100%;
}
#gnav ul {
  display: flex;
  align-items: center;
  margin: 0 -15px;
  width: 100%;
}
#gnav ul li:nth-child(2) {
  margin-left: auto;
}
#gnav ul li a {
  color: #000;
  display: block;
  padding: 0 15px;
  font-size: 14px;
  font-weight: bold;
}
#gnav ul li:last-child a {
  background: #efef23;
  padding: 15px;
  margin: 0 15px;
  outline: 1px solid;
  outline-color: #efef23;
  outline-offset: 0px;
}
#gnav ul li:last-child a:hover {
  text-decoration: none;
  animation: light .8s infinite;
  opacity: 1;
  color: #171b1d;
  outline: 1px solid;
  outline-color: #171b1d;
  outline-offset: 0px;
}


/*MV----------------------------------------------------------- */
.mv_wrap {
  overflow-x: hidden;
}
.mv {
  padding: 0;
  overflow: hidden;
  min-width: 2000px;
  margin-left: calc(50% - 1000px);
  position: relative;
  clip-path: inherit;
}
.mv:before {
  position: absolute;
  content: "";
  width: 82.5%;
  height: calc(100vh - 100px);
  height: 600px;
  /* bottom: 0; */
  top: 200px;
  left: 0;
  background-image: var(--bg-gradation);
}
.mv .mv_slide {
  width: 60%;
  max-width: 1200px;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 90px;
  height: 680px;
}
.mv .slick-dots {
  width: 720px;
  left: -260px;
  bottom: 120px;
  margin: 0 0 0 60px;
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.mv .slick-dots:before {
  content: "";
  width: 780px;
  height: 1px;
  background: #fff;
  position: absolute;
  z-index: 2;
  left: -60px;
  top: 8px;
}
@media (min-width: 768px) and (max-width: 959px) {
  /* .mv {
    min-width: 100vw;
    margin-left: calc(50% - 50vw);
  } */
}
.mv .slick-dots:after {
  content: "VALUE CREATAR";
  font-family: 'Josefin Sans', sans-serif;
  position: absolute;
  top: -45px;
  left: -60px;
  color: #fff;
  font-size: 16px;
}
.mv .slick-dots li {
  padding: 0 60px;
  display: flex;
  justify-content: center;
  position: relative;
}
.mv .slick-dots li:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: #fff;
  top: 1px;
  left: 59px;
}
.mv .slick-dots li:after {
  position: absolute;
  display: block;
  top: 20px;
  color: #fff;
  font-family: din;
  font-size: 14px;
}
.mv .slick-dots li:nth-child(1):after {content: "10:10";}
.mv .slick-dots li:nth-child(2):after {content: "11:00";}
.mv .slick-dots li:nth-child(3):after {content: "13:05";}
.mv .slick-dots li:nth-child(4):after {content: "14:30";}
.mv .slick-dots li:nth-child(5):after {content: "19:15";}
.mv .slick-dots li button:before {
  right: 1px;
  margin: 0 auto;
  color: #fff;
  opacity: 0;
}
.mv .slick-dots li.slick-active button:before {
  opacity: 1;
}
.mv {
  position: relative;
}
.mv .container {
  position: absolute;
  top: 240px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.mv_top {
  width: 100vw;
  position: absolute;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
}
.mv_top_logo {
  margin-top: 20px;
  margin-left: 40px;
  position: relative;
}
.mv .mv_top_logo svg {
  width: 130px;
}
.mv_top_logo .font_jos {
  font-size: 12px;
  padding-left: 10px;
  position: absolute;
  width: 100%;
  top: 14px;
  white-space: nowrap;
}
.mv_top_btn {
  margin-top: 20px;
  margin-right: 40px;
}
.mv_top_btn a {
  display: block;
  border: 1px solid #fff;
  padding: 20px 15px;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  transition: .3s;
  outline: 1px solid;
  outline-color: #fff;
  outline-offset: 0px;
}
.mv_top_btn a:hover {
  text-decoration: none;
  animation: light .8s infinite;
  opacity: 1;
  background: #fff;
  color: #171b1d;
  border: 1px solid #fff;
}
@keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
  }
}
.mv h1 {
    clip-path: inset(0 100% 0 0);
    transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
}
.mv h1.is-animated {
  clip-path: inset(0);
}
.mv svg {
  fill: #fff;
  width: 70%;
}
@media screen and (min-width: 2000px) {
  .mv {
    min-width: inherit;
    margin-left: inherit;
  }
}


/*CTA----------------------------------------------------------- */
.slide.slick-active{
  height: 680px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  animation  : bgAnime 6.5s infinite;
}
.slide.slick-active {
  /* animation  : bgAnime 5s infinite; */
}
/* .one{
  background-image: url(../img/pc_mv_01.png);
}
.two{
  background-image: url(../img/pc_mv_02.png);
}
.three{
  background-image: url(../img/pc_mv_03.png);
}
.four{
  background-image: url(../img/pc_mv_04.png);
}
.five{
  background-image: url(../img/pc_mv_05.png);
} */
@keyframes bgAnime {
  /* 0% { transform: scale(1); }
  100% { transform: scale(1.1); } */
}
.slide img {
  transform-origin: center top;
  transform: scale(1.0);
  transition: 5s ease-out;
}
.slide.slick-active img {
  transform: scale(1.1);
}

/*CTA2----------------------------------------------------------- */


/*benefit----------------------------------------------------------- */
.benefit [data-mh="benefit_img"] {
  display: flex;
  align-items: center;
}

/*message----------------------------------------------------------- */
.message .container {
	z-index: 0;
  margin: 60px auto;
}
.message h3 img {
  width: 350px;
}
.message svg {
  width: 135px;
  margin: 0 auto;
}
.message .box {
	width: 600px;
	background-color: #fff;
	padding: 50px;
}
.message .img_box {
	width: 100%;
}
.message .img_box .img01 {
	position: absolute;
	left: -27%;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.message .img_box .img02 {
	position: absolute;
	right: -27%;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.message .fadein {
  width: auto;
}

/*interview----------------------------------------------------------- */
.interview h2 {
  text-align: left;
  position: relative;
}
.interview h2:before {
  left: calc(50% - 465px);
  right: inherit;
}
.interview .bg.is-animated .bg-wrap:before {
  background-image: -moz-linear-gradient( 0deg, rgb(239,239,35) 0%, rgb(239,239,35) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(239,239,35) 0%, rgb(239,239,35) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(239,239,35) 0%, rgb(239,239,35) 100%);
}
.interview .bg .bg-wrap .inn {
  color: #171b1d;
}
.interview h3.smooth {
  transition-delay: 1s;
}
.interview .name p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.interview .sub_ttl:first-letter {
  font-size: 48px;
}
.interview .fx-row .fx-col-25-s p {
  display: block;
  width: 830px;
  position: relative;
}
.interview .fx-row-odd .fx-col-25-s p:before {
  position: absolute;
  content: "";
  background: #02f0fe;
  background-image: -moz-linear-gradient( 0deg, rgb(237,247,255) 0%, rgb(229,254,255) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(237,247,255) 0%, rgb(229,254,255) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(237,247,255) 0%, rgb(229,254,255) 100%);
  z-index: -1;
  width: 100%;
  height: 300px;
  top: -200px;
  left: 120px;
}
.interview .fx-row-even .fx-col-25-s p {
  right: 630px;
}
.interview .fx-row-even .fx-col-25-s p:before {
  position: absolute;
  content: "";
  background: #02f0fe;
  background-image: -moz-linear-gradient( 0deg, rgb(237,247,255) 0%, rgb(229,254,255) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(237,247,255) 0%, rgb(229,254,255) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(237,247,255) 0%, rgb(229,254,255) 100%);
  z-index: -1;
  width: 100%;
  height: 300px;
  top: 200px;
  left: 300px;
}
.interview .fx-row-odd.odd2 .fx-col-25-s p:before {
  top: 300px;
  left: -300px;
}

.interview .fx-row-odd.anim .fx-col-25-s p {
  transition: 1s;
  opacity: 0;
  left: 30vw;
}
.interview .fx-row-odd.anim.is-animated .fx-col-25-s p {
  opacity: 1;
  left: 0;
}
.interview .fx-row-odd.anim .fx-col-25-s p:before {
  transition: 1.5s;
  transition-delay: .5s;
  left: 30vw;
}
.interview .fx-row-odd.anim.is-animated .fx-col-25-s p:before {
  left: 120px;
}

.interview .fx-row-even.anim .fx-col-25-s p {
  transition: 1s;
  opacity: 0;
  right: 90vw;
}
.interview .fx-row-even.anim.is-animated .fx-col-25-s p {
  opacity: 1;
  right: 630px;
}
.interview .fx-row-even.anim .fx-col-25-s p:before {
  transition: 1.5s;
  transition-delay: .5s;
  left: -30vw;
}
.interview .fx-row-even.anim.is-animated .fx-col-25-s p:before {
  left: 300px;
}

.interview .fx-row-odd.odd2.anim .fx-col-25-s p {
  transition: 1s;
  opacity: 0;
  left: 30vw;
}
.interview .fx-row-odd.odd2.anim.is-animated .fx-col-25-s p {
  opacity: 1;
  left: 0;
}
.interview .fx-row-odd.odd2.anim .fx-col-25-s p:before {
  transition: 1.5s;
  transition-delay: .5s;
  left: 30vw;
}
.interview .fx-row-odd.odd2.anim.is-animated .fx-col-25-s p:before {
  left: -300px;
}

/*company----------------------------------------------------------- */
.company {
  background: url(../img/pc_company_bg.jpg) no-repeat center center/cover;
  background-attachment: fixed;
  padding: 9vw 0;
  margin-top: -7vw;
}
.company h2 {
  color: #fff;
}
.company h2:before {
  content: none;
}
.company .white_box_s {
  background: rgba(255,255,255,0.85);
}
.company .fx-col-33-s p.font_s {
  line-height: 2;
}

/*works----------------------------------------------------------- */
.works {
  margin-top: -7vw;
  padding: 12vw 0;
}
.works .fx-row a{
  box-shadow: 0 10px 30px rgb(0 0 0 / 8%);
  display: block;
  -webkit-transition: box-shadow .3s ease;
  transition: box-shadow .3s ease;
  overflow: hidden;
}
.works .fx-row a:hover{
  box-shadow: none;
  opacity: 1;
}
.works .fx-row a:hover img{
  opacity: 1;
  transform: scale(1.1);
}

/*reason----------------------------------------------------------- */
.reason {
  clip-path: inherit;
  padding-top: 3vw;
}
.reason h2 {
  margin-bottom: 120px;
}
.reason .fx-row {
  margin-bottom: 240px;
}
.reason .fx-row-3 {
  margin-bottom: 45px;
}
.reason .fx-col-80-s {
  position: relative;
}
.reason .fx-col-80-s:before {
  position: absolute;
  content: "";
  width: 661px;
  height: 635px;
  left: 70%;
  z-index: -1;
  top: -75px;
}
.reason .fx-row-1 .fx-col-80-s:before {
  background: url(../img/pc_reason_img01.png);
}
.reason .fx-row-2 .fx-col-80-s:before {
  background: url(../img/pc_reason_img02.png);
}
.reason .fx-row-3 .fx-col-80-s:before {
  background: url(../img/pc_reason_img03.png);
}
.reason .fx-col-80-s:after {
  position: absolute;
  content: "";
  background-image: -moz-linear-gradient( 0deg, rgb(237,247,255) 0%, rgb(229,254,255) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(237,247,255) 0%, rgb(229,254,255) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(237,247,255) 0%, rgb(229,254,255) 100%);
  width: 100vw;
  height: 540px;
  left: -150vw;
  transition: 2s;
  bottom: -135px;
  z-index: -2;
}
.reason .fx-row-2 {
  justify-content: flex-end;
}
.reason .fx-row-2 .fx-col-80-s:before {
  position: absolute;
  content: "";
  width: 661px;
  height: 635px;
  right: 70%;
  left: inherit;
  z-index: -1;
  top: -75px;
}
.reason .fx-row-2 .fx-col-80-s:after {
  right: -150vw;
  transition: 2s;
}
.reason .reason_num {
  display: block;
  width: 13rem;
  font-size: 100px;
  margin-top: -90px;
  line-height: 1;
  color: #fff;
  background: var(--bg-gradation);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reason .reason_num:before {
  content: "";
  position: absolute;

  background-image: var(--bg-gradation);
}
.reason .fx-row-1.is-animated .fx-col-80-s:after,
.reason .fx-row-3.is-animated .fx-col-80-s:after {
  left: 120px;
  right: inherit;
}
.reason .fx-row-2.is-animated .fx-col-80-s:after {
  left: inherit;
  right: 120px
}

/*schedule----------------------------------------------------------- */
.schedule {
  clip-path: inherit;
}
.schedule h3 {
  line-height: 1;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}
.schedule h3 .font_meow {
  font-size: 100px;
  font-weight: normal;
  padding-right: 15px;
}
.schedule .fx-row:nth-child(1) .fx-col-40-s {
  margin-top: -30px;
}
.schedule .fx-row:nth-child(2) .fx-col-60-s {
  margin-top: 60px;
  margin-bottom: 30px;
}
.schedule .fx-row:nth-child(3) .fx-col-60-s {
  margin-top: 45px;
}
.schedule .fx-row:nth-child(4) .fx-col-60-s {
  margin-top: 60px;
  margin-bottom: 30px;
}
.schedule .fx-row:nth-child(5) .fx-col-60-s {
  margin-top: 30px;
}
.schedule .fx-row:nth-child(6) .fx-col-60-s {
  margin-top: 150px;
}
.schedule .fx-row:not(:last-child){
  margin-bottom: 50px;
}

.js-anim-in[data-anim="fadeIn"], .js-anim-in [data-anim="fadeIn"] {
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease
}

.js-anim-in[data-anim="fadeIn"].is-active, .js-anim-in [data-anim="fadeIn"].is-active {
  opacity: 1
}

.js-anim-in[data-anim-parent].is-active [data-anim="fadeIn"]:not(.js-anim-in), .js-anim-in[data-anim-parent] .is-active[data-anim="fadeIn"] {
  opacity: 1
}

.js-anim-in[data-anim="slideUp"], .js-anim-in [data-anim="slideUp"] {
  opacity: 0;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease
}

.js-anim-in[data-anim="slideUp"].is-active, .js-anim-in [data-anim="slideUp"].is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.js-anim-in[data-anim-parent].is-active [data-anim="slideUp"]:not(.js-anim-in), .js-anim-in[data-anim-parent] .is-active[data-anim="slideUp"] {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.js-anim-in[data-anim="loadToRight"], .js-anim-in [data-anim="loadToRight"] {
  max-width: 0;
  overflow: hidden;
  -webkit-transition: max-width 0.6s cubic-bezier(0.34, 0.14, 0.28, 1);
  transition: max-width 0.6s cubic-bezier(0.34, 0.14, 0.28, 1);
}

.js-anim-in[data-anim="loadToRight"].is-active, .js-anim-in [data-anim="loadToRight"].is-active {
  max-width: 100%
}

.js-anim-in[data-anim-parent].is-active [data-anim="loadToRight"]:not(.js-anim-in), .js-anim-in[data-anim-parent] .is-active[data-anim="loadToRight"] {
  max-width: 100%
}

.js-anim-in[data-anim-delay="1"], .js-anim-in [data-anim-delay="1"] {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.js-anim-in[data-anim-delay="2"], .js-anim-in [data-anim-delay="2"] {
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
}

.js-anim-in[data-anim-delay="3"], .js-anim-in [data-anim-delay="3"] {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.js-anim-in[data-anim-delay="4"], .js-anim-in [data-anim-delay="4"] {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.js-anim-in[data-anim-delay="5"], .js-anim-in [data-anim-delay="5"] {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.js-anim-in[data-anim-delay="6"], .js-anim-in [data-anim-delay="6"] {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.js-anim-in[data-anim-delay="7"], .js-anim-in [data-anim-delay="7"] {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.js-anim-in[data-anim-delay="8"], .js-anim-in [data-anim-delay="8"] {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

.js-anim-in[data-anim-delay="9"], .js-anim-in [data-anim-delay="9"] {
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

.js-anim-in[data-anim-delay="10"], .js-anim-in [data-anim-delay="10"] {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}
.ttl {
  display: inline-block;
  -webkit-transform: translateY(-0.5em);
  transform: translateY(-0.5em);
  transition-timing-function: ease;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
  transition-duration: .4s;
}
.is-active .ttl {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/*welfare----------------------------------------------------------- */
.welfare {
  clip-path: inherit;
}

/*culture----------------------------------------------------------- */
.culture {
  clip-path: inherit;
}

/*environment----------------------------------------------------------- */
.environment {
  clip-path: inherit;
}

/*greetings----------------------------------------------------------- */
.greetings {
  padding: 9vw 0;
}
.greetings .name span {
  padding-left: 15px;
}

/*qa----------------------------------------------------------- */
.qa {
  margin-top: -6vw;
}
dl.accordion dt {
	background:url(../img/open.png) 97% center no-repeat #e6e6e6;
	cursor:pointer;
}
dl.accordion dt.open {
	background:url(../img/close.png) 97% center no-repeat #e6e6e6;
}
dl.accordion dd {
	background:#FFF;
	padding:10px 10px 0;
	display:none;
}
.accordion{
	margin-bottom: 50px;
}
.accordion dt{
	font-size: 20px;
	color: #1a1a1a;
	font-weight: bold;
	background: #f5f5f5;
	padding: 10px;
}
.accordion dt p{
	background: url(../img/q.png) no-repeat left 12px top 8px;
	padding: 5px 60px;
}
.accordion dd{
	font-weight: normal!important;
	font-size: 14px;
	font-weight: bold;
	background: #fff;
	padding: 10px;
}
.accordion dd p{
	background: url(../img/a.png) no-repeat left 12px top 8px;
	padding: 5px 15px 5px 60px;
  min-height: 45px;
}
.accordion:last-child {
  margin-bottom: 0;
}

/*joblist----------------------------------------------------------- */
.joblist {
  margin-top: -3vw;
  padding: 9vw 0;
}
.joblist_head a {
  display: block;
  width: 100%;
  height: 100%;
}
.joblist_head .occupation {
  padding: 15px;
  background-image: var(--bg-gradation);
  max-width: 294px;
  margin: 0 auto;
}
.joblist table tr {
	font-size: 12px;
  line-height: 1.4;
}
.joblist table th,
.joblist table tr td:first-child {
	width: 140px;
	background-color: #f5f5f5;
	border-top: solid 1px #e6e6e6;
	border-bottom: solid 1px #e6e6e6;
	border-left: none;
	border-right: none;
	font-weight: bold;
	text-align: center;
	padding: 10px 15px;
}
.joblist table td {
	background-color: #fff;
	border-top: solid 1px #e6e6e6;
	border-bottom: solid 1px #e6e6e6;
	border-left: none;
	border-right: none;
	vertical-align: middle;
	padding: 10px 15px;
}
.joblist table th {
  text-align: left;
}
.joblist .cv_btn {
	margin-top: 40px;
}

/*form----------------------------------------------------------- */
.fwn {
  font-weight: normal;
}
.cv_btn_wrap {
  position: relative;
}
.cv_btn_wrap:before {
  position: absolute;
  content: "\f054";
  color: #fff;
  right: 15px;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'FontAwesome';
  font-size: 27px;
}
.cv_btn{
  border-bottom: none;
  color: #fff;
  text-decoration: none;
  padding: 22px 20px;
  background-image: var(--bg-gradation);
  background-size: 200% auto;
  transition: .3s;
  font-weight: bold;
  font-size: 24px;
  border: 0;
  height: 85px;
}
.cv_btn:hover{
  background-position: right center;
}
.cv_btn:visited{
  color: #fff;
  text-decoration: none;
}
input{
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  height: 50px;
  font-size: 16px;
}
select{
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  height: 50px;
  font-size: 16px;
}
textarea{
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
}
input[type="text"]:focus,
select:focus,
textarea[type="text"]:focus {
  border: 3px solid rgb(79,172,254);
  border-image: var(--bg-gradation);
  border-image-slice: 1;
  border-radius: 5px;
  outline: 0;
}
.required{
  background: #fd006b;
  color: #fff;
  font-size: 12px;
  padding: 2px 5px;
  margin-left: 5px;
}
.border_box{
  border-radius: 5px;
  border: 1px solid #ccc;
  height: 200px;
  margin-bottom: 30px;
  overflow-y: scroll;
  padding: 30px;
  font-size: 12px;
}
.privacy_h3{
  border-left: 3px solid #25d1fe;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 15px;
}
.privacy_dl{
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px dotted #eee;
}
.privacy_dl dt{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

/*contact----------------------------------------------------------- */
.contact {
  padding-top: 3vw;
  clip-path: inherit;
}
.contact table {
	width: 650px;
}
.contact table th {
	width: 140px;
	background-color: #f5f5f5;
	border-top: solid 1px #e6e6e6;
	border-bottom: solid 1px #e6e6e6;
	border-left: none;
	border-right: none;
  vertical-align: middle;
  font-weight: bold;
}
.contact table td {
	background-color: #fff;
	border-top: solid 1px #e6e6e6;
	border-bottom: solid 1px #e6e6e6;
	border-left: none;
	border-right: none;
	vertical-align: middle;
	padding: 20px 15px;
}

/*map----------------------------------------------------------- */
.map iframe {
  display: block;
  width: 100%;
  height: 550px!important;
}

/*Footer----------------------------------------------------------- */
footer {
  padding: 15px 0;
}

.thanks_head {
  position: inherit;
}
.thanks {
  clip-path: none;
}
.thanks_contact {
  padding-top: 7vw;
}

.recruit_closed {
	position: relative;
}
.recruit_closed:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "現在募集は行っておりません";
  left: 0;
  bottom: 0;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  padding: 15px;
  background-color: #ccc;
  color: #fff;
	border: 1px solid #ccc;
}
.recruit_closed:before {
  content: none;
}