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

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ 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 {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section__title {
    /*     この中をカスタムできる */
    font-size: 6vw;
    margin-bottom: 8vw;
  }
}

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

.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: #d01a30;
}

.orange {
  color: #e85431;
}

.pink {
  color: #f3416b;
}

.bold {
  font-weight: bold;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.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;
}

.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;
  }
}

.grey {
  background-color: #efefef;
}

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

.center {
  text-align: center;
}

.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;
  }
}
.cream {
  background-color: #fcf8d4;
}

/* ====================================================
// header - ヘッダー
==================================================== */
.header {
  width: 100%;
  min-width: 120rem;
  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 {
    /*     この中をカスタムできる */
    min-width: auto;
    height: 15vw;
  }
}

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

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

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

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

.header__tel {
  width: 34.7rem;
}

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

.header__btn {
  width: 22.9rem;
}

/* ====================================================
// firstView - ファーストビュー
==================================================== */
.firstView {
  margin-top: 7rem;
  background-image: url(../img/FV.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .firstView {
    /*     この中をカスタムできる */
    margin-top: 15vw;
  }
}

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

.firstView__laugh {
  position: absolute;
  width: 29.3rem;
  height: 16.7rem;
  left: 0;
  top: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .firstView__laugh {
    /*     この中をカスタムできる */
    width: 52.031vw;
    height: 29.688vw;
    top: 3vw;
    left: 1vw;
  }
}

.firstView__laugh img {
  animation: purupuru 1.7s linear 0s infinite;
}

@keyframes purupuru {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
  }
  50% {
    transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
  }
  65% {
    transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
  }
  80% {
    transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
/* ====================================================
// intro - 紹介
==================================================== */
.intro {
  background-image: url(../img/bg6.jpg);
  background-size: cover;
  background-position: center top;
}

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

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

/* ====================================================
// slideShow - スライドショー
==================================================== */
.slideShow {
  display: flex;
  align-items: center;
  height: 12.3rem;
  overflow: hidden;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .slideShow {
    /*     この中をカスタムできる */
    height: 23.25vw;
  }
}

.slide {
  display: flex;
}

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

.slide__content .img {
  position: relative;
  overflow: hidden;
  padding-top: 71.09%;
}

.slide__content .img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.slide {
  display: flex;
  animation: loop-slide 40s infinite linear 1s both;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ====================================================
// worry2 - こんなお悩みありませんか？
==================================================== */
.worry2 {
  background-color: #cacaca;
  background-image: url(../img/bg7.jpeg);
  background-size: cover;
  position: relative;
}

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

.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);
  }
}

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

/* ====================================================
// ok - ワークプレイスは
==================================================== */
.ok {
  background-image: url(../img/bg5.jpg);
  background-image: url(../img/bg1.jpg);
  background-size: cover;
}

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

