@charset "utf-8";

/* 全体設定 */
html {
  font-size: 16px;
}

:root {
  --rem: calc(1/16*1rem);
  --main-green: #CCEB66;
  --dx-green: #8CC81E;
}

body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans JP", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
  position: relative;
  color: #333;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
  visibility: visible;
}

a:hover {
  opacity: 0.7;
  color: #000;
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0;
}

.container {
  max-width: 1224px;
}

/* //全体設定 */

/* mainタグ上の余白 */
main {
  margin-top: 48px;
}

.organization main {
  margin-top: 85px;
}

@media all and (min-width: 992px) {
  main {
    margin-top: 111px;
  }

  .organization main {
    margin-top: 140px;
  }
}

/* //mainタグ上の余白 */

/* フォントファミリー */
.mincho {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "Noto Serif JP", serif;
}

.gothic {
  font-family: YuGothic, 'Yu Gothic', 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic Pro', Meiryo, Osaka, MS PGothic, -apple-system, BlinkMacSystemFont, sans-serif;
}

.meiryo {
  font-family: -apple-system, blinkMacSystemFont,
    /* Macの欧文はSan Francisco (OS X 10.11以降) */
    'Helvetica Neue',
    /* Macの欧文 (OS X 10.10以前) */
    'Hiragino Kaku Gothic ProN',
    /* Macのヒラギノ */
    Meiryo,
    /* Windowsのメイリオ */
    sans-serif;
}

/* .a1gothic {
  font-family: "Gothic A1", "Noto Sans JP", sans-serif;
} */

/* //フォントファミリー */

/* フォントウェイト */
.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* //フォントウェイト */
/* letter-spacing */
.ls004 {
  letter-spacing: 0.04em;
}

/* //letter-spacing */
/* フォントサイズ */
.fs-14 {
  font-size: calc(14 * var(--rem));
}

/* //フォントサイズ */
/* フォントスタイル */
.italic {
  font-style: italic;
}

/* //フォントスタイル */

/* 文字色 */
.text-gray, a.text-gray:hover {
  color: #333333;
}

/* //文字色 */
/* 背景色 */
.bg-lightgray {
  background-color: #F7F7F7;
}

/* //背景色 */
:root {
  scroll-behavior: auto;
  /* ハンバーガーを閉じた後のスクロール対策 */
}

/* ヘッダー */
nav h1, .navbar-brand {
  font-size: 0;
  margin-bottom: 0;
}

header {
  z-index: 500;
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, .8);
  width: 100%;
}

.pc-top-band-wrap {
  display: none;
}

.logo-wrap {
  padding: 7px 15px;
}

.logo-wrap img {
  width: 120px;

}

.navbar-nav {
  display: block;
  padding: 70px 0 0;
}

.navbar-nav>li.menu-item>a {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  border-top: 1px solid #e6e6e6;
  padding: 20px 5px;
  display: block;
  margin: 0;
}

.navbar-nav>li.menu-item:last-child>a {
  border-bottom: 1px solid #e6e6e6;
}

.burger-btn {
  width: 38px;
  height: 38px;
  position: fixed;
  top: 2px;
  right: 10px;
  background-color: transparent;
  border: none;
}

.burger-btn_close {
  z-index: 995;
  opacity: 1;
}

.burger-btn_open {
  z-index: 1;
  opacity: 0;
}

.nav-open .burger-btn_open {
  z-index: 995;
  opacity: 1;
}

.nav-open .burger-btn_close {
  z-index: 1;
  opacity: 0;
}

.burger-btn:hover {
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  transition: .2s;
  visibility: visible;
}

.bar_top {
  top: 10px;
}

.bar_mid {
  top: 50%;
  margin-top: -1px;
  /*transform: translate(-50%,-50%);*/
}

.bar_bottom {
  bottom: 10px;
}

.nav-open .burger-btn .bar_top {
  transform: translate(-50%, 8px) rotate(45deg);
}

.nav-open .burger-btn .bar_mid {
  opacity: 0;
  transition: opacity .3s;
}

.nav-open .burger-btn .bar_bottom {
  transform: translate(-50%, -8px) rotate(-45deg);
}

#nav-tgl:checked+.burger-btn .bar_top {
  transform: translate(-50%, 8px) rotate(45deg);
}

#nav-tgl:checked+.burger-btn .bar_mid {
  opacity: 0;
  transition: opacity .3s;
}

#nav-tgl:checked+.burger-btn .bar_bottom {
  transform: translate(-50%, -8px) rotate(-45deg);
  transition: transform .3s;
}

.nav-wrapper {
  opacity: 0;
  display: none;
  transition: opacity .3s;
  width: 60%;
  min-width: 300px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  visibility: visible;
}

#nav-tgl {
  display: none;
}

#nav-tgl:checked~.nav-wrapper {
  opacity: 1;
  display: block;
}

