/* ===============================================
フォント指定
=============================================== */
@import url("");

body {
  font-family: "", sans-serif;
  font-style: normal;
  color: #;
}

/* ===============================================
全体設定
=============================================== */
html {
  scroll-behavior: smooth;
}
a{
  text-decoration: none;
  color: initial;
}
.main_container{
  max-width: 420px;
  margin: 0 auto;
}

/* ==========================
表示 / 非表示
========================== */
.pc_only{
  display: none;
}
.tb_only{
  display: ;
}
.sp_only{
  display: block;
}

/* ==========================
レイアウト
========================== */
.flex{
  display: flex;
}
.text_center{
  text-align: center;
}
.text_left{
  text-align: left;
}
.align_center{
  align-items: center;
}
.just_center{
  justify-content: center;
}
.just_between{
  justify-content: space-between;
}

/* ==========================
マージン
========================== */
.m0{
  margin: 0px;
}
.ma0{
  margin: 0 auto;
}

/* ==========================
パディング
========================== */
.pd20{
  padding: 0 20px;
}

/* ==========================
フォントサイズ
========================== */
.fs12{
  font-size: 12px;
}
.fs16{
  font-size: clamp(0px, 0vw, 16px);
}

/* ==========================
フォント太さ
========================== */
.fb700{
  font-weight: 700;
}

/* ==========================
横幅
========================== */
.w5p{
  width: 5%;
}
.w100{
  width: 100px;
}

/* ==========================
ここまで
========================== */

