@charset "UTF-8";




/**************************************************
  inview
**************************************************/
.fadeIn_up {
  transform: translate(0, 100px);
  transition: all .6s ease-in-out;
  opacity: 0;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up2 {
  transform: translate(0, 50px);
  transition: all .3s ease-in-out;
  opacity: 0;
}

.fadeIn_up2.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up.delay1 {
  transition-delay: 0.1s;
}

.fadeIn_up.delay2 {
  transition-delay: 0.2s;
}



/**************************************************
  Main visual
**************************************************/
.main-visual {
  width: 100%;
  min-height: 100vh;
  height: 100%;
}

.main-visual__content {
  position: relative;
  height: 100vh;
  max-height: 1080px;
}

.main-visual__content::before {
  content: "";
  background-image: url(../images/mv-logo_01.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 3rem;
  left: 5rem;
  width: 21.3rem;
  height: 25.6rem;
  display: block;
}

.main-visual__content-main {
  display: block;
  max-width: 1240px;
  width: auto;
  margin: 0 7vw;
  justify-content: center;
  z-index: 5;
  position: relative;
  top: 3vh;
}

@media screen and (min-width: 1600px) {
  .main-visual__content-main {
    top: 20vh;
  }
}

@media screen and (max-width: 768px) {

  .main-visual {
    min-height: 0;
    height: auto;
  }

  .main-visual__content {
    position: relative;
    height: auto;
    max-height: none;
  }

  .main-visual__content::before {
    top: 1rem;
    left: 1rem;
    width: 10rem;
    height: 13rem;
  }

  .main-visual__content-main {
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    padding: 10rem 0 3rem;
    top: 0;
  }

  .main-visual__content-main img {
    width: 15rem;
    margin: 0 0 15px;
  }
}




.main-visual__content-main h1 {
  margin: 0;
}

.main-visual__content-main h1 img {
  width: 282px;
}

@media screen and (max-width: 768px) {
  .main-visual__content-main h1 {
    margin: 0 0 30px;
  }

  .main-visual__content-main h1 img {
    width: 38%;
  }
}

.main-visual__content-main-text {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.1;
  color: #323232;
  margin-top: 1%;
}

@media screen and (max-width: 768px) {
  .main-visual__content-main-text {
    font-size: 6.4vw;
  }
}



.main-visual__button-wrap {
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 38.3%;
}

.main-visual__button-wrap .module-button {
  max-width: 475px;
  width: 100%;
}

@media screen and (max-width: 768px) {

  .main-visual__button-wrap {
    position: relative;
    width: 100%;
  }

  .main-visual__button-wrap .module-button {
    max-width: 100%;
    width: 100%;
  }

  .main-visual__button-wrap .module-button--large {
    width: 90%;
    height: 60px;
    margin: 0 auto;
    padding-inline: 10px 20px;
  }

  .main-visual__button-wrap .module-button--gray span {
    display: block;
  }

}


.main-visual__scroll {
  position: absolute;
  max-width: 1240px;
  width: 89.6%;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, 0%);
}

@media screen and (max-width: 768px) {

  .main-visual__scroll {
    position: static;
    max-width: none;
    width: 100%;
    top: 20px;
    bottom: auto;
    left: 0;
    display: block;
    transform: translate(0%, 0%);
  }

}

.scroll_down {
  width: 100%;
  height: 100vh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}


.scroll_down a {
  display: inline-block;
  position: absolute;
  left: -10px;
  bottom: -5rem;
  z-index: 2;
  width: 32px;
  padding: 10px 10px 110px;
  color: #000;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: .2s;
  overflow: hidden;
  margin: auto;
}

.scroll_down a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #ddd;
}

.scroll_down a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #000;
}

.scroll_down a:hover {
  opacity: .5;
}

#type01 a:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}




/**************************************************
  .main-visual__image
**************************************************/
.main-visual__image {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  height: 100vh;
  max-height: 1080px;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .main-visual__image {
    width: 100%;
    height: auto;
  }
}

.main-visual__image img {
  max-width: none;
  width: auto;
  object-fit: cover;
}


/* img1 */
.main-visual__image .img1 img {
  width: 47vw;
  height: 600px;
  object-position: 0 0;
}

.main-visual__image .img1 {
  position: absolute;
  right: 7vw;
  width: 47vw;
  height: 600px;
}

.main-visual__image .img1 span {
  position: absolute;
  clip-path: inset(0);
}