.noscroll {
  overflow-y: hidden;
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.header-nav {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 0 30px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-logo-img {
  padding-right: 30px;
  position: relative;
  display: inline-block;
}

.nav-logo-img::after {
  content: "";
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  right: 0;
  background-image: url(../images/link-icom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  aspect-ratio: 1;

}

.nav-logo-link {
  text-align: center;
}

#nav-tgl:checked~.nav-wrapper .header-nav {
  overflow-y: auto;
}

.header-nav.navbar-nav {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.header-nav.menu-item {
  margin-right: 0;
  margin-bottom: 40px;
}

.menu-black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
}

#nav-tgl:checked~.menu-black-bg {
  opacity: 0.3;
  visibility: visible;
}

.navbar-nav>li>.sub-menu {
  display: none;
  margin-bottom: 0;
}

header .sub-menu>li {
  padding-left: 20px;
}

header .sub-menu>li>a {
  display: block;
  padding: 6px 0 6px 30px;
  border-top: 1px solid #e6e6e6;
  position: relative;
  color: #333;
}

header .sub-menu>li>a::before {
  content: '';
  position: absolute;
  top: 49%;
  left: 6px;
  width: 15px;
  height: 1px;
  background-color: #333;
}

.header-nav ul li {
  position: relative;
}

header .accordionBtn {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 33px;
  height: 39px;
  cursor: pointer;
}

header .accordionBtn::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 12px;
  width: 13px;
  height: 1px;
  background-color: #666;
}

header .accordionBtn::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 18px;
  width: 1px;
  height: 13px;
  background-color: #666;
  opacity: 1;
}

header .accordionBtn.chlidnav-opened::after {
  opacity: 0;
}

.pc-search {
  display: none;
}

.sp-nav-sub {
  padding-top: 20px;
}

.sp-nav-sub a {
  padding: 2px 5px 2px 20px;
  position: relative;
  display: block;
  color: #333;
}

.sp-nav-sub a:hover {
  color: #333;
}

.sp-nav-sub a::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 3px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

@media all and (min-width: 992px) {
  .logo-wrap {
    padding: 27px 38px;
  }

  .header-nav {
    display: flex;
    padding: 0 15px 0 30px;
  }

  .scroll-prevent {
    position: initial;
    z-index: 1;
    width: auto;
    height: auto;
  }

  body {
    padding-right: 0 !important;
  }

  #nav-tgl:checked~.nav-wrapper .header-nav {
    overflow-y: inherit;
  }

  .navbar-nav>li.menu-item {
    padding: 0 12px;
  }

  .navbar-nav>li.menu-item>a {
    border: none;
    padding: 8px 0;
  }

  .navbar-nav>li.menu-item:last-child a {
    border-bottom: none;
  }

  /*
  .navbar-nav li.menu-item.current-menu-item > a,
  .single-post .navbar-nav li.nav-news a, .category .navbar-nav li.nav-news a,
  .single-event .navbar-nav li.nav-event a, .tax-event_taxonomy .navbar-nav li.nav-event a {
    background-color: transparent;
  }*/
  .navbar-nav li.menu-item.current-menu-item>a::before,
  .single-post .navbar-nav li.nav-news a::before, .category .navbar-nav li.nav-news a::before,
  .single-event .navbar-nav li.nav-event a::before, .tax-event_taxonomy .navbar-nav li.nav-event a::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    height: 1px;
    background: #333;
  }

  .nav-wrapper {
    transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -webkit-transform: translate3d(0, 0, 0);
    position: relative;
    display: block;
    opacity: 1;
  }

  .burger-btn {
    display: none;
    position: relative;
  }

  #nav-tgl:checked~.menu-black-bg {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .navbar-nav {
    display: flex;
    padding: 0;
  }

  .logo-wrap img {
    width: 200px;
  }

  .sp-search {
    display: none;
  }

  .search-btn-wrap {
    text-align: center;
    display: block;
    position: relative;
    width: 36px;
  }

  .search-btn-wrap.pc-search {
    margin-left: 15px;
  }

  .search-btn-inner {
    padding: 0px 0 2px 15px;
    border-left: 1px solid #888;
    width: 36px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 0;
  }

  .search-btn-wrap .icon-search {
    width: 18px;
    cursor: pointer;
    display: inline-block;
  }

  .search-btn-inner form {
    position: relative;
  }

  .search-btn-inner input {
    width: 0;
    border: none;
    pointer-events: none;
    transition: .3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 25px;
    height: 37px;
    background: transparent;
    opacity: 0;
  }

  .search-btn-inner button {
    pointer-events: none;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .search-btn-inner button:hover {
    opacity: .7;
    transition: .3s;
  }

  .search-btn-inner.searchactive input {
    width: 240px;
    pointer-events: auto;
    padding: 2px 7px;
    border-radius: 3px;
    opacity: 1;
    background-color: #fff;
    border: 1px solid #666;
    border-radius: 40px;
  }

  .search-btn-inner.searchactive button {
    pointer-events: auto;
  }

  .pc-top-band-wrap {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 5px 15px;
    background-color: #F7F7F7;
  }

  .pc-top-band-wrap a, .pc-top-band-wrap a:hover {
    color: #333;
  }

  .header-top-menu {
    display: flex;
    background-color: #F7F7F7;
    margin-bottom: 0;
  }

  .header-top-menu li:not(:last-child) {
    padding-right: 10px;
  }

  .header-nav {
    background-color: transparent;
  }

  header .accordionBtn {
    display: none;
  }

  .navbar-nav>li>.sub-menu {
    display: block !important;
  }

  .navbar-nav>li>.sub-menu {
    opacity: 0;
    pointer-events: none;
    transition: .2s;
    position: absolute;
    top: 100%;
    left: 0;
    overflow: hidden;
    width: max-content;
    visibility: hidden;
    transform: translateY(10px);
  }

  header .menu-item-has-children:hover>.sub-menu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  header .menu-item-has-children>.sub-menu>li {
    padding-left: 0;
  }

  header .menu-item-has-children:hover>.sub-menu>li {}

  header .menu-item-has-children>.sub-menu>li>a {
    font-size: 14px;
    padding: 4px 15px;
    width: 100%;
    min-width: 100%;
    border: none;
    background-color: #fff;
    height: 100%;
    transition: .2s;
  }

  header .menu-item-has-children>.sub-menu>li>a:hover {
    opacity: .8;
  }

  header .menu-item-has-children>.sub-menu>li>a::before {
    display: none;
  }

  .noscroll {
    overflow-y: auto;
  }

  .menu-black-bg.blackBg_active {
    visibility: hidden;
  }

  .menu-black-bg {
    display: none;
    position: relative;
  }

  .navbar-nav>li>.sub-menu>li .sub-menu li a {
    padding: 3px 15px 3px 35px;
  }
}