/* ===============================================
ヘッダー＋ファーストビュー
=============================================== */
header{
  position: fixed; /*← fixedで固定 */
  width: 100%; 
  height: auto; 
  top: 0; 
  left: 0;
  z-index: 99;
  background: #FFF;
  padding: 10px 20px;
}
.hamburger {
  position: fixed;
  right: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #FA8A96;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  top: 4px;
}
.hamburger__line:nth-of-type(2) {
  top: 13px;
}
.hamburger__line:nth-of-type(3) {
  top: 22px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 4px rgba(0,0,0,.1);
  transform: translateX(-100%);
  transition: transform .4s;
  z-index: 90;
}
.nav.active {
  transform: translateX(0);
}
.nav__list {
  margin: 0;
  padding: 100px 0 0;
  list-style: none;
}
.nav__item {
  padding: 0 20px;
}
.nav__link {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.header{
  display: flex;
  gap: 11px;
}
.logo_img{
  width: 110px;
}
.fv{
  position: relative;
  background-image: url('../image/kv.webp');
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.kv_btn_img{
  width: 85px;
  position: absolute;
  right: 5%;
  bottom: 5%;
}
.kv_btn_img:hover{
  transform: translateY(-4px);
  opacity: 0.5;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.kv_img{
  width: 100%;
}
.Recruitment_btn{
  background: #FFF;
  color: #FC8EAC;
  border: 1px solid #FC8EAC;
  border-radius: 23px;
  font-size: 11px;
  padding: 4px 18px;
}
.Apply_btn{
  background: #FC8EAC;
  color: #FFF;
  border: none;
  border-radius: 23px;
  font-size: 11px;
  padding: 4px 18px;
}
.Apply_btn:hover{
  background: #FFF;
  border: 1px solid #FC8EAC;
  color: #FC8EAC;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width:480px) {
  /* 480px以上に適用されるCSS（TB用） */
  .fv{
    height: 70vh;
  }
  body{
    background: #FEF2F2;
  }
  .main_container{
    max-width: 550px;
  }
}
@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  body{
    background: initial;
  }
  .main_container{
    max-width: 100%;
  }
  .sp_only{
    display: none;
  }
  .pc_only{
    display: block;
  }
  .logo_img{
    width: 220px;
  }
  .Recruitment_btn{
    font-size: 22px;
  }
  .Apply_btn{
    font-size: 22px;
  }
  .hamburger__line:nth-of-type(1) {
    top: 10px;
  }
  .hamburger__line:nth-of-type(2) {
    top: 19px;
  }
  .hamburger__line:nth-of-type(3) {
    top: 28px;
  }
  .kv_btn_img{
    width: 171px;
  }
  .fv{
    background-image: initial;
    height: initial;
  }
  .kv_img{
    margin-top: 3%;
  }
}

/* ===============================================
セクション01｜&Her Worksとは
=============================================== */
.sec01{
  background-image: url('../image/about_bg.webp');
  background-size: cover;
  background-position: bottom;
}
.sec01_incrm{
  padding: 50px 20px;
  padding-bottom: 100px;
}
.about_title_img{
  width: 190px;
}
.about_img{
  width: 125.5px;
}
.about_text_img{
  width: 310px;
  margin: 0 auto;
  margin-top: 15px;
}
.apply_btn_img{
  width: 290px;
  margin: 0 auto;
  margin-top: 30px;
}
.apply_btn_img:hover{
  transform: translateY(-4px);
  opacity: 0.5;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  .sec01{
    background-image: url('../image/pc/about_bg.webp');
  }
  .sec01_incrm{
    padding: 10% 0px;
    padding-bottom: 10%;
  }
  .about_title_img{
    width: 380px;
  }
  .about_img{
    width: 251px;
    margin-top: 80px;
  }
  .about_text_img{
    width: 714px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .apply_btn_img{
    width: 400px!important;
    margin: 0 auto;
    margin-top: 50px!important;
  }
}

/* ===============================================
セクション02｜職種紹介
=============================================== */
.sec02{
  background-image: url('../image/occupation_bg.webp');
  background-size: cover;
  background-position: bottom;
}
.sec02_incrm{
  padding: 50px 20px;
  padding-bottom: 80px;
}
.occupation_title_img{
  width: 186px;
  padding-left: 5%;
}
.occupation_crm{
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.occupation_img{
  width: 48%;
}

@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  .sec02{
    background-image: url('../image/pc/occupation_bg.webp');
  }
  .sec02_incrm{
    padding: 10% 0px;
    padding-bottom: 10%;
  }
  .occupation_title_img{
    width: 372px;
    padding-left: 2.5%;
  }
  .occupation_crm{
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 30px;
  }
  .occupation_img{
    width: 32%;
    gap: 30px;
  }
}

/* ===============================================
セクション03｜未経験から始める
=============================================== */
.sec03{

}
.sec03_incrm{
  padding: 50px 20px;
}
.inexperienced_title_img{
  width: 220px;
}
.inexperienced_sub_img{
  width: 308px;
  margin-top: -25px;
}
.inexperienced_text_img{
  width: 266px;
  margin: 0 auto;
  margin-top: 20px;
}
.inexperienced_graph_img{
  width: 350px;
  margin-top: 20px;
}
.inexperienced_text02_img{
  width: 244px;
  margin-top: 14px;
}
.introduction_crm{
  background-image: url('../image/introduction_cover.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 12%;
  padding-left: 14%;
  margin-top: 30px;
}
.introduction_img{
  width: 250px;
  margin-top: 6%;
}
video{
  border-radius: 15px;
}

@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  .sec03_incrm{
    padding: 10% 0px;
  }
  .inexperienced_title_img{
    width: 441px;
  }
  .inexperienced_sub_img{
    width: 616px;
    margin-top: -60px;
  }
  .inexperienced_text_img{
    width: 524px;
    margin: 0 auto;
    margin-top: 60px;
  }
  .pc_flex{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pcw1100{
    max-width: 1100px;
    margin: 0 auto;
  }
  .mt60{
    margin-top: 60px;
  }
  .gap60{
    gap: 60px;
  }
  .inexperienced_graph_img{
    width: 390px;
  }
  .introduction_img{
    width: 400px;
  }
  .introduction_crm{
    padding: 7%;
    padding-left: 8%;
  }
}

/* ===============================================
セクション04｜研修プログラム
=============================================== */
.sec04{
  background-image: url('../image/program_bg.webp');
  background-size: cover;
  background-position: top;
}
.sec04_incrm{
  padding: 50px 20px;
}
.training_title_img{
  width: 250px;
  margin-bottom: 20px;
}
.program_crm{
  width: 100%;
  background: #FFF;
  border: 1px solid #E68E97;
  padding: 20px 0px;
  position: relative;
}
.program_title_img{
  width: 130px;
}
.program_text_img{
  width: 286px;
  margin: 0 auto;
  margin-top: 15px;
}
.program_contents_img{
  width: 316px;
  margin: 0 auto;
  margin-top: 20px;
}
.arrow_img{
  width: 100%;
  margin-top: 40px;
}
.program_title02_img{
  width: 275.5px;
  margin-top: 30px;
  padding-right: 21%;
}
.program_text02{
  width: 312px;
  margin: 0 auto;
  margin-top: 15px;
}
.manner_img{
  width: 290px;
  margin: 0 auto;
  margin-top: 28px;
}
.pcskill{
  width: 290px;
  margin: 0 auto;
  margin-top: 10px;
}
.understanding_img{
  width: 290px;
  margin: 0 auto;
  margin-top: 10px;
}
.question_img{
  width: 290px;
  margin: 0 auto;
  margin-top: 10px;
}
.program_img{
  width: 120px;
  position: absolute;
  top: -0.5%;
  left: -0.5%;
}
.program_img02{
  width: 80px;
  position: absolute;
  bottom: -0.2%;
  right: 0%;
}
.training_btn_img{
  width: 290px;
  margin: 0 auto;
  margin-top: 30px;
}

@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  .sec04{
    background-image: url('../image/pc/program_bg.webp');
  }
  .sec04_incrm{
    padding: 10% 0px;
  }
  .training_title_img{
    width: 450px;
  }
  .program_crm{
    max-width: 1100px;
    margin: 0 auto;
    padding: 10% 5%;
  }
  .program_title_img{
    width: 260px;
  }
  .program_text_img{
    width: 504px;
    margin: 0 auto;
    margin-top: 54px;
  }
  .program_contents_img{
    width: 968px;
    margin: 0 auto;
    margin-top: 60px;
  }
  .program_title02_img{
    width: 450px;
    padding-right: 12%;
    margin-top: 80px;
  }
  .program_text02{
    width: 744px;
    margin: 0 auto;
    margin-top: 54px;
  }
  .program_incrm{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 10%;
  }
  .program_inbox{
    width: 48%;
  }
  .manner_img{
    width: 100%;
    margin-top: 0px;
  }
  .pcskill{
    width: 100%;
    margin-top: 0px;
  }
  .understanding_img{
    width: 100%;
    margin-top: 0px;
  }
  .question_img{
    width: 100%;
    margin-top: 0px;
  }
  .program_img{
    width: 210px;
    position: absolute;
    top: 4%;
    left: 20%;
  }
  .program_img02{
    width: 200px;
    position: absolute;
    bottom: -0.2%;
    right: 13%;
  }
  .training_btn_img{
    width: 400px;
    margin: 0 auto;
    margin-top: 40px;
  }
}

/* ===============================================
セクション05｜フォロー制度
=============================================== */
.sec05{
  background-image: url('../image/follow_bg.webp');
  background-size: cover;
  background-position: bottom;
}
.sec05_incrm{
  padding: 50px 20px;
}
.follow_title_img{
  width: 186px;
}
/* external css: flickity.css */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.gallery {
  margin-top: 20px;
}
.gallery-cell {
  width: 66%;
  height: auto;
  margin-right: 10px;
  counter-increment: gallery-cell;
}

.ca_img{
  width: 310px;
  margin-top: 50px;
}
.regular_img{
  width: 100%;
}

@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  .sec05{
    background-image: url('../image/pc/follow_bg.webp');
  }
  .sec05_incrm{
    padding: 10% 0px;
  }
  .follow_title_img{
    width: 370px;
  }
  .flickity-page-dots{
    bottom: -40px!important;
  }
  .ca_img{
    width: 390px;
  }
  .gallery-cell{
    width: 45%;
  }
  .regular_img{
    width: ;
  }
  .flickity-viewport{
    height: !important;
  }
}

/* ===============================================
セクション06｜就業先データ
=============================================== */
.sec06{
  background-image: url('../image/date_bg.webp');
  background-size: cover;
  background-position: bottom;
}
.sec06_incrm{
  padding: 50px 20px;
  padding-bottom: 180px;
}
.data_title_img{
  width: 185px;
}
.data_text_img{
  width: 242px;
  margin: 0 auto;
  margin-top: 10px;
}
.data_graph_img{
  width: 350px;
  margin: 0 auto;
  margin-top: 32.5px;
  padding-right: 3%;
}
.data_graph02_img{
  width: 335px;
  margin: 0 auto;
  margin-top: 40px;
}
.apply_btn_img{
  width: 290px;
  margin-top: 30px;
}

@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  .sec06{
    background-image: url('../image/pc/date_bg.webp');
  }
  .sec06_incrm{
    padding: 10% 0px;
    padding-bottom: 17%;
  }
  .data_title_img{
    width: 370px;
  }
  .data_text_img{
    width: 552px;
    margin: 0 auto;
    margin-top: 20px;
  }
  .mt6p{
    margin-top: 6%;
  }
  .data_graph_img{
    padding-right: 2.2%;
  }
  .lifestage_wrapcrm{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 60px;
  }
  .support_img_crm{
    width: 45%;
  }
  .support_img{
    width: 100%!important;
  }
  .someday_crm{
    width: 45%;
  }
  .ralse_crm{
    width: 45%;
  }
  .privateobi_title_img{
    width: 443px!important;
    margin: 0 auto;
    margin-top: -75px!important;
  }
  .someday_crm{
    padding: 0 25px!important;
  }
  .private_contents_img{
    margin-top: 30px;
  }
  .data_graph_img{
    width: 485px;
  }
  .data_graph02_img{
    width: 450px;
  }
}

/* ===============================================
セクション07｜ライフステージに合わせて、安心して長く働く
=============================================== */
.sec07{
  background-image: url('../image/lifestage_bg.webp');
  background-size: cover;
  background-position: top;
}
.sec07_incrm{
  padding: 50px 20px;
}
.lifestage_title_img{
  width: 295px;
}
.lifestage_text_img{
  width: 283px;
  margin: 0 auto;
}
.lifestage_graph_img{
  width: 335px;
  margin: 0 auto;
  margin-top: 30px;
}
.support_img{
  width: 335px;
  margin: 0 auto;
  margin-top: 37px;
}
.someday_crm{
  background: #FFF;
  border: 1px solid #E68E97;
  border-radius: 10px;
  padding: 0px 13px;
  margin-top: 60px;
  padding-bottom: 15px;

}
.privateobi_title_img{
  width: 295px;
  margin-top: -53px;
  margin-right: 9%;
}
.private_contents_img{
  width: 100%;
}
.schedule_crm{
  background-image: url('../image/binder_bg.webp');
  background-size: contain;
}
.oneday_img{
  width: 100px;
  margin-top: 4%;
}
@keyframes tonext {
  75% {
    left: 0;
  }
  95% {
    left: 100%;
  }
  98% {
    left: 100%;
  }
  99% {
    left: 0;
  }
}
@keyframes tostart {
  75% {
    left: 0;
  }
  95% {
    left: -300%;
  }
  98% {
    left: -300%;
  }
  99% {
    left: 0;
  }
}
@keyframes snap {
  96% {
    scroll-snap-align: center;
  }
  97% {
    scroll-snap-align: none;
  }
  99% {
    scroll-snap-align: none;
  }
  100% {
    scroll-snap-align: center;
  }
}
* {
  box-sizing: border-box;
  scrollbar-color: transparent transparent; /* thumb and track color */
  scrollbar-width: 0px;
}
*::-webkit-scrollbar {
  width: 0;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}
* {
  -ms-overflow-style: none;
}
ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.carousel {
  position: relative;
  padding-top: 143%;
  filter: drop-shadow(0 0 10px #0003);
  perspective: 100px;
}
.carousel__viewport {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow-x: scroll;
  counter-reset: item;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.carousel__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  counter-increment: item;
  margin-top: 20px;
}

.carousel__snapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
}
@media (hover: hover) {
  .carousel__snapper {
    animation-name: tonext, snap;
    animation-timing-function: ease;
    animation-duration: 4s;
    animation-iteration-count: infinite;
  }

  .carousel__slide:last-child .carousel__snapper {
    animation-name: tostart, snap;
  }
}
@media (prefers-reduced-motion: reduce) {
  .carousel__snapper {
    animation-name: none;
  }
}
.carousel:hover .carousel__snapper,
.carousel:focus-within .carousel__snapper {
  animation-name: none;
}
.carousel__navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}
.carousel__navigation-list,
.carousel__navigation-item {
  display: inline-block;
}
.carousel__navigation-button {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #333;
  background-clip: content-box;
  border: 0.25rem solid transparent;
  border-radius: 50%;
  font-size: 0;
  transition: transform 0.1s;
}
.carousel::before,
.carousel::after,
.carousel__prev,
.carousel__next {
  position: absolute;
  top: 0;
  margin-top: 37.5%;
  width: 4rem;
  height: 4rem;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 0;
  outline: 0;
  display: none;
}
.carousel::before,
.carousel__prev {
  left: -1rem;
}
.carousel::after,
.carousel__next {
  right: -1rem;
}
.carousel::before,
.carousel::after {
  content: '';
  z-index: 1;
  background-color: #333;
  background-size: 1.5rem 1.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  font-size: 2.5rem;
  line-height: 4rem;
  text-align: center;
  pointer-events: none;
}
.carousel::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,50 80,100 80,0' fill='%23fff'/%3E%3C/svg%3E");
}
.carousel::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,50 20,100 20,0' fill='%23fff'/%3E%3C/svg%3E");
}
.ralse_crm{
  background: #FFF;
  border: 1px solid #E68E97;
  border-radius: 10px;
  padding: 0px 13px;
  margin-top: 60px;
  padding-bottom: 25px;
}
.raise_title_img{
  width: 253px;
  margin-top: -20px;
}
.raise_contents_img{
  width: 281px;
  margin-top: 20px;
}
.schedule_crm{
  background-image: url('../image/binder_bg.webp');
  background-size: contain;
  background-repeat: no-repeat;
  padding: 14% 10%;
}
.slider_item01{
  width: 92%;
}