.main-visual__image .img1 .img1b {
  clip-path: inset(0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.62, 0, 0.3, 1);
}

.main-visual__image .img1 .img1b.is-hidden {
  clip-path: inset(100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.62, 0, 0.3, 1);
}

/* img2 */
.main-visual__image .img2 img {
  width: 18vw;
  height: 610px;
  object-position: 0 0;
}

.main-visual__image .img2 {
  position: absolute;
  z-index: 1;
  top: 291px;
  right: 45vw;
  width: 18vw;
  height: 610px;
}

.main-visual__image .img2 span {
  position: absolute;
  clip-path: inset(0);
}

.main-visual__image .img2 .img2b {
  clip-path: inset(0 0 0);
  transition: clip-path 0.8s 0.3s cubic-bezier(0.62, 0, 0.3, 1);
}

.main-visual__image .img2 .img2b.is-hidden {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s 0.3s cubic-bezier(0.62, 0, 0.3, 1);
}

/* img3 */
.main-visual__image .img3 img {
  width: 30vw;
  height: 291px;
  object-position: 0 0;
}

.main-visual__image .img3 {
  position: absolute;
  z-index: 2;
  top: 473px;
  right: 0;
  width: 30vw;
  height: 291px;
}

.main-visual__image .img3 span {
  position: absolute;
  clip-path: inset(0);
}

.main-visual__image .img3 .img3b {
  clip-path: inset(0 0 0);
  transition: clip-path 0.8s 0.6s cubic-bezier(0.62, 0, 0.3, 1);
}

.main-visual__image .img3 .img3b.is-hidden {
  clip-path: inset(0 0 100%);
  transition: clip-path 0.8s 0.6s cubic-bezier(0.62, 0, 0.3, 1);
}


/* shadow */
.main-visual__image::before {
  content: "";
  position: absolute;
  top: calc(291px - 12px);
  right: calc(45vw + 12px);
  width: 18vw;
  height: 610px;
  background: rgba(51, 51, 51, .50);
}

.main-visual__image .img1::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 100%;
  height: 100%;
  background: rgba(86, 86, 86, .40);
}

.main-visual__image .img3::before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: calc(100% - 11px);
  height: 100%;
  background: rgba(0, 0, 0, .65);
}




@media screen and (max-width: 768px) {

  /* img1 */
  .main-visual__image .img1 img {
    width: 70vw;
    height: 370px;
    object-position: 0 0;
  }

  .main-visual__image .img1 {
    position: absolute;
    right: 0;
    width: 70vw;
    height: 370px;
  }

  /* shadow */
  .main-visual__image .img1::before {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 0;
    width: calc(100% - 30px);
    height: 100%;
    background: rgba(86, 86, 86, .40);
  }

  .main-visual__image::before {
    width: 0;
    height: 0;
    background: none;
    border: none;
  }

}


/**************************************************
  top_form
**************************************************/

.top .main-visual .top_form_hierarchical_select {
  top: 4.2rem;
  left: 0;
  right: 0;
}

.top .main-visual .btn_change {
  width: 100%;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem 1.2rem;
  position: relative;
  background-color: #2670af;
  color: #fff;
  margin: 1.5rem 0 0;
  font-size: 1.4rem;
}

.top .main-visual .top_form_row {
  margin-right: 1px;
}

.top .main-visual .top_form_col {
  margin-right: 25px;
}

