@charset "UTF-8";
* {
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body {
  font-family: "メイリオ", "Meiryo", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: white;
  color: #fff;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
}
a:visited {
  text-decoration: underline;
}

fieldset {
  border: none;
}

input[type=checkbox],
input[type=radio] {
  width: 20px;
  height: 20px;
  margin-right: 3px;
  vertical-align: middle;
  cursor: pointer;
}

select {
  cursor: pointer;
}

img {
  display: block;
  vertical-align: bottom;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

p {
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 641px) {
  p {
    font-size: 0.8rem;
  }
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

h4 {
  margin: 0 0 15px 0;
}

@media screen and (min-width: 641px) {
  .break-pc {
    display: none;
  }
}

@media screen and (max-width: 639px) {
  .break-sp {
    display: none;
  }
}

/* top.css */

.header{
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  padding: 2px 40px 3px 40px;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 20;
}

@media screen and (max-width: 599px) {
  .header{
    width: 100%;
    padding: 3% 4% 3% 6.5%;
    height: auto;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 20;
  }
}

.header__left{
  display: flex;
  width: 50%;
  align-items: center;
}

@media screen and (max-width: 599px) {
  .header__left{
    width: 70%;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    justify-content: flex-start;
  }
}

.header__left h1{
  margin: 0;
}

.header__left h1 img{
  width: 150px;
}

@media screen and (max-width: 599px) {
  .header__left h1 img{
    width: 55%;
    margin-top: 5px;
  }
}

.header__left p{
  font-size: 13px;
  margin-left: 30px;
  color: #000;
}

@media screen and (max-width: 599px) {
  .header__left p{
    width: 100%;
    font-size: 10px;
    margin: 0;
    letter-spacing: 0.05em;
  }
}

.header__hamburger-menu{
  display: none;
}

.header__right{
  display: flex;
  align-items: center;
  justify-content: right;
  width: 40%;
  padding: 0 0 0;
}

@media screen and (max-width: 599px) {
  .header__right{
    width: 30%;
  }
}

.header__hamburger {
  position: fixed;
  top: 1.0%;
  right: 3%;
  width: 34px;
  cursor: pointer;
  z-index: 20;
}

@media screen and (max-width: 599px) {
  .header__hamburger {
    position: fixed;
    top: 2.0%;
    right: 6%;
    width: 30px;
  }
}

.header__hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: #000;
  margin: 10px 0;
  transition: 0.4s;
  border-radius: 10px;
}

@media screen and (max-width: 599px) {
  .header__hamburger span {
    margin: 8px 0;
  }
}

.header__hamburger.active span{
  background-color: #fff;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

@media screen and (max-width: 599px) {
  .header__hamburger.active span:nth-child(1){
    transform: rotate(45deg) translate(5px, 4px);
  }
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(12px, -12px);
}

@media screen and (max-width: 599px) {
  .header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(13px, -12px);
  }
}

.button{
  display: inline-block;
  font-size: 15px;
  color: white;
  background: #FF740F;
  padding: 10px 20px 8px 50px;
  border-radius: 10px;
  position: relative;
}

@media screen and (max-width: 599px) {
  .button-header{
    display: none;
  }
}

.button:hover,.button:visited,.button:active,.button:link{
  text-decoration: none;
  color: #fff;
}

.button:before {
  position: absolute;
  top: 29%;
  left: 8%;
  content: "";
  background: url("../images/top/icon-contact.svg") center left 4px no-repeat;
  width: 24px;
  height: 18px;
  background-size: contain;
  z-index: 0;
}

.button--line,.button--contact{
  display: inline-block;
  font-size: 22px;
  color: white;
  background: #20B44E;
  padding: 15px 30px 12px 72px;
  border-radius: 10px;
  position: relative;
}

@media screen and (max-width: 599px) {
  .button--line,.button--contact{
    width: 100%;
    display: inline-block;
    font-size: 18px;
    color: white;
    background: #20B44E;
    padding: 20px 30px 18px 72px;
    border-radius: 10px;
    position: relative;
    letter-spacing: 0.05em;
    text-align: center;
  }
}

.button--line:before{
  position: absolute;
  top: 27%;
  left: 10.5%;
  content: "";
  background: url("../images/top/icon-line.svg") center left 4px no-repeat;
  width: 31px;
  height: 25px;
  background-size: contain;
  z-index: 1;
}

@media screen and (max-width: 599px) {
  .button--line:before{
    width: 27px;
    height: 21px;
    top: 29%;
    left: 23%;
    background-size: contain;
  }
}

.button--contact{
  background: #FF740F;
}

@media screen and (max-width: 599px) {
  .button--contact{
    padding: 20px 30px 18px 69px;
  }
}

.button--contact:before{
  position: absolute;
  top: 25%;
  left: 11.5%;
  content: "";
  background: url("../images/top/icon-contact.svg") center left 4px no-repeat;
  width: 31px;
  height: 25px;
  background-size: contain;
  z-index: 1;
}

@media screen and (max-width: 599px) {
  .button--contact:before{
    position: absolute;
    top: 29%;
    left: 23.5%;
    content: "";
    background: url("../images/top/icon-contact.svg") center left 4px no-repeat;
    width: 29px;
    height: 23px;
    background-size: contain;
    z-index: 1;
  }
}

.button-area{
  width: 80%;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .button-area{
    display: none;
  }
}

.button-area--sp{
  display: none;
}

@media screen and (max-width: 599px) {
  .button-area--sp{
    width: 81%;
    display: block;
    margin: 0 auto 0;
  }
}

@media screen and (max-width: 599px) {
  .button-area--sp-top{
    display: block;
    width: 81%;
    margin-top: 155px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 599px) {
  .button-area--sp-about{
    display: block;
    width: 89%;
    margin-top: 30px;
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 599px) {
  .button-area--sp-about a:last-of-type{
    margin-bottom: 0;
  }
}

.button-area .button{
  margin: 0 20px;
}

@media screen and (max-width: 599px) {
  .button-area .button{
    margin: 0 0 20px;
  }
}

.button-area--both{
  display: block;
  width: 80%;
  margin: 50px auto 0;
  display: flex
;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .button-area--both{
    display: block;
    width: 89%;
    margin: 30px auto 0;
  }
}

.welcome{
  width: 100%;
  height: 440px;
  background: url("../images/top/main-image-back.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: absolute;
  border-bottom: 1px solid #3B2C7B;
}

@media screen and (max-width: 599px) {
  .welcome{
    width: 100%;
    height: 270px;
    background: url("../images/top/main-image-back-sp.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    position: absolute;
    border-bottom: none;
    background-color: #fff;
  }
}

.welcome--contact{
  width: 100%;
  height: 380px;
  background: url("../images/top/contact-image-back.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: absolute;
  border-bottom: 1px solid #3B2C7B;
}

@media screen and (max-width: 599px) {
  .welcome--contact{
    width: 100%;
    height: 360px;
    background: url("../images/top/contact-image-back-sp.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    position: absolute;
    border-bottom: 1px solid #3B2C7B;
  }
}

.welcome__main-text-sp{
  display: none;
}

@media screen and (max-width: 599px) {
  .welcome__main-text-sp{
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .welcome__main-text{
    display: none;
  }
}

.welcome h1{
  width: 480px;
  margin: 0 auto;
}

.welcome h1.welcome__contact-text{
  width: 800px;
  font-size: 26px;
  color: #3B2C7B;
  text-align: center;
  line-height: 1.9em;
  position: relative;
  padding-top: 100px;
}

.welcome h1.welcome__contact-text br.sp{
  display: none;
}

@media screen and (max-width: 599px) {
  .welcome h1.welcome__contact-text{
    width: 90%;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9em;
    position: relative;
    padding-top: 100px;
  }
}

@media screen and (max-width: 599px) {
  .welcome h1.welcome__contact-text br{
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .welcome h1.welcome__contact-text br.sp{
    display: block;
  }
}

.welcome h1.welcome__contact-text:before {
  position: absolute;
  top: 10%;
  left: 46%;
  content: "";
  background: url("../images/top/icon-tel.svg") center top no-repeat;
  width: 52px;
  height: 52px;
  background-size: contain;
  z-index: 0;
}

@media screen and (max-width: 599px) {
  .welcome h1.welcome__contact-text:before {
    position: absolute;
    top: 13%;
    left: 44%;
    content: "";
    background: url("../images/top/icon-tel.svg") center top no-repeat;
    width: 42px;
    height: 42px;
    background-size: contain;
    z-index: 0;
  }
}

@media screen and (max-width: 599px) {
  .welcome h1{
    width: 88%;
  }
}

.welcome h1 img{
  width: 100%;
  padding-top: 30px;
}

@media screen and (max-width: 599px) {
  .welcome h1 img{
    padding-top: 20px;
  }
}

.welcome__text{
  width: 700px;
  position: relative;
  bottom: -212px;
  left: 50%;
  transform: translateX(-50%);
  color: #3B2C7B;
  text-align: center;
  border: 1px solid #3B2C7B;
  background: #fff;
  border-radius: 200px;
}

@media screen and (max-width: 599px) {
  .welcome__text{
    width: 92%;
    bottom: -132px;
    border-radius: 0px;
  }
}

.welcome__text h2{
  margin: 0;
  padding: 20px 0 5px;
  font-size: 22px;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 599px) {
  .welcome__text h2{
    margin: 0;
    padding: 20px 0 7px;
    font-size: 16px;
    letter-spacing: 0.07em;
  }
}

.welcome__text p{
  padding: 0px 0 20px;
  font-size: 16px;
  line-height: 1.7em;
}

.welcome__text p br.sp{
  display: none;
}

@media screen and (max-width: 599px) {
  .welcome__text p{
    padding: 0px 0 15px;
    font-size: 14px;
    line-height: 1.7em;
  }
}

@media screen and (max-width: 599px) {
  .welcome__text p br.sp{
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .welcome__text p br.pc{
    display: none;
  }
}

.wrapper{
  width: 100%;
  background: #EAF9FD;
}

.wrapper--white{
  width: 100%;
  background: #fff;
}

.wrapper--features{
  padding: 510px 0 0;
}

.wrapper--contact{
  padding: 380px 0 0;
}

@media screen and (max-width: 599px) {
  .wrapper--features{
    padding: 560px 0 10px;
  }
}

@media screen and (max-width: 599px) {
  .wrapper--features--arc{
    padding: 460px 0 10px;
  }
}

.content{
  width: 1040px;
  margin: 0 auto;
  padding: 60px 0;
}

@media screen and (max-width: 599px) {
  .content{
    width: 90%;
    padding: 40px 0 40px;
  }
}

.content--contact{
  width: 1040px;
  margin: 50px auto 0;
  background: #fff;
  padding: 20px 50px;
}

@media screen and (max-width: 599px) {
  .content--contact{
    width: 90%;
    margin: 20px auto 0;
    background: #fff;
    padding: 2% 6%;
  }
}


.content--contact p{
  font-size: 16px;
  color: #3B2C7B;
  line-height: 1.9em;
  padding: 20px 0;
  border-bottom: 2px dotted #6b5ab5;
}

.content--contact p br.sp{
  display: none;
}

@media screen and (max-width: 599px) {
  .content--contact p{
    font-size: 15px;
  }
}

@media screen and (max-width: 599px) {
  .content--contact p br{
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .content--contact p br.sp{
    display: block;
  }
}

.content--contact span{
  display: block;
  background: #F4F4F4;
  padding: 40px 60px;
  margin: 30px 0;
  font-size: 16px;
}

@media screen and (max-width: 599px) {
  .content--contact span{
    display: block;
    background: #F4F4F4;
    padding: 20px 30px;
    margin: 30px 0;
    font-size: 14px;
  }
}

.content__subtitle{
  width: 100%;
  text-align: center;
  background: #3B2C7B;
  line-height: 1em;
  border-radius: 20px;
  padding: 10px 0 8px;
  letter-spacing: 0.1em;
  font-weight: normal;
  margin: 30px 0;
}

@media screen and (max-width: 599px) {
  .content__subtitle{
    line-height: 1.5em;
    border-radius: 10px;
    padding: 20px 6% 18px;
    letter-spacing: 0.1em;
    font-weight: normal;
    margin: 30px 0;
    font-size: 16px;
  }
}

.features{
  width: 100%;
  display: flex;
  background: #fff;
  justify-content: center;
  padding: 50px 0;
  border-radius: 12px;
}

@media screen and (max-width: 599px) {
  .features{
    width: 100%;
    display: block;
    padding: 10px 0;
    border-radius: 5px;
  }
}

.features__box{
  width: 315px;
  padding: 0 50px;
  border-right: 1px solid #3B2C7B;
}

@media screen and (max-width: 599px) {
  .features__box{
    width: 80%;
    margin: 0 auto;
    padding: 25px 0 25px;
    border-right: none;
    border-bottom: 1px solid #3B2C7B;
  }
}

.features__box:last-of-type{
  border-right: none;
}

@media screen and (max-width: 599px) {
  .features__box:last-of-type{
    border-bottom: none;
  }
}

.features__box img{
  width: 100%;
}

@media screen and (max-width: 599px) {
  .features__box img{
    width: 65%;
    margin: 0 auto;
  }
}


.features__box:nth-child(2) img{
  width: 175px;
  margin: 0 auto;
}

.recruit-company{
  width: 100%;
  text-align: center;
  margin: 35px 0 0 ;
  border-radius: 12px;
  background: #fff;
  color: #3B2C7B;
  padding: 40px 45px 45px;
}

@media screen and (max-width: 599px) {
  .recruit-company{
    width: 100%;
    margin: 25px 0 0 ;
    border-radius: 0px;
    color: #3B2C7B;
    padding: 25px 25px 25px;
  }
}

.recruit-company p.notice{
  font-weight: bold;
  line-height: 1.7em;
  padding: 40px 0 0;
  margin: 0;
}

@media screen and (max-width: 599px) {
  .recruit-company p.notice{
    font-weight: bold;
    line-height: 1.7em;
    padding: 20px 0 0;
    margin: 0;
  }
}

.recruit-company__title,.content__title{
  position: relative;
  padding: 1rem;
  color: #3B2C7B;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  letter-spacing: 0.2em;
  margin: 0;
  padding: 0 0 5px;
}

@media screen and (max-width: 599px) {
  .recruit-company__title,.content__title{
    position: relative;
    padding: 1rem;
    color: #3B2C7B;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.2em;
    margin: 0;
    padding: 0 0 5px;
  }
}


.recruit-company__title:before,
.recruit-company__title:after,
.content__title:before,
.content__title:after
{
  position: absolute;
  top: 48%;
  width: 34%;
  border-top: 2px dotted #3B2C7B;
  content: '';
}

@media screen and (max-width: 599px) {
  .recruit-company__title:before,
  .recruit-company__title:after
  {
    top: 36%;
    width: 18%;
  }
}

@media screen and (max-width: 599px) {
  .content__title:before,
  .content__title:after
  {
    top: 36%;
    width: 28%;
  }
}

.recruit-company__title:before,
.content__title:before
{
  left: 0.5rem;
}

@media screen and (max-width: 599px) {
  .content__title--consultant:before, .content__title--consultant:after {
      top: 36%;
      width: 20%;
  }
}

@media screen and (max-width: 599px) {
  .recruit-company__title:before,
  .content__title:before
  {
    left: -0.3rem;
  }
}

.recruit-company__title:after,
.content__title:after
{
  right: 0.5rem;
}

@media screen and (max-width: 599px) {
  .recruit-company__title:after,
  .content__title:after
  {
    right: -0.3rem;
  }
}

.content__title{
  line-height: 1em;
}

.content__title span{
  font-size: 14px;
  font-weight: normal;
}

.recruit-company p{
  margin: 5px 0 40px;
  font-size: 16px;
}

@media screen and (max-width: 599px) {
  .recruit-company p{
    margin: 10px 0 25px;
    font-size: 14px;
  }
}

.recruit-company__image{
  width: 100%;
}

.recruit-company__image-sp{
  display: none;
}

@media screen and (max-width: 599px) {
  .recruit-company__image{
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .recruit-company__image-sp{
    display: block;
  }
}

.recruit-company__image img{
  width: 100%;
}

@media screen and (max-width: 599px) {
  .recruit-company__image-sp img{
    width: 100%;
  }
}

.about{
  width: 100%;
  padding: 0;
}

.about__difference{
  width: 1040px;
  margin: 0 auto;
  border: 1px solid #3B2C7B;
  border-radius: 12px;
}

@media screen and (max-width: 599px) {
  .about__difference{
    width: 220%;
  }
}

.about__difference h4{
  text-align: center;
  color: #3B2C7B;
  font-size: 20px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #3B2C7B;
  padding: 22px 0 20px;
  line-height: 1em;
}

@media screen and (max-width: 599px) {
  .about__difference h4{
    text-align: left;
    color: #3B2C7B;
    font-size: 18px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #3B2C7B;
    padding: 20px 0 15px 40px;
    line-height: 1em;
  }
}

.about__table{
  width: 95%;
  color: #212121;
  border-collapse: collapse;
  margin: 2.5%;
}

@media screen and (max-width: 599px) {
  .about__table{
    width: 95%;
    color: #212121;
    border-collapse: collapse;
    margin: 1.5%;
  }
}

.about__table td,.about__table th{
  border: 1px dotted #707070;
  border-collapse: collapse;
  text-align: center;
  padding: 15px 30px;
}

@media screen and (max-width: 599px) {
  .about__table td,.about__table th{
    padding: 10px 7px;
    font-size: 14px;
  }
}

.about__table th{
  letter-spacing: 0.1em;
  line-height: 1.5em;
}

.about__table th br.sp{
  display: none;
}

@media screen and (max-width: 599px) {
  .about__table th br.sp{
    display: block;
  }
}

.about__table h5{
  margin: 10px 0 20px;
  font-size: 16px;
  font-weight: normal;
}

@media screen and (max-width: 599px) {
  .about__table h5{
    font-size: 14px;
  }
}

.about__table p{
  text-align: left;
  line-height: 1.9em;
  font-size: 15px;
  margin: 8px 0 0 !important;
}

@media screen and (max-width: 599px) {
  .about__table p{
    font-size: 14px;
    margin: 5px 0 5px !important;
  }
}

@media screen and (max-width: 599px) {
  .about__table p.other{
    line-height: 1.5em;
  }
}

.about__table strong{
  color: #3B2C7B;
}

.about__list{
  list-style: disc;
  padding: 0 0 0 20px;
}

@media screen and (max-width: 599px) {
  .about__list{
    list-style: disc;
    padding: 0 0 0 20px;
  }
}

.about__list li{
  margin-bottom: 15px;
}

.about__list li:last-of-type{
  margin-bottom: 0;
}

.about__table p.about__support{
  margin: 0;
  line-height: 1.5em;
}

.about__table-left{
  width: 9%;
  padding: 0 0 0 !important;
}

@media screen and (max-width: 599px) {
  .about__table-left{
    width: 9%;
    padding: 0 0 0 !important;
  }
}

.about__table-center{
  width: 42%;
  padding: 0 0 0 !important;
}

@media screen and (max-width: 599px) {
  .about__table-center{
    width: 31%;
    padding: 0 0 0 !important;
  }
}

.about__table-right{
  width: 47%;
  padding: 0 0 10px !important;
}

@media screen and (max-width: 599px) {
  .about__table-right{
    width: 37%;
  }
}

.about__table td.border-top-none,
.about__table th.border-top-none{
  border-top: none;
}

.about__table td.border-bottom-none,
.about__table th.border-bottom-none{
  border-bottom: none;
}

.about__table td.border-left-none,
.about__table th.border-left-none{
  border-left: none;
}

.about__table td.border-right-none,
.about__table th.border-right-none{
  border-right: none;
}

.about__table-title{
  width: 150px;
  margin: 0 auto 5px;
}

.about__table-title img{
  width: 100%;
}

.about__ca{
  width: 160px;
  margin: 0 auto 0;
}

@media screen and (max-width: 599px) {
  .about__ca{
    width: 130px;
  }
}

@media screen and (max-width: 599px) {
  .scroll-hint-icon {
    position: absolute;
    top: calc(50% - 180px);
    left: calc(50% - 44px);
}
}

.about__ca img{
  width: 100%;
}

.about__ca-sa{
  width: 320px;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .about__ca-sa{
    width: 260px;
    margin: 0 auto;
  }
}

.about__ca-sa img{
  width: 100%;
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .slick-dotted.slick-slider {
    margin-bottom: 10px;
  }
}

.case{
  width: 1040px;
  margin: 40px 0 0;
}

@media screen and (max-width: 599px) {
  .case{
    width: 100%;
    margin: 30px 0 0;
  }
}

.case .slick-track {
  display: flex;
  position: relative;
}

.case .slick-slide{
  width: 480px;
  margin: 0 15px;
  height: auto !important;
  border: 1px solid #3B2C7B;
  background: #fff;
}

@media screen and (max-width: 599px) {
  .case .slick-slide{
    height: min-content !important;
  }
}

.case li h3{
  background: #3B2C7B;
  margin: 0;
  font-size: 16px;
  text-align: center;
  width: 100%;
  padding: 12px 40px;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}

@media screen and (max-width: 599px) {
  .case li h3{
    font-size: 14px;
    text-align: left;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 599px) {
  .case li h3 br{
    display: none;
  }
}

.case li h3 span{
  color: #FFF500;
}

.case__inner{
  padding: 4% 6%;
}

@media screen and (max-width: 599px) {
  .case__inner{
    padding: 4% 5%;
  }
}

.case__info{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  position: relative;
}

.case__info--3-line{
  margin-bottom: 33px;
}

@media screen and (max-width: 599px) {
  .case__info--3-line{
    margin-bottom: 33px;
  }
}

.case__avatar{
  width: 25%;
  text-align: center;
  padding-left: 3%;
}

@media screen and (max-width: 599px) {
  .case__avatar{
    width: 23%;
    padding-left: 0%;
  }
}

.case__avatar img{
  width: 100%;
}

.case__avatar p{
  color: #3B2C7B;
  font-size: 12px;
  margin-top: 10px;
}

@media screen and (max-width: 599px) {
  .case__avatar p{
    font-size: 9px;
    margin-top: 6px;
  }
}

.case__before-changing{
  width: 67%;
  color: #0070C0;
}

@media screen and (max-width: 599px) {
  .case__before-changing{
    width: 72%;
  }
}

.case__before-changing h4{
  width: 100%;
  color: #fff;
  text-align: center;
  background: #0070C0;
  font-weight: normal;
  line-height: 1em;
  padding: 8px 0 5px;
  font-size: 16px;
  margin-bottom: 12px;
}

@media screen and (max-width: 599px) {
  .case__before-changing h4{
    font-size: 15px;
    padding: 6px 0 3px;
    margin-bottom: 10px;
  }
}

.case__before-inner{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 599px) {
  .case__before-inner{
    gap: 20px;
  }
}

@media screen and (min-width: 375px) {
  .case__before-inner--housemaker{
    gap: 10px;
  }
}

.case__before-job{
  /* width: 60%; */
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.2em;
}

.case__before-job  br.sp{
  display: none;
}

@media screen and (max-width: 599px) {
  .case__before-job{
    /* width: 50%; */
    font-size: 13px;
  }
}

@media screen and (max-width: 599px) {
  .case__before-job br.sp{
    display: block;
  }
}

@media screen and (max-width: 375px) {
  .case__before-job--housemaker{
    font-size: 12px;
  }
}

.case__before-income{
  /* width: 40%; */
  font-size: 18px;
  font-weight: bold;
}

.case__before-income--long{
  width: 70%;
}

@media screen and (max-width: 599px) {
  .case__before-income--long{
    width: auto;
  }
}

@media screen and (max-width: 599px) {
  .case__before-income{
    /* width: 50%; */
    font-size: 15px;
    font-weight: bold;
  }
}

.case__before-income span{
  font-size: 14px;
  padding-right: 5px;
}

@media screen and (max-width: 599px) {
  .case__before-income span{
    font-size: 12px;
    padding-right: 3px;
  }
}

.case__after-title{
  width: 100%;
  color: #fff;
  text-align: center;
  background: #3B2C7B;
  font-weight: normal;
  line-height: 1em;
  padding: 8px 0 5px;
  font-size: 16px;
  position: relative;
}

.case__after-title:after{
  content: '';
  position: absolute;
  display: inline-block;
  border-style: solid;
  border-width: 12px 0 12px 15px;
  border-color: transparent transparent transparent #3B2C7B;
  top: -135%;
  right: 48%;
  transform: rotate(90deg);
}

@media screen and (max-width: 599px) {
  .case__after-title:after{
    content: '';
    position: absolute;
    display: inline-block;
    border-style: solid;
    border-width: 10px 0 10px 12px;
    border-color: transparent transparent transparent #3B2C7B;
    top: -105%;
    right: 48%;
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 599px) {
  .case__after-title{
    padding: 6px 0 3px;
    font-size: 15px;
    margin-bottom: 10px;
  }
}

.case__after-inner{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3B2C7B;
  font-weight: bold;
  gap: 50px;
  border-bottom: 1px dotted #707070;
  padding-bottom: 15px;
}

@media screen and (max-width: 599px) {
  .case__after-inner{
    gap: 20px;
  }
}

.case__after-job{
  text-align: center;
  font-size: 15px;
}

.case__after-job br.sp{
  display: none;
}

@media screen and (max-width: 599px) {
  .case__after-job{
    text-align: center;
    font-size: 13px;
    width: 60%;
  }
}

@media screen and (max-width: 375px) {
  .case__after-job{
    font-size: 13px;
  }
}

@media screen and (max-width: 375px) {
  .case__after-job br.sp{
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .case__after-job br.sp{
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .case__after-job br.pc{
    display: none;
  }
}

@media screen and (max-width: 375px) {
  .case__after-job br.pc{
    display: none;
  }
}

.case__after-income{
  font-size: 20px;
}

@media screen and (max-width: 599px) {
  .case__after-income{
    font-size: 16px;
    width: 38%;
  }
}

.case__after-income span{
  font-size: 14px;
  padding-right: 5px;
}

@media screen and (max-width: 599px) {
  .case__after-income span{
    font-size: 12px;
    padding-right: 3px;
  }

}

.case__inner table{
  width: 100%;
  border-spacing: 0;
  padding: 10px 0;
  border-bottom: 1px dotted #707070;
}

@media screen and (max-width: 599px) {
  .case__inner table{
    padding: 5px 0;
  }
}

.case__inner table th{
  width: 20%;
  vertical-align: top;
  padding: 10px 10px 10px 0;
}

@media screen and (max-width: 599px) {
  .case__inner table th{
    padding: 5px 5px 5px 0;
  }
}

.case__inner table td{
  width: 60%;
  color: #3B2C7B;
  font-size: 14px;
  vertical-align: top;
  padding: 10px;
  line-height: 1.5em;
}

@media screen and (max-width: 599px) {
  .case__inner table td{
    padding: 5px;
    font-size: 12px;
  }
}

.case__inner table th span{
  display: block;
  text-align: center;
  background: #EAF9FC;
  color: #3B2C7B;
  padding: 3px 0;
  border-radius: 20px;
  font-size: 14px;
}

@media screen and (max-width: 599px) {
  .case__inner table th span{
    font-size: 12px;
  }
}

.case__comment{
  padding-top: 20px;
}

@media screen and (max-width: 599px) {
  .case__comment{
    padding-top: 10px;
  }
}

.case__comment p{
  color: #2B2B2B;
  line-height: 1.8em;
  font-size: 14px;
  padding-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .case__comment p{
    font-size: 12px;
  }
}

.case__comment p span{
  background: linear-gradient(transparent 50%, #FFF500 50%);
}

.case .slick-prev {
  position: absolute;
  width: 30px;
  height: 30px;
  display: block;
  background: url("../images/top/slider-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: -50px;
}

@media screen and (max-width: 599px) {
  .case .slick-prev {
    left: -3.1%;
  }
}

.case .slick-next {
  position: absolute;
  width: 30px;
  height: 30px;
  display: block;
  background: url("../images/top/slider-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  right: -60px;
}

@media screen and (max-width: 599px) {
  .case .slick-next {
    right: -7%;
  }
}

/* @media screen and (max-width: 599px) {
  .slick-prev, .slick-next {
    top: 40%;
  }
} */

.case .slick-next::before {
  content: none;
}

.user{
  width: 100%;
}

.user ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.user ul li:last-of-type{
  margin-bottom: 0
}

@media screen and (max-width: 599px) {
  .user ul{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.user ul li{
  width: 48%;
  border: 1px solid #707070;
  margin-bottom: 0px;
}

.user ul li:last-of-type{
  margin-bottom: 0
}

@media screen and (max-width: 599px) {
  .user ul li{
    width: 100%;
    /* margin: 10px 0 10px; */
    border: 1px solid #707070;
  }
}


.user ul li img{
  width: 100%;
}

.service{
  width: 100%;
  background: #fff;
  margin-top: 40px;
}

@media screen and (max-width: 599px) {
  .service{
    margin: 30px 0 10px;
  }
}

.service img{
  width: 100%;
  padding: 4% 5% 3%;
}

@media screen and (max-width: 599px) {
  .service img{
    width: 780px;
    padding: 4% 5% 10%;
  }
}

.service p{
  width: 100%;
  text-align: center;
  color: #3B2C7B;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-bottom: 40px;
}

.service p br{
  display: none;
}

@media screen and (max-width: 599px) {
  .service p{
    font-size: 17px;
    margin:  0 auto 10px;
    line-height: 1.7em;
  }
}

@media screen and (max-width: 599px) {
  .service p br{
    display: block;
  }
}

.reviews{
  width: 100%;
}

.reviews__text{
  width: 100%;
  text-align: center;
  color: #3B2C7B;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  margin: 30px 0 40px;
}

@media screen and (max-width: 599px) {
  .reviews__text{
    font-size: 14px;
    margin: 30px 0;
  }
}

@media screen and (max-width: 599px) {
  .reviews__text br{
    display: none;
  }
}

.reviews .slick-track {
  display: flex;
  position: relative;
}

.reviews .slick-slide {
  width: 480px;
  margin: 0 15px;
  height: auto !important;
  border: 1px solid #3B2C7B;
  background: #fff;
  border-radius: 20px;
  color: #2B2B2B;
  padding: 0.6% 0.8% ;
}

.reviews__head{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.reviews__info{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.reviews__icon{
  width: 50px;
  margin-right: 20px;
}

@media screen and (max-width: 599px) {
  .reviews__icon{
    width: 17%;
  }
}

.reviews__icon img{
  width: 100%;
}

.reviews__star{
  width: 100%;
  margin-top: 10px;
}

.reviews__star img{
  width: 110px;
}

.reviews__user p{
  color: #B9B9B9;
  font-size: 14px;
}

.reviews__user p strong{
  font-size: 16px;
  margin-bottom: 0;
  display: inline-block;
  color: #2B2B2B;
}

.reviews__google{
  width: 9%;
}

.reviews__google img{
  width: 100%;
}

.reviews__body{
  margin: 25px 0 0;
}

.reviews__body p{
  font-size: 14px;
  line-height: 1.8em;
  margin: 20px 0;
}

.reviews .slick-prev {
  position: absolute;
  width: 30px;
  height: 30px;
  display: block;
  background: url("../images/top/slider-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: -50px;
}

@media screen and (max-width: 599px) {
  .reviews .slick-prev {
    left: -14px;
  }
}

.reviews .slick-next {
  position: absolute;
  width: 30px;
  height: 30px;
  display: block;
  background: url("../images/top/slider-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  right: -60px;
}

@media screen and (max-width: 599px) {
  .reviews .slick-next {
    right: -23px;
  }
}

.reviews .slick-next::before {
  content: none;
}

.consultant{
  width: 100%;
  margin: 50px 0;
}

@media screen and (max-width: 599px) {
  .consultant{
    margin: 30px 0 0;
  }
}

.consultant__card{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #AAAAAA;
  background: #fff;
  padding: 3% 4%;
  color: #3B2C7B;
  margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .consultant__card{
    width: 100%;
    display: block;
    padding: 7% 6% 7% 7%;
  }
}

@media screen and (max-width: 599px) {
  .consultant__card--last{
    margin-bottom: 10px;
  }
}

.consultant__images{
  width: 160px;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .consultant__images{
    width: 40%;
    margin: 0 auto;
  }
}

.consultant__images p{
  font-size: 18px;
  margin-top: 10px;
}

.consultant__images img{
  width: 100%;
}

@media screen and (max-width: 599px) {
  .consultant__images img{
    width: 80%;
    margin: 0 auto;
  }
}

.consultant__comment{
  width: 740px;
}

@media screen and (max-width: 599px) {
  .consultant__comment{
    width: 100%;
  }
}

.consultant__comment h3{
  margin: 0 0 15px;
  font-size: 16px;
  padding: 0;
}

@media screen and (max-width: 599px) {
  .consultant__comment h3{
    margin: 20px 0 15px;
    text-align: center;
  }
}

.consultant__comment h3.last{
  padding-top: 25px;
}

@media screen and (max-width: 599px) {
  .consultant__comment h3.last{
    padding-top: 5px;
  }
}

.consultant__comment p{
  margin: 0;
  font-size: 16px;
  line-height: 1.7em;
  padding-bottom: 15px;
  border-bottom: 1px solid #BABABA;
}

@media screen and (max-width: 599px) {
  .consultant__comment p{
    line-height: 1.8em;
    padding-bottom: 20px;
    font-size: 14px;
  }
}

.consultant__comment ul{
  list-style-type: disc;
  padding-left: 22px;
}

.consultant__comment ul li{
  line-height: 1.7em;
  margin-bottom: 3px;
}

@media screen and (max-width: 599px) {
  .consultant__comment ul li{
    font-size: 14px;
  }

}

.company{
  width: 100%;
  color: #3B2C7B;
}

.company__logo{
  width: 25%;
  margin:  60px auto 30px;
}

@media screen and (max-width: 599px) {
  .company__logo{
    width: 45%;
    margin:  40px auto 30px;
  }
}

.company__logo img{
  width: 100%;
}

.company__add-text{
  width: 100%;
  background: #EAF9FC;
  text-align: center;
  color: #333;
  padding: 25px 20px;
  font-size: 18px;
  line-height: 1.7em;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 599px) {
  .company__add-text{
    padding: 25px 20px;
    font-size: 16px;
    text-align: left;
  }
}

@media screen and (max-width: 599px) {
  .company__add-text br{
    display: none;
  }
}

.company__inner{
  width: 100%;
  display: flex;
  margin: 50px 0 70px;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .company__inner{
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin: 25px 0 40px;
    justify-content: center;
  }
}

.company__image{
  width: 25%;
}

@media screen and (max-width: 599px) {
  .company__image{
    width: 40%;
    margin:  0 auto;
  }
}

.company__image img{
  width: 100%;
}

.company__concept{
  width: 65%;
}

@media screen and (max-width: 599px) {
  .company__concept{
    width: 100%;
  }
}

.company__concept h3{
  font-size: 24px;
  letter-spacing: 0.1em;
  font-weight: normal;
  line-height: 1.8em;
  margin: 0 0 30px;
}

@media screen and (max-width: 599px) {
  .company__concept h3{
    font-size: 18px;
    margin: 25px 0 30px;
    text-align: center;
  }
}

.company__concept p{
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 2em;
}

@media screen and (max-width: 599px) {
  .company__concept p{
    font-size: 16px;
    line-height: 1.8em;
  }
}

@media screen and (max-width: 599px) {
  .company__concept p br{
    display: none;
  }
}

.company table{
  width: 100%;
  color: #3B2C7B;
  border-collapse: collapse;
  border: 1px solid #3B2C7B;
}


.company table td,.company table th{
  border: 1px solid #3B2C7B;
  border-collapse: collapse;
  text-align: center;
  padding: 12px 30px;
  font-size: 16px;
  text-align: left;
  line-height: 1.7em;
}

.company table th{
  width: 25%;
  letter-spacing: 0.1em;
  background: #3B2C7B;
  color: #fff;
  font-weight: normal;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 599px) {
  .company table th,.company table td{
    display: block;
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 599px) {
  .company table th{
    border-bottom: none;
  }
}

@media screen and (max-width: 599px) {
  .company table th br{
    display: none;
  }
}

.company table tr:last-of-type th{
  border-bottom: none;
}

.footer{
  background: #3B2C7B;
  color: #fff;
}

.footer a{
  color: #fff;
}

.footer__menu{
  display: flex;
  justify-content: center;
  padding: 50px 0 50px;
}

@media screen and (max-width: 599px) {
  .footer__menu{
    display: block;
    padding: 0;
  }
}

.footer__menu li{
  padding: 0 20px;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 599px) {
  .footer__menu li{
    padding: 20px 0px;
    text-align: center;
    border-bottom: 1px solid #fff;
    font-size: 14px;
  }
}

.footer__menu li:last-of-type{
  border-right: none;
}

.footer__logo{
  width: 15%;
  margin-inline: auto;
}

@media screen and (max-width: 599px) {
  .footer__logo{
    width: 30%;
    margin-top: 40px;
    margin-inline: auto;
  }
}

.footer__logo img{
  width: 100%;
}

.footer__copylight{
  text-align: center;
  padding: 25px 0 50px;
}

@media screen and (max-width: 599px) {
  .footer__copylight{
    font-size: 12px;
  }
}

.drawer__button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
  margin-left: 20px;
}

.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 3px;
  background-color: black;
  border-radius: 10px;
  transform: translateX(-50%);
}

.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.7rem));
  transition: transform 0.3s ease;
}

.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.7rem));
  transition: transform 0.3s ease;
}

.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
  background: #fff;
}

.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}

.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
}

.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}

.drawer__nav__inner {
  position: relative;
  width: 350px;
  height: 100%;
  background-color: #3B2C7B;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

@media screen and (max-width: 599px) {
  .drawer__nav__inner {
    width: 80%;
    padding: 2rem 1.5rem 1rem;
  }
}

.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}

.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}

.drawer__nav__link {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px #fff;
}

@media screen and (max-width: 599px) {
  .drawer__nav__link {
    padding: 0.9rem 0rem;
    border-bottom: solid 1px #fff;
    font-size: 14px;
  }
}

.drawer__nav__link:hover {
  text-decoration: none;
  color: yellow;
}

body.active {
  height: 100%;
  overflow: hidden;
}

.marker {
  background: linear-gradient(transparent 50%, #FFF500 50%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1.5s;
}

.marker.on {
  background-size: 100% 100%;
}

.inview1{
opacity: 0; /*表示前に透明にしておく */
 transform: translateY(20px); /*表示前の位置 */
 transition: 0.8s; /*移動にかける時間 */
 transition-delay: 0.1s; /*遅延をかける秒数 */
}

.inview1.show{
 opacity: 1;
 transform: translateY(0px);
}

.contact-logo{
  width: 400px;
  margin: 50px auto 0;
  text-align: center;
  padding-bottom: 50px;
}

@media screen and (max-width: 599px) {
  .contact-logo{
    width: 100%;
    margin: 40px auto 0;
    text-align: center;
    padding-bottom: 40px;
  }
}

.contact-logo img{
  width: 250px;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .contact-logo img{
    width: 50%;
  }
}

.contact-logo p{
  font-size: 14px;
  margin: 20px 0;
  color: #000000;
}

@media screen and (max-width: 599px) {
  .contact-logo p{
    font-size: 12px;
    margin: 15px 0;
  }
}

/* 20250912_nishimura */
.float-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background-color: rgba(255, 255, 255, .9);
  z-index: 99;
}

.float-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.float-btns li {
  line-height: 1.35;
}

.sp {
  display: none;
}

@media (max-width: 767.98px) {
  .float-area {
    padding: 8px;
  }
  .float-btns {
    gap: 8px;
  }
  .float-btns li {
    width: 50%;
  }
  .float-btns a {
    font-size: 16px;
    padding: 8px 16px 8px 40px;
  }
  .float-btns a::before {
    left: 16%;
  }
  .sp {
    display: inline-block;
  }
}
