/*!
* A Modern CSS Reset Base
* 全ての要素にbox-sizing: border-box;.

/* Box sizing rules */
*,:after,:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
ol[class],
p,
table,
td,
th,
tr,
ul {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.0;
  overflow-x: hidden;
}
ol[class],
ul[class] {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
button,
input,
select,
textarea {
  font: inherit;
}
img:not([alt]) {
  -webkit-filter:blur(10px);
  filter:blur(10px);
}
@media(prefers-reduced-motion:reduce) {
  * {
      -webkit-animation-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      -webkit-animation-iteration-count: 1 !important;
      animation-iteration-count: 1 !important;
      -webkit-transition-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}

/* body */
body {
  background-color: #fff;
  font-size: 14px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  color: #111111;
  line-height: 1.6;
  letter-spacing: 0.07em;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display:none;
}
.pc {
  display: none;
}
@media only screen and (min-width:480px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .spBr {
    display: none;
  }
}
.font_s {
  font-size: 9px;
  line-height: 3.0;
}

.center {
  text-align: center;
}
.left {
  text-align: left;
}
.bold {
  font-weight: bold;
}
.white {
  color: #FFFFFF;
}
h1 {
  margin: 0 auto;
}
h2 {
  font-family: "Suez One", serif;
  font-size: 38px;
  line-height: 1.2;
  padding-top: 80px;
}
p.subtitle {
  color: #0DC457;
  font-size: 16px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  margin-bottom: 40px;
}
@media only screen and (min-width:480px) {
  h2 {
    font-size: 70px;
    padding-top: 140px;
    margin-left:4%;
  }
  p.subtitle {
    font-size: 24px;
    margin-bottom: 60px;
    margin-left:4%;
  }
}

/* header */
header {
  display: flex;
  position: fixed;
  background-color: #FFFFFF;
  width: 100%;
  z-index: 999;
}

/* layout */
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 15px;
  top: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 23px;
  height: 3px;
  left: 13px;
  border-radius: 3px;
  background: #444444;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:first-child {
  top: 11px;
}
.hamburger span:nth-child(2) {
  top: 19px;
  left: 13px;
  width: 23px;
}
.hamburger span:nth-child(3) {
  top: 27px;
  left: 13px;
  width: 23px;
}
.hamburger.active span:first-child {
  top: 24px;
  left:4px;
  width: 32px;
  background: #FFFFFF;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 24px;
  left:4px;
  width: 32px;
  background: #FFFFFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background: #111111;
  text-align: left;
  width: 100%;
  height: 100%;
  display: none;
  padding-bottom: 300px;
}
nav.globalMenuSp ul {
  margin: 130px 10%;
  padding-left: 40px;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
nav.globalMenuSp ul li:hover > a {
  opacity: 0.5;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 30px;
  text-decoration: none;
}
.line {
  border: 1px solid #444444;
  width: 240px;
  margin-bottom: 30px;
}
nav.globalMenuSp ul li a span {
  font-size: 10px;
  color: #0DC457;
  font-family: "Syne", sans-serif;
}
nav.globalMenuSp.active {
  display: block;
  opacity: 100;
}
nav.globalMenuPc {
  display: flex;
  align-items: center;
}

.logo img {
  width: 70px;
  margin: 15px 80px 13px 24px;
}
nav.globalMenuPc ul {
  display: none;
}
/* エントリーボタン */
.entry-btn a {
  display:block;
  width: 110px;
  height: 34px;
  color:#FFFFFF;
  font-size: 14px;
  font-weight: 700;
  border-radius:32px;
  background: #097434;
  text-align: center;
  padding: 5px 0;
}
.entry-btn a:hover {
  opacity: 0.7;
}
.g-nav {
  margin: 14px 55px;
}
@media only screen and (min-width:480px) {
header {
  width: 100%;
  height: 60px;
  background-color: #FFFFFF;
  position: fixed;
}
.hamburger {
  display: none;
}
nav.globalMenuPc {
  display: flex;
  margin: 0 auto;
}
nav.globalMenuPc ul {
  display: flex;
  width: 600px;
  margin: auto;
  margin-left: 30px;
  text-align: center;
}
.logo img {
  width: 70px;
  margin: 14px 56px;
}
nav.globalMenuPc ul li {
  list-style-type: none;
  display: inline-block;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
nav.globalMenuPc ul li:hover > a {
  opacity: 0.5;
}
nav.globalMenuPc ul li a {
  display: block;
  color: #111111;
  font-size: 14px;
  text-decoration: none;
}
}
.container {
  margin: 0 20px;
}
@media only screen and (min-width:480px) {
  .container {
    max-width: 1080px;
    margin: 0 auto;
  }
}
/* LIPOTについて */
section.about {
  background-color: #E7E8EB;
  position: relative;
  z-index: 1;
}
.customer::after {
  content: "";
  margin: 0;
  width: 270px;
  height: 102px;
  background-repeat: no-repeat;
  background-image: url(https://lipot.co.jp/recruit/img/union.png);
  background-size: contain;
  position: absolute;
  top: 480px;
  left: 0;
  z-index: -1;
}
.sports::after {
  content: "";
  margin: 0;
  width: 270px;
  height: 102px;
  background-repeat: no-repeat;
  background-image: url(https://lipot.co.jp/recruit/img/union.png);
  background-size: contain;
  position: absolute;
  top: 500px;
  left: 0;
  z-index: -1;
}
section.uniqueness {
  background-color: #2B2B2B;
  padding-bottom: 60px;
}
section.job_sample {
  background-color: #FFFFFF;
}
section.job_description {
  background-color: #F0F1F3;
}
.customer , .sports {
  position: relative;
  height: 640px;
}
.wide picture img {
	width: 82%;
  overflow: hidden;
}
picture.right {
  width: 100%;
  margin-left: 18%;
  position: absolute;
  top: 260px;
  overflow: hidden;
}
.explain {
  background-color: #FFFFFF;
  padding: 40px;
  border-top: 5px solid #0DC457;
  border-image: linear-gradient(to right, #0DC457 0%, #065E2A 100%);
  border-image-slice: 1;
  margin-bottom: 80px;
  width: 82%;
  position: absolute;
  top: 180px;
  right: 0;
  z-index: 2;
}
h3 {
  color: #0DC457;
  font-size: 24px;
  margin-bottom: 8px;
}
.explain_reverse {
  background-color: #FFFFFF;
  padding: 40px;
  border-top: 5px solid #065E2A;
  border-image: linear-gradient(to right, #065E2A 0%, #0DC457 100%);
  border-image-slice: 1;
  width: 82%;
  position: absolute;
  z-index: 3;
}
/* 特徴 */
.uniqu_list .txt_inner .sub_title {
  color: #0DC457;
  border: 1px solid #0DC457;
  border-radius: 40px;
  display: inline;
  padding: 6px 24px;
}
.uniqu_list .txt_inner h3 {
  color: #FFFFFF;
  padding-top: 12px;
}
.uniqu_list .txt_inner p {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.uniqu_list .txt_inner {
  margin: 0 20px;
}
.uniqu_list .img_inner {
  margin-bottom: 60px;
  margin-right: calc(50% - 50vw);
  margin-left: 20px;
}
/* エントリー */
.lets_work {
  height: auto;
  background-image: url(https://lipot.co.jp/recruit/img/entry_sp.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  text-align: center;
  padding: 82px 0;
}
.headding_work {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}
.btn_wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;;
}
.btn_wrapper img {
  width: 200px;
}
/* とある1日の業務*/
.slide-wrap {
  display: flex;
  margin: 0 auto;
  max-width: 1080px;
  width: 100%;
  padding: 0 2%;
  justify-content: space-between;
  margin-bottom: 140px;
}
.slide-box {
  height: auto;
  margin: .5%;
  width: 24%;
  text-align: center;
}
.slide-box a {
  background-color: #fff;
  color: #222;
  display: block;
  text-decoration: none;
}
.slide-box img {
  display: block;
  height: auto;
  width: 100%;
}
.slide-box p {
  font-weight: bold;
  padding: 10px;
  margin:.5rem auto;
  font-size: 16px;
}
.staff {
  width: 50%;
  max-width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
/* スマホでスライダー表示 */
  .slide-wrap {
    overflow-x: scroll;
    margin-bottom: 80px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
  }
  .slide-box {
    flex: 0 0 70%;
    margin: 0 5%;
  }
  .scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
}
/* 募集要項 */
/*タブのスタイル*/
.tab_item {
  width: 45%;
  height: 50px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 40px;
  padding: 8px 20px;
  display: block;
  float: left;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 2.0;
  background-color: #DDDDDD;
  color: #888888;
  margin-bottom: 24px;
}
.tab_item.subcontracting {
  margin-left: 10%;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}
/*pcの時*/
.tabs.pc p {
  text-align: center;
  font-weight: 600;
  color: #097434;
  background-color: #FFFFFF;
  border-radius: 40px;
  padding: 4px 30px;
  width: 140px;
  font-size: 18px;
  margin: 0 auto 34px;
}
.tabs.pc img.full {
  margin-bottom: 100px;
}

/*選択されているタブのコンテンツのみを表示*/
#full-time:checked ~ #full-time_content,
#subcontracting:checked ~ #subcontracting_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #097434;
  color: #fff;
}

/* スライド */
.slideshow {
  position: relative;
	overflow: hidden;
}
input[name="slideshow"] {
  display: none;
}

/* スライドの動き */
.slideContents {
  position: relative;
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
  transition: transform .6s;
}
 
.slideContents section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(100%);
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.slideContents section img {
  max-width: 100%;
  height: auto;
  padding: 30px 0;
  box-sizing: border-box;
  vertical-align: middle;
}

/* 矢印のスタイル */
.arrow,
.arrow label,
.arrow .ico {
	position: absolute;
}
.arrow {
	top: 0;
	margin: 0;
	transition: background .3s;
}
.prev {
	left: 0;
}
.next {
	right: 0;
}
.arrow:hover {
	background: rgba(255,255,255,.2);
}
.arrow,
.arrow label {
	cursor: pointer;
	width: 20px;
	height: 20px;
}
.arrow label {
	top: 0;
	left: 0;
	z-index: 1;
}
.arrow .ico {
	top: calc(50% - 6px);
	width: 12px;
	height: 12px;
	border-top: 3px solid #8A8F9E;
}
.prev .ico {
  left: 50%;
	border-left: 3px solid #8A8F9E;
	transform: rotate(-45deg);
	transition: left .3s cubic-bezier(0.215, 0.61, 0.355, 1), opacity .3s;
}
.next .ico {
  right: 50%;
	border-right: 3px solid #8A8F9E;
	transform: rotate(45deg);
	transition: right .3s cubic-bezier(0.215, 0.61, 0.355, 1), opacity .3s;
}
.arrow:hover .ico {
  opacity: .6;
}
.prev:hover .ico {
  left: calc(50% - 6px);
}
.next:hover .ico {
  right: calc(50% - 6px);
}

/* 矢印の動き */
.arrow label {
  pointer-events: none;
}

#switch1:checked~.prev label[for="switch4"],
#switch2:checked~.prev label[for="switch1"],
#switch3:checked~.prev label[for="switch2"],
#switch4:checked~.prev label[for="switch3"],
#switch1:checked~.next label[for="switch2"],
#switch2:checked~.next label[for="switch3"],
#switch3:checked~.next label[for="switch4"],
#switch4:checked~.next label[for="switch1"] {
  pointer-events: auto;
}

#sub_switch1:checked~.prev label[for="sub_switch4"],
#sub_switch2:checked~.prev label[for="sub_switch1"],
#sub_switch3:checked~.prev label[for="sub_switch2"],
#sub_switch4:checked~.prev label[for="sub_switch3"],
#sub_switch1:checked~.next label[for="sub_switch2"],
#sub_switch2:checked~.next label[for="sub_switch3"],
#sub_switch3:checked~.next label[for="sub_switch4"],
#sub_switch4:checked~.next label[for="sub_switch1"] {
  pointer-events: auto;
}

/* スライドの中身 */
#switch1:checked~.slideContents #slide1,
#switch2:checked~.slideContents #slide2,
#switch3:checked~.slideContents #slide3,
#switch4:checked~.slideContents #slide4,
#switch5:checked~.slideContents #slide5,
#switch6:checked~.slideContents #slide6 {
  position: relative;
  transform: none;
}

#switch1:checked~.slideContents #slide4,
#switch1:checked~.slideContents #slide3,
#switch2:checked~.slideContents #slide1,
#switch2:checked~.slideContents #slide4,
#switch3:checked~.slideContents #slide2,
#switch3:checked~.slideContents #slide1,
#switch4:checked~.slideContents #slide3,
#switch4:checked~.slideContents #slide2 {
  transform: translateX(-100%);
}

#switch1:checked~.slideContents #slide2,
#switch1:checked~.slideContents #slide3,
#switch2:checked~.slideContents #slide3,
#switch2:checked~.slideContents #slide4,
#switch3:checked~.slideContents #slide4,
#switch3:checked~.slideContents #slide1,
#switch4:checked~.slideContents #slide1,
#switch4:checked~.slideContents #slide2 {
  transition-duration: 0s;
}

#sub_switch1:checked~.slideContents #sub_slide1,
#sub_switch2:checked~.slideContents #sub_slide2,
#sub_switch3:checked~.slideContents #sub_slide3,
#sub_switch4:checked~.slideContents #sub_slide4,
#sub_switch5:checked~.slideContents #sub_slide5,
#sub_switch6:checked~.slideContents #sub_slide6 {
  position: relative;
  transform: none;
}

#sub_switch1:checked~.slideContents #sub_slide4,
#sub_switch1:checked~.slideContents #sub_slide3,
#sub_switch2:checked~.slideContents #sub_slide1,
#sub_switch2:checked~.slideContents #sub_slide4,
#sub_switch3:checked~.slideContents #sub_slide2,
#sub_switch3:checked~.slideContents #sub_slide1,
#sub_switch4:checked~.slideContents #sub_slide3,
#sub_switch4:checked~.slideContents #sub_slide2 {
  transform: translateX(-100%);
}

