@charset "UTF-8";
/* Scss Document */
/*英字*/
/* Scss Document */
/*naga add*/
/* 下からフェードイン(初期値) */
.js-fadeUp, .js-fadeUpSlow {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* 下からフェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0s;
  /*開始を遅らせる */
}

.js-fadeUpSlow.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: .5s;
  /* 開始を遅らせる */
}

/* 左からフェードイン(初期値) */
.js-fadeIn, .js-fadeInSlow {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateX(-100px);
  /* 左に100pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* 左からフェードイン(スクロールした後) */
.js-fadeIn.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /* 100px右に移動する */
  transition-delay: 0s;
  /* 開始を遅らせる */
}

.js-fadeInSlow.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /* 100px右に移動する */
  transition-delay: .5s;
  /* 開始を遅らせる */
}

/* 用紙サイズの指定（A4） */
@page {
  margin: 8mm;
  size: 210mm 297mm;
  /* A4縦 */
}
@media print {
  /* 全体設定 */
  body {
    -webkit-print-color-adjust: exact;
    /* 印刷時でも背景色や背景画像を表示 */
    width: 1400px;
    /* 印刷時の全ページ幅を統一 */
    zoom: 0.8;
    /* なるべく多くのブラウザで切れないようにするため */
    /*no animation*/
  }
  body header {
    position: absolute !important;
    max-width: 1400px;
    width: 1400px !important;
  }
  body .header--flex {
    width: 1400px !important;
  }
  body .btnBox {
    display: none;
  }
  body #btn_pagetop {
    display: none;
  }
  body .js-fadeUp,
  body .js-fadeIn,
  body .js-fadeUpSlow,
  body .js-fadeInSlow {
    opacity: 1;
  }
  body .js-fadeIn,
  body .js-fadeInSlow {
    transform: translateX(0);
  }
  body .js-fadeUp,
  body .js-fadeUpSlow {
    transform: translateY(0);
  }
  body .js-fadeUp.is-view,
  body .js-fadeIn.is-view,
  body .js-fadeUpSlow.is-view,
  body .js-fadeInSlow.is-view {
    animation-name: none;
  }
}
.header {
  background-color: #ffefe7 !important;
  box-shadow: 0px 3px 3.7px 0.3px rgba(90, 90, 90, 0.1);
}