/* //ヘッダー */
/* フッター */
footer {
  padding-inline: 3%;
}

.footer-content {
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 50px;
  padding-top: 31px;
  border-top: 1px solid #000;
}

.footer-nav li {
  margin: 5px 0;
  font-size: calc(14 * var(--rem));
}

.footer-leftbox img {
  margin-bottom: 20px;
}

.footer-leftbox .address {
  font-size: calc(12 * var(--rem));
  margin-bottom: 20px;
}

.footer-rightbox {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;

}

.footer-rightbox-img {
  padding-right: 30px;
  position: relative;
}

.footer-rightbox-img::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-image: url(../images/link-icom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  aspect-ratio: 1;

}

@media all and (min-width: 576px) {
  .footer-leftbox .address {
    margin-bottom: 0px;
  }
}

@media all and (min-width: 768px) {
  .footer-nav ul {
    display: flex;
    justify-content: end;
  }

  .footer-nav li {
    border-left: 1px solid #000;
    padding-inline: 20px;
  }

  .footer-nav li:first-child {
    border-left: none;
  }

}

@media all and (min-width: 992px) {
  .footer-content {
    margin-bottom: 83px;
  }

  .footer-leftbox {
    display: flex;
    gap: 37px;
  }

  .address {
    display: flex;
    align-items: flex-end
  }

  .footer-leftbox img {
    margin-bottom: 0;
  }
}

/* //フッター */

/* ページトップボタン */
.pagetop-wrap {
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
  visibility: visible;
}

.pagetop-wrap.pagetop-fadein {
  opacity: 1;
  pointer-events: auto;
}

.pagetop-inner {
  position: fixed;
  right: 10px;
  bottom: 10px;
  height: 45px;
  width: 45px;
  z-index: 300;
  background: #444;
  color: #fff;
  padding-top: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  visibility: visible;
  transition: .3s;
}

.pagetop-inner::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  position: absolute;
  top: 9px;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pagetop-inner:hover {
  box-shadow: 0 0 10px rgb(0, 0, 0, .4);
}

/* //ページトップボタン */