#sub_switch1:checked~.slideContents #sub_slide2,
#sub_switch1:checked~.slideContents #sub_slide3,
#sub_switch2:checked~.slideContents #sub_slide3,
#sub_switch2:checked~.slideContents #sub_slide4,
#sub_switch3:checked~.slideContents #sub_slide4,
#sub_switch3:checked~.slideContents #sub_slide1,
#sub_switch4:checked~.slideContents #sub_slide1,
#sub_switch4:checked~.slideContents #sub_slide2 {
  transition-duration: 0s;
}

@media only screen and (min-width:480px) {
  section.job_description {
    padding-bottom: 140px;
  }
  .tabs.pc img {
    padding:0 2%;
  }
  .explain {
    padding: 60px 80px;
    width: 60%;
    top: 480px;
    right: 8%;
  }
  .explain p {
    font-size: 16px;
  }
  .explain_reverse {
    padding: 60px 80px;
    width: 60%;
    left: 8%;
  }
  .explain_reverse p {
    font-size: 16px;
  }
  h3 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .customer , .sports {
    position: relative;
    height: 880px;
  }
  picture.right {
    top: 180px;
  }
  .uniqu_list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
  }
  .uniqu_list .txt_inner {
    width: 45%;
    margin-left: 8%;
  }
  .uniqu_list .img_inner {
    width: 45%;
  }
  .customer::after {
    width: 450px;
    height: 165px;
    top: 700px;
    right: 0;
    left: auto;
  }
  .sports::after {
    width: 450px;
    height: 165px;
    top: 200px;
    left: 0;
  }
  .lets_work {
    background-image: url(https://lipot.co.jp/recruit/img/entry_pc.jpg);
    padding: 142px 0;
  }
  .headding_work {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .btn_wrapper {
    flex-direction: row-reverse;
    justify-content: center;
  }
  .btn_wrapper img {
    width: 250px;
  }
  .btn_wrapper img.view {
    margin-right: 40px;
  }
}



/* footer */
.footer_wrapper.pc{
  display: none;
}
.footer_txt {
  color: #FFFFFF;
  text-align: center;
  font-weight: 600;
  background-image: url(https://lipot.co.jp/recruit/img/footer_bg_sp.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.footer_txt p:nth-child(1) {
  padding: 60px 0 12px 0;
}
.footer_txt p:nth-child(2) {
  padding: 0  0 24px 0;
}
.footer_txt span {
  color: #0DC457;
  font-size: 18px;
}
.entry_now {
  width: 70%;
  margin: 0 auto 60px;
}
.copyright {
  height: 30px;
}

@media only screen and (min-width:480px) {
  .footer_wrapper.sp{
    display: none;
  }
  .footer_wrapper.pc{
    display: flex;
    align-items:stretch;
  }
  .footer_txt {
    display: table;
  }
  .txt_inner {
    display: table-cell;
    vertical-align: middle;
  }
  .footer_txt p:nth-child(1) {
    padding: 0 0 12px 0;
  }
  .footer_txt p:nth-child(2) {
    padding: 0  0 24px 0;
  }
  .entry_now {
    width: 40%;
    margin: 0 auto;
  }
  .footer_wrapper {
    display: flex;
  }
  .footer_img {
    width: 50%;
    height: 100%;
  }
  .footer_txt {
    width: 50%;
  }
}
