@charset "utf8";
/*=============================
	- font-style
	- 汎用 color & background
	- 汎用 wrap & title
	- common.css  共通パーツCSS
	- top.css  TOPページCSS
==============================*/

/*----------------------------------------------------
	font-style
----------------------------------------------------*/
/*  全体 font  */
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  color: #000;
}

@font-face {
  font-family: "NHaasGroteskTXPro-75Bd";
  src: url("../font/NHaasGroteskTXPro-75Bd.woff") format("woff");
  font-weight: normal;
}
.my-font01 {
  font-family: "NHaasGroteskTXPro-75Bd";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*----------------------------------------------------
	汎用 color & background
----------------------------------------------------*/
/* color */
.white {
  color: #fff;
}
.base-color01 {
  /*--メイン文字カラー--*/
  color: #000;
}
.base-back01 {
  /*--メイン背景カラー--*/
  background: #fff;
}
.point-color01 {
  /*--ポイント文字カラー オレンジ--*/
  color: #f18300;
}
.point-color02 {
  /*--ポイント文字カラー 濃ブルー--*/
  color: #004896;
}
.point-back01 {
  /*--ポイント背景カラー オレンジ--*/
  background: #f18300;
}
.point-back02 {
  /*--アクセント背景カラー 濃ブルー--*/
  background: #004896;
}
.accent-back01 {
  /*--アクセント背景カラー 薄グレー--*/
  background: #f3f3f4;
}
.accent-back02 {
  /*--アクセント背景カラー 青グラデーションー--*/
  background-image: linear-gradient(to left, rgba(242, 219, 191, 1), #4192ea);
}

/*----------------------------------------------------
	汎用 buttton
----------------------------------------------------*/
/* 詳しくはこちら・もっと見るボタン */
.btn01 {
  font-size: 18px;
  font-size: max(0.94vw, 18px);
  width: 420px;
  width: max(21.88vw, 420px);
  height: 80px;
  height: max(4.17vw, 80px);
  display: inline-block;
  text-align: center;
  border-radius: 80px;
  padding: 27px 20px;
  padding: max(1.41vw, 27px) max(1.04vw, 20px);
}
@media screen and (max-width: 767px) {
  .btn01 {
    width: 100%;
    height: 70px;
    padding: 23px 10px;
  }
}

/* Webで無料転職相談ボタン */
.btn02 {
  font-size: 17px;
  font-size: max(0.89vw, 17px);
  width: 333px;
  width: max(17.34vw, 333px);
  min-height: 72px;
  min-height: max(3.75vw, 72px);
  border-radius: 100px;
  text-align: center;
  background-image: url("../images/arrow-white_small.png");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-position: right max(1.15vw, 22px) center;
  background-size: 9px auto;
  background-size: max(0.47vw, 9px) auto;
  padding: 24px 0;
  padding: max(1.25vw, 24px) 0;
}
@media screen and (min-width: 768px) {
  .btn02.large {
    font-size: 24px;
    width: 466px;
    height: 100px;
    background-image: url("../images/arrow-white_large.png");
    background-position: right 30px center;
    background-size: 13px auto;
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .btn02 {
    width: 100%;
    min-height: 72px;
    background-position: right 22px center;
    background-size: 9px auto;
    padding: 24px 0;
  }
}

/* TELボタン */
.btn03 {
  font-size: 25px;
  font-size: max(1.3vw, 25px);
  width: 333px;
  width: max(17.34vw, 333px);
  min-height: 72px;
  min-height: max(3.75vw, 72px);
  border-radius: 100px;
  text-align: center;
  background-image: url("../images/icon-tel_small.png");
  background-repeat: no-repeat;
  background-position: left 64px center;
  background-position: left max(3.33vw, 64px) center;
  background-size: 32px auto;
  background-size: max(1.67vw, 32px) auto;
  padding: 15px 0 15px 55px;
  padding: max(0.78vw, 15px) 0 max(0.78vw, 15px) max(2.86vw, 55px);
  border: 2px solid #004896;
}
@media screen and (min-width: 768px) {
  .btn03.large {
    font-size: 36px;
    width: 466px;
    height: 100px;
    background-image: url("../images/icon-tel_large.png");
    background-position: left 89px center;
    background-size: 46px auto;
    padding: 20px 0 20px 83px;
  }
}
@media screen and (max-width: 767px) {
  .btn03 {
    width: 100%;
  }
}

/*----------------------------------------------------
	汎用 wrap & title
----------------------------------------------------*/
/*  width 管理  */
.mywidth {
  width: 1280px;
  width: max(66.67vw, 906.7px);
  min-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .mywidth {
    width: 100%;
    min-width: inherit;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/*  メインコンテンツwrap   */
#main-wrapp {
  overflow-x: hidden;
}

/* title */
.content-title01 {
  position: relative;
  min-height: 156px;
  min-height: max(8.13vw, 156px);
}
.content-title01 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 30px;
  font-size: max(1.56vw, 30px);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .content-title01 {
    min-height: 100px;
  }
  .content-title01 span {
    font-size: 24px;
  }
}

/*----------------------------------------------------
	common.css  共通パーツCSS
----------------------------------------------------*/
/* 背景が青い左寄せの見出しボックス */
.title-left {
  color: #fff;
  background-color: #004896;
  width: calc(21.88vw + ((100% - 1280px) / 2));
  min-width: calc(400px + ((100% - 1280px) / 2));
  height: 610px;
  height: max(31.77vw, 432.1px);
  padding-top: 80px;
  padding-top: max(4.17vw, 80px);
  padding-left: calc((100% - 1280px) / 2);
  position: absolute;
  top: 0;
  left: 0;
}
.title-left .title {
  margin-left: 5px;
}
@media screen and (min-width: 1920px) {
  .title-left {
    width: calc(21.88vw + ((100% - 66.67vw) / 2));
    padding-left: calc((100% - 66.67vw) / 2);
  }
}
@media screen and (max-width: 1360px) {
  .title-left {
    padding-left: calc((100% - 1280px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .title-left {
    width: 90vw;
    margin-top: 40px;
    padding-left: 10vw;
    padding-top: 50px;
  }
}

/* 右寄せのコンテンツボックス */
.mywidth-right {
  width: calc(66.67vw + 16.67vw);
  min-width: calc(1280px + ((100% - 1280px) / 2));
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mywidth-right {
    width: 90vw;
    min-width: 90vw;
  }
}

/* グレーの大きい英数字見出し */
.heading-large {
  position: relative;
}
.heading-large::before {
  content: attr(data-text) "";
  position: absolute;
  font-size: 199px;
  font-size: max(10.36vw, 199px);
  font-family: "NHaasGroteskTXPro-75Bd";
  text-transform: uppercase;
  line-height: 1;
  color: #f3f3f4;
  padding: 0 44px;
  padding: 0 max(2.29vw, 44px);
  white-space: nowrap;
}
.heading-large.left::before {
  left: 0;
}
.heading-large.right::before {
  right: 0;
}
.heading-large.top::before {
  top: 10px;
  top: max(0.52vw, 10px);
}
.heading-large.middle::before {
  top: 50%;
  transform: translateY(-50%);
}
.heading-large.text-white::before {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .heading-large::before {
    font-size: 10vw;
    padding: 0;
  }
  .heading-large.top::before {
    top: -10px;
  }
}

/*----------------------------------------------------
	top.css  TOPページCSS
----------------------------------------------------*/
/*  content01  */
.content01 {
  position: relative;
  margin-top: 140px;
  margin-top: max(7.29vw, 140px);
  padding-top: 230px;
  padding-top: max(11.98vw, 230px);
  padding-bottom: 133px;
  padding-bottom: max(6.93vw, 133px);
}
.content01 .title-left {
  padding-top: 46px;
  padding-top: max(2.4vw, 46px);
}
.content01 .title-logo {
  margin-bottom: 16px;
  margin-bottom: max(0.83vw, 16px);
}
.content01 .title-logo img {
  width: 306px;
  width: max(15.94vw, 305px);
}
.content01 .box {
  width: calc((100% - (2.6vw * 2)) / 3);
  background-color: #fff;
  margin-left: 2.6vw;
  border-radius: 30px;
  border-radius: max(1.56vw, 21.2px);
  overflow: hidden;
  box-shadow: 0px 0px 43px 15px rgba(155, 156, 157, 0.3),
    0px 0px 20px 5px rgba(155, 156, 157, 0.2);
}
.content01 .box:first-of-type {
  margin-left: 0;
}
.content01 .box .image {
  height: 380px;
  height: max(19.79vw, 269.1px);
}
.content01 .box .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.content01 .box .text-wrap {
  padding: 25px 40px 30px;
  padding: max(1.3vw, 17.7px) max(2.08vw, 28.3px) max(1.56vw, 21.2px);
}
.content01 .box .text-wrap .text {
  line-height: 1.88;
  font-feature-settings: "palt";
  margin-top: 10px;
  margin-top: max(0.52vw, 7.1px);
}
.content01 .btn-wrap {
  margin-top: 88px;
  margin-top: max(4.58vw, 88px);
}
@media screen and (max-width: 767px) {
  .content01 {
    margin-top: 60px;
    padding-top: 203px;
    padding-bottom: 60px;
  }
  .content01 .title-left {
    padding-top: 30px;
  }
  .content01 .title-logo img {
    width: 200px;
  }
  .content01 .box {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
  .content01 .box:first-of-type {
    margin-top: 0;
  }
  .content01 .btn-wrap {
    margin-top: 50px;
  }
}

/*  content02  */
.content02 {
  padding-top: 64px;
  padding-top: max(3.33vw, 64px);
  padding-bottom: 156px;
  /*padding-bottom: max(8.13vw, 156px);*/
	padding-bottom: max(4.13vw, 90px);
}
.content02 .content-title01 span {
  top: 58%;
}
.content02 .new {
  margin-top: 22px;
}
.content02 .new .slick-prev,
.content02 .new .slick-next {
  transform: translateY(8px);
}
.content02 .tab-menu {
  border-bottom: 1px solid #929191;
  margin-bottom: 44px;
  margin-bottom: max(2.29vw, 44px);
  position: relative;
  z-index: 1;
}
.content02 .tab-menu .tab {
  width: 187px;
  width: max(9.74vw, 187px);
  font-size: 24px;
  font-size: max(1.25vw, 24px);
  font-weight: bold;
  letter-spacing: 0.025em;
  text-align: center;
  margin-left: 15px;
  margin-left: max(0.78vw, 15px);
  padding-bottom: 8px;
  padding-bottom: max(0.42vw, 8px);
  border-bottom: 5px solid transparent;
  cursor: pointer;
}
.content02 .tab-menu .tab:first-of-type {
  margin-left: 0;
}
.content02 .tab-menu .tab.active {
  color: #0d4f97;
  border-bottom: 5px solid #0d4f97;
  pointer-events: none;
}
.content02 .tab-contents .content {
  opacity: 0;
  height: 0;
  transition: all 1s;
  pointer-events: none;
}
.content02 .tab-contents .content.show {
  opacity: 1;
  height: auto;
  transition: all 1s;
  pointer-events: visible;
}
.content02 .box {
  width: 550px;
  width: max(28.65vw, 550px);
  height: 530px;
  height: max(27.6vw, 530px);
  padding: 40px 25px;
  padding: max(2.08vw, 40px) max(1.3vw, 25px);
}
.content02 .box a {
  display: block;
  height: 100%;
  color: #000;
  background-color: #fff;
  box-shadow: 0px 0px 43px 15px rgba(155, 156, 157, 0.1);
  box-shadow: 0px 0px max(2.24vw, 43px) max(0.78vw, 15px) x
    rgba(155, 156, 157, 0.1);
  position: relative;
}
.content02 .box .image {
  height: 300px;
  height: max(15.63vw, 300px);
}
.content02 .box .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.content02 .box .tag {
  /*width: 140px;
  width: max(7.29vw, 140px);*/
  width: auto;
  text-align: center;
  /*padding: 6px 0;
  padding: max(0.31vw, 6px) 0;*/
  padding: 6px 10px;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
.content02 .box .text-wrap {
  padding: 15px 24px 25px;
  padding: max(0.78vw, 15px) max(1.25vw, v24px) max(1.3vw, 25px);
}
.content02 .box .text-wrap .title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 3em;
}
.content02 .box .text-wrap .list {
  margin-top: 20px;
  margin-top: max(1.04vw, 20px);
}
.content02 .box .text-wrap .list li {
  margin-left: 20px;
  margin-left: max(1.04vw, 20px);
  padding-left: 22px;
  padding-left: max(1.15vw, 22px);
  background-repeat: no-repeat;
  background-position: left center;
}
.content02 .box .text-wrap .list li:first-of-type {
  margin-left: 0;
}
.content02 .box .text-wrap .list li.salary {
  background-image: url("../images/icon-coin.png");
  background-size: 19px auto;
  background-size: max(0.99vw, 19px);
}
.content02 .box .text-wrap .list li.place {
  background-image: url("../images/icon-marker.png");
  background-position: left 2px center;
  background-position: left max(0.1vw, 2px) center;
  background-size: 15px auto;
  background-size: max(0.78vw, 15px);
}
@media screen and (max-width: 767px) {
  .content02 {
    padding-top: 60px;
    padding-bottom: 10px;
  }
  .content02 .content-title01 span {
    top: 50%;
  }
  .content02 .new {
    margin-top: 0;
  }
  .content02 .new .content-title01 span {
    top: 20%;
  }
  .content02 .tab-menu {
    width: 90vw;
    margin-bottom: 20px;
    padding: 0;
  }
  .content02 .tab-menu .tab {
    width: 33.33%;
    font-size: 20px;
    margin-left: 0;
    padding-bottom: 8px;
  }
  .content02 .tab-contents .slick-class02 {
    margin-top: 50px;
  }
  .content02 .box {
    width: 84vw;
    height: auto;
    min-height: 430px;
    padding: 40px 10px;
  }
  .content02 .box .image {
    height: 180px;
  }
  .content02 .box .tag {
    width: auto;
    min-width: 120px;
    padding: 4px 10px;
  }
  .content02 .box .text-wrap {
    padding: 15px 20px 20px;
  }
  .content02 .box .text-wrap .list {
    margin-top: 15px;
  }
  .content02 .box .text-wrap .list li {
    margin-left: 0;
    margin-top: 7px;
  }
  .content02 .box .text-wrap .list li:first-of-type {
    margin-top: 0;
  }
}

/*  content03  */
.content03 {
  margin-top: 96px;
  margin-top: max(5vw, 96px);
  padding-top: 64px;
  padding-bottom: 72px;
}
.content03 .text-wrap {
  flex: 1;
}
.content03 .text-wrap .title {
  margin-left: -5px;
}
.content03 .text-wrap .text {
  margin-top: 15px;
}
.content03 .btn-wrap {
  min-width: 700px;
}
.content03 .btn-wrap .btn02 {
  margin-right: 21px;
}
@media screen and (max-width: 767px) {
  .content03 {
    margin-top: 60px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .content03 .btn-wrap {
    min-width: 100%;
    margin-top: 30px;
  }
  .content03 .btn-wrap .btn02 {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*  content04  */
.content04 {
  padding-top: 45px;
  padding-top: max(2.34vw, 45px);
}
.content04 .content-title01 {
  margin-bottom: 35px;
  margin-bottom: max(1.82vw, 35px);
}
.content04 .box {
  width: calc(100% / 3);
  height: 250px;
  height: max(13.02vw, 250px);
  position: relative;
}
.content04 .box a {
  display: block;
  height: 100%;
}
.content04 .box .image {
  height: 100%;
}
.content04 .box .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
.content04 .box .text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.content04 .box .text span::after {
  content: attr(data-text) "";
  text-transform: uppercase;
  display: block;
  font-size: 16px;
  font-size: max(0.83vw, 16px);
  font-family: "Lato", sans-serif;
  font-weight: normal;
  letter-spacing: 0.075em;
  margin-top: 10px;
  margin-top: max(0.52vw, 10px);
  transform: rotate(0.03deg);
}
@media screen and (max-width: 767px) {
  .content04 {
    padding-top: 60px;
  }
  .content04 .box {
    width: 100%;
    height: 180px;
  }
}

/*  content05  */
.content05 {
  padding-top: 45px;
  padding-top: max(2.34vw, 45px);
}
.content05 .content-title01 {
  margin-bottom: 49px;
  margin-bottom: max(2.55vw, 49px);
}
.content05 .box {
  width: calc(100% / 4);
  height: 230px;
  height: max(11.98vw, 230px);
  border: 1px solid #004896;
  border-left: none;
  position: relative;
}
.content05 .box .inner {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.content05 .box:nth-of-type(n + 5) {
  width: calc(100% / 3);
  border-top: none;
}
.content05 .box:nth-child(4),
.content05 .box:last-of-type {
  border-right: none;
}
.content05 .box .image {
  height: 100px;
  position: relative;
}
.content05 .box .image img {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content05 .text {
  font-size: 24px;
  font-size: max(1.25vw, 24px);
}
@media screen and (max-width: 767px) {
  .content05 {
    padding-top: 60px;
  }
  .content05 .content-title01 {
    margin-bottom: 35px;
  }
  .content05 .box {
    width: 100%;
    height: 170px;
    border-right: none;
    border-top: none;
  }
  .content05 .box:first-of-type {
    border-top: 1px solid #004896;
  }
  .content05 .box:nth-of-type(n + 5) {
    width: 100%;
  }
  .content05 .box .image {
    height: 70px;
  }
  .content05 .box .image img {
    top: 37%;
  }
}

/*  content06  */
.content06 {
  padding-top: 110px;
  padding-top: max(5.73vw, 110px);
  padding-bottom: 68px;
  padding-bottom: max(3.54vw, 68px);
}
.content06 .inner {
  padding-top: 200px;
  padding-top: max(10.42vw, 200px);
}
.content06 .heading-large.top::before {
  top: -15px;
  top: max(-0.78vw, -15px);
  padding: 0 20px;
  padding: 0 max(1.04vw, 20px);
}
.content06 .title-left .title {
  margin-left: -10px;
  margin-left: max(-0.52vw, -10px);
}
.content06 .mywidth-right {
  padding: 76px 0 54px 73px;
  padding: max(3.96vw, 53.9px) 0 max(2.81vw, 38.2px) max(3.8vw, 51.7px);
}
.content06 .box {
  width: calc((100% - (2.19vw * 3)) / 4);
  margin-left: 42px;
  margin-left: max(2.19vw, 2.19px);
  margin-top: 60px;
  margin-top: max(3.13vw, 42.6px);
}
.content06 .box:nth-of-type(-n + 4) {
  margin-top: 0;
}
.content06 .box:nth-of-type(4n + 1) {
  margin-left: 0;
}
.content06 .box a {
  display: block;
  color: #000;
}
.content06 .box .image {
  height: 250px;
  height: max(13.02vw, 177.1px);
}
.content06 .box .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.content06 .box .title {
  line-height: 1.67;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  margin-top: 27px;
  margin-top: max(1.41vw, 19.2px);
}
.content06 .btn-wrap {
  margin-top: 60px;
  margin-top: max(3.13vw, 42.6px);
}
@media screen and (max-width: 1360px) {
  .content06 .box {
    width: calc((100% - (42px * 3)) / 4);
    margin-left: 29.8px;
  }
}
@media screen and (max-width: 767px) {
  .content06 {
    padding-top: 90px;
    padding-bottom: 60px;
  }
  .content06 .inner {
    padding-top: 170px;
  }
  .content06 .heading-large.top::before {
    top: -20px;
    padding: 0 5px;
  }
  .content06 .mywidth-right {
    padding: 35px 0 35px 35px;
  }
  .content06 .box {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
  .content06 .box:nth-of-type(-n + 4) {
    margin-top: 40px;
  }
  .content06 .box:first-of-type {
    margin-top: 0;
  }
  .content06 .box .title {
    margin-right: 5px;
  }
}

/*  content07  */
.content07 {
  padding-top: 56px;
  padding-top: max(2.92vw, 56px);
  padding-bottom: 140px;
  padding-bottom: max(7.29vw, 140px);
}
.content07 .heading-large::before {
  padding: 0 20px;
  padding: 0 max(1.04vw, 20px);
}
.content07 .info-list {
  margin-top: 85px;
  margin-top: max(4.43vw, 85px);
  margin-left: auto;
  margin-right: auto;
  display: table;
  table-layout: auto;
}
.content07 .info-list li {
  display: flex;
  margin-top: 20px;
  margin-top: max(1.04vw, 20px);
}
.content07 .info-list li:first-of-type {
  margin-top: 0;
}
.content07 .info-list li span,
.content07 .info-list li span a {
  line-height: 1.6;
}
.content07 .info-list li .date {
  width: 130px;
  margin-right: 20px;
  margin-right: max(1.04vw, 20px);
}
.content07 .info-list li .text {
  flex: 1;
}
.content07 .info-list li a {
  color: #000;
}
.content07 .btn-wrap {
  margin-top: 85px;
  margin-top: max(4.43vw, 85px);
}
@media screen and (max-width: 767px) {
  .content07 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .content07 .heading-large::before {
    padding: 0 5px;
  }
  .content07 .info-list {
    margin-top: 35px;
  }
  .content07 .info-list li {
    display: block;
  }
  .content07 .info-list li span {
    display: block;
  }
  .content07 .info-list li .date {
    width: auto;
    margin-right: 0;
  }
  .content07 .btn-wrap {
    margin-top: 50px;
  }
}

/*  content08  */
.content08 {
  padding-top: 84px;
  padding-bottom: 48px;
}
.content08 .mywidth {
  position: relative;
}
.content08 .image {
  position: absolute;
  top: -126px;
  right: -77px;
}
.content08 .image img {
  width: 425px;
  height: auto;
}
.content08 .text-wrap {
  margin-bottom: 60px;
  width: 860px;
}
.content08 .text-wrap .title {
}
.content08 .text-wrap .text {
  line-height: 1.88;
  margin-top: 40px;
}
.content08 .contact-wrap {
  margin-top: 46px;
}
.content08 .contact-wrap .btn02 {
  margin-right: 117px;
}
@media screen and (max-width: 767px) {
  .content08 {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .content08 .image {
    top: -80px;
    right: 0;
  }
  .content08 .image img {
    width: 200px;
    height: auto;
  }
  .content08 .text-wrap {
    margin-bottom: 30px;
    width: 100%;
  }
  .content08 .text-wrap .text {
    margin-top: 20px;
  }
  .content08 .contact-wrap {
    margin-top: 20px;
  }
  .content08 .contact-wrap .btn02 {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