.ok__catch::after {
  content: "";
  display: inline-block;
  width: 110%;
  height: 150%;
  background-image: url(../img/deco.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .ok__catch::after {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

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

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

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

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

.ok__card {
  background-color: #fff;
  border: 0.3rem solid #f3416b;
  border-radius: 2rem;
  padding: 4rem;
  text-align: center;
  position: relative;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .ok__card {
    /*     この中をカスタムできる */
    padding: 6vw;
  }
}

.ok__card__title {
  font-size: 3rem;
  display: inline-block;
  background-color: #f7b7a9;
  padding: 1rem 5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -4rem;
  font-weight: bold;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .ok__card__title {
    /*     この中をカスタムできる */
    font-size: 5vw;
    padding: 1vw 4vw;
    top: -6vw;
    white-space: nowrap;
  }
}

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

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

.ok__card__text {
  text-align: left;
  flex: 1 0 0;
}

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

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

.float__btn {
  flex-basis: 33%;
  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;
  background-image: url(../img/cta_bg.jpg);
  background-size: cover;
  background-position: center top;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta {
    /*     この中をカスタムできる */
    padding: 10vw 0;
  }
}

.cta__inner {
  position: relative;
}

.cta__inner::before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/card.png);
  background-size: cover;
  background-position: center center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__inner::before {
    /*     この中をカスタムできる */
    background-image: url(../img/card-sp.svg);
    width: 100%;
    height: 92%;
    top: 50%;
    transform: translateY(-50%);
  }
}

.cta__title {
  margin-bottom: 3rem;
  color: #d01a30;
  /* 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: 70%;
  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;
  }
}

/* ====================================================
// feature - 特徴
==================================================== */
.feature {
  background-image: url(../img/bg2.jpg);
  background-size: cover;
}

.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__head {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureCard__head {
    /*     この中をカスタムできる */
    margin-bottom: 4vw;
    display: block;
  }
}

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

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

.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: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .featureCard__wrap {
    /*     この中をカスタムできる */
    display: block;
  }
}

/* ====================================================
// case - こんなシチュエーションで
==================================================== */
.case {
  background-image: url(../img/bg3.jpg);
  background-size: cover;
  background-position: center top;
  padding-top: 0;
}

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

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

.case__img {
  width: 48%;
}

/* ====================================================
// achieve - 実績
==================================================== */
.achieve {
  background-image: url(../img/bg4.jpg);
  background-size: cover;
}

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

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

.achieve__box {
  background-color: #fcfcef;
  position: relative;
}

.achieve__box::after {
  content: "";
  display: inline-block;
  width: 90%;
  height: 90%;
  background-image: url(../img/japan.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.achieve__box__wrap {
  display: flex;
  border-bottom: 0.2rem dotted #9c9c9c;
  padding: 1rem 0;
  align-items: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .achieve__box__wrap {
    /*     この中をカスタムできる */
    display: block;
  }
}

.area {
  background-color: #b9dee8;
  padding: 0 1rem;
  margin-right: 2rem;
  width: 14%;
  text-align: center;
  height: 100%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .area {
    /*     この中をカスタムできる */
    height: auto;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1vw;
  }
}

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

.achieve .slideShow {
  margin-bottom: 2rem;
}

/* ====================================================
// voice - お客様の声
==================================================== */
.voice {
  padding-top: 0;
  background-image: url(../img/bg2.jpg);
}

.voice__title {
  background-color: #f9e100;
  padding: 1rem 0;
}

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

.voice__card {
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 0 3rem rgba(142, 142, 142, 0.3333333333);
  display: flex;
  align-items: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .voice__card {
    /*     この中をカスタムできる */
    padding: 6vw;
    display: block;
  }
}

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

.voice__card__text {
  flex: 1 0 0;
}

/* ====================================================
// flow - お仕事スタートまでの流れ
==================================================== */
.flow .flow__title {
  margin-bottom: 10rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flow .flow__title {
    /*     この中をカスタムできる */
    margin-bottom: 16vw;
  }
}
.flow .ok__card__title {
  background: -ms-linear-gradient(179.64deg, rgb(238, 150, 60) 0%, rgb(241, 141, 48) 19.43%, rgb(255, 107, 0) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#EE963C', endColorstr='#FF6B00' ,GradientType=0)";
  background: linear-gradient(-89.64deg, rgb(238, 150, 60) 0%, rgb(241, 141, 48) 19.43%, rgb(255, 107, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EE963C",endColorstr="#FF6B00" , GradientType=1);
  color: #fff;
}
.flow .ok__card {
  border-color: #ff6b00;
  position: relative;
}
.flow .ok__card:not(:last-child) {
  margin-bottom: 12rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flow .ok__card:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 20vw;
  }
}
.flow .ok__card:not(:last-child)::after {
  content: "";
  width: 8.5rem;
  height: 4.1rem;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -7rem;
  left: 50%;
  transform: translateX(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flow .ok__card:not(:last-child)::after {
    /*     この中をカスタムできる */
    width: 21.25vw;
    height: 10.25vw;
    bottom: -14vw;
  }
}
.flow .step {
  margin-right: 1rem;
}
.flow .ok__card__ico {
  width: 36%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .flow .ok__card__ico {
    /*     この中をカスタムできる */
    width: 70%;
    margin-bottom: 4vw;
  }
}
.flow .ok__card__text a {
  color: #47afb2;
  text-decoration: underline;
}

/* ====================================================
// qa - よくある質問
==================================================== */
.qa {
  background-color: #f1f2f5;
  padding-top: 0;
}

.qa__title {
  background-color: #078aad;
  color: #fff;
  padding: 1rem 0;
}

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

.qa__item {
  background-color: #fff;
  padding: 4rem;
  border-radius: 2rem;
  box-shadow: 0 0 3rem rgba(142, 142, 142, 0.3333333333);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qa__item {
    /*     この中をカスタムできる */
    padding: 6vw;
  }
}

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

.qa__item__q {
  border-bottom: 0.2rem dotted #9c9c9c;
  align-items: center;
}

.q-ico {
  background-color: #078aad;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  padding: 0 1.2rem;
  margin-right: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .q-ico {
    /*     この中をカスタムできる */
    font-size: 5vw;
  }
}

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

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

/* ====================================================
// profile - プロフィール
==================================================== */
.profile {
  background-image: url(../img/bg5.jpg);
  background-size: cover;
}

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

.profile__box__wrap:nth-child(1) {
  padding-bottom: 4rem;
  border-bottom: 0.2rem dotted #9c9c9c;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .profile__box__wrap:nth-child(1) {
    /*     この中をカスタムできる */
    padding-bottom: 6vw;
  }
}

.profile__box__wrap:nth-child(2) {
  padding-top: 4rem;
  flex-direction: row-reverse;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .profile__box__wrap:nth-child(2) {
    /*     この中をカスタムできる */
    padding-top: 6vw;
    flex-direction: column-reverse;
    gap: 2vw;
  }
}

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

.profile__text {
  flex: 1 0 0;
}

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

/* ====================================================
// contact - お問い合わせ
==================================================== */
.contact {
  background-image: url(../img/bg2.jpg);
}

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

.company {
  margin-bottom: 1rem;
}

.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 */