@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.1em;
  font-feature-settings: "palt";
  position: relative;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  body {
    /*     この中をカスタムできる */
    font-size: 4vw;
    letter-spacing: 0.1em;
  }
}

a {
  transition: opacity 0.3s;
}

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

.btn a {
  transition: box-shadow 0.2s, transform 0.2s;
}

.btn a:hover {
  opacity: 1;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2117647059);
  transform: translateY(-0.4rem);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .btn a:hover {
    /*     この中をカスタムできる */
    transform: translateY(0);
  }
}

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

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

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

.red {
  color: #c90000;
}

.pink {
  color: #e43d85;
}

.orange {
  color: #ff4500;
}

.bold {
  font-weight: bold;
}

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

.yellow {
  color: #ffc000;
}

.marker {
  background: linear-gradient(transparent 68%, #ffc000 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: #f3f5f7;
}

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

.center {
  text-align: center;
}

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

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

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

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

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

.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: 10vw;
  }
}

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

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

.headerNav__item a:hover {
  opacity: 0.6;
}

.headerNav__item a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

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

.headerNav__desc {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .headerNav__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;
  }
}

.header.scrolled .drawerBtn i {
  background-color: #000;
}

.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);
    background-color: #000;
  }
}

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

.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);
    background-color: #000;
  }
}

.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: #fff;
    transition: all 0.8s ease 0s;
  }
  .drawerContent.is-checked {
    transform: translateY(0);
  }
}

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

.firstView__inner {
  width: 100%;
  height: 100%;
}

.firstView__catch {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .firstView__catch {
    /*     この中をカスタムできる */
    width: 98%;
  }
}

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

.hero__img {
  opacity: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  animation: anime 18s 0s infinite;
}

.hero__img:nth-of-type(2) {
  animation-delay: 6s;
}

.hero__img:nth-of-type(3) {
  animation-delay: 12s;
}

@keyframes anime {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale(1.1);
    z-index: 2;
  }
  100% {
    opacity: 0;
  }
}
/* ====================================================
// logo
==================================================== */
.logo__text {
  font-size: 3rem;
  margin-bottom: 3rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .logo__text {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
    margin-bottom: 6vw;
  }
}

/* ====================================================
// cta
==================================================== */
.cta {
  background-color: #ffc000;
}

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

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

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

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

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

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

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

.tel a:hover {
  opacity: 1;
}

/* ====================================================
//  worry - こんな課題はありませんか？
==================================================== */
.worry {
  background-color: #666666;
  position: relative;
  color: #fff;
}