/* フッターの下に余白ができないように */
body {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.header-and-main {
  width: 100%;
}

footer {
  width: 100%;
}

/* //フッターの下に余白ができないように */

/* トップページの設定 */
.toppage h3 {
  font-size: calc(24 * var(--rem));
  position: relative;
  padding-left: 10px;
  margin-bottom: 70px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.toppage h3::before {
  content: "";
  background-color: var(--main-green);
  position: absolute;
  bottom: -25px;
  left: 0;
  background-color: var(--main-green);
  height: 40px;
  width: 550px;
  max-width: 100%;
  z-index: -1;
}

.t-sec-container {
  max-width: 1024px;
}

@media all and (min-width: 992px) {
  .toppage h3 {
    margin-bottom: 100px;
    padding-left: 27px;
  }
}

/* //トップページの設定 */

/* fv */
.fv-container {
  position: relative;
  margin-bottom: 100px;
}

.stripe {
  position: relative;

}

.stripe:before {
  content: '';
  position: absolute;
  left: 0;

  top: 80%;
  transform: translateY(-50%);
  width: 100%;

  height: 80%;
  background-image: url(../images/greenline-bg.png);
  background-repeat: repeat;
  background-size: contain;
  font-size: calc(16* var(--rem));
  z-index: -1;
}

.fv-copy {
  margin: 100px 0 50px;

  font-size: 42px;
  font-weight: bold;
  line-height: 1.8;
}

.fv-sub-copy {
  font-weight: 500;
  line-height: 1.5;
}




@media all and (min-width: 576px) {
  .fv-copy {
    margin-left: 30px;
    font-size: 50px;

  }

  .fv-txt-flex {
    display: flex;
    justify-content: flex-end;
  }

  .fv-sub-copy {
    margin-right: 30px;
    line-height: 2;
  }
}

@media all and (min-width: 768px) {}

@media all and (min-width: 992px) {
  .fv-copy {
    margin: 100px 0 0;
    margin-left: 60px;
    font-size: 60px;

  }


  .fv-sub-copy {
    margin-right: 60px;
  }

  .fv-txt-flex {
    margin-top: -23px;
  }

  .fv-container {
    margin-bottom: 241px;
  }
}

@media all and (min-width: 1200px) {
  .fv-copy {
    margin: 107px 0 0 102px;
    font-size: 70px;

  }

  .fv-sub-copy {
    margin-right: 136px;
  }


}

/* //fv */

/* トップページのスキルアップ研修セクション */
.t-skillup {
  margin-bottom: 70px;
}

.t-skillup-wrap {
  background-image: url(../images/greenline-bg.png);
  background-repeat: repeat;
  background-size: cover;
  padding: 30px;
  display: block;
}

.t-skillup-dx {
  font-size: calc(30 * var(--rem));
  padding-left: 40px;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 0;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.t-skillup-dx::before {
  content: "";
  background-image: url(../images/arrow-pattern1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 30px;
  aspect-ratio: 1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);


}

.t-skillup-txt {
  margin-bottom: 0;
  font-size: calc(14 * var(--rem));
  line-height: 1.8;
  letter-spacing: 0.06em;
}

@media all and (min-width: 576px) {
  .t-skillup-wrap {
    display: flex;
    margin-inline: 15px;
    gap: 30px;

  }

  .t-skillup-dx {
    display: grid;
    place-items: center;
    margin-bottom: 0;
  }


}

@media all and (min-width: 768px) {
  .t-skillup-dx::before {
    width: 40px;
  }

  .t-skillup-dx {
    padding-left: 60px;
  }
}

@media all and (min-width: 992px) {
  .t-skillup-wrap {
    gap: 75px;
    padding: 71px 71px 71px 64px;
  }

  .t-skillup {
    margin-bottom: 170px;
  }
}

/* //トップページのスキルアップ研修セクション */
/* トップページの組織の体質~セクション */
.t-organization {
  margin-bottom: 150px;
}

.underline-pattern1 {
  text-decoration-color: #FFFF00;
  text-decoration-line: underline;
  text-decoration-thickness: 20px;
  text-underline-offset: -5px;
  text-decoration-skip-ink: none;

}

.t-organization-card {
  background-image: url(../images/greenline-bg.png);
  background-repeat: repeat;
  background-size: cover;
  padding: 66px 30px 30px;
  height: 280px;
  display: block;
}

.t-organization-card-ttl {
  font-size: calc(24 * var(--rem));
  margin-bottom: 54px;
  line-height: 1.625;
  font-weight: 600;
}

.t-organization-card-txt {
  padding-left: 36px;
  position: relative;
  display: inline-block;
  text-wrap: nowrap;
  white-space: nowrap;
  font-size: calc(18 * var(--rem));
  font-weight: 600;
}

.t-organization-card-txt.ls-small {
  letter-spacing: -0.1em;
}

.t-organization-card-txt::before {
  content: "";
  background-image: url(../images/arrow-pattern1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 30px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.t-organization-row {
  gap: 35px;
}

@media all and (min-width: 992px) {
  .t-organization {
    margin-bottom: 260px;
  }

  .t-organization-row {
    gap: 0;
  }

  .t-organization-col {
    padding-inline: 17.5px;
  }
}

/* //トップページの組織の体質~セクション */

/* DXページ */
.sabpage-ttl {
  font-size: calc(30 * var(--rem));
  font-weight: 600;
}

.dx-fv-img {
  width: 100%;
  max-width: 2000px;
  margin-inline: auto;
  margin-top: 32px;
}

.subpage-fv {
  margin: 27px 0 100px;
}



.underline-pattern2 {
  text-decoration-color: var(--dx-green);
  text-decoration-line: underline;
  text-decoration-thickness: 7px;
  text-underline-offset: 7px;
  text-decoration-skip-ink: none;
}

.dx-circle {
  background-color: var(--dx-green);
  width: 80px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 45px;
}



.why {
  margin-bottom: 100px;
}

.why-leftbox {
  margin-bottom: 50px;
}

.why-leftbox-p {
  font-size: calc(30 * var(--rem));
  padding: 33px 0 63px 33px;
  border-top: 1px solid black;
  border-left: 1px solid black;
  line-height: 1.9;
  font-weight: 600;
}

.effect {
  margin-bottom: 100px;
}

.effect-txt1 {
  max-width: 662px;
  margin-inline: auto;
  margin-bottom: 25px;
  line-height: 1.8;
}

.why-rightbox {}

.why-rightbox-p {
  letter-spacing: 0.05em;
  line-height: 1.85;
}

.effect-list-sec {

  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  padding: 97px 0 70px;
}

.effect-list-sec.lazyloaded {
  background-image: url(../images/dx-effect-list-bg.jpg);
}

.effect-list-container {
  max-width: 741px;
  margin-inline: auto;
}

.effect-ul {
  margin-bottom: 0;

}

.effect-ul li {
  margin: 20px 0;
  position: relative;
  padding-left: 30px;
  font-weight: 600;
}

.effect-ul li::before {
  content: "";
  display: block;
  width: 17px;
  height: 18.2px;
  position: absolute;
  background-image: url(../images/effect-list-check.svg);
  left: 0px;
  top: 3px;
}

.effect-ul li:first-child {
  margin: 0 0 20px 0;
  letter-spacing: 0.08em;
}

.effect-ul li:last-child {
  margin: 20px 0 0 0;
}

.effect-cta-sec {
  margin-top: 70px;

}

.effect-txt2 {
  font-size: calc(24 * var(--rem));
  margin-bottom: 30px;
  letter-spacing: 0.04em;
}

.btn-pattern1 {
  display: block;
  background-color: var(--dx-green);
  box-shadow: 1px 4px 0px rgba(40, 70, 0, 1);
  border-radius: 50px;
  padding: 23px 0;
  width: 100%;
  max-width: 476px;
  margin-inline: auto;
  position: relative;
  color: white;
  font-size: calc(18 * var(--rem));
  font-weight: 600;
}

.btn-pattern1::before {
  content: "";
  display: block;
  width: 23px;
  height: 20px;
  position: absolute;

  background-image: url(../images/btn-pattern1-arrow.svg);
  background-repeat: no-repeat;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-pattern1:hover {
  color: #fff;
}

@media all and (min-width: 576px) {
  .effect-txt2 {
    text-align: center;
    margin-bottom: 63px;
  }
}

@media all and (min-width: 768px) {
  .why-wrap {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 5.7%;
  }

  .why-leftbox-p {
    padding: 50px 0 0px 59px;
    height: 100%;
  }

  .why-rightbox-p {
    padding-top: 67px;
  }

  .effect-ul li {
    padding-left: 35px;
  }
}

@media all and (min-width: 992px) {
  .why {
    margin-bottom: 159px;
  }

  .effect {
    margin-bottom: 220px;
  }

  .subpage-fv {

    margin: 27px 0 147px;
  }

}

@media all and (min-width: 1200px) {
  .why-wrap {

    gap: 7.7%;
  }
}

@media all and (max-width: 400px) {
  .btn-pattern1 {
    padding: 25px 0 25px 20px;
  }

  .btn-pattern1::before {
    left: 20px;
  }
}

@media all and (max-width: 375px) {
  .btn-pattern1 {
    padding: 25px 0 25px 0;
  }

  .btn-pattern1::before {
    display: none;
  }
}

/* 研修カリキュラム */
.training {
  background-color: #F2f2f2;
  padding: 70px 0;
}

.training-container {
  max-width: 824px;
}

.training-sec {
  margin-top: 50px;
}



.dx-list-pattern1 {
  margin: 71px 0 107px 0;
}

.dx-list-pattern1>li {
  position: relative;
  padding-left: 44px;
  margin: 18px 0;
  font-size: calc(18 * var(--rem));
  font-weight: 600;
}

.dx-list-pattern1>li::before {
  content: "";
  display: block;
  width: 21px;
  height: 17px;
  position: absolute;
  background-image: url(../images/dx-list-pattern1-arrow.svg);
  background-repeat: no-repeat;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.dx-list-pattern1 .sublist {
  font-size: calc(14 * var(--rem));
  padding-left: 41px;
  margin-top: 30px;
}

.dx-list-pattern1 .sublist>li {
  margin: 10px 0;
  position: relative;
}

.enshu.sublist>li {
  padding-left: 55px;
}

.hyphen.sublist>li {
  padding-left: 8px;
}

.enshu.sublist>li::before {
  content: "［演習］";
  display: block;

  position: absolute;
  left: 0px;
  top: 0;
}

.hyphen.sublist>li::before {
  content: "-";
  display: block;

  position: absolute;
  left: 0px;
  top: 0;
}



@media all and (min-width: 992px) {
  .training {
    padding: 120px 0;
  }

  .training-sec {
    margin-top: 135px;
  }

  .dx-list-pattern1>li {
    margin: 23px 0;

  }

  .dx-list-pattern1 .sublist>li {
    margin: 14px 0;
  }
}

/* //研修カリキュラム */

/* 受講について */
.attendance {
  margin: 100px 0;
}

.attendance-dl-wrap {
  margin-bottom: 70px;
  max-width: 1000px;
  margin-inline: auto;
}

.attendance-dl-pattern1 {
  display: flex;
  border-collapse: collapse;
  margin-bottom: 0;
}

.attendance-dl-pattern1 dt,
.attendance-dl-pattern1 dd {
  font-size: calc(18 * var(--rem));
  border: 2px solid #000;
  margin-bottom: 20px;
  padding: 20px 20px;
  border-collapse: collapse;
  display: flex;
  flex-direction: column;


}

.attendance-dl-pattern1 dd {
  width: 100%;
  border-left: none;
}

.attendance-dl-pattern1 dt {
  background-color: #FFFFCC;
  flex-shrink: 0;
  font-weight: 600;
}

.attendance-dd-txt1 {
  font-size: calc(21 * var(--rem));
  margin-bottom: 0;
  font-weight: 600;
}

.attendance-dd-txt2 {
  font-size: calc(14 * var(--rem));
  margin-bottom: 0;
}

@media all and (min-width: 768px) {
  .attendance-dl-pattern1 dd {
    display: flex;
    gap: 40px;
  }



  .attendance-dl-wrap {
    display: grid;
    grid-template-columns: calc(50% - 24px) calc(50% - 24px);
    grid-template-rows: repeat(2, 100px);
    gap: 48px 38px;

  }

  .attendance-dl-pattern1:first-of-type {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .attendance-dl-pattern1 dt,
  .attendance-dl-pattern1 dd {
    /* padding: 40px 20px 40px 20px; */
    margin-bottom: 0;
    flex-direction: row;
    align-items: center;
  }
}

@media all and (min-width: 992px) {
  .attendance {
    margin: 128px 0 157px;
  }

  .attendance-dl-wrap {
    margin-bottom: 100px;
    margin-top: 66px;
  }


}

@media all and (min-width: 1200px) {

  .attendance-dl-pattern1 dt,
  .attendance-dl-pattern1 dd {
    padding: 40px 35px 40px 40px;

  }
}

/* //受講について */

/* 受講者の声 */
.voice {
  padding: 100px 0;
  background-color: #F2F2F2;
}

.voice-container {
  max-width: 1074px;
}

.fukidashi {
  display: inline-block;
  position: relative;
  padding: 40px 20px 30px;
  border-radius: 30px;
  background-color: #fff;
  filter: drop-shadow(3px 6px 12px rgba(0, 0, 0, 0.3));

}

.fukidashi::before {
  content: "";
  position: absolute;
  margin: 0;
  top: -25px;
  right: 140px;
  width: 0;
  height: 0;
  border-top: 40px solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  transform: rotate(225deg);
}

.voice-row {
  display: grid;
  gap: 80px;
  margin-top: 113px;
}

.voice-card {}

.voice-card-icon {
  position: absolute;
  width: 80px;
  aspect-ratio: 1;
  border-radius: 50%;
  top: -52px;
  display: grid;
  place-items: center;
  right: 40px;
}

.voice-card-icon.icon1 {
  background-color: #00A99D;
}

.voice-card-icon.icon2 {
  background-color: #FBB03B;
}

.voice-card-icon.icon3 {
  background-color: #C69C6D;
}

.voice-card-icon.icon4 {
  background-color: #29ABE2;
}

.voice-card-txt {
  font-size: calc(14 * var(--rem));
  line-height: 1.9;
  margin-bottom: 0;
}

@media all and (min-width: 768px) {
  .fukidashi {
    padding: 67px 40px;
  }
}

@media all and (min-width: 992px) {
  .voice {
    padding: 100px 0 154px;

  }

  .voice-row {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 27.5px));
    grid-template-rows: 1fr 1fr;
    gap: 10px 45px;
  }

  .voice-card {
    margin-bottom: 0;
  }

  .voice-card:nth-child(3) {
    display: flex;
    align-items: end;
  }

  /* .voice-card:nth-child(even) {
    margin-bottom: 0;
  } */
}

/* //受講者の声 */

/* お問い合わせ */
.contact {
  padding: 70px 0;
}

.formWrap {
  max-width: 1000px;
  margin: 65px auto 0;
  font-size: 90%;
  padding: 50px 10px;
}



.form-items input[type="text"], .form-items select, .form-items textarea {
  max-width: 100%;
  padding: 3px 8px;
}

.form-items input[type="text"], .form-items select {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgb(118, 118, 118);
  border-radius: 0px;

}

.form-items select {
  width: 152px;
}

.form-items input[type="checkbox"] {
  margin: 7px 14px 15px 0;
  font-size: calc(14 * var(--rem));
}

.form-items dt {
  font-size: calc(17 * var(--rem));
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.form-items .fs-14 {
  font-size: calc(14 * var(--rem));
}

.contact-bg {
  background-color: #F2F2F2;
}

.label-contact {
  font-size: 14px;
  display: inline-block;
  padding: 1px 7px 1px;
  border-radius: 6px;
  border: 1px solid #FF5033;
  margin-left: 20px;
}

.al-center {
  align-items: baseline;
}

.form-items {
  /* display: flex;
  flex-wrap: wrap; */
  margin-bottom: 0;
  padding: 8px 0;
}

.input-w100 {
  width: 100%;
}

.label-essential {
  background-color: #FF5033;

  color: #fff;
}

.label-optional {
  background-color: #999999;
  border: 1px solid #999999;
  color: #fff;
}

.coution {
  font-size: calc(16 * var(--rem));
  display: inline-block;
  margin-left: 15px;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

table.formTable td, table.formTable th {
  border: 1px solid #ccc;
  padding: 10px;
}

table.formTable th {
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left;
}

.privacy-link {
  text-decoration: underline;
}

.privacy-link:hover {
  text-decoration: underline;
}

.submit-button {
  border: 0.5px solid #000;
  border-radius: 30px;
  padding: 14px 0;
  text-align: center;
  width: 250px;
  font-size: calc(18 * var(--rem));
  font-weight: 600;
}

.contact-privacy {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.select-arrow {
  display: inline;
  position: relative;
}

.select-arrow::before {
  content: "";
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  right: 8px;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 20px;
  display: block;

}

@media all and (min-width: 576px) {
  .formWrap {
    padding: 50px 30px;
  }

  .submit-button {

    width: 300px;
  }
}


@media all and (min-width: 768px) {}

@media all and (min-width: 992px) {
  .contact {
    padding: 120px 0 195px;
  }

  .formWrap {
    padding: 50px 100px;
  }

  .input-lg-h50 {
    height: 50px;
  }

  .input-lg-h40 {
    height: 40px;
  }

  .contact-privacy {
    margin-bottom: 50px;
  }
}

/* //お問い合わせ */
/* //DXページ */

/* 組織開発ページ */
.organization-container {
  max-width: 1024px;
}

.consul {
  margin-top: 76px;
}

.consul-imgbox {
  margin: 51px 0 57px 0;
}

.consul-area {
  margin-bottom: 100px;
}

.consul-txt {
  max-width: 700px;
  margin-inline: auto;
  margin-top: 45px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media all and (min-width: 992px) {
  .consul-area {
    margin-bottom: 170px;
  }
}

/* 講師紹介 */
.instructor {
  margin-bottom: 100px;
}

.instructor-imgarea {
  position: relative;
}



.instructor-name {
  font-size: calc(36 * var(--rem));
  margin-bottom: 0;
  margin-top: 20px;

}

.instructor-name-en {
  font-size: calc(14 * var(--rem));
  margin-bottom: 20px;
}

.instructor-position {
  margin-bottom: 20px;

}

.instructor-logo {
  border-top: 1px solid #000;
  display: inline-block;
}

.instructor-logo-img {
  position: relative;
  display: inline-block;
  padding: 15px 25px 15px 0;
}

.instructor-logo-img::after {
  content: "";
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
  right: 0;
  background-image: url(../images/link-icom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  aspect-ratio: 0.85;
}

.profile-ul-top {
  padding: 32px 0 36px;
  border-bottom: 1px solid #999;
  margin-bottom: 0;
}

.profile-ul {
  margin-bottom: 0;
}

.profile-dl {
  padding: 30px 0 22px 0;
  border-bottom: 1px solid #999;
  margin-bottom: 0;
}

.profile-dl>dt {
  font-size: calc(18 * var(--rem));
  font-weight: 600;
  margin-bottom: 20px;
}

.profile-dl>dd {
  margin-bottom: 0;
}

.profile-ul-top li,
.profile-ul li {
  margin-bottom: 6px;
}

.profile-ul-top li:last-child,
.profile-ul li:last-child {
  margin-bottom: 0px;
}

.profile-box {
  max-width: 800px;
  margin-inline: auto 0;
}

.chronology-dl {
  display: flex;
  gap: 10px;
}

.chronology-dl>dt {
  font-weight: 400;
  flex-shrink: 0;
  width: 77px;
}

@media all and (min-width: 768px) {
  .instructor-txtbox {
    position: absolute;
    bottom: 30px;
    left: 7%;
  }

  .instructor-imgarea {
    margin-bottom: 78px;
  }

  .profile-wrap {}

  .profile-dl {
    display: flex;
    gap: 53px;
  }
}

@media all and (min-width: 992px) {
  .instructor {
    margin-bottom: 125px;
  }

  .instructor-txtbox {
    position: absolute;
    bottom: 60px;
    left: 11%;
  }

}

/* //講師紹介 */

/* 実績 */
.achievement {
  margin-bottom: 150px;
}

.achievement-box {
  border-left: 1px solid #000;
  padding: 5px 0 5px 20px;
  margin-bottom: 50px;
}

.achievement-ttl {
  font-size: calc(18 * var(--rem));
  border-bottom: 15px solid var(--main-green);
  padding-bottom: 10px;
  font-weight: 600;
  margin-bottom: 33px;
}


.achievement-ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 9px;
  font-size: calc(14 * var(--rem));
}

.achievement-ul li::before {
  content: "";
  width: 14px;
  aspect-ratio: 1;
  background-color: #000;
  border-radius: 50%;
  display: block;
  position: absolute;
  background-repeat: no-repeat;

  left: 0px;
  top: 4px;
  font-size: calc(17 * var(--rem));
}

.achievement-ul.d-lg-flex {
  flex-wrap: wrap;
}

.achievement-ul li:last-child {
  margin-bottom: 0px;
}

@media all and (min-width: 992px) {
  .achievement {
    margin-bottom: 268px;
  }

  .achievement-box {
    margin-bottom: 70px;
    padding: 5px 0 5px 49px;
  }

  .achievement-ttl {}

  .achievement-ul.d-lg-flex {
    gap: 15px;
  }

  .achievement-ul.d-lg-flex li {
    margin-bottom: 0;
  }



}

/* //実績 */
/* ご契約 */
.contract {
  background-color: #f2f2f2;
  padding: 100px 0;
}

.contract-wrap {
  margin: 70px 0 100px;
}

.contract-box {
  max-width: 800px;
  margin-inline: auto;
}

.contract-dl {
  align-items: center;
  padding: 60px 0;
  border: 2px solid var(--dx-green);
  background-color: #fff;
  margin-bottom: 30px;
}

.contract-dl dt {
  padding: 0 10px 20px 20px;
  flex-shrink: 0;
  position: relative;
  font-size: calc(21 * var(--rem));
  margin-bottom: 20px;
}

.contract-dl dt::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 30%;
  background-color: #4e4e4e;
  left: 22px;
  bottom: 0;
}

.contract-dl dd {
  padding: 0 20px 0 20px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media all and (min-width: 768px) {
  .contract-dl {
    display: flex;
    padding: 0;
    height: 180px;
  }

  .contract-dl dt {
    width: 26%;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
  }

  .contract-dl dt::before {

    height: 80px;
    width: 1px;
    left: auto;
    bottom: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media all and (min-width: 992px) {
  .contract {
    padding: 112px 0 179px;
  }

  .contract-wrap {
    margin: 70px 0 138px;
  }

  .contract-box {}






  .contract-dl dd {
    padding: 0 52px 0 45px;
  }
}

/* //ご契約 */

/* お申込みの流れ */
.flow {}

.flow-wrap {
  margin-top: 84px;
}

.flow-box {
  border: 2px solid var(--dx-green);
  padding: 20px 0;
  background-color: #fff;
  text-align: center;
}

.flow-box p {
  margin-bottom: 0;
}

.flow-arrow {
  display: flex;
  justify-content: center;
  height: 80px;
}

.flow-arrow img {
  transform: rotate(90deg);

}

@media all and (min-width: 768px) {
  .flow-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .flow-box {
    display: grid;
    place-content: center;
    height: 350px;
  }

  .flow-box-txt {
    writing-mode: vertical-rl;
  }

  .flow-arrow {
    align-items: center;
    height: auto;
    width: 60px;
  }

  .flow-arrow img {
    transform: rotate(0deg);

  }
}

/* //お申込みの流れ */
/* 無料相談のお申込み */
.contact-consult {
  padding: 100px 0 100px;
  width: 100%;
}

@media all and (min-width: 768px) {}

@media all and (min-width: 992px) {
  .contact-consult {
    padding: 219px 0 169px;
  }
}

/* //無料相談のお申込み */

/* //組織開発ページ */

/* 会社概要ページ */
.outline-sec {
  margin-top: 25px;
  margin-bottom: 100px;
}


.outline-content {
  margin-top: 70px;
  max-width: 700px;
  margin-inline: auto;
}

.outline-dl {
  display: grid;
  grid-template-columns: 30% 70%;
}

.outline-dl dt,
.outline-dl dd {
  padding: 23px 0;
  border-top: 1px solid #B3B3B3;
  margin-bottom: 0;
}

.outline-dl dt {
  padding-left: 10px;
}

.outline-dl dt:last-of-type,
.outline-dl dd:last-of-type {
  border-bottom: 1px solid #B3B3B3;
}


.outline-ul {
  margin-bottom: 0;
}

.outline-ul li {
  margin-bottom: 7px;
  position: relative;
  padding-left: 20px;

}


.outline-ul li:last-child {
  margin-bottom: 0px;
}

.outline-ul li::before {
  content: "●";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  left: 0px;
  top: 0px;
}

.map-link {
  display: block;
  margin-top: 50px;
}

@media all and (min-width: 576px) {

  .outline-dl {

    grid-template-columns: 21% 79%;
  }
}

@media all and (min-width: 992px) {
  .outline-sec {
    margin-bottom: 200px;

  }

  .outline-content {
    margin-top: 133px;
  }

  .map-link {
    margin-top: 76px;
  }
}

/* //会社概要ページ */
/* サイトポリシー */
.sitepolicy-sec {
  margin: 50px 0 100px;
}

.sitepolicy-container {
  max-width: 824px;
  margin-inline: auto;
}

.c-title14 {
  margin-top: 70px;
}

.sp-sitepolicy__ttl {
  font-size: calc(15 * var(--rem));
}

.c-title14__text {


  line-height: 1;
  color: #231815;
  border-left: 2px solid #231815;
  padding-left: 15px;
  margin-left: 8px;
  font-weight: 600;
}

.c-title14 p {
  font-size: calc(14 * var(--rem));

  line-height: 1.5;
  font-weight: 400;
}



.sp-sitepolicy__text p {
  font-size: calc(12 * var(--rem));
  margin: 15px;
}

.sp-sitepolicy__text li {
  font-size: calc(11.5 * var(--rem));
  margin: 15px;

}


@media all and (min-width: 768px) {
  .c-title14__text {
    font-size: calc(18 * var(--rem));
  }

  .c-title14 p {
    font-size: calc(14 * var(--rem));
    margin: 26px auto;
  }

  .sitepolicy-sec {
    margin: 100px 0 100px;
  }

  .c-title14 li {
    font-size: calc(14 * var(--rem));
    margin: 0;
  }
}

/* //サイトポリシー */
/* お問い合わせ確認画面 */

.comfirm-container {
  margin: 70px auto;
}


/* お問い合わせ確認画面 */
/* サンクスページ */
.thanks .submit-button {
  font-weight: 400;
}

.thanks-sec {
  margin: 70px 0;
}

/* サンクスページ */
/* 見出し */
.subpage-ttl-pattern1 {
  font-size: calc(29 * var(--rem));
  margin-bottom: 38px;
  font-weight: 600;
}

.subpage-ttl-pattern2 {
  padding: 25px 0;
  background-color: var(--dx-green);
  box-shadow: 0px 3px 0px #000;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.subpage-ttl-pattern3 {
  background-image: url(../images/greenline-bg.png);
  background-repeat: repeat;
  background-size: contain;
  padding: 47px 0;
  font-size: calc(21 * var(--rem));
  position: relative;
  margin-bottom: 47px;
  letter-spacing: 0.04em;
}

.subpage-ttl-pattern3::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 10px;
  background-color: var(--main-green);
  width: 250px;

}

.subpage-ttl-pattern4 {
  position: relative;
  font-size: calc(30 * var(--rem));
  padding-left: 60px;
  margin-bottom: 20px;
}

.subpage-ttl-pattern4::before {
  content: "";
  display: block;
  height: 100px;
  width: 20px;
  background-color: var(--main-green);
  position: absolute;
  top: -17px;
  left: 20px;
  z-index: 1;
}

.subpage-ttl-pattern5 {
  padding: 29px 0 29px 25px;
  background-image: url(../images/greenline-bg.png);
  background-repeat: repeat;
  background-size: contain;
  font-size: calc(18 * var(--rem));
  font-weight: 600;
}

.subpage-ttl-pattern6 {}

@media all and (min-width: 768px) {
  .subpage-ttl-pattern1 {
    font-size: calc(30 * var(--rem));
  }

  .subpage-ttl-pattern2 {
    padding: 36px 0;
  }

  .subpage-ttl-pattern3::before {
    width: 400px;
  }

  .subpage-ttl-pattern4 {
    padding-left: 120px;
    margin-bottom: 37px;
  }

  .subpage-ttl-pattern4::before {
    height: 150px;
    width: 30px;
    left: 52px;
  }
}

/* //見出し */
/* 下記はコピペ用。パーツ毎にレスポンシブの記述をしてください。 */
@media all and (min-width: 576px) {}

@media all and (min-width: 768px) {}

@media all and (min-width: 992px) {}

@media all and (min-width: 1200px) {}

@media all and (min-width: 1400px) {}