.top .main-visual .top_form_col input {
  border-radius: .25rem;
  line-height: 3rem;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {

  .top .main-visual .form-wrapper {
    display: block;
    width: 100%;
    margin-top: 30px;
  }

  .top .main-visual .form-inner {
    display: block;
  }

  .top .main-visual .form-inner__left {
    width: 100%;
  }

  .top .main-visual .top_form_row {
    margin: 0 0 10px 0;
  }

  .top .main-visual .top_form_row:last-child {
    width: 60%;
  }

  .top .main-visual .top_form_parts_title {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }

  .top .main-visual .top_form_col {
    margin: 0 .5rem;
  }

  .top .main-visual .top_form_col3 .top_form_hierarchical_select {
    left: auto;
    right: 0;
  }

  .top .main-visual .top_form_hierarchical_select.open {
    max-height: 40vh;
    width: 200px;
  }

  .top .main-visual .top_form_controls {
    position: absolute;
    bottom: 60px;
    right: 20px;
    width: 33%;
    height: 42px;
  }

  .top .main-visual .top_form_controls .form-button {
    font-size: 1.6rem;
  }

  .top .main-visual .top_form_controls .form-button::after {
    content: "→";
    font-size: 14px;
    top: 50%;
    right: 8px;
  }



  /*
.top .top_form {
padding: 3rem;
}
.top .form-inner__left {
width: auto;
}
.top .form-inner {
display: block;
}
.top .top_form_row {
display: block;
}
.top .top_form_col {
width: auto;
margin: 0 0;
}
.top .top_form_controls {
width: auto;
margin-top: 2.4rem;
}
.top .form-button {
padding: 0.8rem;
font-size: 1.6rem;
}

*/
}




/**************************************************
  slAreas_common
**************************************************/

.slAreas {
  margin: 5rem auto 5rem;
}

.slArea {
  padding: 3.5rem 0;
}

.slArea .sttl {
  margin: 0 0 5rem;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}

.slArea .ulBox {
  padding: 0 0 0;
}

.slArea .liBox {
  width: 340px !important;
  height: auto;
  background: #fff;
  padding: 3rem 3rem 2rem;
}

.slArea .liBox .inner {
  height: 100%;
}

.slArea .liBox .favorite-heart {
  position: absolute;
  top: .5rem;
  left: .7rem;
  width: 5rem;
  height: 5rem;
  padding: 1.8rem 1rem 0;
  background-color: #999999;
  border-radius: 50%;
}

.slArea .liBox .favorite-heart.on_click {
  background-color: #ff475b;
}

.slArea .liBox .favorite-heart img {
  margin: 0 auto;
}


.slArea .liBox .job-main-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 1.5rem;
  border: #323232 1px solid;
  border-radius: 0.75rem;
  height: 14rem;
}

.slArea .liBox .job-main-logo img {
  height: 5rem;
}

.slArea .liBox .job-ttl {
  margin: 0 0 1rem;
  font-size: 2.0rem;
}

.slArea .liBox .job_content_spec {
  margin: 0 0 .5rem;
}

.slArea .liBox .job_content_spec div {
  display: flex;
  border-bottom: 1px solid #f3f4f1;
  padding: .8rem 0 .8rem;
}

.slArea .liBox .job_content_spec div dt {
  width: 6rem;
}

.slArea .liBox .job_content_spec div dd {
  margin-left: 2.0rem;
  line-height: 1.7;
}

.slArea .liBox .tag {
  margin: 0 0 2rem;
}

.slArea .liBox .tag a {
  display: inline-block;
  border-bottom: 1px #787878 solid;
  margin-right: 1.0rem;
  font-size: 1.2rem;
  color: #787878;
}


.slArea .liBox .job_btn_flex button {
  margin: 0 0 1.5rem;
  width: 100%;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  position: relative;
}


.slArea .liBox .job_btn_flex .btn_2 {
  color: #4387ed;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 0;
  display: block;
  text-align: center;
}

.slArea .liBox .job_btn_flex .btn_2::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(to right, #4387ed, #0db9fb);
  border-radius: 0;
  z-index: -1;
}

.slArea .liBox .job_btn_flex .btn_2::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: #fff;
  border-radius: 0;
  z-index: 0;
}

.slArea .liBox .job_btn_flex .btn_2_inner {
  display: block;
  color: #4387ed;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.slArea .liBox .job_btn_flex .btn_2_inner::after {
  content: "→";
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.slArea .liBox .job_btn_flex .btn_apply {
  color: #fa7c8e;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 0;
  display: block;
  text-align: center;
}

.slArea .liBox .job_btn_flex .btn_apply::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(to right, #ed6e9f, #ec8b6b);
  border-radius: 0;
  z-index: -1;
}

.slArea .liBox .job_btn_flex .btn_apply::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: #fff;
  border-radius: 0;
  z-index: 0;
}

.slArea .liBox .job_btn_flex .btn_apply_inner {
  display: block;
  color: #fa7c8e;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.slArea .liBox .job_btn_flex .btn_apply_inner::after {
  content: "→";
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}




.slArea .botArea {
  position: relative;
  max-width: 1240px;
  width: 89.6%;
  margin: 10rem auto 3rem;
}


.slArea .swp-prev,
.slArea .swp-next {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 1000;
  bottom: 10px;
  cursor: pointer;
}

