@charset "UTF-8";
/* マップ型変数breakpointsを定義 */
/* メディアクエリ用のmixinを定義。デフォ値はmd */
/* ====================================================
// common - 共通
==================================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "M PLUS 1p", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #000;
  height: 100%;
  margin: 0 auto;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  body {
    /*     この中をカスタムできる */
    font-size: 4vw;
    letter-spacing: 0.01em;
  }
}

a:hover {
  opacity: 0.8;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  a:hover {
    /*     この中をカスタムできる */
    opacity: 1;
  }
}

.btn {
  position: relative;
}

.btn a {
  transition: filter 0.3s;
}

.btn a:hover {
  opacity: 1;
  filter: brightness(1.1);
}

.is-pc {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .is-pc {
    /*     この中をカスタムできる */
    display: none;
  }
}

.is-sp {
  display: none;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .is-sp {
    /*     この中をカスタムできる */
    display: block;
  }
}

.container {
  min-width: 120rem;
  overflow: hidden;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .container {
    /*     この中をカスタムできる */
    min-width: 320px;
  }
}

.inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .inner {
    /*     この中をカスタムできる */
    padding: 0 3vw;
  }
}

.section {
  padding: 8rem 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section {
    /*     この中をカスタムできる */
    padding: 14vw 0;
  }
}

.section__title {
  width: 50rem;
  margin: 0 auto 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section__title {
    /*     この中をカスタムできる */
    width: 100%;
    margin-bottom: 6vw;
  }
}

.section__title.-mb {
  margin-bottom: 4rem;
}

.title {
  font-size: 3.3rem;
  font-weight: bold;
  text-align: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .title {
    /*     この中をカスタムできる */
    font-size: 6vw;
  }
}

.red {
  color: #c90000;
}

.orange {
  color: #e85431;
}

.bold {
  font-weight: bold;
}

.yellow {
  color: yellow;
}