@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  .sec07{
    background-image: url('../image/pc/lifestage_bg.webp');
  }
  .sec07_incrm{
    padding: 10% 0px;
  }
  .lifestage_title_img{
    width: 590px;
  }
  .lifestage_text_img{
    width: 542px;
    margin: 0 auto;
    margin-top: 20px;
  }
  .lifestage_graph_img{
    width: 1100px;
    margin: 0 auto;
    margin-top: 60px;
  }
  .lifestage_wrapcrm{
    margin-top: 60px;
  }
  .support_img{
    margin-top: 47px;
  }
  .slider_item01{
    width: 292px;
    margin: 0 auto;
  }
  .schedule_crm{
    background-image: url('../image/pc/binder_bg.webp');
    padding: 8% 10%;
  }
  .carousel{
    padding-top: 90%;
  }
  .private_contents_img{
    margin-top: 20px;
    width: 350px;
  }
  .ralse_crm{
    margin-top: 0px;
  }
}

/* ===============================================
セクション08｜キャリア形成を本気でサポート
=============================================== */
.sec08{
  background-image: url('../image/support_bg.webp');
  background-size: cover;
  background-position: top;
}
.sec08_incrm{
  padding: 50px 20px;
  padding-top: 170px;
}
.support_title_img{
  width: 186px;
}
.support_text_img{
  width: 298px;
  margin: 0 auto;
}
.support_Illust_img{
  width: 335px;
  margin: 0 auto;
  margin-top: 30px;
}