.slArea .swp-prev {
  background: url(../images/sl_prev.svg) 50% 50% no-repeat;
  background-size: 50px auto;
  left: 0;
}

.slArea .swp-next {
  background: url(../images/sl_next.svg) 50% 50% no-repeat;
  background-size: 50px auto;
  right: 0;
}

.slArea .swp-prev:hover,
.slArea .swp-next:hover {
  opacity: .5;
}

.slArea .swiper-scrollbar {
  bottom: 34px;
  left: 60px;
  width: calc(100% - 120px);
  background: #000;
  height: 1px;
}

.slArea .swiper-scrollbar-drag {
  top: calc(50% - 7px);
  width: 15px !important;
  height: 15px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #dfdfdf;
}



.slArea .botBtn button {
  margin: 0 auto 1.5rem;
  width: 42rem;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  position: relative;
}


.slArea .botBtn .btn_sum {
  color: #fa7c8e;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #f3f4f1;
  border-radius: 0;
  display: block;
  text-align: center;
}

.slArea .botBtn .btn_sum::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(to right, #ed6e9f, #ec8b6b);
  border-radius: 0;
  z-index: -1;
}

.slArea .botBtn .btn_sum::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: #f3f4f1;
  border-radius: 0;
  z-index: 0;
}

.slArea .botBtn .btn_sum_inner {
  display: block;
  color: #fa7c8e;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.slArea .botBtn .btn_sum_inner::after {
  content: "→";
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}




@media screen and (max-width: 768px) {

  /**************************************************
  slAreas_common_SP
**************************************************/

  .slAreas {
    margin: 3rem auto 3rem;
    padding: 0 2rem;
  }

  .slArea {
    padding: 1rem 0;
  }

  .slArea .sttl {
    margin: 0 0 3rem;
    font-size: 1.8rem;
  }

  .slArea .liBox {
    padding: 3rem 2.5rem 2rem;
  }

  .slArea .liBox .favorite-heart {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 3.6rem;
    height: 3.6rem;
    padding: 1.3rem 1rem 0;
    background-color: #999999;
    border-radius: 50%;
  }

  .slArea .liBox .favorite-heart img {
    width: 1.3rem;
    margin: 0 auto;
  }


  .slArea .liBox .job-main-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 .8rem 1.5rem;
    border: #323232 1px solid;
    border-radius: 0.75rem;
    height: 14rem;
  }

  .slArea .liBox .job-main-logo img {
    height: 5rem;
  }

  .slArea .liBox .job-ttl {
    margin: 0 0 1rem;
    font-size: 1.4rem;
  }

  .slArea .liBox .job_content_spec {
    margin: 0 0 .5rem;
  }

  .slArea .liBox .job_content_spec div {
    font-size: 1.2rem;
  }

  .slArea .liBox .job_content_spec div dt {
    width: 4rem;
  }

  .slArea .liBox .job_content_spec div dd {
    margin-left: 2.0rem;
    line-height: 1.7;
  }

  .slArea .liBox .tag {
    margin: 0 0 2rem;
  }


  .slArea .liBox .job_btn_flex button {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
  }

  .slArea .liBox .job_btn_flex .btn_2_inner::after {
    content: "→";
    font-size: 1.2rem;
  }

  .slArea .liBox .job_btn_flex .btn_apply_inner::after {
    content: "→";
    font-size: 1.2rem;
  }




  .slArea .botArea {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 7rem auto 3rem;
    padding: 0 1rem;
  }


  .slArea .swp-prev,
  .slArea .swp-next {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 1000;
    bottom: 0;
    cursor: pointer;
  }

  .slArea .swp-prev {
    background: url(../images/sl_prev.svg) 50% 50% no-repeat;
    background-size: 40px auto;
    left: 1rem;
  }

  .slArea .swp-next {
    background: url(../images/sl_next.svg) 50% 50% no-repeat;
    background-size: 40px auto;
    right: 1rem;
  }

  .slArea .swp-prev:hover,
  .slArea .swp-next:hover {
    opacity: 1;
  }

  .slArea .swiper-scrollbar {
    bottom: 20px;
    left: 50px;
    width: calc(100% - 100px);
    background: #000;
    height: 1px;
  }

  .slArea .swiper-scrollbar-drag {
    top: calc(50% - 7px);
    width: 15px !important;
    height: 15px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #dfdfdf;
  }

  .slArea .botBtn {
    padding: 0 1rem;
  }

  .slArea .botBtn button {
    margin: 0 auto 1.5rem;
    width: 100%;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    position: relative;
    font-size: 1.4rem;
  }

  .slArea .botBtn .btn_sum_inner::after {
    content: "→";
    font-size: 1.4rem;
  }
}