.marker {
  background: linear-gradient(transparent 68%, #f9e100 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 0 0;
}

.marker-or {
  background: linear-gradient(transparent 68%, rgba(232, 83, 49, 0.2509803922) 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 0 0;
}

.grey {
  background-color: #efefef;
}

.shadow {
  box-shadow: 0 0 1rem rgba(117, 117, 117, 0.45);
}

.center {
  text-align: center;
}

.bg_skew_border {
  background-color: #f9e100;
  background-image: repeating-linear-gradient(-45deg, #fce43f, #fce43f 14px, transparent 0, transparent 28px);
}

.bg_skew_border-g {
  background-color: rgb(250, 250, 250);
  background-image: repeating-linear-gradient(-45deg, #fff, #fff 14px, transparent 0, transparent 28px);
}

.shiny-btn {
  overflow: hidden;
  border-radius: 50rem;
  z-index: 1;
  will-change: transform;
}

.shiny-btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn 3s ease-in-out infinite;
}

@keyframes shiny-btn {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.box {
  background-color: #fff;
  border: 0.3rem solid #000;
  border-radius: 2rem;
  padding: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .box {
    /*     この中をカスタムできる */
    padding: 6vw;
    border-radius: 5vw;
    border: 0.5vw solid #000;
  }
}

.cream {
  background-color: #fcf8d4;
}

/* ====================================================
// header - ヘッダー
==================================================== */
.header {
  width: 100%;
  height: 7rem;
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.079);
  background-color: #fff;
  transition: all 0.3s;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .header {
    /*     この中をカスタムできる */
    height: 15vw;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  flex-basis: 20rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .header__logo {
    /*     この中をカスタムできる */
    flex-basis: 40%;
  }
}

.header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1 0 0;
}

.headerNav {
  flex: 1 0 0;
  margin-right: 2%;
  width: 100%;
  height: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .headerNav {
    /*     この中をカスタムできる */
    margin-right: 0;
    padding: 20vw 3vw;
  }
}

.headerNav__items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 3%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .headerNav__items {
    /*     この中をカスタムできる */
    display: block;
    height: auto;
    margin-bottom: 15vw;
  }
}

.headerNav__item {
  height: 100%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .headerNav__item {
    /*     この中をカスタムできる */
    height: auto;
    margin-bottom: 7vw;
  }
}

.headerNav__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-size: 1.6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .headerNav__item a {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
  }
}

.header__btns {
  display: flex;
  flex-basis: 40%;
  gap: 1%;
  justify-content: flex-end;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .header__btns {
    /*     この中をカスタムできる */
    display: none;
  }
}

@media screen and (min-width: 1600px) {
  .header__btns {
    flex-basis: 33%;
  }
}
.headerNav__btns .header__btn {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 5vw;
}

.header__btn.-nomb {
  margin-bottom: 1vw;
}

.header__btn {
  flex-basis: 45%;
}

.header__btn,
.header__btn a {
  display: flex;
  align-items: center;
}

.header__desc {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .header__desc {
    /*     この中をカスタムできる */
    font-size: 3.75vw;
  }
}

.drawerBtn {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn {
    /*     この中をカスタムできる */
    position: relative;
    width: 12vw;
    height: 12vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    z-index: 99;
    border-radius: 50%;
  }
}

.drawerBtn i {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn i {
    /*     この中をカスタムできる */
    width: 6vw;
    height: 0.6vw;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    background-color: #000;
    transition: all 0.3s;
  }
}

.drawerBtn__line-top {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn__line-top {
    /*     この中をカスタムできる */
    transform: rotate(0) translateY(-2vw);
  }
}

.drawerBtn.is-checked .drawerBtn__line-top {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn.is-checked .drawerBtn__line-top {
    /*     この中をカスタムできる */
    transform: rotate(-45deg) translateY(0);
  }
}

.drawerBtn.is-checked .drawerBtn__line-middle {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn.is-checked .drawerBtn__line-middle {
    /*     この中をカスタムできる */
    background: transparent;
  }
}

.drawerBtn__line-bottom {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn__line-bottom {
    /*     この中をカスタムできる */
    transform: rotate(0) translateY(2vw);
  }
}

.drawerBtn.is-checked .drawerBtn__line-bottom {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerBtn.is-checked .drawerBtn__line-bottom {
    /*     この中をカスタムできる */
    transform: rotate(45deg) translateY(0);
  }
}

.drawerBg {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: all 0.5s ease 0s;
}
.drawerBg.is-checked {
  display: block;
}

.drawerContent {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .drawerContent {
    /*     この中をカスタムできる */
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateY(-150%);
    z-index: 40;
    width: 100%;
    height: 100%;
    background: #efefef;
    transition: all 0.5s ease 0s;
  }
  .drawerContent.is-checked {
    transform: translateY(0);
  }
}

/* ====================================================
// firstView - ファーストビュー
==================================================== */
.firstView {
  padding: 2rem 0;
  margin-top: 7rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .firstView {
    /*     この中をカスタムできる */
    padding: 8vw 3vw 31vw;
    margin-top: 15vw;
  }
}

.firstView__inner {
  max-width: 100rem;
  margin: 0 auto;
  position: relative;
}

.firstView__btn {
  width: 48rem;
  position: absolute;
  left: 5rem;
  bottom: 2.5rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .firstView__btn {
    /*     この中をカスタムできる */
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -23vw;
  }
}

/* ====================================================
// intro - 紹介
==================================================== */
.intro {
  position: relative;
  z-index: -2;
}

.worry1 {
  display: flex;
  gap: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry1 {
    /*     この中をカスタムできる */
    display: block;
  }
}

.worry1__wrap {
  display: flex;
  gap: 3%;
  align-items: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry1__wrap {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
    display: block;
  }
}

.worry1__img {
  flex-basis: 26%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry1__img {
    /*     この中をカスタムできる */
    width: 70%;
    margin: 0 auto;
  }
}

.worry1__content {
  flex: 1 0 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry1__content {
    /*     この中をカスタムできる */
    margin-bottom: 4vw;
  }
}

.worry1__text {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry1__text {
    /*     この中をカスタムできる */
    width: 80%;
    margin: 0 auto;
  }
}

.intro__catch {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .intro__catch {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
  }
}

.intro__img {
  width: 90%;
  margin: -3rem auto 1rem;
  position: relative;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .intro__img {
    /*     この中をカスタムできる */
    width: 100%;
    margin: -3vw auto 0;
  }
}

.intro__img::after {
  content: "";
  display: inline-block;
  width: 23.6rem;
  height: 33.4rem;
  background-image: url(../img/girl2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -6rem;
  bottom: 3rem;
  z-index: -1;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .intro__img::after {
    /*     この中をカスタムできる */
    width: 32vw;
    height: 43vw;
    right: -6vw;
    bottom: 3vw;
  }
}

.intro__desc {
  font-size: 1.6rem;
  text-align: center;
}

.about {
  width: 90%;
  margin: 0 auto 4rem;
  padding: 3rem;
  padding-bottom: 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .about {
    /*     この中をカスタムできる */
    width: 100%;
    padding: 6vw;
    padding-bottom: 0;
    margin-bottom: 14vw;
  }
}

.about__title {
  font-size: 3.3rem;
  margin-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .about__title {
    /*     この中をカスタムできる */
    font-size: 5.6vw;
    margin-bottom: 3vw;
  }
}

.about__text {
  text-align: center;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .about__text {
    /*     この中をカスタムできる */
    text-align: left;
    margin-bottom: 5vw;
  }
}

.about__img {
  width: 38rem;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .about__img {
    /*     この中をカスタムできる */
    width: 90%;
  }
}

.workStyle__title {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .workStyle__title {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
  }
}

.workStyle__img {
  margin: 0 auto;
  display: flex;
  gap: 3%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .workStyle__img {
    /*     この中をカスタムできる */
    flex-direction: column;
    row-gap: 4vw;
    width: 90%;
  }
}

.workStyle__img .img {
  flex-basis: 50%;
}

/* ====================================================
// worry2 - こんな不安ありませんか？
==================================================== */
.worry2 {
  background-color: #cacaca;
  padding-top: 10rem;
  padding-bottom: 6rem;
  position: relative;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry2 {
    /*     この中をカスタムできる */
    padding-top: 20vw;
    padding-bottom: 10vw;
  }
}

.worry2::after {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.1rem 3.4rem 0;
  border-color: #cacaca transparent transparent transparent;
  z-index: 2;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry2::after {
    /*     この中をカスタムできる */
    bottom: -5vw;
    border-width: 5vw 5vw 0;
  }
}

.worry2__box {
  width: 80%;
  margin: 0 auto;
  border-radius: 0;
  padding-top: 7rem;
  position: relative;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry2__box {
    /*     この中をカスタムできる */
    width: 100%;
    padding: 8vw 6vw 6vw;
  }
}

.worry2__box::before {
  content: "";
  display: inline-block;
  width: 51.2rem;
  height: 8.2rem;
  background-image: url(../img/worry_title.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: -4rem;
  transform: translateX(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry2__box::before {
    /*     この中をカスタムできる */
    width: 90%;
    height: 14.5vw;
    top: -8vw;
  }
}

.worry2__box::after {
  content: "";
  display: inline-block;
  width: 23.9rem;
  height: 23.2rem;
  background-image: url(../img/thinking.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 3rem;
  top: 10.8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry2__box::after {
    /*     この中をカスタムできる */
    display: none;
  }
}

.worry2__img {
  width: 50%;
  margin: 0 auto 4vw;
}

.worry2List {
  width: 80%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry2List {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.worry2List__item {
  padding-left: 4rem;
  position: relative;
  font-weight: 500;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry2List__item {
    /*     この中をカスタムできる */
    padding-left: 6vw;
  }
}

.worry2List__item:not(:last-child) {
  margin-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry2List__item:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 2vw;
  }
}

.worry2List__item::before {
  content: "";
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
  background-image: url(../img/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry2List__item::before {
    /*     この中をカスタムできる */
    width: 5vw;
    height: 5vw;
    top: 0.4vw;
    transform: translate(0);
  }
}

/* ====================================================
// ok - ワークプレイスは
==================================================== */
.ok__catch {
  font-size: 3rem;
  margin-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .ok__catch {
    /*     この中をカスタムできる */
    font-size: 6vw;
  }
}

.ok__text {
  margin-bottom: 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .ok__text {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
  }
}

.ok__img {
  width: 90%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .ok__img {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

/* ====================================================
// float - フロートボタン
==================================================== */
.float {
  z-index: 99;
  display: none;
}

.float__btns {
  display: none;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .float__btns {
    /*     この中をカスタムできる */
    display: flex;
  }
}

.float__btn {
  flex-basis: 50%;
  box-shadow: 0 0 1rem rgba(1, 21, 7, 0.402);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .float__btn {
    /*     この中をカスタムできる */
    box-shadow: none;
  }
}

/* ====================================================
// cta
==================================================== */
.cta {
  padding: 6rem 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta {
    /*     この中をカスタムできる */
    padding: 10vw 0;
  }
}

.cta__inner {
  position: relative;
}

.cta__inner::before,
.cta__inner::after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__inner::before,
  .cta__inner::after {
    /*     この中をカスタムできる */
    display: none;
  }
}

.cta__inner::before {
  background-image: url(../img/cta_girl.svg);
  width: 18.5rem;
  height: 25.7rem;
  left: 5rem;
}

.cta__inner::after {
  background-image: url(../img/cta_boy.svg);
  width: 18.5rem;
  height: 27.7rem;
  right: 3rem;
  bottom: -9rem;
}

.cta__title {
  margin-bottom: 3rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__title {
    /*     この中をカスタムできる */
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}

.cta__img {
  width: 60%;
  margin: 0 auto 4vw;
}

.cta__btns {
  width: 66%;
  margin: 0 auto 3rem;
  display: flex;
  gap: 3%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__btns {
    /*     この中をカスタムできる */
    flex-direction: column;
    row-gap: 3vw;
    width: 80%;
    margin-bottom: 0;
  }
}

.cta__tel {
  width: 50rem;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__tel {
    /*     この中をカスタムできる */
    display: none;
  }
}

/* ====================================================
// work - お仕事例
==================================================== */
.work {
  position: relative;
}

.work__img {
  width: 80%;
  margin: 0 auto 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .work__img {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
  }
}

/* ====================================================
// feature - 特徴
==================================================== */
.feature {
  background-image: linear-gradient(90deg, transparent 20px, #f9d4cb 0), linear-gradient(0deg, transparent 20px, #f9d4cb 0);
  background-size: 21px 100%, 100% 21px;
  background-position: left top;
  background-repeat: repeat-x, repeat-y;
}

.featureCards {
  width: 90%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureCards {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.featureCard {
  display: flex;
  align-items: center;
  gap: 3%;
  padding: 3rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureCard {
    /*     この中をカスタムできる */
    padding: 6vw;
  }
}

.featureCard:not(:last-child) {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureCard:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
  }
}

.featureCard:nth-child(even) {
  flex-direction: row-reverse;
}

.featureCard__img {
  flex-basis: 35rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureCard__img {
    /*     この中をカスタムできる */
    margin-bottom: 4vw;
  }
}

.featureCard__content {
  flex: 1 0 0;
}

.featureCard__wrap {
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureCard__wrap {
    /*     この中をカスタムできる */
    gap: 4vw;
    margin-bottom: 4vw;
  }
}

.featureCard__number {
  flex-basis: 14%;
  margin-bottom: 0.4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureCard__number {
    /*     この中をカスタムできる */
    margin-bottom: 3vw;
  }
}

.featureCard__number.-small {
  transform: scale(0.9);
}

.featureCard__title {
  flex: 1 0 0;
  font-size: 2.6rem;
  font-weight: bold;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureCard__title {
    /*     この中をカスタムできる */
    font-size: 5.8vw;
  }
}

/* ====================================================
// achieve - 実績
==================================================== */
.achieve__inner {
  position: relative;
}

.achieve__title {
  margin-bottom: 3rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .achieve__title {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
  }
}

.achieve__desc {
  margin-bottom: 3rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .achieve__desc {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
  }
}

.achieve__img {
  width: 70%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .achieve__img {
    /*     この中をカスタムできる */
    width: 90%;
  }
}

/* ====================================================
// rule - 働き方・お仕事のルール
==================================================== */
.rule {
  background-color: #f0f0f0;
}

.rule__img {
  width: 80%;
  margin: 0 auto 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .rule__img {
    /*     この中をカスタムできる */
    width: 100%;
    margin-bottom: 6vw;
  }
}

.rule__catch {
  margin-bottom: 1rem;
  font-size: 3rem;
  color: #47afb2;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .rule__catch {
    /*     この中をカスタムできる */
    font-size: 6vw;
    margin-bottom: 3vw;
  }
}

/* ====================================================
// flow - お仕事スタートまでの流れ
==================================================== */
.flow__title {
  margin-bottom: 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flow__title {
    /*     この中をカスタムできる */
    margin-bottom: 4vw;
  }
}

.flowContents {
  width: 90%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flowContents {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.flowContent {
  padding: 4rem 0;
  text-align: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flowContent {
    /*     この中をカスタムできる */
    padding: 6vw 0;
  }
}

.flowContent:not(:last-child) {
  border-bottom: 0.3rem solid #000;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flowContent:not(:last-child) {
    /*     この中をカスタムできる */
    border-bottom: 0.5vw solid #000;
  }
}

.flowContent:last-child {
  padding-bottom: 0;
}

.flowContent__number {
  display: inline-block;
  color: transparent;
  font-size: 3rem;
  font-weight: bold;
  -webkit-text-stroke: 0.2rem #000;
  border-bottom: 0.2rem solid #000;
  line-height: 1.2;
  margin-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flowContent__number {
    /*     この中をカスタムできる */
    font-size: 6vw;
    -webkit-text-stroke: 0.25vw #000;
  }
}

.flowContent__title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flowContent__title {
    /*     この中をカスタムできる */
    font-size: 6vw;
    margin-bottom: 6vw;
  }
}

.flowContent__img {
  width: 20%;
  margin: 0 auto 2rem;
  filter: drop-shadow(0.4rem 0.4rem 0 #333);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flowContent__img {
    /*     この中をカスタムできる */
    width: 40%;
    margin-bottom: 6vw;
  }
}

.flowContent__text.-mb {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flowContent__text.-mb {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
  }
}

/* ====================================================
// contact - お問い合わせ
==================================================== */
.contact {
  background-color: #f0f0f0;
}

.contact__desc {
  margin-bottom: 4rem;
}

.contact__box {
  width: 90%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact__box {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.contact .small {
  font-size: 1.4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact .small {
    /*     この中をカスタムできる */
    font-size: 3.5vw;
  }
}

form {
  width: 80%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  form {
    /*     この中をカスタムできる */
    width: 100%;
    font-size: 1.6rem;
  }
}

input,
textarea {
  padding: 1rem 1.6rem;
  font-size: 1.6rem;
  border: 0.1rem solid rgb(193, 193, 193);
  border-radius: 0.4rem;
}

.mb1 {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .mb1 {
    /*     この中をカスタムできる */
    margin-bottom: 1rem;
  }
}

.contact__item {
  display: flex;
  gap: 3%;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact__item {
    /*     この中をカスタムできる */
    display: block;
    margin-bottom: 4vw;
  }
}

.contact__title {
  flex-basis: 30%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact__title {
    /*     この中をカスタムできる */
    margin-bottom: 2vw;
  }
}

.contact__input {
  flex: 1 0 0;
}

.contact__input input {
  width: 100%;
}

textarea {
  width: 100%;
}

input[type=email] {
  width: 100%;
  margin-bottom: 1rem;
}

input[type=radio] {
  width: 2.2rem;
  height: 2.2rem;
  border: 0.1rem solid rgb(193, 193, 193);
  display: inline-block;
  margin-right: 1rem;
  margin-top: 0;
  cursor: pointer;
}

label {
  cursor: pointer;
  border: 0.1rem solid rgb(193, 193, 193);
  border-radius: 0.4rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.require {
  position: relative;
}

.require::after {
  content: "必須";
  display: inline-block;
  background-color: #c90000;
  border-radius: 0.4rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  padding: 0 0.4rem;
}

::-moz-placeholder {
  color: rgb(151, 151, 151);
}

::placeholder {
  color: rgb(151, 151, 151);
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: rgb(151, 151, 151);
}

/* IE対応 */
:-ms-input-placeholder {
  color: rgb(151, 151, 151);
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input[type=submit] {
  font-size: 1.8rem;
  display: block;
  cursor: pointer;
  border: none;
  background-color: #29b600;
  color: #fff;
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
  transition: opacity 0.3s;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  input[type=submit] {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

input[type=submit]:hover {
  opacity: 0.7;
}

/* ====================================================
// office - 事業所のご案内
==================================================== */
.office__title {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .office__title {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
  }
}

.office__box {
  width: 60%;
  margin: 0 auto 4rem;
  border: 0.3rem solid #e85431;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .office__box {
    /*     この中をカスタムできる */
    width: 80%;
    margin-bottom: 4vw;
    border: 0.5vw solid #e85431;
    padding-left: 15.4vw;
  }
}

.office__names {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .office__names {
    /*     この中をカスタムできる */
    display: block;
  }
}

.office__name {
  flex-basis: 45%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .office__name {
    /*     この中をカスタムできる */
    text-align: left;
  }
}

.office__name:not(:last-child) {
  margin-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .office__name:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 3vw;
  }
}

.office__names::after {
  content: "";
  width: 45%;
  display: block;
  height: 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .office__names::after {
    /*     この中をカスタムできる */
    display: none;
  }
}

.company__table {
  width: 60%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1.6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
.company__table tr {
  border-bottom: 0.1rem solid #e85431;
}
.company__table th {
  font-weight: 500;
  color: #e85431;
  width: 30%;
}
.company__table th,
.company__table td {
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  .company__table {
    /*     この中をカスタムできる */
    font-size: 3.75vw;
    width: 90%;
  }
}

/* ====================================================
// footer - フッター
==================================================== */
.footer {
  padding: 4rem 0;
  text-align: center;
  font-size: 1.4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .footer {
    /*     この中をカスタムできる */
    font-size: 3vw;
  }
}

.footer__btns {
  width: 60%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .footer__btns {
    /*     この中をカスタムできる */
    width: 80%;
    margin-bottom: 6vw;
  }
}

.footer__tel {
  margin-bottom: 4rem;
}

.footer__logo {
  width: 15%;
  margin: 0 auto 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .footer__logo {
    /*     この中をカスタムできる */
    width: 40%;
    margin-bottom: 4vw;
  }
}

.copyRight.-mb {
  margin-bottom: 1rem;
}

.privacy {
  padding-top: 12rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .privacy {
    /*     この中をカスタムできる */
    padding-top: 20vw;
  }
}

.privacy__title {
  margin-bottom: 2rem;
}

.privacy__inner {
  max-width: 90rem;
}/*# sourceMappingURL=style.css.map */