@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  .sec08{
    background-image: url('../image/pc/support_bg.webp');
  }
  .sec08_incrm{
    padding: 10% 0px;
    padding-top: 20%;
  }
  .support_title_img{
    width: 372px;
  }
  .support_text_img{
    width: 724px;
    margin: 0 auto;
    margin-top: ;
  }
  .support_Illust_img{
    margin-top: 0px;
    width: 600px;
  }
}

/* ===============================================
セクション09｜就業までのステップ
=============================================== */
.sec09{
  background-image: url('../image/step_bg.webp');
  background-size: cover;
  background-position: top;
}
.sec09_incrm{
  padding: 50px 20px;
}
.step_title_img{
  width: 205px;
}
.step_text_img{
  width: 271px;
  margin: 0 auto;
}
.step_img{
  width: 140px;
  margin-top: 20px;
}
.step_img02{
  width: 335px;
  margin: 0 auto;
  margin-top: 12.5px;
}

@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  .sec09{
    background-image: url('../image/pc/step_bg.webp');
  }
  .sec09_incrm{
    padding: 10% 0px;
  }
  .step_title_img{
    width: 410px;
  }
  .step_text_img{
    width: 376px;
    margin: 0 auto;
  }
  .step_img{
    width: 281px;
  }
  .step_img02{
    width: 670px;
    margin: 0 auto;
    margin-top: 60px;
  }
}