/**************************************************
  Top Sections
**************************************************/

/* Sections
**************************/
#section-brand {
  margin-top: 100px;
}

#section-recommend {
  margin-top: 100px;
}


#section-new {
  margin-top: 100px;
}

#section-new .slAreas {
  margin-bottom: 0;
}

#section-new .slArea {
  padding-bottom: 0;
}

/**************************************************
  swiper_idx1
**************************************************/
.swiper_idx1 {
  padding: 6rem 0 1rem;
}

.swiper_idx1 .swiper-container {
  margin: 0 0 3rem;
}

.swiper_idx1 .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper_idx1 .swiper-slide {
  width: 24rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 1rem 1rem 1rem 1rem;
  box-shadow: 0 0 10px 1px rgba(50, 50, 50, 0.05);
}

.swiper_idx1 .swiper-slide img {
  max-width: 11.5rem;
  max-height: 4.0rem;
  object-fit: contain;
  /* 画像をスライド内で収める */
}

.swiper_idx1 .swiper-container:nth-child(2) .swiper-wrapper {
  position: relative;
  left: -12rem;
}


@media screen and (max-width: 768px) {

  .swiper_idx1 {
    padding: 3rem 0 0;
  }

  .swiper_idx1 .swiper-container {
    margin: 0 0 1rem;
  }

  .swiper_idx1 .swiper-slide {
    width: 16rem;
    height: 6rem;
  }

  .swiper_idx1 .swiper-slide img {
    max-width: 80%;
    max-height: 6rem;
    margin: 0 auto;
  }

}


#section-category {
  margin-top: 100px;
}


.main-content .module-button--pink {
  height: 60px;
  font-size: 1.4rem;
}

.main-content .module-button--pink::after {
  font-size: 1.4rem;
}





@media screen and (max-width: 768px) {

  #section-brand {
    margin-top: 50px;
  }

  #section-recommend {
    margin-top: 50px;
  }

  #section-new {
    margin-top: 50px;
  }

  #section-category {
    margin-top: 50px;
  }

  .main-content .section-title {
    font-size: 48px;
    margin-bottom: 30px;
  }

}







.section-category__cotent {
  display: flex;
  position: relative;
}

.section-category__cotent .module-bg-sheet {
  width: 100%;
  padding: 60px 0;
}


.section-category__cotent-body {
  margin-top: 40px;
}

/* category content detail */
.section-category__cotent--01 {
  justify-content: flex-end;
  z-index: 5;
}

.section-category__cotent--01 .module-bg-sheet {
  margin-left: 28.75%;
}

.section-category__cotent--02 {
  justify-content: flex-start;
  z-index: 4;
}

.section-category__cotent--02 .section-category__cotent-image {
  position: absolute;
  margin-right: 23.68%;
  top: 150px;
  left: 0;
  transform: translate(0, -100%);
}

.section-category__cotent--02 .module-bg-sheet {
  margin-top: 97px;
  margin-right: 20.83%;
}

.section-category__cotent--02 .module-headline-03 {
  margin-top: 10px;
}


/* -------------------------------------------------------- */


.section-category__cotent--03 {
  justify-content: flex-start;
  z-index: 2;
}

.section-category__cotent--03 .section-category__cotent-image {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 2;
  margin-left: 68.19%;
}

.section-category__cotent--03 .module-bg-sheet {
  margin-top: 100px;
  margin-right: 19.93%;
}

.section-category__cotent--03 .module-content-block {
  padding-inline-end: 16.14%;
}

.section-category__cotent--03 .module-bg-sheet {
  padding-bottom: 100px;
}

.section-category__cotent--03 .module-job-list dt {
  width: 120px;
}


.section-category__cotent--04 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.section-category__cotent--04 li {
  display: inline-block;
  line-height: 24px;
}

.section-category__cotent--04 li a {
  text-decoration: underline;
}

.section-category__cotent--04 li a:hover {
  text-decoration: none;
}

.section-category__cotent--04 {
  justify-content: flex-end;
  z-index: 1;
}

.section-category__cotent--04 .section-category__cotent-image {
  position: absolute;
  margin-right: 67.71%;
  top: -38px;
  left: 0;
}

