@charset "UTF-8";
/* Scss Document */
/* line 6, ../style.scss */
html {
  font-style: 62.5%;
}

/* line 9, ../style.scss 
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  background-image: url(../images/top-background.jpg);
  background-repeat: repeat-x, repeat-y;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/top-background.jpg) repeat top/contain;
  opacity: .6;
}*/

.u-desktop {
  display: block;
}

.u-mobile {
  display: none;
}

/* line 15, ../style.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* line 18, ../style.scss */
a:link,
a:hover,
a:active {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  main {
    padding-top: 50px;
  }
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}
.navigation__content {
  width: 100%;
  background-color: #fff;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 29.5px 0 27px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .navigation__content {
    height: 50px;
    padding: 0 20px;
  }
}
.navigation__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__logo:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .navigation__logo-image {
    width: 30px;
  }
}
.navigation__logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #05106a;
}
@media screen and (max-width: 767px) {
  .navigation__logo-text {
    font-size: 20px;
  }
}
.navigation__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  gap: 35px;
}


/*------------ リニューアル時 追記 ---------------*/

/*グロナビ内、タブレット時の余白調整*/
@media screen and (max-width: 980px) {
  .navigation__main {
    gap: 23px;
  }
}

/*------------ リニューアル時 追記ここまで -------*/


.navigation__main-item {
  position: relative;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.navigation__main-item:hover .navigation__subnavigation {
  display: block;
}
.navigation__main-item:hover .navigation__main-link::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.navigation__main-link {
  font-size: min(1.9vw, 1rem);
  font-weight: 700;
  color: #05106a;
}


/*------------ リニューアル時 追記 ---------------*/

/*グロナビ内、タブレット時のフォンサイズ*/
@media screen and (max-width: 980px) {
  .navigation__main-link {
    font-size: 11px;
  }
}

/*------------ リニューアル時 追記 ここまで-------*/


.navigation__main-link--sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.navigation__main-link--sub::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #05106a transparent transparent transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__subnavigation {
  display: none;
  position: absolute;
  top: 80px;
  left: -262px;
}
.navigation__subnavigation-container {
  margin-top: 5px;
  width: 534px;
  border-radius: 27px;
  border: 1px solid #fff;
  background-color: #05106a;
  color: #fff;
  padding: 15px 30px 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 102px;
}
.navigation__subitem-title {
  font-size: 1rem;
  margin-bottom: 10px;
}
.navigation__link-container:not(:last-child) {
  margin-bottom: 6px;
}
.navigation__subitem-link {
  display: inline-block;
  border: 1px solid #ffa200;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  padding: 1px 10px;
  margin-left: 12px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__subitem-link:hover {
  background-color: #ffa200;
}
.navigation__button {
  font-size: 1rem;
  font-weight: 700;
  background-color: #05106a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .navigation__button {
    margin: 0 auto;
  }
}
.navigation__button:hover {
  background-color: #ffa200;
}
.navigation__button--orange {
  width: 281px;
  height: 70px;
  padding: 0;
  border: 3px solid #ffa200;
  background-color: #ffa200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.navigation__button--orange:hover {
  background-color: #fff;
  color: #ffa200;
}
.navigation__button--white {
  width: 281px;
  height: 70px;
  padding: 0;
  background-color: #fff;
  border: 3px solid #ffa200;
  color: #ffa200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.navigation__button--white:hover {
  background-color: #ffa200;
  color: #fff;
}
.navigation__button:not(:last-child) {
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .navigation__button:not(:last-child) {
    margin-bottom: 15px;
  }
}
.navigation__hamburger {
  position: relative;
  width: 35px;
  height: 20px;
  margin-left: 116px;
  cursor: pointer;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding-bottom: 22px;
}


/*------------ リニューアル時 追記 ---------------*/

/*グロナビ内、ハンバーガーメニュー 表示の有無*/
@media screen and (min-width: 980px) {
  .navigation__hamburger {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .navigation__hamburger {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .navigation__hamburger {
    display: block;
  }
}
/*------------ リニューアル時 追記ここまで -------*/



@media screen and (max-width: 980px) {
  .navigation__hamburger {
    margin-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .navigation__hamburger {
    margin-left: auto;
    height: 15px;
    padding-bottom: 15px;
    width: 25px;
  }
}
.navigation__hamburger::after {
  content: "ALL";
  position: absolute;
  bottom: -6px;
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .navigation__hamburger::after {
    font-size: 12px;
  }
}
.navigation__hamburger.active::after {
  content: "CLOSE";
}
.navigation__hamburger.active .navigation__line:first-child,
.navigation__hamburger.active .navigation__line:last-child {
  top: 12px;
  left: 50%;
  width: 0;
}
@media screen and (max-width: 767px) {
  .navigation__hamburger.active .navigation__line:first-child,
  .navigation__hamburger.active .navigation__line:last-child {
    top: 5px;
  }
}
.navigation__hamburger.active .navigation__line:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navigation__hamburger.active .navigation__line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navigation__hamburger.active .navigation__line:nth-child(2),
.navigation__hamburger.active .navigation__line:nth-child(3) {
  top: 12px;
}
@media screen and (max-width: 767px) {
  .navigation__hamburger.active .navigation__line:nth-child(2),
  .navigation__hamburger.active .navigation__line:nth-child(3) {
    top: 5px;
  }
}
.navigation__line {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #05106a;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  left: 0;
}
.navigation__line:first-child {
  top: 0;
}
.navigation__line:nth-child(2),
.navigation__line:nth-child(3) {
  top: 9px;
}
@media screen and (max-width: 767px) {
  .navigation__line:nth-child(2),
  .navigation__line:nth-child(3) {
    top: 8px;
  }
}
.navigation__line:last-child {
  top: 19px;
}
@media screen and (max-width: 767px) {
  .navigation__line:last-child {
    top: 15px;
  }
}
.navigation__container {
  display: none;
  padding: 29px 0 109px;
  background-color: #05106a;
  overflow: auto;
  max-height: calc(100% - 80px);
}
@media screen and (max-width: 767px) {
  .navigation__container {
    max-height: calc(100% - 50px);
    padding: 10px 0 50px;
  }
}
.navigation__container.active {
  display: block;
}
.navigation__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 974px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .navigation__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.navigation__block {
  padding: 22px 0 28px;
}
.navigation__block:last-child {
  margin-left: auto;
  padding-left: 86.5px;
  border-left: 3px solid #fff;
}
@media screen and (max-width: 767px) {
  .navigation__block:last-child {
    padding: 30px 0 0;
    border-left: 0;
    border-top: 2px solid #fff;
    margin: 0;
  }
}
.navigation__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
  color: #fff;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .navigation__links {
    gap: 40px;
    padding-right: 0;
  }
}
.navigation__others {
  margin-top: 72px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .navigation__others {
    margin-top: 30px;
  }
}
.navigation__others-link {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.navigation__others-link:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .navigation__others-link:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .overflow {
    overflow: hidden;
  }
}

/* line 105, ../style.scss */
.breadcrumb {
  margin-left: 0;
  margin-bottom: 20px;
  padding-left: 0;
}

/* line 111, ../style.scss */
.breadcrumb li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
  font-weight: bold;
  /*太字*/
}

/* line 117, ../style.scss */
.breadcrumb li:after {
  /* >を表示*/
  content: ">";
  padding: 0 3px;
  color: #555;
}

/* line 123, ../style.scss */
.breadcrumb li:last-child:after {
  content: "";
}

/* line 127, ../style.scss */
.breadcrumb li a {
  text-decoration: none;
  color: gray;
}

/* line 131, ../style.scss */
.fa-home {
  color: #144e94;
}

/* line 134, ../style.scss */
.breadcrumb li a:hover {
  color: #144e94;
}

/* line 139, ../style.scss */
.key {
  height: 300px;
  width: 100%;
}

/* TOP */

.top-mv,
.top-about,
.top-service,
.service-section,
.top-contact {
  color: #333333;
  line-height: 1.5;
}

.layout-top-contact {
  margin-top: 6.875rem;
}

.layout-top-service {
  margin-top: 6.875rem;
}

.layout-top-mv {
  margin-top: 5rem;
}


.top-mv {
  background-image: url(../images/top-mv.jpg);
  background-position: top center;
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
  background-size: 1200px 550px;
  width: 1200px;
  height: 550px;
  position: relative;
/* background-size: cover;
  height: 35rem; */

}

.top-mv__inner {
  height: inherit;
}

.top-mv__logo {
  height: 2.5625rem;
  left: 21%;
  position: relative;
  top: 2.1875rem;
  transition: 0.3s opacity;
  width: 3.6875rem;
}

.top-mv__logo a:hover {
  opacity: 0.7;
}

.top-mv__logo img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.top-mv__title-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 3.4375rem;
}

.top-mv__main-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  padding-left: 0.4em;
  text-align: center;
  text-indent: 0.1em;
}

.top-mv__main-title .color-orange {
  color: #f28705;
  font-size: 2.8125rem;
  letter-spacing: -0.01em;
}

.top-mv__main-title .font-bg {
  font-size: 2.8125rem;
  letter-spacing: 0.04em;
}

.top-mv__sub-title {
  margin-top: 2.25rem;
}

.top-mv__sub-title span,
.top-mv__btn {
  opacity: 1;
}

.top-mv__btn {
  margin-top: 0.5125rem;
  text-align: center;
  padding: 30px;

}


.top-about-item {
  border: 3px solid #f28705;
  display: flex;
  flex-direction: column;
}

.top-about-item__heading {
  display: flex;
}

.top-about-item__heading-number {
  background-color: #f28705;
  color: #fff;
  font-size: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
}

.top-about-item__heading-title {
  font-size: 1.625rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
  padding: 0.875rem 1.1875rem;
  width: 85%;
}

.top-about-item__heading-title.top-about-item__heading-title--center {
  align-items: center;
  display: flex;
}

.top-about-item__heading-title .color-orange {
  color: #f28705;
}

.top-about-item__body {
  align-items: center;
  border-top: 3px solid #f28705;
  display: flex;
  padding: 3.125rem 3.3125rem;
}

.top-about-item__body.top-about-item__body--02 {
  padding: 1.9375rem 3.3125rem;
}

.top-about-item__body-img {
  margin: 0 auto;
}

.top-about-item__body-img.top-about-item__body-img--01 {
  width: 32.2%;
}

.top-about-item__body-img.top-about-item__body-img--02 {
  width: 22.954%;
}

.top-about-item__body-img.top-about-item__body-img--03 {
  width: 28.51%;
}

.top-about-item__body-img img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.top-about-item__body-img .top-about-item__body-img--01 img {
  aspect-ratio: 220/120;
}

.top-about-item__body-img .top-about-item__body-img--02 img {
  aspect-ratio: 157/157;
}

.top-about-item__body-img .top-about-item__body-img--03 img {
  aspect-ratio: 195/107;
}

.top-about-item__body-wrap {
  margin-left: 2.375rem;
  width: 62.1%;
}

.top-about-item__body-text {
  font-feature-settings: "palt";
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.top-about-item__body-text:nth-child(2) {
  margin-top: 1rem;
}

.top-about {
  background-color: #f9f9f9;
  padding: 3.875rem 0;
}

.top-about__content {
  margin-top: 3.75rem;
}
/* スマホ対応のレスポンシブデザイン */
@media only screen and (max-width: 600px) {
    .top-about__content img {
        width: 100%;
        height: auto;
    }

    .top-about__content {
        padding: 10px; /* スマホ用にパディングを追加 */
    }

    .top-about__content div {
        text-align: center;
    }
}

.top-about__item + .top-about__item {
  margin-top: 5rem;
}


.button {
  width: 8em;
  height: 8em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c76e9;
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.95));
  background: linear-gradient(219deg, rgb(11 29 245 / 20%) 16.44%, rgba(49, 176, 199, 0.2) 87.85%), #FFF;
}