.mv {
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 100px auto 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 80px;
  }
}
.mv__bg {
  width: 100%;
  height: 220px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 40px;
  background-image: url("../img/service/bg_tmv.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
}
@media screen and (max-width: 479px) {
  .mv__bg {
    height: 160px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.mv__flex {
  width: 100%;
  height: 220px;
  margin: 0 auto;
  max-width: 1720px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 479px) {
  .mv__flex {
    height: 160px;
  }
}
.mv__cc {
  font: 400 60px/1.5 "Poiret One", sans-serif;
  color: #abc899;
  padding-left: 80px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 1279px) {
  .mv__cc {
    font-size: 48px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv__cc {
    font-size: 36px;
  }
}
@media screen and (max-width: 479px) {
  .mv__cc {
    padding-bottom: 60px;
  }
}
.mv__cc br {
  display: none;
}
@media screen and (max-width: 767px) {
  .mv__cc br {
    display: block;
  }
}
.mv__image {
  display: block;
  height: auto;
  max-width: 100%;
  position: absolute;
  bottom: 0;
  right: 40px;
}
@media screen and (max-width: 1279px) {
  .mv__image {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv__image {
    width: 200px;
  }
}
@media screen and (max-width: 479px) {
  .mv__image {
    width: 180px;
  }
}
@media screen and (max-width: 329px) {
  .mv__image {
    width: 48%;
  }
}

/*背景がある場合は、背景を指定するdivでsectionを囲む*/
section:not(section section) {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 120px;
}
@media screen and (min-width: 1441px) {
  section:not(section section) {
    max-width: 1680px;
  }
}
@media screen and (max-width: 1279px) {
  section:not(section section) {
    padding: 0 40px;
  }
}
@media screen and (max-width: 479px) {
  section:not(section section) {
    padding: 0 15px;
  }
}

/*only here*/
body section:first-of-type {
  margin-top: 30px;
}

body section:last-of-type {
  margin-bottom: 200px;
}

.hl__title1 {
  font: 500 32px/1.5 "M PLUS 1", sans-serif;
  color: #1d1d1d;
  display: block;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 767px) {
  .hl__title1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 479px) {
  .hl__title1 {
    font-size: 24px;
  }
}
.hl__title2 {
  text-align: center;
  font: 500 32px/1.5 "M PLUS 1", sans-serif;
  color: #005739;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 15px;
  background-color: #fffaec;
  border-bottom: 2px solid #005739;
  position: relative;
}
.hl__title2:before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #005739;
  width: 44px;
  height: 22px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.hl__title2:after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fffaec;
  width: 40px;
  height: 20px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 479px) {
  .hl__title2 {
    font-size: 24px;
    padding: 20px 10px;
  }
}
.hl__title2.thin-color {
  color: #4a7c5a;
  border-bottom: 2px solid #4a7c5a;
}
.hl__title2.thin-color:before {
  background-color: #4a7c5a;
}

.secSrv .secIntro {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .secSrv .secIntro {
    margin-top: 80px;
  }
}
@media screen and (max-width: 479px) {
  .secSrv .secIntro {
    margin-top: 60px;
  }
}
.secSrv .secIntro__paragraph {
  font: 500 18px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
  margin-bottom: 50px;
}
@media screen and (max-width: 479px) {
  .secSrv .secIntro__paragraph {
    font-size: 16px;
  }
}
.secSrv .secIntro__wrap {
  text-align: center;
}
.secSrv .secIntro__wrap--anchor {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  margin: 0 40px 20px;
}
@media screen and (max-width: 767px) {
  .secSrv .secIntro__wrap--anchor {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 479px) {
  .secSrv .secIntro__wrap--anchor {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.secSrv .secIntro__wrap--anchor img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 479px) {
  .secSrv .secIntro__wrap--anchor img {
    width: 140px;
  }
}
.secSrv .secIntro__wrap--anchor:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .secSrv .secIntro__wrap--anchor:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: alpha(opacity=70);
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.secSrv .secIntro__wrap--paragraph {
  font: 500 18px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .secSrv .secIntro__wrap--paragraph {
    font-size: 16px;
  }
}
.secSrv .secFac {
  margin-top: 100px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .secSrv .secFac {
    margin-top: 80px;
    padding-top: 80px;
  }
}
.secSrv .secFac__cc {
  margin: 90px auto 0;
  text-align: center;
  font: 500 24px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #ff9a24;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 479px) {
  .secSrv .secFac__cc {
    margin-top: 40px;
  }
}
.secSrv .secFac__cc span {
  display: inline-block;
  border-bottom: 4px dotted #ff9a24;
}
@media screen and (max-width: 1279px) {
  .secSrv .secFac__cc span {
    padding-bottom: 3px;
  }
}
@media screen and (max-width: 479px) {
  .secSrv .secFac__cc {
    font-size: 18px;
  }
}
.secSrv .secFac__paragraph {
  margin-top: 50px;
  font: 500 18px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
}
@media screen and (max-width: 479px) {
  .secSrv .secFac__paragraph {
    font-size: 16px;
  }
}
.secSrv .secFac__ctc {
  margin: 40px auto 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 10px 50px;
  background-color: #fffaec;
  max-width: 600px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .secSrv .secFac__ctc {
    max-width: 100%;
  }
}
.secSrv .secFac__ctc > .secFac__cc {
  margin-top: 0px;
}
.secSrv .secFac__ctc > .secFac__paragraph {
  margin-top: 25px;
}
.secSrv .secFac__tel {
  margin-top: 30px;
  font: 700 30px/1.5 "M PLUS 1", sans-serif;
  color: #ff9a24;
}
@media screen and (max-width: 479px) {
  .secSrv .secFac__tel {
    font-size: 24px;
  }
}
.secSrv .secFac__tel img {
  vertical-align: middle;
  margin-right: 13px;
  padding-bottom: 5px;
}
@media screen and (max-width: 479px) {
  .secSrv .secFac__tel img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    padding-bottom: 6px;
  }
}
.secSrv .secFac__mail {
  margin-top: 20px;
}
.secSrv .secFac__mail--anchor {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font: 500 18px/1.5 "M PLUS 1", sans-serif;
  color: #ff9a24 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.secSrv .secFac__mail--anchor img {
  margin-right: 5px;
}
.secSrv .secFac__mail--anchor span {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 5px;
  padding-bottom: 5px;
}
.secSrv .secFac__mail--anchor:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .secSrv .secFac__mail--anchor:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: alpha(opacity=70);
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.secSrv .secFac__acs {
  margin-top: 10px;
}
.secSrv .secFac__acs--anchor {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font: 500 18px/1.5 "M PLUS 1", sans-serif;
  color: #ff4356 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.secSrv .secFac__acs--anchor img {
  margin-right: 5px;
}
.secSrv .secFac__acs--anchor span {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 5px;
  padding-bottom: 5px;
}
.secSrv .secFac__acs--anchor:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .secSrv .secFac__acs--anchor:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: alpha(opacity=70);
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.secSrv .secFac__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0;
}
@media screen and (max-width: 1279px) {
  .secSrv .secFac__image {
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .secSrv .secFac__image {
    max-width: 100%;
  }
}
.secSrv .secFac__srv {
  margin: 40px auto 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 70px 80px;
  background-color: #fffaec;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .secSrv .secFac__srv {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.secSrv .secFac__srv > .secFac__cc {
  margin-top: 0px;
}
.secSrv .secFac__srv .srv__list {
  list-style: none;
  padding: 0;
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 10px;
}
@media screen and (min-width: 1441px) {
  .secSrv .secFac__srv .srv__list {
    width: 90%;
  }
}
.secSrv .secFac__srv .srv__list.narrow {
  width: 90%;
}
@media screen and (min-width: 1441px) {
  .secSrv .secFac__srv .srv__list.narrow {
    width: 75%;
  }
}
@media screen and (max-width: 1279px) {
  .secSrv .secFac__srv .srv__list.narrow {
    width: 100%;
  }
}
.secSrv .secFac__srv .srv__item {
  width: 240px;
  flex: 0 0 240px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ff9a24;
}
@media screen and (max-width: 479px) {
  .secSrv .secFac__srv .srv__item {
    flex: 0 0 220px;
  }
}
.secSrv .secFac__srv .srv__item--anchor {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
  text-decoration: none;
  font: 500 16px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #ff9a24;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secSrv .secFac__srv .srv__item--anchor span {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 5px;
  padding-bottom: 5px;
}
.secSrv .secFac__srv .srv__item--anchor.polygon {
  padding-left: 15px;
  position: relative;
}
.secSrv .secFac__srv .srv__item--anchor.polygon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ff9a24;
  width: 9px;
  height: 11px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.secSrv .secFac__srv .srv__item--anchor:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .secSrv .secFac__srv .srv__item--anchor:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: alpha(opacity=70);
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.secSrv .secFac__srv .srv__item .cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.secSrv .secFac__srv .srv__item .cont__image {
  display: block;
  max-width: 100%;
  height: auto;
}
.secSrv .secFac__srv .srv__item .cont__wrap--top {
  margin-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
  font: 500 16px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
}
@media screen and (max-width: 479px) {
  .secSrv .secFac__srv .srv__item .cont__wrap--top {
    font-size: 14px;
  }
}
.secSrv .secFac__srv .srv__item .cont__wrap--btm {
  margin-top: 25px;
  padding-left: 10px;
  padding-right: 10px;
  font: 400 15px/1.6 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
  text-align: left;
}
@media screen and (max-width: 479px) {
  .secSrv .secFac__srv .srv__item .cont__wrap--btm {
    font-size: 14px;
  }
}