.section-category__cotent--04 .module-bg-sheet {
  margin-top: 97px;
  margin-left: 28.96%;
}

.section-category__cotent--05 {
  justify-content: flex-start;
  z-index: 2;
}

.section-category__cotent--05 .section-category__cotent-image {
  position: absolute;
  top: calc(100% + 143px);
  right: 0;
  z-index: 2;
  margin-left: 68.19%;
  transform: translateY(-100%);
}

.section-category__cotent--05 .module-bg-sheet {
  margin-top: 100px;
  margin-right: 19.93%;
}

.section-category__cotent--05 .module-content-block {
  padding-inline-end: 16.14%;
}


#section-column {
  margin-top: 260px;
}



@media screen and (max-width: 768px) {


  .section-category__cotent-body {
    margin-top: 5px;
  }

  .section-category__cotent .module-bg-sheet {
    padding: 30px 0;
  }

  .section-category__cotent--01 .module-bg-sheet {
    margin-left: 5%;
  }

  .section-category__cotent--02 .section-category__cotent-image {
    z-index: -1;
    margin-right: 5%;
    top: 70px;
    left: 0;
  }

  .section-category__cotent--02 .module-job-list dd:last-of-type {
    width: 50%
  }

  .section-category__cotent--02 .module-bg-sheet {
    margin-top: 30px;
    margin-right: 5%;
  }


  .section-category__cotent--03 .section-category__cotent-image {
    z-index: 10;
    top: -80px;
    width: 15rem;
    right: 0;
    margin-left: 0;
  }

  .section-category__cotent--03 .module-bg-sheet {
    margin-top: 30px;
    margin-right: 5%;
  }


  .section-category__cotent--04 .section-category__cotent-image {
    position: absolute;
    width: 16rem;
    margin-right: 0;
    top: -50px;
    left: 0;
  }

  .section-category__cotent--04 .module-bg-sheet {
    margin-top: 30px;
    margin-left: 5%;
  }

  .section-category__cotent--04 ul {
    margin-top: 25px;
  }

  .section-category__cotent--04 li {
    line-height: 15px;
  }

  .section-category__cotent--04 li a {
    font-size: 1.2rem;
  }

  .section-category__cotent--05 .section-category__cotent-image {
    top: auto;
    bottom: -220px;
    right: 0;
    z-index: -1;
    width: 18rem;
    margin-left: 0;
  }

  .section-category__cotent--05 .module-bg-sheet {
    margin-top: 30px;
    margin-right: 5%;
  }

  .section-category__cotent--05 .module-content-block {
    padding-inline-end: 0;
  }

  #section-column {
    margin-top: 140px;
  }

  #section-column .module-headline-03 {
    text-align: center;
  }
}






/* Section about
**************************/
.section-about {
  background: url(../images/bg-about.png) no-repeat center top,
    url(../images/bg-about_bottom.png) no-repeat center bottom,
    url(../images/pattern-dot-gray.png) repeat,
    #f7f5ef;
  background-size: 100%, 100%, auto;
  padding-top: 136px;
  padding-bottom: 160px;
}

.section-about__content {
  margin-top: 80px;
}

.contet_03_sp .accordion-check {
  display: none;
}

/*  */
@media screen and (max-width: 767px) {

  .contet_03_sp {
    display: block;
  }

  .contet_03_sp .accordion-check {
    display: none;
  }

  .contet_03_sp dt {
    margin: 0;
    padding: 12px;
    position: relative;
    width: 100%;
  }

  .contet_03_sp dt::after {
    content: "";
    background-image: url(../images/advance_one.png);
    background-size: 5px 8px;
    transform: rotate(90deg);
    width: 5px;
    height: 8px;
    background-repeat: no-repeat;
    position: absolute;
    right: 18%;
    top: 19px;
  }

  .contet_03_sp .accordion-label {
    display: block;
    cursor: pointer;
    font-weight: bold;
  }

  .contet_03_sp dd.accordion-content {
    display: none;
    margin: 0;
    padding: 10px 0 20px 20px;
  }

  .contet_03_sp .accordion-check:checked+dt+dd.accordion-content {
    display: block;
  }
}

/* PCでは常に展開 */
@media screen and (min-width: 768px) {
  .contet_03_sp dd.accordion-content {
    display: block !important;
  }

  .contet_03_sp .accordion-label {
    cursor: default;
  }
}