/* ===============================================
セクション10｜仕事内容紹介
=============================================== */
.sec10{
  background: #FEF2F2;
  border-radius: 50px;
}
.sec10_incrm{
  padding: 50px 20px;
}
.Job_description_title_img{
  width: 186px;
}
.Job_description_text_img{
  width: 321px;
  margin: 0 auto;
}
.job_list_btn_img{
  width: 290px;
  margin: 0 auto;
  margin-top: 20px;
}
.job_list_btn_img:hover{
  transform: translateY(-4px);
  opacity: 0.5;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.Job_img{
  width: 181px;
  margin-top: 20px;
}
.recruitment_btn_img{
  width: 290px;
  margin: 0 auto;
  margin-top: 10px;
}
.question_btn_img{
  width: 290px;
  margin: 0 auto;
  margin-top: 10px;
}

.footer_crm{
  padding: 10px 0;
  text-align: center;
}

@media screen and (min-width: 960px) {
  /* 960px以上に適用されるCSS（PC用） */
  .sec10{
    border-radius: 150px;
  }
  .sec10_incrm{
    padding: 10% 0px;
  }
  .Job_description_title_img{
    width: 373px;
  }
  .Job_description_text_img{
    width: 514px;
    margin: 0 auto;
    margin-top: 10px;
  }
  .job_list_btn_img{
    width: 400px;
    margin: 0 auto;
    margin-top: 40px;
  }
  .Job_img{
    width: 255px;
    margin-top: 35px;
  }
  .apply_btn_img02{
    margin: 0px!important;
  }
  .gap10{
    gap: 10px;
  }
  .footer_crm{
    padding: 40px 0;
  }
}