.button {
  background: linear-gradient(to right,#87ceeb, #4169e1);
  color: white;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  text-align: center;
  transition: all .3s ease-out;
  overflow: hidden;
}

.button.button--rev {
  background: linear-gradient(to right, #7d7b7b, #989797);
}

/* 文字を上に表示するための記述 */
.button span {
  position: relative;
  padding-top: 30px;
}
/* ボタンhover後の背景色 */
.button::before {
  background: linear-gradient(to right, #4169e1, #87ceeb);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all .3s ease-out;
  width: 100%;
}

.button::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: url(../images/icon-document.png) no-repeat center/contain;
}

.button:hover::after {
  background: url(../images/icon-document2.png) no-repeat center/contain;
}

.button.button--rev::before {
  background: linear-gradient(to right, #7d7b7b, #989797);
}

.button.button--rev::after {
  background: url(../images/icon_mail.png) no-repeat center/contain;
}

.button.button--rev:hover::after {
  background: url(../images/icon_mail2.png) no-repeat center/contain;
}

/* ボタンhoverで文字色変更 */
.button:hover {
  color: #2e75b6;
  background: linear-gradient(219deg, rgb(198 84 0 / 20%) 16.44%, rgb(53 255 23 / 20%) 87.85%), #FFF;
}

/* ボタンhoverで元の背景色透過 */
.button:hover::before,
.button.button--rev:hover::before {
  opacity: 0;
}

.top-contact {
  background-color: #efefef;
  padding: 6.875rem 0;
}

.top-contact__list {
  grid-gap: 1.6875rem;
  display: grid;
  gap: 1.6875rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5625rem;
}

.top-contact__item {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.6875rem 1.6875rem 1rem;
  text-align: center;
}

.top-contact__item-img {
  margin: 0 auto;
}

.top-contact__item:nth-child(1) .top-contact__item-img {
  width: 7.8125rem;
}

.top-contact__item:nth-child(2) .top-contact__item-img {
  width: 7rem;
}

.top-contact__item:nth-child(3) .top-contact__item-img {
  width: 6rem;
}

.top-contact__item-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.top-contact__item:nth-child(1) .top-contact__item-img img {
  aspect-ratio: 123/112;
}

.top-contact__item:nth-child(2) .top-contact__item-img img {
  aspect-ratio: 112/112;
}

.top-contact__item:nth-child(3) .top-contact__item-img img {
  aspect-ratio: 96/112;
}

.top-contact__item-text {
  font-feature-settings: "palt";
  font-size: 1.0625rem;
  font-weight: 400;
  margin-top: 0.6875rem;
}

.top-contact__sub-title {
  margin-top: 1.875rem;
}

.top-contact__btn {
  margin-top: 0.6875rem;
  text-align: center;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 850px;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}


.js-fadeIn-title span {
  display: inline-block;
}

.section-title {
  font-feature-settings: "palt";
  font-size: 2.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
}

.top-service-desc-item-problem {
  font-feature-settings: "palt";
  align-items: center;
  background-color: #333333;
  border-radius: 1.25rem;
  color: #fff;
  display: flex;
  flex-grow: 1;
  font-size: 1.1875rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 1.76875rem 1rem;
  position: relative;
  width: 47.1%;
}

.top-service-desc-item-solution {
  align-items: center;
  background-color: #f28705;
  border-radius: 1.25rem;
  display: flex;
  flex-grow: 1;
  padding: 0.5rem 2.3125rem;
  position: relative;
  width: 47.1%;
}

.top-service-desc-item-solution__item + .top-service-desc-item-solution__item {
  margin-top: 0.125rem;
}

.top-service-desc-item-solution__item {
  display: flex;
}

.top-service-desc-item-solution__icon {
  height: 1.125rem;
  margin-top: 0.375rem;
  width: 1.125rem;
}

.top-service-desc-item-solution__icon img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.top-service-desc-item-solution__text {
  font-feature-settings: "palt";
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  margin-left: 0.1875rem;
}

.top-service-desc-item-solution__img {
  margin-left: auto;
}

.top-service-desc-item-solution__img img {
  height: 3.9375rem;
  width: 3.8125rem;
  object-fit: contain;
}

.top-service-desc-item-solution__img.top-service-desc-item-solution__img--hand {
  display: inline-block;
  margin-top: auto;
}

.top-service-desc-item-solution__img.top-service-desc-item-solution__img--hand
  img {
  height: 2.8125rem;
  width: 4.375rem;
}

.top-service-desc-item__content {
  display: flex;
  gap: 2.875rem;
  position: relative;
}

.top-service-desc-item__content::before {
  border-color: transparent transparent transparent #f28705;
  border-style: solid;
  border-width: 22px 0 22px 22px;
  content: "";
  height: 0;
  left: 50.4%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
}

.top-service-intro-item {
  flex-grow: 1;
  width: 100%;
}

.top-service-intro-item__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.top-service-intro-item__title {
  font-feature-settings: "palt";
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 400;
  padding: 0.625rem 0;
  position: relative;
  text-align: center;
}

.top-service-intro-item__title::after {
  background-image: url(../images/top-service-black.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.top-service-intro-item__detail {
  align-items: center;
  background-color: #efefef;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0.5625rem 0.9375rem;
  text-align: center;
  width: 95.5%;
}

.top-service-intro-item__text-wrap {
  display: flex;
}

.top-service-intro-item__text {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.4;
  margin-left: 0.1875rem;
  text-align: left;
}

.top-service-intro-item__img {
  height: 1.125rem;
  margin-top: 0.125rem;
  width: 1.125rem;
}

.top-service-intro-item__img img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.top-service-intro-item__text-wrap + .top-service-intro-item__text-wrap {
  margin-top: 0.3125rem;
}

.top-service__title img {
  display: inline-block;
  height: 2.5rem;
  width: 2.5rem;
}

.top-service__body {
  margin-top: 3.625rem;
}

.top-service__intro-list {
  display: flex;
  gap: 1.6875rem;
  list-style: none;
}

.top-service__desc-list {
  margin-top: 11.9375rem;
  position: relative;
  list-style: none;
}

.top-service__desc-list::before {
  background-image: url(../images/top-service01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 10.5rem;
  left: 4.7%;
  position: absolute;
  top: -8.25rem;
  width: 19.1875rem;
  z-index: -1;
}

.top-service__desc-list::after {
  background-image: url(../images/top-service02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 10.1875rem;
  position: absolute;
  right: 12%;
  top: -8.25rem;
  width: 11.75rem;
  z-index: -1;
}

.top-service__desc-item + .top-service__desc-item {
  margin-top: 1.25rem;
}

.sub-title span {
  -webkit-text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1.3125rem;
  justify-content: center;
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: #ce720d;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 0.5rem; /* 線の太さ */
  text-underline-offset: -0.25rem;
}

.sub-title.sub-title--black span {
  color: #333333;
}

.sub-title span::before,
.sub-title span::after {
  background: #fff;
  content: "";
  height: 1.125rem;
  width: 0.125rem;
}

.sub-title.sub-title--black span::before,
.sub-title.sub-title--black span::after {
  background: #333333;
}

.sub-title span::before {
  margin-right: 0.375rem;
  transform: rotate(-10deg);
}

.sub-title span::after {
  margin-left: 0.375rem;
  transform: rotate(10deg);
}

@media screen and (max-width: 1023px) {
  .top-about-item__heading-title {
    font-size: 1.4375rem;
  }

  .top-contact__item-text {
    font-size: 0.9375rem;
  }

  .top-service-desc-item-solution__text {
    font-size: 1.125rem;
  }

  .top-service-intro-item__text {
    font-size: 1rem;
  }

  .top-service-intro-item__title {
    font-size: 1.0625rem;
  }
}

@media (max-width: 800px) {
  .top-mv,
  .top-about,
  .top-service,
  .top-contact {
    font-size: 2vw;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }

  .u-mobile {
    display: block;
  }



@media screen and (max-width: 767px) {
  .top-mv {
    background-image: url(../images/top-mv-sp.png);
    background-position: top center;
    background-size: contain;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9のアスペクト比を想定 */
    max-width: none;
  }
}
}


  .layout-top-mv {
    margin-top: 0;
  }

  .top-about-item__heading-number {
    font-size: 3rem;
    width: 22.6%;
  }

  .top-about-item__body {
    flex-direction: column;
    padding: 1.25rem 0.625rem;
  }

  .top-about-item__body.top-about-item__body--02 {
    padding: 1.25rem 0.625rem;
  }

  .top-about-item__body-img.top-about-item__body-img--01 {
    width: 40%;
  }

  .top-about-item__body-img.top-about-item__body-img--02 {
    width: 32%;
  }

  .top-about-item__body-img.top-about-item__body-img--03 {
    width: 38%;
  }

  .top-about-item__body-wrap {
    margin-left: 0;
    margin-top: 0.625rem;
    width: 100%;
  }

  .top-about__item + .top-about__item {
    margin-top: 2.5rem;
  }

  .button {
    font-size: 1.25rem;
    letter-spacing: 0;
    line-height: 1.3;
    width: 7em;
    height: 7em;
    padding: 0.5625rem;
  }

  .button:hover {
    background-color: rgb(57, 181, 74);
  }

  .top-contact__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .top-contact__item {
    align-items: center;
    flex-direction: row;
    padding: 1.25rem 0.875rem;
    text-align: left;
  }

  .top-contact__item-img {
    width: 30%;
  }

  .top-contact__item:nth-child(1) .top-contact__item-img {
    width: 5.625rem;
  }

  .top-contact__item:nth-child(2) .top-contact__item-img {
    width: 5.625rem;
  }

  .top-contact__item:nth-child(3) .top-contact__item-img {
    width: 5.625rem;
  }

  .top-contact__item-text {
    font-size: 1rem;
    margin-left: 1rem;
    width: 70%;
  }

  .top-contact__btn {
    margin-top: 1.25rem;
  }

  .inner {
    max-width: 540px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .top-mv__logo {
    left: 4%;
  }

  .top-mv__logo a:hover {
    opacity: 1;
  }

  .top-mv__main-title {
    font-size: 1.8125rem;
    letter-spacing: -0.06em;
    padding-left: 0.2em;
    text-indent: 0.1em;
  }

  .top-mv__main-title .color-orange {
    font-size: 2rem;
  }

  .top-mv__main-title .font-bg {
    font-size: 2rem;
  }

  .top-mv__sub-title {
    margin-top: 2.3125rem;
  }

  .top-mv__btn {
    margin-top: 1.6875rem;
    padding: 10px;
  }

  .section-title {
    font-size: 2rem;
  }

  .top-service-desc-item-problem {
    font-size: 1.0625rem;
    padding: 1.5rem 1rem;
  }

  .top-service-desc-item-problem::before {
    background-color: #969696;
    border-radius: 50%;
    content: "";
    height: 2.1875rem;
    left: 50%;
    position: absolute;
    top: -1.0625rem;
    transform: translateX(-50%);
    width: 2.1875rem;
    z-index: 1;
  }

  .top-service-desc-item-problem::after {
    background-image: url(../images/top-service-question.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 1.4375rem;
    left: 50%;
    position: absolute;
    top: -0.5rem;
    transform: translateX(-50%);
    width: 1rem;
    z-index: 2;
  }

  .top-service-desc-item-problem.top-service-desc-item-problem--bottom::after {
    bottom: -30%;
  }

  .top-service-desc-item-solution {
    padding: 0.5rem 1.5625rem;
  }

  .top-service-desc-item-solution__icon {
    margin-top: 0.25rem;
  }

  .top-service-desc-item-solution__text {
    font-size: 1.0625rem;
  }

  .top-service-desc-item__content {
    flex-wrap: wrap;
  }

  .top-service-desc-item__content::before {
    border-color: #f28705 transparent transparent transparent;
    border-width: 17px 17px 0 17px;
    bottom: 42%;
    left: 50%;
    top: auto;
  }

  .top-service-desc-item:nth-child(5) .top-service-desc-item__content::before {
    bottom: 39%;
  }

  .top-service-desc-item:last-child .top-service-desc-item__content::before {
    bottom: 31%;
  }

  .top-service-intro-item__detail {
    padding: 1.875rem 0.9375rem;
    width: 97.5%;
  }

  .top-service-intro-item__text {
    line-height: 1.2;
  }

  .top-service-intro-item__img {
    margin-top: 0;
  }

  .top-service__intro-list {
    flex-direction: column;
  }

  .top-service__desc-list::before {
    height: 6.125rem;
    left: 0;
    top: -5.75rem;
    width: 11.25rem;
  }

  .top-service__desc-list::after {
    height: 6.125rem;
    right: 0;
    top: -5.75rem;
    width: 7.0625rem;
  }

  .sub-title span {
    font-size: 1.25rem;
    letter-spacing: 0.09em;
    text-decoration-thickness: 0.8125rem; /* 線の太さ */
    text-underline-offset: -0.3125rem;
  }

  .sub-title span::before,
  .sub-title span::after {
    height: 1.5rem;
  }

  .sub-title span::before {
    margin-right: 0.5rem;
  }

  .sub-title span::after {
    margin-left: 0.5rem;
  }


@media screen and (max-width: 600px) {
  .top-about-item__heading-title {
    font-size: 0.9375rem;
    padding: 0.875rem 0.625rem;
    width: 77.4%;
  }

  .top-service-intro-item__detail {
    width: 96.7%;
  }
}

@media (max-width: 375px) {
  .top-mv,
  .top-about,
  .top-service,
  .top-contact {
    font-size: 4.2666666667vw;
  }
}

/* line 144, ../style.scss */
.main-image {
  width: 100%;
  height: 300px;
  background-image: url(../images/main-image2x.jpg);
  background-color: #333;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
/* line 152, ../style.scss */
.main-image h2 {
  color: #ffffff;
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  padding-top: 140px;
  text-shadow: 1px 2px 3px #333;
}

/* line 161, ../style.scss */
.wrapper {
  width: 1110px;
  margin: 40px auto 60px;
}

/* line 166, ../style.scss */
.wrapper-underlayer {
  width: 1110px;
  margin: 20px auto 60px;
}

/* line 170, ../style.scss */
.main {
  display: block;
  float: left;
  width: 730px;
}

/* line 176, ../style.scss */
.heading {
  border-bottom: 2px solid #144e94;
  color: #144e94;
  font-size: 1.1rem;
  font-weight: 700;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
/* line 183, ../style.scss */
.heading i {
  padding-left: 10px;
  padding-right: 10px;
  color: #5c86ad;
}
/* line 188, ../style.scss */
.heading .title-eng {
  font-family: "Bitter", serif;
  color: #999999;
  font-size: 1.1rem;
  padding-left: 8px;
}

/* line 196, ../style.scss */
.heading-h2 {
  background-color: #5c86ad;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 5px 10px;
  margin-bottom: 15px;
  border-radius: 5px;
}

/* line 206, ../style.scss */
.news-list {
  max-height: 250px;
  background-color: #ffffff;
  overflow-y: auto;
  margin: 25px 0px;
  padding: 15px 0;
  list-style-type: none;
}

.news-item {
  margin-bottom: 0.8rem;
}
/* line 213, ../style.scss */
.news-list .news-item a {
  display: block;
  padding: 5px 30px;
  color: #333;
  font-size: 0;
  transition: background-color 0.1s;
}
/* line 220, ../style.scss */
.news-list .news-item a:hover {
  background-color: rgba(164, 176, 192, 0.5);
}
/* line 223, ../style.scss */
.news-list .news-item a .date {
  display: inline-block;
  width: 10%;
  font-size: 0.9rem;
}
/* line 228, ../style.scss */
.news-list .news-item a .title {
  display: inline-block;
  width: 90%;
  padding-left: 30px;
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 241, ../style.scss */
.info-banner {
  margin-top: 30px;
  text-align: center;
  transition: all 0.3s ease;
}
/* line 245, ../style.scss */
.info-banner:hover {
  opacity: 0.8;
}

/* line 250, ../style.scss */
.sidemenu {
  float: right;
  width: 350px;
}

/* line 254, ../style.scss */
.footer {
  width: 100%;
}

/* line 257, ../style.scss */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* line 263, ../style.scss */
.company {
  margin-bottom: 30px;
}

/* line 266, ../style.scss */
.company-text,
.relation-text {
  list-style-type: none;
  line-height: 27px;
  padding-left: 10px;
}
/* line 270, ../style.scss */
.company-text li a,
.relation-text li a {
  color: #333;
  transition: color 0.15s;
}
/* line 273, ../style.scss */
.company-text li a:hover,
.relation-text li a:hover {
  color: #5c86ad;
}
/* line 277, ../style.scss */
.company-text i,
.relation-text i {
  color: #144e94;
  padding-right: 5px;
}

.Businessinfo_box {
  display: flex;
  justify-content: space-between;
}
.Businessinfo_box_img {
  margin: 50px 100px;
}
.Businessinfo_box_img p {
  text-align: center;
  margin-top: 10px;
  font-size: 1.1rem;
}

/* line 282, ../style.scss */
.about {
  margin-bottom: 45px;
}

/* line 286, ../style.scss */
.footer {
  width: 100%;
  padding: 30px 0 30px;
  background-color: #000066;
  color: #fff;
}

/* line 292, ../style.scss */
.horizontal-list {
  margin: 0 auto 20px 0;
  text-align: center;
  font-size: 0;
}
/* line 296, ../style.scss */
.horizontal-list .horizontal-item {
  display: inline-block;
  padding: 0 15px;
  letter-spacing: 1px;
  font-size: 1rem;
}
/* line 301, ../style.scss */
.horizontal-list .horizontal-item a {
  color: #fff;
  transition: color 0.15s;
}
/* line 304, ../style.scss */
.horizontal-list .horizontal-item a:hover {
  color: #5c86ad;
}

/* line 310, ../style.scss */
.horizontal-list .horizontal-item + .horizontal-item {
  border-left: 1px solid #fff;
}

/* line 313, ../style.scss */
.copyright {
  margin: 0 auto;
  text-align: center;
}

/* line 318, ../style.scss */
.business-info {
  line-height: 27px;
}

/* line 321, ../style.scss */
.business {
  margin-bottom: 30px;
}
/* line 323, ../style.scss */
.business h3 {
  padding: 0 20px;
}
/* line 326, ../style.scss */
.business p {
  padding: 0 20px;
}

/* line 331, ../style.scss */
.business-info .contact {
  width: 100%;
  margin: 0 auto;
}

/* line 336, ../style.scss */
.company-table th,
.company-table td {
  padding: 15px 15px;
  border: 1px solid #ccc;
  background-color: #ffffff;
}

/* line 342, ../style.scss */
.company-info-p {
  line-height: 27px;
}

/* law */

.wrap-law {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.wrapper.wrapper-law {
  padding: 0 25px;
  flex: 1;
}

.layout-law {
  margin-top: 6rem;
}

.law {
  max-width: 59.375rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.law__title {
  color: #ffffff;
  background-color: #05106a;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem 0;
}

.law__tabg {
  width: 100%;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-size: 1rem;
  text-align: left;
}

.law__thbg {
  width: 23.4%;
  background-color: #eeeeee;
  padding: 0.5rem;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.law__tdbg {
  width: 76.6%;
  background-color: #ffffff;
  padding: 0.5rem;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 375px) {
  .wrapper.wrapper-law {
    padding: 0 15px;
  }

  .layout-law {
    margin-top: 3.125rem;
  }

  .law {
    max-width: 37.5rem;
  }

  .law__title {
    font-size: 1.6rem;
  }
}

/* line 346, ../style.scss */
.privacypolicy {
  line-height: 27px;
}
/* line 348, ../style.scss */
.privacypolicy .privacypolicy-text {
  width: 90%;
  margin: 0 auto;
}
/* line 351, ../style.scss */
.privacypolicy .privacypolicy-text ol {
  padding: 0 0 20px 20px;
}
/* line 354, ../style.scss */
.privacypolicy .privacypolicy-text p {
  padding: 0 0 20px 0;
}

/* line 361, ../style.scss */
.contact-info {
  width: 1110px;
  margin: 0 auto;
  color: #555;
  line-height: 120%;
}

/* line 367, ../style.scss */
.text-danger {
  color: #dc3545;
  font-size: 0.8rem;
}

/* line 371, ../style.scss */
table.formTable {
  width: 80%;
  margin: 0 auto 30px;
  border-collapse: collapse;
  background-color: #ffffff;
}

/* line 377, ../style.scss */
table.formTable td,
table.formTable th {
  border: 1px solid #ccc;
  padding: 10px;
}

/* line 381, ../style.scss */
table.formTable th {
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left;
  vertical-align: middle;
}

/* line 387, ../style.scss */
.top-feature01 ul li {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* line 392, ../style.scss */
.privacy-text {
  line-height: 1.7;
}

/* line 395, ../style.scss */
.form-top-text {
  width: 80%;
  margin: 30px auto 30px;
  line-height: 1.2;
}

/* line 400, ../style.scss */
.form-bottom-text {
  margin-bottom: 30px;
}

/* line 403, ../style.scss */
.privacy-link {
  transition: color 0.15s;
}
/* line 405, ../style.scss */
.privacy-link:hover {
  color: #5c86ad;
}

/* line 409, ../style.scss */
.contact input {
  border: 1px solid #cccccc;
  padding: 5px;
  margin: 5px;
  border-radius: 5px;
}

/* line 416, ../style.scss */
.form-button,
.sumit-button {
  background-color: #144e94;
  font-size: 0.8rem;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
}
/* line 422, ../style.scss */
.form-button:hover,
.sumit-button:hover {
  opacity: 0.7;
  cursor: pointer;
}

/*　簡易版レスポンシブ用CSS　*/
@media screen and (max-width: 572px) {
  /* line 431, ../style.scss */
  table.formTable th,
  table.formTable td {
    width: auto;
    display: block;
  }

  /* line 435, ../style.scss */
  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }

  /* line 439, ../style.scss */
  input[type="text"],
  textarea {
    width: 80%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  /* line 445, ../style.scss */
  input[type="submit"],
  input[type="reset"],
  input[type="button"] {
    /* display: block;*/
    /* width: 100%;*/
    width: 30%;
    height: 40px;
  }
}
@media screen and (max-width: 1120px) {
  /* 画面サイズが1120px以下の場合に適用 */
  /* line 453, ../style.scss */
  body {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  /* line 458, ../style.scss */
  .content {
    width: 100%;
    overflow: hidden;
  }

  /* line 465, ../style.scss */
  .header-top {
    float: none;
  }

  /* line 468, ../style.scss */
  .logo {
    float: none;
    padding-left: 2%;
  }

  /* line 472, ../style.scss */
  .global-nav {
    width: 100%;
    float: none;
    text-align: center;
  }
  /* line 478, ../style.scss */
  .global-nav ul li {
    display: inline;
    float: none;
  }

  /* line 488, ../style.scss */
  .wrapper {
    width: 100%;
  }

  /* line 491, ../style.scss */
  .main {
    width: 100%;
    float: none;
    margin: 0 auto;
    padding: 0 2%;
  }

  /* line 497, ../style.scss */
  .heading {
    width: 100%;
  }

  /* line 500, ../style.scss */
  .news {
    width: 100%;
  }

  /* line 503, ../style.scss */
  .info {
    margin-bottom: 30px;
  }

  /* line 506, ../style.scss */
  .info-banner img {
    width: 80%;
    height: auto;
  }

  /* line 510, ../style.scss */
  .sidemenu {
    width: 100%;
    float: none;
    margin: 0 auto;
    padding: 0 2%;
  }

  /* line 516, ../style.scss */
  .about {
    width: 100%;
  }

  /* line 519, ../style.scss */
  .business-info,
  .company,
  .message,
  .contact {
    padding: 0 2%;
  }
  .Businessinfo_box_img {
    margin: 50px;
  }
}
@media screen and (max-width: 750px) {
  /* line 529, ../style.scss */
  .main-image h2 {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  /* line 533, ../style.scss */
  .date {
    margin-right: 10px;
  }
}
@media screen and (max-width: 750px) {
  .Businessinfo_box {
    display: inherit;
  }
  .Businessinfo_box_img {
    text-align: center;
    margin: 30px auto;
    width: 100%;
  }
  .Businessinfo_box_img img {
    max-width: 100%;
  }
  .company-table {
    width: 100%;
  }
}
/* リスティング広告運用代行ページ*/

.fvback {
  background: #ffffff; /*背景色*/
  padding: 1em;
  margin-top: -0.6em;
}

.fvback2 {
  background: #ffffff; /*背景色*/
  padding: 1em;
  margin-top: -0.6em;
}

.fv {
  padding: 0.5em 1em;
  margin: 1em 35%;
  border: 1px solid #000000;
  color: #2c2c2f;
  background: #fff8e8; /*背景色*/
}
.fv p {
  font-size: 150%;
  margin: 0;
  padding: 0;
}
.listing {
  width: 100%;
  text-align: center;
  border: 2px solid #000000;
  line-height: 27px;
}
.listing p {
  font-size: 100%;
}
.listing h2 {
  font-size: 200%;
  line-height: 54px;
  margin-top: 50px;
}
.listing h3 {
  font-size: 150%;
  line-height: 40px;
  padding: 10px;
}
.fullscreen {
  width: 100%;
  text-align: center;
}
.textblock {
  width: 100%;
  text-align: left;
  padding-left: 35%;
}
/*
.reason {
  display: flex;
  padding-left: 5%;
}
.reason img {
  max-width: 45%;
  padding-right: 30px;
}
*/
.text150 {
  font-size: 150%;
  font-weight: bold;
  line-height: 40px;
}
.side {
  width: 45%;
  text-align: left;
}
.cta {
  background-color: #2e75b6; /*背景色*/
  padding: 20px;
  color: #fff;
}
.cta p {
  font-size: 110%;
  font-weight: bold;
  text-align: center;
  padding: 0.5em 1em;
  margin: 1em 15%;
  color: #2c2c2f;
  background: #fff8e8; /*背景色*/
}
.price-table {
  margin: auto;
}
.price-table th,
.price-table td {
  padding: 15px 50px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  text-align: left;
}
.example {
  display: flex;
  padding-left: 6%;
  margin-bottom: 20px;
}
.examplebox {
  width: 45%;
  text-align: left;
  padding: 3%;
  margin: 1%;
  border: solid 1px #ccc;
}
.examplebox img {
  max-width: 100%;
}
.preparation {
  background-color: #f2f2f2;
  padding: 10px 0 60px;
}
.flow {
  width: 30%;
  background-color: #fff;
  margin: 10px auto;
  border: 1px solid #ccc;
}
.faq {
  width: 70%;
  text-align: left;
  padding: 0 5%;
  margin: 0 auto;
}
p.indent-1 {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 150%;
  margin: 10px auto;
}
p.indent-2 {
  padding-left: 1em;
  text-indent: -1em;
}
table.formTable td {
  text-align: left;
}
.privateinfo {
  width: 90%;
  text-align: left;
  padding: 0 5%;
  margin: 1% 5%;
}

/* リスティング広告運用代行ページ　スマホ対応*/
@media screen and (min-width: 572px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 572px) {
  .pc {
    display: none;
  }
  .fvback {
    margin-top: -0.8em;
  }
  .fv {
    margin: 0em 20%;
  }
  .listing h2 {
    font-size: 140%;
    line-height: 40px;
    margin-top: 30px;
  }
  .listing h3 {
    font-size: 110%;
    line-height: 35px;
  }
  .textblock {
    padding-left: 3%;
  }
  .reason {
    display: block;
    padding-left: 5% !important;
  }
  .side {
    width: 96%;
  }
  .reason img {
    max-width: 90%;
    padding-right: 30px;
  }
  .price-table th,
  .price-table td {
    display: block;
  }
  .price-table th {
    background-color: #ccc;
  }
  .price-table td {
    background-color: #fff;
  }
  .example {
    display: block;
  }
  .examplebox {
    width: 92%;
  }
  .flow {
    width: 80%;
  }
  .faq {
    width: 97%;
  }
  cta p {
    margin: 1em 5%;
  }
  table.formTable {
    width: 95%;
  }
}



/*------------------ここからリニューアル-----------------------*/
/*-------------------------------------------------------------*/

/*[共通ここから]*/

/*.new-common〜で共通の設定 ------------------*/

/*bodyにクラス設定し全体に共通項目を反映させる*/
.new-common__style {
  line-height: 1.6;
  color: #333333;
  font-size: 100%;
  width: 100%;
  background-image:none; /*既存のbodyタグにかかっている背景を削除*/
}

.new-common__style ul li {
  list-style: none;
}

.new-common__style img {
  max-width: 100%;
  height: auto;
}

.new-common__inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .new-common__inner {
    padding: 0 4%;
  }
}
@media (max-width: 767px) {
  .new-common__inner {
    padding: 0 4%;
  }
}

.new-common-section__inner {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .new-common-section__inner {
    padding: 0 4%;
  }
}
@media (max-width: 767px) {
  .new-common-section__inner {
    padding: 0 4%;
  }
}

.new-common__section-content {
  padding: 80px 0 80px;
}
@media (max-width: 767px) {
  .new-common__section-content {
    padding: 40px 0 40px;
  }
}

.new-common__section-title {
  color: #04116A;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}
.new-common__section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: #F28606;
}
@media (max-width: 767px) {
  .new-common__section-title {
    font-size: 20px;
  }
}

.new-common__section-title--white {
  color: #ffffff;
}

.new-common__background-color {
  background: #f9f9f9;
  width: 100%;
}

.new-common__subVisual {
  color: #04116A;
  margin-top: 80px;
  width: 100%;
  height: 200px;
  background: #efefef;
}
@media (max-width: 767px) {
  .new-common__subVisual {
    height: 100px;
    margin-top: 50px;
  }
}

.new-common__subVisual-title {
  color: #f28705;
  font-size: 46px;
  line-height: 200px;
  letter-spacing: 0.03em;
}
.new-common__subVisual-title span {
  position: relative;
}
.new-common__subVisual-title span::after {
  position: absolute;
  left: 0;
  bottom: -110px;
  font-size: 14px;
  color: #fff;
  font-weight: normal;
}
@media (max-width: 767px) {
  .new-common__subVisual-title span::after {
    bottom: -58px;
    font-size: 9px;
  }
}
@media (max-width: 767px) {
  .new-common__subVisual-title {
    font-size: 16px;
    margin-left: 10px;
    line-height: 100px;
  }
}


/*共通ページのタイトル情報 [会社概要、資料ダウンロード、採用]  */
.new-common__subVisual-title-company span::after {
  content: "会社概要";
}

.new-common__subVisual-title-dl-contents span {
  font-size: 32px;
}
.new-common__subVisual-title-dl-contents span::after {
  content: "資料ダウンロード";
}
@media (max-width: 767px) {
  .new-common__subVisual-title-dl-contents span {
    font-size: 18px;
  }
}

.new-common__subVisual-title-recruit span::after {
  content: "採用情報";
}



/*共通ページの背景 [会社概要、資料ダウンロード、採用]  */
.subVisual-company {
  background: url(../images/company-bg.png) no-repeat center center/cover;
}

.subVisual-dl-contents {
  background: url(../images/dl-contents-bg.png) no-repeat center center/cover;
}

.subVisual-recruit {
  background: url(../images/recruit-bg.png) no-repeat center center/cover;
}


/*.new-common〜で共通の設定 ここまで------------------*/
/*[共通ここまで]*/



/*[会社概要 comapany.html ここから]*/

/*各セクションで共通の設定*/
.new-company a,
.new-business a,
.new-introduction a,
.new-philosophy a {
  color: #333333;
}

/*new-company セクション*/

.new-company {
  background: url(../images/kaishagaiyou-bg.png) no-repeat 50% 30%/cover;
}

.new-company__content {
  margin: 50px auto 0;
  max-width: 100%;
}
@media (max-width: 767px) {
  .new-company__content {
    margin-top: 30px;
  }
}

.new-company__list {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #04116A;
  padding: 15px 10px;
  color: #333333;
}
.new-company__list:not(:first-child) {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .new-company__list {
    flex-direction: column;
    text-align: center;
  }
}
.new-company__list dt {
  margin: 0;
  padding: 0;
  font-weight: bold;
  width: 230px;
}
@media (max-width: 767px) {
  .new-company__list dt {
    width: 100%;
  }
}
.new-company__list dd {
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .new-company__list dd {
    width: 100%;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .new-company__list .new-company__list--margin {
    margin-top: 10px;
  }
}
.new-company__list .new-company__list-text-wrap {
  width: 100%;
}
@media (max-width: 767px) {
  .new-company__list .new-company__list-text-wrap {
    width: 100%;
  }
}


/*new-business セクション*/

.new-business__content {
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .new-business__content {
    margin-top: 40px;
  }
}

.new-business__lists + .new-business__lists {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .new-business__lists + .new-business__lists {
    margin-top: 20px;
  }
}

.new-business__lists {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .new-business__lists {
    flex-direction: column;
    margin-top: 20px;
  }
}

.new-business__list {
  width: calc(33.333% - 26.6666666667px);
}
.new-business__list:not(:nth-child(1)) {
  margin-left: 40px;
}
.new-business__list:hover .new-business__list-img {
  transform: scale(1.1, 1.1);
}
.new-business__list:hover .new-business__list-img img {
  opacity: 0.8;
}
.new-business__list:hover .new-business__colum {
  color: #f28705;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .new-business__list {
    width: calc(50% - 20px);
  }
  .new-business__list:nth-child(even) {
    margin-left: 40px;
  }
  .new-business__list:nth-child(3) {
    margin-top: 40px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .new-business__list {
    width: 100%;
  }
  .new-business__list:not(:nth-child(1)) {
    margin-left: 0;
    margin-top: 40px;
  }
}

.new-business__list-img--wrap {
  overflow: hidden;
}

.new-business__list-img {
  transition: all 0.3s ease 0.05s;
}
.new-business__list-img img {
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}
.new-business__text-wrap {
  padding: 10px 20px 30px;
}

.new-business__title {
  font-size: 20px;
  font-weight: bold;
  color: #04116A;
}
@media (max-width: 767px) {
  .new-business__title {
    font-size: 18px;
  }
}

.new-business__text {
  font-size: 14px;
  color: #333333;
  margin-top: 7px;
}
@media (max-width: 767px) {
  .new-business__text {
    margin-top: 3px;
  }
}

.new-business__colum {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
}


/*new-introduction セクション*/

.new-introduction__content {
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .new-introduction__content {
    margin-top: 40px;
  }
}

.new-introduction__content--under {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .new-introduction__content--under {
    margin-top: 80px;
  }
}

.new-introduction__list {
  width: 100%;
  display: flex;
}
.new-introduction__list:not(:nth-child(1)) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .new-introduction__list:not(:nth-child(1)) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .new-introduction__list {
    flex-direction: column;
  }
}

.new-introduction__reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .new-introduction__reverse {
    flex-direction: column;
  }
}

.new-introduction__left {
  width: 50%;
}
@media (max-width: 767px) {
  .new-introduction__left {
    width: 100%;
  }
}

.new-introduction__left--margin {
  margin-right: 50px;
}
@media (max-width: 767px) {
  .new-introduction__left--margin {
    margin-right: 0;
  }
}

.new-introduction__right {
  width: 50%;
  margin-right: 50px;
}
@media (max-width: 767px) {
  .new-introduction__right {
    width: 100%;
    margin-right: 0;
  }
}

.new-introduction__right--margin {
  margin-right: 0;
}

.new-introduction__right--width {
  width: 100%;
  margin-right: 0;
}

.new-introduction__right-text {
  width: 100%;
  margin-right: 0;
}

@media (max-width: 767px) {
  .new-introduction__img {
    margin-top: 0;
  }
}

.new-introduction__img--top {
  text-align: center;
}
.new-introduction__img--top img {
  width: 250px;
  margin-top: -36px;
}



.new-introduction__title {
  font-size: 24px;
  font-weight: bold;
  color: #04116A;
}
@media (max-width: 767px) {
  .new-introduction__title {
    font-size: 18px;
    margin-top: 10px;
  }
}

.new-introduction__title--size {
  font-size: 22px;
}
@media (max-width: 767px) {
  .new-introduction__title--size {
    font-size: 18px;
  }
}

.new-introduction__text {
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
  line-height: 2;
}
@media (max-width: 767px) {
  .new-introduction__text {
    font-size: 14px;
  }
}

.new-introduction__text--size {
  font-size: 16px;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .new-introduction__text--size {
    font-size: 14px;
  }
}

.new-introduction__title--margin {
  margin-top: 10px;
}


/*new-philosophy セクション*/

.new-philosophy {
  background: url(../images/section-bg.png) no-repeat center center/cover;
}

.new-philosophy__info {
  margin: 50px auto 0;
  padding: 40px 50px;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .new-philosophy__info {
    margin-top: 40px;
    padding: 30px;
  }
}

.new-philosophy__list {
  margin-top: 10px;
}
.new-philosophy__list dt {
  color: #04116A;
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .new-philosophy__list dt {
    font-size: 20px;
  }
}
.new-philosophy__list dd {
  margin-top: 15px;
  font-size: 18px;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .new-philosophy__list dd {
    font-size: 14px;
  }
}

.new-philosophy__list + .new-philosophy__list {
  margin-top: 40px;
}

.new-philosophy__list-wrap {
  display: flex;
}
.new-philosophy__list-wrap span {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .new-philosophy__list-wrap span {
    margin-left: 10px;
  }
}

/*[会社概要 comapany.html ここまで]*/


/*[資料ダウンロード dlーcontent.html ここから]*/

/*各セクションで共通の設定*/
.dl-service a,
.dl-pickup a,
.dl-document a {
  color: #333333;
}

/*dl-service セクション*/

.dl-service__content {
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .dl-service__content {
    margin-top: 30px;
  }
}

.dl-service__content + .dl-service__content {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .dl-service__content + .dl-service__content {
    margin-top: 20px;
  }
}

.dl-service__lists {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .dl-service__lists {
    flex-direction: column;
    margin-top: 20px;
  }
}

.dl-service__list {
  width: calc(33.333% - 26.6666666667px);
}
.dl-service__list:not(:nth-child(1)) {
  margin-left: 40px;
}
.dl-service__list:hover .dl-service__list-img {
  transform: scale(1.1, 1.1);
}
.dl-service__list:hover .dl-service__list-img img {
  opacity: 0.8;
}
.dl-service__list:hover .dl-service___button {
  border: 1px solid #f28705;
  color: #f28705;
  transition: all 0.3s ease 0.05s;
}
.dl-service__list:hover .dl-service___button span::after {
  transition: all 0.3s ease 0.05s;
  top: 75%;
  background-image: url("../images/arrow-hover.png");
}
@media (min-width: 768px) and (max-width: 1199px) {
  .dl-service__list {
    width: calc(50% - 20px);
  }
  .dl-service__list:nth-child(even) {
    margin-left: 40px;
  }
  .dl-service__list:nth-child(3) {
    margin-top: 40px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .dl-service__list {
    width: 100%;
  }
  .dl-service__list:not(:nth-child(1)) {
    margin-left: 0;
    margin-top: 40px;
  }
}

.dl-service__list-img--wrap {
  overflow: hidden;
}

.dl-service__list-img {
  transition: all 0.3s ease 0.05s;
}
.dl-service__list-img img {
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}
.dl-service__text-wrap {
  text-align: center;
  padding: 20px 10px 30px;
}

.dl-service__title {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .dl-service__title {
    margin-top: 10px;
  }
}

.dl-service__btn {
  margin-top: 41px;
}
@media (max-width: 767px) {
  .dl-service__btn {
    margin-top: 10px;
  }
}

.dl-service___button {
  width: 280px;
  max-width: 100%;
  font-size: 16px;
  color: #333333;
  padding: 10px 10px;
  border: 1px solid #333333;
  border-radius: 30px;
  display: inline-block;
}
.dl-service___button span {
  font-weight: bold;
  position: relative;
  padding-right: 10px;
}
.dl-service___button span::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 55%;
  transform: translateY(-50%);
  background-image: url("../images/dl-button.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
}

/*dl-pickup セクション*/

.dl-pickup__content {
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .dl-pickup__content {
    margin-top: 30px;
  }
}

.dl-pickup__content + .dl-pickup__content {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .dl-pickup__content + .dl-pickup__content {
    margin-top: 20px;
  }
}

.dl-pickup__lists {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .dl-pickup__lists {
    flex-direction: column;
    margin-top: 20px;
  }
}

.dl-pickup__list {
  width: calc(33.333% - 26.6666666667px);
}
.dl-pickup__list:not(:nth-child(1)) {
  margin-left: 40px;
}
.dl-pickup__list:hover .dl-pickup__list-img {
  transform: scale(1.1, 1.1);
}
.dl-pickup__list:hover .dl-pickup__list-img img {
  opacity: 0.8;
}
.dl-pickup__list:hover .dl-pickup__button {
  border: 1px solid #f28705;
  color: #f28705;
  transition: all 0.3s ease 0.05s;
}
.dl-pickup__list:hover .dl-pickup__button span::after {
  transition: all 0.3s ease 0.05s;
  top: 75%;
  background-image: url("../images/arrow-hover.png");
}
@media (min-width: 768px) and (max-width: 1199px) {
  .dl-pickup__list {
    width: calc(50% - 20px);
  }
  .dl-pickup__list:nth-child(even) {
    margin-left: 40px;
  }
  .dl-pickup__list:nth-child(3) {
    margin-top: 40px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .dl-pickup__list {
    width: 100%;
  }
  .dl-pickup__list:not(:nth-child(1)) {
    margin-left: 0;
    margin-top: 40px;
  }
}

.dl-pickup__list-img--wrap {
  overflow: hidden;
}

.dl-pickup__list-img {
  transition: all 0.3s ease 0.05s;
}
.dl-pickup__list-img img {
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}
.dl-pickup__text-wrap {
  text-align: center;
  padding: 20px 10px 30px;
}

.dl-pickup__title {
  font-size: 20px;
  font-weight: bold;
}

.dl-pickup__title--size {
  font-size: 18px;
}

.dl-pickup__btn {
  margin-top: 36px;
}
@media (max-width: 767px) {
  .dl-pickup__btn {
    margin-top: 10px;
  }
}

.dl-pickup__btn--margin {
  margin-top: 10px;
}

.dl-pickup__button {
  width: 280px;
  max-width: 100%;
  font-size: 16px;
  color: #333333;
  padding: 10px 10px 10px 10px;
  border: 1px solid #333333;
  border-radius: 30px;
  display: inline-block;
}
.dl-pickup__button span {
  font-weight: bold;
  position: relative;
  padding-right: 10px;
}
.dl-pickup__button span::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 55%;
  transform: translateY(-50%);
  background-image: url("../images/dl-button.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
}

/*dl-document セクション*/

.dl-document__content {
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .dl-document__content {
    margin-top: 30px;
  }
}

.dl-document__content + .dl-document__content {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .dl-document__content + .dl-document__content {
    margin-top: 20px;
  }
}

.dl-document__lists {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .dl-document__lists {
    flex-direction: column;
    margin-top: 20px;
  }
}

.dl-document__list {
  width: calc(33.333% - 26.6666666667px);
}
.dl-document__list:not(:nth-child(1)) {
  margin-left: 40px;
}
.dl-document__list:hover .dl-document__list-img {
  transform: scale(1.1, 1.1);
}
.dl-document__list:hover .dl-document__list-img img {
  opacity: 0.8;
}
.dl-document__list:hover .dl-document__button {
  border: 1px solid #f28705;
  color: #f28705;
  transition: all 0.3s ease 0.05s;
}
.dl-document__list:hover .dl-document__button span::after {
  transition: all 0.3s ease 0.05s;
  top: 75%;
  background-image: url("../images/arrow-hover.png");
}
@media (min-width: 768px) and (max-width: 1199px) {
  .dl-document__list {
    width: calc(50% - 20px);
  }
  .dl-document__list:nth-child(even) {
    margin-left: 40px;
  }
  .dl-document__list:nth-child(3) {
    margin-top: 40px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .dl-document__list {
    width: 100%;
  }
  .dl-document__list:not(:nth-child(1)) {
    margin-left: 0;
    margin-top: 40px;
  }
}

.dl-document__list-img--wrap {
  overflow: hidden;
}

.dl-document__list-img {
  transition: all 0.3s ease 0.05s;
}
.dl-document__list-img img {
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}
.dl-document__text-wrap {
  text-align: center;
  padding: 20px 10px 30px;
}

.dl-document__title {
  font-size: 20px;
  font-weight: bold;
}

.dl-document__btn {
  margin-top: 41px;
}
@media (max-width: 767px) {
  .dl-document__btn {
    margin-top: 10px;
  }
}

.dl-document__btn--margin {
  margin-top: 10px;
}

.dl-document__button {
  width: 280px;
  max-width: 100%;
  font-size: 16px;
  color: #333333;
  padding: 10px 10px 10px 10px;
  border: 1px solid #333333;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease 0.05s;
}
.dl-document__button span {
  font-weight: bold;
  position: relative;
  padding-right: 10px;
}
.dl-document__button span::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 55%;
  transform: translateY(-50%);
  background-image: url("../images/dl-button.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
}
/*[資料ダウンロード dlーcontent.html ここまで]*/


/*[採用情報 recruit.html ここから]*/

/*各セクションで共通の設定*/
.recruit-project a,
.recruit-case a,
.recruit-vision a,
.recruit-human a,
.recruit-work a,
.recruit-detail a,
.recruit-flow a {
  color: #333333;
}

/*recruit-project セクション*/

.recruit-project__info {
  width: 75%;
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .recruit-project__info {
    width: 100%;
    margin-top: 30px;
  }
}

.recruit-project__lists {
  font-size: 20px;
}
@media (max-width: 767px) {
  .recruit-project__lists {
    font-size: 16px;
  }
}

.recruit-project__list {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  line-height: 2;
  display: flex;
}
@media (max-width: 767px) {
  .recruit-project__list {
    font-size: 14px;
  }
}

.recruit-project + .recruit-project {
  margin-top: 20px;
}

/*recruit-case セクション*/

.recruit-case__content {
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .recruit-case__content {
    margin-top: 30px;
  }
}

.recruit-case__content-under {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .recruit-case__content-under {
    margin-top: 80px;
  }
}

.recruit-case__list {
  width: 100%;
  display: flex;
}
.recruit-case__list:not(:nth-child(1)) {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .recruit-case__list:not(:nth-child(1)) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .recruit-case__list {
    flex-direction: column;
  }
}

.recruit-case__reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .recruit-case__reverse {
    flex-direction: column;
  }
}

.recruit-case__left {
   width: 50%;
}
@media (max-width: 767px) {
  .recruit-case__left {
    width: 100%;
  }
}

.recruit-case__img {
  text-align: center;
}
.recruit-case__img img {
  width: 450px;
}



.recruit-case__left--margin {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .recruit-case__left--margin {
    margin-right: 0;
  }
}

.recruit-case__right {
  width: 50%;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .recruit-case__right {
    width: 100%;
    margin-right: 0;
  }
}

.recruit-case__right--margin {
  margin-right: 0;
}

.recruit-case__right-text {
  width: 100%;
  margin-right: 0;
}

.recruit-case__title {
  color: #04116A;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .recruit-case__title {
    font-size: 18px;
    margin-top: 10px;
  }
}

.recruit-case__text {
  margin-top: 18px;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}
@media (max-width: 767px) {
  .recruit-case__text {
    font-size: 14px;
    margin-top: 10px;
  }
}

/*recruit-vision  セクション*/

.recruit-vision {
  background: url(../images/section-bg.png) no-repeat center center/cover;
}

.recruit-vision__info {
  margin: 50px auto 0;
  text-align: center;
}
@media (max-width: 767px) {
  .recruit-vision__info {
    margin-top: 30px;
  }
}

.recruit-vision__list {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .recruit-vision__list {
    font-size: 14px;
  }
}

.recruit-vision + .recruit-project {
  margin-top: 20px;
}

/*recruit-human  セクション*/

.recruit-human {
  background: url(../images/recruit-section-bg.png) no-repeat center center/cover;
}

.recruit-human__section-content {
  width: 84%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .recruit-human__section-content {
    width: 100%;
  }
}

.recruit-human__info {
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .recruit-human__info {
    margin-top: 30px;
  }
}

.recruit-human__list-title {
  font-size: 20px;
  font-weight: bold;
  color: #04116A;
  border-bottom: 2px solid rgba(4, 17, 106, 0.2);
  padding-bottom: 5px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .recruit-human__list-title {
    font-size: 18px;
  }
}

.recruit-human + .recruit-human {
  margin-top: 20px;
}

.recruit-human__list {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  display: flex;
  margin-left: 15px;
}
@media (max-width: 767px) {
  .recruit-human__list {
    font-size: 14px;
    margin-left: 5px;
  }
}

/*recruit-work  セクション*/

.recruit-work__content {
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .recruit-work__content {
    margin-top: 30px;
  }
}

.recruit-work__content-under {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .recruit-work__content-under {
    margin-top: 80px;
  }
}

.recruit-work__list {
  width: 100%;
  display: flex;
}
.recruit-work__list:not(:nth-child(1)) {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .recruit-work__list:not(:nth-child(1)) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .recruit-work__list {
    flex-direction: column;
  }
}

.recruit-work__reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .recruit-work__reverse {
    flex-direction: column;
  }
}

.recruit-work__left {
    width: 50%;
}
@media (max-width: 767px) {
  .recruit-work__left {
    width: 100%;
  }
}

.recruit-work__img {
  text-align: center;
}
.recruit-work__img img {
  width: 450px;
}



.recruit-work__left--margin {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .recruit-work__left--margin {
    margin-right: 0;
  }
}

.recruit-work__right {
  width: 50%;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .recruit-work__right {
    width: 100%;
    margin-right: 0;
  }
}

.recruit-work__right--margin {
  margin-right: 0;
}

.recruit-work__right-text {
  width: 100%;
  margin-right: 0;
}

.recruit-work__title {
  color: #04116A;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .recruit-work__title {
    margin-top: 10px;
    font-size: 18px;
  }
}

.recruit-work__text {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .recruit-work__text {
    font-size: 14px;
    margin-top: 10px;
  }
}

/*recruit-detail セクション*/

.recruit-detail__content {
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .recruit-detail__content {
    margin-top: 30px;
  }
}

.recruit-detail__content + .recruit-detail__content {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .recruit-detail__content + .recruit-detail__content {
    margin-top: 20px;
  }
}

.recruit-detail__lists {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .recruit-detail__lists {
    flex-direction: column;
    margin-top: 20px;
  }
}

.recruit-detail__list {
  width: calc(33.333% - 26.6666666667px);
}
.recruit-detail__list:not(:nth-child(1)) {
  margin-left: 40px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .recruit-detail__list {
    width: calc(50% - 20px);
  }
  .recruit-detail__list:nth-child(even) {
    margin-left: 40px;
  }
  .recruit-detail__list:nth-child(3) {
    margin-top: 40px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .recruit-detail__list {
    width: 100%;
  }
  .recruit-detail__list:not(:nth-child(1)) {
    margin-left: 0;
    margin-top: 40px;
  }
}

.recruit-detail__list-img img {
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit-detail__text-wrap {
  padding: 10px 20px 30px;
}

.recruit-detail__title {
  font-size: 20px;
  font-weight: bold;
  color: #04116A;
}
@media (max-width: 767px) {
  .recruit-detail__title {
    font-size: 18px;
  }
}

.recruit-detail__text {
  font-size: 14px;
  color: #333333;
  margin-top: 7px;
}
@media (max-width: 767px) {
  .recruit-detail__text {
    margin-top: 3px;
  }
}

.recruit-detail__under-content {
  padding: 0 0 80px;
}
@media (max-width: 767px) {
  .recruit-detail__under-content {
    padding: 20px 0 40px;
  }
}


.recruit-detail__under-title {
  font-size: 24px;
  font-weight: bold;
  color: #04116A;
  text-align: center;
}
@media (max-width: 767px) {
  .recruit-detail__under-title {
    font-size: 20px;
  }
}


.recruit-detail__under-lists {
  margin: 30px auto 0;
}
@media (max-width: 767px) {
  .recruit-detail__under-lists {
    margin-top: 30px;
  }
}

.recruit-detail__under-list {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted rgba(51, 51, 51, 0.4);
  padding: 15px 10px;
  color: #333333;
}
.recruit-detail__under-list:not(:first-child) {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .recruit-detail__under-list {
    flex-direction: column;
    text-align: center;
    text-align: left;
  }
}
.recruit-detail__under-list dt {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  width: 200px;
}
@media (max-width: 767px) {
  .recruit-detail__under-list dt {
    width: 100%;
  }
}
.recruit-detail__under-list dd {
  margin: 0;
  padding: 0;
  width: calc(100% - 200px);
}
@media (max-width: 767px) {
  .recruit-detail__under-list dd {
    width: 100%;
    font-size: 14px;
  }
}

.recruit-detail__under-text-wrap {
  display: flex;
}

/*recruit-flow セクション*/

.recruit-flow__content {
  width: 75%;
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .recruit-flow__content {
    margin-top: 30px;
    width: 100%;
  }
}

.recruit-flow__list {
  display: flex;
  align-items: center;
  padding: 20px 20px;
  background: #f9f9f9;
}
.recruit-flow__list:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .recruit-flow__list {
    padding: 10px 20px;
    flex-direction: column;
  }
}

.recruit-flow__number {
  width: 110px;
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
  color: #f28705;
}
@media (max-width: 767px) {
  .recruit-flow__number {
    width: 100%;
    font-size: 30px;
  }
}

.recruit-flow__wrap {
  width: calc(100% - 110px);
}
@media (max-width: 767px) {
  .recruit-flow__wrap {
    width: 100%;
  }
}

.recruit-flow__list-title {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .recruit-flow__list-title {
    font-size: 18px;
  }
}
.recruit-flow__list-title span {
  font-size: 14px;
  margin-left: 5px;
}

.recruit-flow__list-text {
  margin-top: 5px;
}
@media (max-width: 767px) {
  .recruit-flow__list-text {
    font-size: 14px;
  }
}

.recruit-flow__arrow {
  margin-top: 20px;
  text-align: center;
}
.recruit-flow__arrow img {
  width: 30px;
  height: 30px;
  opacity: 0.6;
}

  .service-section {
    display: flex;
    justify-content: center;
    max-width: 799px;
    align-items: center;
    flex-direction: column;
    padding: 10 10px;
    margin: 1.875rem auto;
  }

  .service-title {
    color: #333;
    text-align: center;
    letter-spacing: 0.46px;
    align-self: center;
    font: 400 46px/100% Inter, sans-serif;
    font-weight: bold;
    display: grid;
    grid-template-columns: 15% auto 15%;
    place-items: center;
    width: 100%;
    gap: 10px;
  }

  .service-title::before,
  .service-title::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #333;
  }

  .service-grid {
    margin-top: 52px;
    width: 100%;
  }

  .service-row {
    gap: 20px;
    display: flex;
  }

  .service-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 50%;
  }

  .service-item {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    font-size: 1.0625rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #333;
    letter-spacing: 0.46px;
  }

  .service-image {
    aspect-ratio: 2.5;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }

  .service-description {
    margin-top: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  @media (max-width: 991px) {
    .service-title {
      font-size: 40px;
      grid-template-columns: 20% auto 20%;
    }

    .service-grid {
      max-width: 100%;
      margin-top: 40px;
    }

    .service-row {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }

    .service-column {
      width: 100%;
      margin-left: 0;
    }

    .service-item {
      margin-top: 39px;
      text-align: left; /* テキストは左揃えに設定 */
    }
    .service-item img {
    display: block;
    margin: 0 auto; /* 画像を中央揃えに設定 */
   }

    .service-image {
      margin-top: 40px;
    }
  }
  @media(max-width: 768px) {
    .service-title {
      font-size: clamp(1.5rem, 1.016rem + 2.066vw, 2.875rem);
      grid-template-columns: 10% auto 10%;
    }

  }

    .container {
    display: flex;
    justify-content: center;

    max-width: 799px;
    align-items: center;
    flex-direction: column;
    padding: 20 10px;
    margin: 6.875rem auto;
  }

  .ind-section {
    margin-top: 55px;
    width: 100%;
  }

  @media (max-width: 991px) {
    .ind-section {
      max-width: 100%;
      margin-top: 40px;
    }
  }

  .ind-row {
    display: flex;
    gap: 20px;
  }

  @media (max-width: 991px) {
    .ind-row {
      flex-direction: column;
      align-items: stretch;
      gap: 0px;
    }
  }

  .column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 50%;
    margin-left: 0px;
  }

  @media (max-width: 991px) {
    .column {
      width: 100%;
    }
  }

  .column + .column {
    margin-left: 20px;
  }

  .ind-image {
    aspect-ratio: 0.83;
    margin: auto;
    text-align: center;
    width: 80%;
    flex-grow: 1;
  }

  @media (max-width: 991px) {
    .ind-image {
      margin-top: 40px;
    }
  }

  .additional-section {
    margin-top: 32px;
    width: 100%;
  }

  @media (max-width: 991px) {
    .additional-section {
      max-width: 100%;
    }
  }

  .customer-testimonials {
    display: flex;
    justify-content: center;

    max-width: 799px;
    align-items: center;
    flex-direction: column;
    padding: 20 10px;
    margin: 6.875rem auto;
    }

  .section-title {
    color: #333;
    text-align: center;
    letter-spacing: 0.46px;
    align-self: center;
    font: 400 46px/100% Inter, sans-serif;
  }

  .testimonial-container {
    margin-top: 76px;
    width: 100%;
  }

  .testimonial-grid {
    gap: 20px;
    display: flex;
    margin: 0 auto;
  }

  .testimonial-column {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    align-items:center;
    line-height: normal;
    width: 50%;
    border: solid 1px;
  }

  .testimonial-card {
    display: flex;
    margin: 0 auto;
    flex-grow: 1;
    flex-direction: column;
    color: #333;
    font-weight: 400;
    letter-spacing: 0.26px;
  }

  .testimonial-image {
    aspect-ratio: 3.03;
    margin: 0 auto;
    object-fit: cover;
    display: flex;
    width: 100%;
  }

  .customer-name {
    text-align: center;
    align-self: center;
    margin-top: 18px;
    font: 26px/130% Inter, sans-serif;
  }

  .testimonial-text {
    margin-top: 30px;
    font: 16px/34px Inter, sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  @media (max-width: 991px) {
    .section-title {
      font-size: 40px;
    }

    .testimonial-container {
      max-width: 100%;
      margin-top: 40px;
    }

    .testimonial-grid {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }

    .testimonial-column {
      width: 100%;
    }

    .testimonial-card {
      margin-top: 40px;
    }

    .testimonial-image {
      margin: 0 10px;
    }
  }

.top-mv-cta{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

/* 240730追加 */
.u-margin {
  margin-top: 30px;
}


/* 20240925追加 */
.service-section.service-section--first {
	margin-top: 30px;
}

.top-mv-cta.top-mv-cta--top{
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
	.top-mv-cta.top-mv-cta--top{
		bottom: -120px;
		transform: translate(-50%, 0);

	}

	.service-section.service-section--first {
		margin-top: 133px;
	}
}


/* 20241027追加 */
.layout-top-mv {
  margin-top: 4.2%;
}
.top-mv {
  background-image: url(../images/top-mv2.png);
  background-position: top center;
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
  /*background-size: 1200px 550px;*/
  width: 100%;
  height: 550px;
  position: relative;
/* background-size: cover;
  height: 35rem; */
}

.top-mv-cta.top-mv-cta--top{
	bottom: -30%;
}

.top-mv2-txt {
  max-width: 600px;
  position: absolute;
  top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.top-mv2-txt img {
  width: 100%;
}

@media (max-width: 767px) {
  .top-mv2-txt {
    display: none;
  }
  .top-mv {
    background-image: url(../images/top-mv-sp2.png);
    background-position: top center;
    background-size: contain;
    width: 100%;
    height: 300px;
    padding-bottom: 56.25%; /* 16:9のアスペクト比を想定 */
    max-width: none;
  }
}

.service-section.service-section--first {
	margin-top: 120px;
}









/* 202412リニューアル追加 */
/* ------------------------------------------------------------
  MV
------------------------------------------------------------ */
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  color: #393f3e;
}
.content {
  text-align:center;
  background-color: white;
}
.header {
  position: relative;
  background-image: url(../images/top/mv.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: white;
  margin-top: 3%;
}
.inner-header {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  z-index: 0;
}
.mv_txt {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-100%, -50%);
  font-family: "ＭＳ Ｐ明朝";
  text-align: left;
  width: 85%;
}
.sub_txt {
  font-size: calc(1rem + 1vw);
  padding: 0 0 2% 0;
}
.mv_txt h1 {
  font-size: calc(2rem + 2vw);
  line-height: 1.2;
  font-weight: 300;
}
.mv_txt small {
  font-size: calc(1rem + 0.5vw);
}
.flex {
  display: flex;
  justify-content: flex-start;
  gap: 2%;
}
.circle1 {
  position: relative;
  max-width: 200px;
  width: calc(10vw + 50px);
  margin: 3% -2%;
}
.circle1 img {
  width: 100%;
  height: auto;
}
.circle1 p {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: calc(0.8rem + 0.5vw);
  color: #ffffff;
}
.waves {
  position: absolute;
  top: calc(100% - 20vh);
  left: 0;
  width: 100%;
  height: 20vh;
  max-height: 20vh;
  z-index: 1;
}

/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}


@media (max-width: 1200px) {
  .waves {
    top: calc(100% - 14vh);
    height: 15vh;
  }
}
@media (max-width: 980px) {
  .header {
    background-image: url(../images/top/mv_sp.png);
    background-size: 100% auto;
    margin-top: 8%;
  }
  .mv_txt {
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .sub_txt {
    font-size: calc(1rem + 1vw);
  }
  .mv_txt h1 {
    font-size: calc(2rem + 2vw);
  }
  .mv_txt small {
    font-size: calc(1rem + 0.5vw);
  }
  .flex {
    justify-content: center;
  }
  .circle1 {
    width: calc(12vw + 50px);
    margin: 2% -2.5%; 
  }
  .circle1 p {
    font-size: calc(1rem + 0.5vw); 
  } 
  .waves {
    top: calc(100% - 6vh);
    width: 100%;
    height: 6vh;
  }
}
@media (max-width: 767px) {
  .header {
    margin-top: 0%;
    height: 50vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .inner-header {
    height: 100%;
  }
  .mv_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .sub_txt {
    font-size: calc(1rem + 1vw);
  }
  .mv_txt h1 {
    font-size: calc(2rem + 2vw);
  }
  .mv_txt small {
    font-size: calc(1rem + 0.5vw);
  }
  .flex {
    justify-content: center;
  }
  .circle1 {
    width: calc(15vw + 50px);
    margin: 2% -3%; 
  }
  .circle1 p {
    font-size: calc(1rem + 0.5vw); 
  } 
  .waves {
    top: calc(100% - 6.5vh);
    width: 100%;
    height: 7vh;
  }
}

@media (max-width: 480px) {
  .sub_txt {
    font-size: calc(1.5rem + 1vw);
  }
  .mv_txt h1 {
    font-size: calc(2.2rem + 2vw);
  }
  .mv_txt small {
    font-size: calc(1.5rem + 0.5vw);
  }
  .flex {
    justify-content: center;
  }
  .circle1 {
    width: calc(20vw + 50px);
    margin: 2% -3%; 
  }
  .circle1 p {
    font-size: 16px; 
  } 
  .waves {
    top: calc(100% - 6.5vh);
    width: 100%;
    height: 7vh;
  }
}

/* ------------------------------------------------------------
  CTA
------------------------------------------------------------ */
.cta_box {
  display: flex;
  gap: 3%;
  max-width: 1000px;
  margin: 1% auto;
}
.cta_box img {
  width: 100%;
}
@media (max-width: 480px) {
  .cta_box {
    display: block;
    width: 80%;
    margin: 1% auto;
  }
}

/* ------------------------------------------------------------
  メイン
------------------------------------------------------------ */
.h2 {
  width: 95%;
  max-width: 1400px;
  margin: auto;
}
.main_h2 {
  font-size: calc(1rem + 1vw);
  font-weight: 600;
  width: 100%;
}
.sub_h2 {
  color: #b7d0ed;
  font-size: calc(3rem + 2vw);
  letter-spacing: -5px;
}
.blue {
  color: #0e62c5;
  font-weight: bold;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.br-sp {
  display: none;
}

@media (max-width: 600px) {
  .br-sp {
    display: block;
  }
}
@media (max-width: 480px) {
  .main_h2 {
    font-size: 18px;
  }
  .sub_h2 {
    font-size: 48px;
  }
}

/* ------------------------------------------------------------
  サービス
------------------------------------------------------------ */
.service {
  position:relative;
  background-image: url(../images/top/back.png);
  background-position: left top;
	background-repeat: no-repeat;
	background-size: 100% auto;
  background-position: center 50px;
  margin-top: 10%;
  padding-bottom: 10%;
}
.ai_solution {
  width: 20%;
  min-width: 250px;
  margin: 9% auto -2%;
}
.service_content {
  display: flex;
  justify-content: center;
  width: 95%;
  max-width: 1200px;
  margin: auto;
  height: 450px;
  align-items: flex-end;
}
.service_box:nth-child(1) {
  margin-bottom: auto;
  z-index: 1;
  background-image: url(../images/top/service01.png);
}
.service_box:nth-child(4) {
  margin-bottom: auto;
  z-index: 1;
  background-image: url(../images/top/service04.png);
}
.service_box:nth-child(2) {
  margin-right: 1%;
  margin-left: -.5%;
  z-index: 2;
  background-image: url(../images/top/service02.png);
}
.service_box:nth-child(3) {
  margin-left: 1%;
  margin-right: -.5%;
  z-index: 2;
  background-image: url(../images/top/service03.png);
}
.service_box {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 80% auto;
  background-position: center center;
  width: 280px;
  height: 380px;
  box-shadow: 0px 2px 8px 0px rgba(16, 99, 197, 0.7);
  border-radius: 10px;
  padding: 3% 1%;
  position: relative;
}
.service_box h3{
  font-size: calc(0.8rem + 0.7vw);
  margin-bottom: 15%;
}
.service_box p{
  font-size: calc(0.6rem + 0.5vw);
  line-height: 2rem;
}
.service_box .small {
  font-size: calc(0.5rem + 0.2vw);
  line-height: 1.4rem;
  font-weight: 600;
  position: absolute;
  bottom: 5%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 980px) {
  .service_content {
    flex-wrap:wrap;
    gap: 5%;
    width: 95%;
    margin: 5% auto;
    height: 450px;
  }
  .service_box:nth-child(2) {
    margin-right: 0%;
    margin-left: 0%;
  }
  .service_box:nth-child(3) {
    margin-left: 0%;
    margin-right: 0%;
  }
  .service_box {
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: center center;
    width: 40%;
    height: 50%;
  }
  .service_box h3{
    margin-bottom: 5%;
  }
  .service_box p{
    line-height: 1.5rem;
  }
}
@media (max-width: 480px) {
  .service_content {
    display: block;
    width: 95%;
    margin: 5% auto;
    height: auto;
  }
  .service_box:nth-child(2) {
    margin-right: 0%;
    margin-left: 0%;
    margin: 5% auto;
  }
  .service_box:nth-child(3) {
    margin-left: 0%;
    margin-right: 0%;
    margin: 5% auto;
  }
  .service_box {
    width: 90%;
    margin: 5% auto;
    max-height: 200px;
    padding: 5%;
  }
  .service_box h3{
    font-size: 18px;
    margin-bottom: 5%;
  }
  .service_box p{
    font-size: 14px;
    line-height: 1.5rem;
  }
  .service_box .small {
    font-size: 12px;
  }
}

/* ------------------------------------------------------------
  運用技術
------------------------------------------------------------ */
.tecnorogy {
  background-color: linear-gradient(#e1ecf8, #ffffff);
  background-image: url(../images/top/tecnorogy_back.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center 75%;
  margin-top: 10%;
}
.tecnorogy_box {
  display: flex;
  width: 95%;
  max-width: 1200px;
  align-items: center;
  margin: auto;
}
.tecnorogy_box img {
  max-width: 500px;
}
.tecnorogy_box:nth-child(2) img {
  max-width: 550px;
  margin-left: 20%;
  margin-top: -5%;
}
.tecnorogy_box p {
  text-align: left;
  line-height: 1.4rem;
}
@media (max-width: 1200px) {
  .tecnorogy {
    background-position: center 65%;
  }
  .tecnorogy_box:nth-child(2) img {
    margin-left: 10%;
    margin-top: -2%;
  }
}
@media (max-width: 980px) {
  .tecnorogy_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    margin: 3% auto;
    gap: 20px;
  }
  .tecnorogy_box {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: auto;
  }
  .tecnorogy_box img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .tecnorogy_box:nth-child(2) img {
    max-width: 430px;
    width: 100%;
    margin-left: 0;
  }
  .tecnorogy_box p {
    line-height: 1.4rem;
  }
}
@media (max-width: 767px) {
  .tecnorogy_box {
    flex-direction: column;
  }
  .tecnorogy_box img {
    max-width: 300px;
    margin-bottom: 30px;
  }
  .tecnorogy_box:nth-child(2) img {
    max-width: 330px;
  }
  .tecnorogy_box p {
    width: 60%;
  }
}

.triangle3{
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 40px solid #0060c2;
  margin: 5% auto 0;
}
.tecnorogy2 {
  position:relative;
  background-image: url(../images/top/tecnorogy_back2.png);
  background-position: left top;
	background-repeat: no-repeat;
	background-size: 100% 100%;
  background-position: center top; 
  padding: 5% 0;
}
.tecnorogy2 h2 {
  font-size: calc(2rem + 1vw);
  color: #0e62c5;
  line-height: 3rem;
  width: 95%;
  margin: auto;
}
.tecnorogy2 h2 span {
  color: #29abe2;
}
.tecnorogy2 h2 small {
  color: #29abe2;
  font-size: calc(1.4rem + 1vw);
}
.tecnorogy_content {
  display: flex;
  justify-content: center;
  gap: 3%;
  margin: 5% auto 0;
  width: 90%;
}

/* ---------- tecnorogy 横スクロール ---------- */
.tecnorogy-scroll{
  overflow-x: auto;       /* 横方向だけスクロール表示 */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* iOS慣性 */
  max-width: 100%;
  scrollbar-width: thin;             /* Firefox */
  scrollbar-color: #0e62c5 #ececec;  /* Firefox */
}

/* WebKit系（Chrome/Safari）のスクロールバー装飾 */
.tecnorogy-scroll::-webkit-scrollbar{
  height: 8px;
}
.tecnorogy-scroll::-webkit-scrollbar-track{
  background: #ececec;
}
.tecnorogy-scroll::-webkit-scrollbar-thumb{
  background: #0e62c5;
  border-radius: 4px;
}

/* 中の画像を横長にする——ここは実寸に合わせて調整 */
.tecnorogy-scroll img{
  display: block;
  width: auto;          /* 縦横比を保持 */
  min-width: 1200px;    /* >100% ならスクロールが必ず発生 */
  height: auto;
}



.tecnorogy2_box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 8px 0px rgba(16, 99, 197, 0.7);
  width: 360px;
  text-align: center;
  padding-bottom: 3%;
}
.tecnorogy2_box h3 {
  color: #fff;
  background-color: #0e62c5;
  font-size: calc(0.8rem + 1vw);
  padding: 3%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.tecnorogy2_box img {
  width: 90%;
  margin: 10% auto 5%;
}
.tecnorogy2_box h4 {
  color: #0e62c5;
  font-size: calc(0.6rem + 1vw);
  margin-bottom: 5%;
}
.tecnorogy2_box p {
  font-size: calc(0.6rem + 0.5vw);
}
@media (max-width: 480px) {
  .tecnorogy2 {
    position:relative;
    background-image: url(../images/top/tecnorogy_back2.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom; 
    padding: 5% 0;
  }
  .tecnorogy2 h2 {
    font-size: 24px;
    line-height: 2rem;
  }
  .tecnorogy2 h2 small {
    font-size: 18px;
  }
  .tecnorogy_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 5% auto;
    width: 90%;
  }
  .tecnorogy2_box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 8px 0px rgba(16, 99, 197, 0.7);
    width: 360px;
    text-align: center;
    padding-bottom: 3%;
  }
  .tecnorogy2_box h3 {
    color: #fff;
    background-color: #0e62c5;
    font-size: 20px;
    padding: 3%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .tecnorogy2_box img {
    width: 60%;
    margin: 5% auto 2%;
  }
  .tecnorogy2_box h4 {
    color: #0e62c5;
    font-size: 16px;
    margin-bottom: 2%;
  }
  .tecnorogy2_box p {
    font-size: 14px;
  }
}

/* ------------------------------------------------------------
  企業一覧
------------------------------------------------------------ */
.case {
  padding: 5% 0;
  background: linear-gradient(-45deg, #f9c2eb, #0e62c5, #00acc1, #543ab7) fixed;
  background-size: 800% 800%;
  animation: GradietionAnimation 20s ease infinite;
  margin-top: -0.5%;
}
@keyframes GradietionAnimation { 
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
.case h2 {
  font-size: calc(2rem + 1vw);
  color: #fff;
}
.client {
  width: 90%;
  max-width: 1000px;
  margin-top: 5%;
}
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 10% auto 5%;
}
.carousel-track-container {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {
  flex: 0 0 33.33%; /* 3枚表示 */
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide img {
  width: 90%;
  height: auto;
}
.carousel-slide.active {
  opacity: 1;
}
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 10;
  border-radius: 50%;
}
.carousel-button.prev {
  left: 33%;
}
.carousel-button.next {
  right: 33%;
}

@media (max-width: 980px) {
  .carousel-slide {
    flex: 0 0 50%; /* 2枚表示 */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-button.prev {
    left: 0%;
  }
  .carousel-button.next {
    right: 0%;
  }
}
@media (max-width: 767px) {
  .case h2 {
    font-size: 28px;
  }
  .carousel-track-container {
    overflow: hidden;
    width: 80%;
    margin: auto;
  }
  .carousel-slide {
    flex: 0 0 100%; /* 1枚表示 */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-button.prev {
    left: 10%;
  }
  .carousel-button.next {
    right: 10%;
  }
}
@media (max-width: 480px) {
  .case h2 {
    font-size: 24px;
  }
}

/* ------------------------------------------------------------
  選ばれる理由
------------------------------------------------------------ */
.reason2 {
  padding: 5% 0 0;
  background: linear-gradient(-45deg, #f9c2eb, #0e62c5, #00acc1, #543ab7) fixed;
  background-size: 800% 800%;
  animation: GradietionAnimation 20s ease infinite;
}
.reason_inner {
  width: 100%;
  height: 100vh;
  position:relative;
  background-image: url(../images/top/reason_back.png);
  background-position: left top;
	background-repeat: no-repeat;
	background-size: 100% 100%;
  background-position: center top; 
  padding-top: 5%;
}
.reason_content {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  width: 90%;
  margin: 5% auto;
  height: 450px;
  gap: 5%;
}
.reason_box {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: -35px 5px;
  width: 350px;
  box-shadow: 0px 2px 8px 0px rgba(16, 99, 197, 0.7);
  border-radius: 10px;
  padding: 3% 1%;
  position: relative;
  overflow: hidden;
}
.reason_box:nth-child(1) {
  background-image: url(../images/top/01.png);
  background-size: 43% auto;
}
.reason_box:nth-child(2) {
  background-image: url(../images/top/02.png);
}
.reason_box:nth-child(3) {
  background-image: url(../images/top/03.png);
}
.reason_box h3 {
  color: #4d4d4d;
  text-align: left;
  font-size: calc(0.5rem + 0.8vw);
  line-height: 1.6rem;
  width: 90%;
  margin: auto;
}
.reason_box img {
  width: 90%;
}
.reason_box p {
  text-align: left;
  line-height: 1.4rem;
  width: 95%;
  margin: auto;
  font-size: calc(0.6rem + 0.3vw);
}
@media (max-width: 980px) {
  .reason2 {
    padding: 5% 0 25%;
  }
  .reason_inner {
    background-size: 100% 70%;
  }
  .reason_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 95%;
    margin: 5% auto;
  }
  .reason_box {
    width: calc(45% - 20px);
    box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  .reason2 {
    padding: 5% 0;
  }
  .reason_inner {
    height: auto;
    background-size: 100% 50%;
  }
  .reason_content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 5%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 5% auto;
    width: 90%;
    height: auto;
  }
  .reason_box {
    width: 90%;
    max-width: 400px;
    background-size: 30% auto;
  }
  .reason_box:nth-child(1) {
    background-size: 26% auto;
  }
  .reason_box h3 {
    font-size: 18px;
  }
  .reason_box img {
    width: 60%;
  }
  .reason_box p {
    font-size: 14px;
  }
}

/* ------------------------------------------------------------
  課題解決例
------------------------------------------------------------ */
.solution {
  padding: 8% 0 5%;
  position:relative;
  background-image: url(../images/top/solution_back.png);
  background-position: left top;
	background-repeat: no-repeat;
	background-size: 80% auto;
  margin-top: -2%; 
}

.solution_txt {
  text-align: left;
  margin-left: 49%;
  font-size: calc(0.5rem + 0.8vw);
  line-height: 1.6rem;
  margin-top: 1%;
}
.solution_content {
  display: flex;
  gap: 5%;
  width: 95%;
  max-width: 800px;
  margin: 5% auto 0;
}
.solution_box img {
  width: 100%;
  min-width: 390px;
}
.solution_box p {
  font-size: calc(0.5rem + 0.5vw);
  line-height: 1.4rem;
  margin-top: 2%;
}
@media (max-width: 980px) {
  .solution_box img {
    min-width: 200px;
  }
}
@media (max-width: 480px) {
  .solution_txt {
    margin-left: 0%;
    width: 90%;
    margin: auto;
    font-size: 16px;
    margin-top: 5%;
  }
  .solution_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 90%;
    max-width: 350px;
  }
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
ul {
  padding: 0;
  list-style: none;
}
a {
  color: #4b5564;
  text-decoration: none;
}
a:hover {
  color: #000;
}
hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer02 {
  padding: 2rem;
  font-size: 15px;
  color: #fff;
  position:relative;
  background-image: url(../images/top/footer_back.png);
  background-position: left top;
	background-repeat: repeat;
	background-size: 100% auto;
  margin-top: 5%;
}
.footer__navi-heading {
  font-weight: 600;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 2rem;
  width: 20%;
}
.footer__logo img {
  width: 100%;
}
.footer__navi {
  text-align: left;
}
.footer__navi li {
  margin-bottom: 1rem;
}
.footer__navi li a {
  color: #fff;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .md-flex {
    display: flex;
    max-width: 1200px;
    margin: auto;
  }
  .md-justify-between {
    justify-content: space-between;
  }
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .footer__logo {
    width: 30%;
  }
}

/* ------------------------------------------------------------
  フェードイン
------------------------------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