.worry::before {
  content: "";
  width: 3.3rem;
  height: 6.3rem;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  bottom: -10rem;
  left: 50%;
  transform: translateX(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry::before {
    /*     この中をカスタムできる */
    width: 4.297vw;
    height: 8.203vw;
    bottom: -13vw;
  }
}

.worry::after {
  content: "";
  width: 46%;
  height: 120%;
  background-image: url(../img/worry_deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .worry::after {
    /*     この中をカスタムできる */
    display: none;
  }
}

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

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

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

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

/* ====================================================
//  ok - 解決します
==================================================== */
.ok {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .ok {
    /*     この中をカスタムできる */
    padding-bottom: 0;
  }
}

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

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

.ok__imgs {
  display: flex;
}

.ok__img {
  width: 50%;
}

/* ====================================================
//  feature - 特徴
==================================================== */
.feature {
  position: relative;
  background-color: #fff;
}

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

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

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

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

.feature__cnt {
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0.6rem 0.6rem 0 rgba(0, 0, 0, 0.1803921569);
  z-index: 2;
  transform: translate(1rem, -2rem);
  height: 28.4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .feature__cnt {
    /*     この中をカスタムできる */
    height: auto;
    padding: 4vw;
    transform: translate(3vw, -8vw);
  }
}

/* ====================================================
//  slideShow - 流れる文字アニメーション
==================================================== */
.slideShow {
  display: flex;
  align-items: center;
  height: 6.6rem;
  overflow: hidden;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .slideShow {
    /*     この中をカスタムできる */
    height: 11.947vw;
  }
}

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

.slide {
  display: flex;
}

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

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

.slide__content .img {
  height: 100%;
}

.slide__content .img img {
  height: 100%;
}

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

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ====================================================
//  service - サービス
==================================================== */
.service {
  position: relative;
}

.service::before {
  content: "";
  width: 100%;
  height: 70rem;
  background-image: url(../img/service_bg.jpg);
  background-size: cover;
  position: absolute;
  z-index: -1;
  top: 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .service::before {
    /*     この中をカスタムできる */
    height: 70vw;
  }
}

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

.service__title-en {
  font-family: "verdana", sans-serif;
  font-size: 4.8rem;
  font-weight: bold;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .service__title-en {
    /*     この中をカスタムできる */
    font-size: 9vw;
  }
}

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

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

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

.service__card__img {
  transition: transform 0.3s;
}

.service__card a:hover {
  opacity: 1;
}

.service__card a:hover .service__card__img {
  transform: scale(1.2);
}

.service__card__title {
  background-color: #fff;
  position: absolute;
  bottom: 0;
  padding: 1.4rem 2rem;
  width: 70%;
  font-weight: 500;
  line-height: 1.2;
}

.service__card__title .small {
  font-size: 1.4rem;
  line-height: 1;
}

.service__card__title::after {
  content: "";
  width: 3.3rem;
  height: 3.3rem;
  background-image: url(../img/arrow2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1rem;
}

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

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

.service__cnt__title::before {
  content: "";
  display: inline-block;
  height: 120%;
  width: 1rem;
  background-color: #ffc000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .service__cnt__title::before {
    /*     この中をカスタムできる */
    width: 3vw;
  }
}

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

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

.service__cnt__text {
  padding: 3rem;
  background-color: rgba(255, 191, 0, 0.7450980392);
  width: 70%;
  font-weight: bold;
  font-size: 2.4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .service__cnt__text {
    /*     この中をカスタムできる */
    padding: 6vw;
    font-size: 4.5vw;
    width: 100%;
    transform: translateY(-30%);
    position: relative;
  }
}

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

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

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

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

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

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

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

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

/* ====================================================
// flow - 工事完了までの流れ
==================================================== */
.flow {
  background-color: #f2f2f2;
}

.flow__cnts {
  display: flex;
  flex-wrap: wrap;
}

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

/* ====================================================
// qa - よくある質問
==================================================== */
.qa__item:not(:last-child) {
  margin-bottom: 4rem;
}

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

.qa__item__q__ico {
  font-family: "verdana", sans-serif;
  font-size: 2.4rem;
  background-color: #ffc000;
  border-radius: 50%;
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qa__item__q__ico {
    /*     この中をカスタムできる */
    width: 10vw;
    height: 10vw;
    margin-right: 2vw;
    font-size: 5.5vw;
  }
}

.qa__item__q__text,
.qa__item__a__text {
  flex: 1 0 0;
}

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

.qa__item__a__ico {
  font-size: 2.4rem;
  width: 6rem;
  height: 6rem;
  font-family: "verdana", sans-serif;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qa__item__a__ico {
    /*     この中をカスタムできる */
    width: 10vw;
    height: 10vw;
    font-size: 5.5vw;
  }
}

/* ====================================================
// company - 会社概要
==================================================== */
.company table {
  border-collapse: collapse;
  border: 0.1rem solid #b3b3b3;
  width: 90%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .company table {
    /*     この中をカスタムできる */
    width: 100%;
  }
}
.company table th {
  width: 30%;
  background-color: #ffc000;
  border-right: 0.1rem solid #b3b3b3;
  font-weight: bold;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .company table th {
    /*     この中をカスタムできる */
    border-right: none;
  }
}
.company table th,
.company table td {
  padding: 1.4rem;
  border-bottom: 0.1rem solid #b3b3b3;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .company table th,
  .company table td {
    /*     この中をカスタムできる */
    display: block;
    width: 100%;
  }
}

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

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

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

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

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

.youfo__text {
  flex: 1 0 0;
}

/* ====================================================
// float - フロートボタン
==================================================== */
.float {
  display: none;
  background-color: #ffc000;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1vw 0;
  z-index: 99999;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .float {
    /*     この中をカスタムできる */
    padding: 2vw 0;
  }
}

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

.float__parts {
  width: 56.3%;
}

.float__btn {
  flex: 1 0 0;
}

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

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

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

.footer__privacy__policy {
  text-decoration: underline;
}

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