@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Lato:300,300i,400,700,700i");
/* =================================================================
レイアウト
================================================================= */
.wrapper {
  position: relative;
}
.wrapper.short {
  position: absolute;
  width: 100%;
  height: 100%;
}
.wrapper.short .container {
  position: absolute;
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  .wrapper.short {
    position: relative;
    width: auto;
    height: auto;
  }
  .wrapper.short .container {
    position: relative;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .wrapper {
    padding: 56px 0 0;
  }
}

.container {
  position: relative;
  width: 100%;
  min-width: 930px;
  float: left;
  padding: 0 0 0 250px;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .container {
    padding: 0;
    float: none;
  }
  .container.open {
    position: fixed;
    padding: 56px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
    min-width: inherit;
  }
}

header {
  position: absolute;
  left: 0;
  width: 250px;
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  header {
    position: relative;
    width: 100%;
    height: auto;
  }
}

/* =================================================================
汎用
================================================================= */
body {
  color: #333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  letter-spacing: 0.06em;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

body.open,
html.open {
  height: 100%;
  overflow: hidden;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}

a:focus {
  outline: none;
}

img {
  height: auto;
  border: 0;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

ul li {
  list-style-type: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.clearfix::after {
  height: 0;
  display: block;
  clear: both;
  visibility: hidden;
  content: "";
}

.for-sp {
  display: none;
}

.for-tb {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .for-tb {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .for-sp {
    display: block;
  }

  .for-pc {
    display: none;
  }
}
/* ホバーフェード */
.fade {
  display: block;
}
.fade:hover {
  opacity: .7;
}
@media only screen and (max-width: 768px) {
  .fade:hover {
    opacity: 1;
  }
}

/* ホバーテキスト*/
.hover {
  -webkit-transition: all .3s;
  transition: all .3s;
}
.hover:hover {
  color: #00abb4;
}
@media only screen and (max-width: 768px) {
  .hover:hover {
    color: #333;
  }
}

.hover-txt span {
  border-bottom: solid 1px transparent;
  -webkit-transition: all .3s;
  transition: all .3s;
}

a:hover .hover-txt span {
  border-color: #555;
}
@media only screen and (max-width: 768px) {
  a:hover .hover-txt span {
    border: none;
  }
}

/* ホバースケール*/
.scale {
  display: block;
}
.scale > p {
  position: relative;
  overflow: hidden;
}
.scale > p::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.scale img {
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.scale:hover p::before {
  opacity: 1;
}
.scale:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media only screen and (max-width: 768px) {
  .scale:hover p::before {
    opacity: 0;
  }
  .scale:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ボタン */
.btn {
  width: 278px;
}
.btn a {
  display: block;
  position: relative;
  height: 50px;
  background: #00abb4;
  border: solid 1px #00abb4;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 10px;
  height: 10px;
  margin: auto;
  background: url(/img/icn_arrow_02.webp) no-repeat center center;
  background-size: 10px auto;
  -webkit-transition: all .3s;
  transition: all .3s;
}
/* --  webp非対応 -- */
.no-webp .btn a::after {
  background: url(/img/icn_arrow_02.png) no-repeat center center;
}
.btn a:hover {
  background: #cceef0;
  color: #00abb4;
}
.btn a:hover::after {
  background: url(/img/icn_arrow_03.webp) no-repeat center center;
  background-size: 10px auto;
}
/* --  webp非対応 -- */
.no-webp .btn a:hover::after {
  background: url(/img/icn_arrow_03.png) no-repeat center center;
}
.btn.w200 {
  width: 200px;
}
.btn.w200 a {
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
}
.btn.w200 a::after {
  right: 20px;
}
.btn.style2 a {
  background: #fff;
  border: solid 1px #d0dadb;
  color: #333;
}
.btn.style2 a::after {
  background: url(/img/icn_arrow_04.webp) no-repeat center center;
}
/* --  webp非対応 -- */
.no-webp .btn.style2 a::after {
  background: url(/img/icn_arrow_04.png) no-repeat center center;
}
.btn.style2 a:hover {
  background: #d0dadb;
  border-color: #9cb2b3;
}
@media only screen and (max-width: 768px) {
  .btn {
    width: auto;
  }
  .btn a {
    height: 45px;
    font-size: 15px;
    line-height: 45px;
  }
  .btn a::after {
    right: 15px;
    width: 12px;
    height: 11px;
    background-size: 12px auto;
  }
  .btn a:hover {
    background: #00abb4;
    color: #fff;
  }
  .btn a:hover::after {
    background: url(/img/icn_arrow_02.webp) no-repeat center center;
    background-size: 12px auto;
  }
  /* --  webp非対応 -- */
  .no-webp .btn a:hover::after {
    background: url(/img/icn_arrow_02.png) no-repeat center center;
  }
  .btn.w200 {
    width: auto;
  }
  .btn.style2 a:hover {
    color: #333;
    background: #fff;
    border-color: #d0dadb;
  }
  .btn.style2 a:hover::after {
    background: url(/img/icn_arrow_04.webp) no-repeat center center;
  }
  /* --  webp非対応 -- */
  .no-webp .btn.style2 a:hover::after {
    background: url(/img/icn_arrow_04.png) no-repeat center center;
  }
}

/* タイトル */
.h-style {
  margin: 0 0 36px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .h-style {
    margin: 0 0 29px;
    font-size: 22px;
    line-height: 1.0;
  }
}

.h-style-top {
  margin: 0 0 28px;
  color: #333;
  font-family: "TsukuARdGothicStd-M", "FOT-筑紫A丸ゴシック Std M", sans-serif;
  font-size: 30px;
  line-height: 1.0;
  text-align: center;
}
.h-style-top span {
  display: block;
  margin: 0 0 11px;
  color: #ff925c;
  font-family: "Lato", sans-serif;
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .h-style-top {
    margin: 0 0 18px;
    font-size: 19px;
    letter-spacing: 0.02em;
  }
  .h-style-top span {
    margin: 0 0 5px;
    font-size: 13px;
  }
}

.h-style-1 {
  margin: 0 0 23px;
  line-height: 1.5;
  text-align: center;
}
.h-style-1 strong {
  display: block;
  color: #00abb4;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.0;
}
@media only screen and (max-width: 768px) {
  .h-style-1 {
    margin: 0 0 13px;
    font-size: 10px;
    line-height: 1.1;
  }
  .h-style-1 strong {
    margin: 0 0 5px;
    font-size: 25px;
  }
}
.h-style-1 + .border {
  height: 11px;
  background: #e3f5f6;
  border-top: solid 1px #d0dadb;
}
@media only screen and (max-width: 768px) {
  .h-style-1 + .border {
    height: 5px;
  }
}

.h-style-2 {
  margin: 0 0 22px;
  font-family: "TsukuARdGothicStd-M", "FOT-筑紫A丸ゴシック Std M", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .h-style-2 {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.0;
  }
}

.h-style-3 {
  position: relative;
  margin: 0 0 50px;
  font-family: "TsukuARdGothicStd-M", "FOT-筑紫A丸ゴシック Std M", sans-serif;
  font-size: 26px;
  line-height: 1.0;
  text-align: center;
}
.h-style-3::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background: #333;
}
.h-style-3 span {
  position: relative;
  padding: 0 16px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .h-style-3 {
    margin: 0 0 23px;
    font-size: 19px;
  }
  .h-style-3 span {
    padding: 0 10px;
  }
}

.h-style-4 {
  margin: 0 0 40px;
  font-family: "TsukuARdGothicStd-M", "FOT-筑紫A丸ゴシック Std M", sans-serif;
  font-size: 30px;
  line-height: 1.0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .h-style-4 {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.0;
  }
}

.lead {
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .lead {
    padding: 0 15px;
    font-size: 14px;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 320px) {
  .lead {
    font-size: 13px;
  }
}

/* 検索 */
.search {
  width: 209px;
  position: relative;
}
.search input[type=search] {
  width: 209px;
  height: 40px;
  padding: 0 20px;
  background: #fff;
  border-radius: 40px;
}
.search input[type=search].blue {
  background: #e3f5f6;
}
.search-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 768px) {
  .search {
    width: auto;
    position: relative;
  }
  .search input[type=search] {
    width: 100%;
    height: 45px;
    border-radius: 45px;
  }
  .search-btn {
    top: 5.5px;
    right: 6px;
    width: 34px;
    height: 34px;
  }
}

/* タグ */
.tag {
  display: inline-block;
  padding: 4px 3px;
  min-width: 78px;
  background: #00abb4;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.0;
  vertical-align: top;
  text-align: center;
}
.tag.new {
  padding: 2px 3px;
  background: #ff925c;
}
.tag.new::before {
  display: none;
}
@media only screen and (max-width: 768px) {
  .tag {
    font-size: 10px;
    min-width: 72px;
    padding: 2px 3px;
  }
}

.tag.seminar {
  background: #ff925c;
}

.tag.exhibition {
  background: #5dc35d
}

.date {
  color: #888;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  line-height: 1.0;
}

/* トランケート */
.trancate-txt {
  overflow: hidden;
}

.trancate-txt2 {
  letter-spacing: 0.05em;
}

/* アニメーション */
.wslide {
  -webkit-animation: wslide .2s ease-in .5s 1 alternate forwards;
  animation: wslide .2s ease-in .5s 1 alternate forwards;
}
@media only screen and (max-width: 768px) {
  .wslide {
    -webkit-animation: none;
    animation: none;
  }
}

@-webkit-keyframes wslide {
  0% {
    width: 1px;
  }
  100% {
    width: 100%;
  }
}

@keyframes wslide {
  0% {
    width: 1px;
  }
  100% {
    width: 100%;
  }
}
.animate {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

/*base code*/
.bounce {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@media only screen and (max-width: 768px) {
  .bounce {
    -webkit-animation: none;
    animation: none;
  }
}

.fadedown {
  position: relative;
  top: -25px;
  opacity: 0;
  -webkit-transition: opacity .5s , top .5s;
  transition: opacity .5s , top .5s;
}
.fadedown.on {
  top: 0;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .fadedown {
    top: 0;
    opacity: 1;
  }
}

/*the animation definition*/
@-webkit-keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
/* =================================================================
ヘッダー
================================================================= */
header {
  background: #e3f5f6;
  border-right: solid 1px #d0dadb;
  z-index: 999;
}
header .inner {
  position: relative;
}
header .logo {
  padding: 40px 0 26px;
  background: #fff;
  text-align: center;
}
header .logo span {
  display: block;
  margin: 12px 0 0;
  color: #333;
  line-height: 1.5;
}
@media only screen and (max-width: 1200px) {
  header {
    min-width: 930px;
    height: 100%;
    border-right: none;
    background: rgba(0, 0, 0, 0.7);
  }
  header .inner {
    max-width: inherit;
  }
  header .head {
    position: relative;
    height: 56px;
    background: #fff;
    border-bottom: solid 1px #d0dadb;
  }
  header .logo {
    width: 135.5px;
    margin: 0 auto;
    padding: 15px 0 0;
  }
  header .logo span {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    min-width: inherit;
    height: auto;
  }
  header.open {
    height: 100%;
  }
  header .inner {
    margin: 0;
  }
}
header .search {
  position: absolute;
  /* 2022.3 変更  bottom: 280px; */
  bottom: 220px;
  left: 20px;
}
header .search input[type="text"] {
  width: 209px !important;
  height: 40px !important;
  padding: 0 10px !important;
  background-position: 10px center !important;
  background: #fff;
  border-radius: 40px;
}
@media only screen and (max-width: 1200px) {
  header .search {
    margin: 0 auto;
    position: relative;
    bottom: 0;
    left: 0;
    width: calc(100% - 30px);
  }
  header .search input[type="text"] {
    width: 100% !important;
    height: 45px !important;
    border-radius: 45px;
  }
}

.gnav {
  padding: 0 0 160px;
  background: #00abb4 url(/img/bg_header.webp) no-repeat left bottom;
  background-size: contain;
}
/* --  webp非対応 -- */
.no-webp .gnav {
  background: #00abb4 url(/img/bg_header.png) no-repeat left bottom;
}
.gnav a {
  display: block;
  line-height: 1.5;
}
.gnav-item {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
.gnav-item.is-on a {
  background: #f5f3ef;
  color: #00abb4;
}
.gnav-item.is-on a.current {
  color: #fff;
}
.gnav-item.is-on a::after {
  opacity: 0;
}
.gnav-item > a {
  position: relative;
  color: #fff;
  padding: 13px 40px;
}
.gnav-item > a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 21px;
  width: 10px;
  height: 10px;
  margin: auto;
  background: url(/img/icn_arrow_02.webp) no-repeat center center;
  background-size: 10px;
}
/* --  webp非対応 -- */
.no-webp .gnav-item > a::after {
  background: url(/img/icn_arrow_02.png) no-repeat center center;
}
.gnav-item > a.current {
  background: #00959d;
}
.gnav-item > a.current:hover {
  color: #fff;
}
.gnav-item > a.current::after {
  opacity: 1;
}
.gnav-item > a span {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 10px;
}
.gnav-item:last-child {
  border-bottom: none;
}
.gnav-item.other {
  padding: 0 20px 0 20px;
  border-bottom: none;
}
.gnav-item.other .other-list {
  margin: 20px 0 0;
  /* padding: 15px 0 0; */
  /* border-top: solid 1px rgba(255, 255, 255, 0.2); */
}
.gnav-item.other .other-list li {
  margin: 0 0 10px;
}
.gnav-item.other .other-list li.contact a {
  background: url(/img/icn_mail.webp) no-repeat left center;
  background-size: 23px 18px;
}
.gnav-item.other .other-list li.brandsite a {
  background: url(/img/icn_web.webp) no-repeat left center;
}
.gnav-item.other .other-list li.rec a {
  background: url(/img/icn_rec.webp) no-repeat 3px center;
  background-size: 19px 24px;
}
.gnav-item.other .other-list li.dh-recruit a {
  background: url(/img/icn_dh_02.webp) no-repeat 3px center;
  background-size: 17px 21px;
}
.gnav-item.other .other-list li.sample a {
  background: url(/img/icn_sample_02.webp) no-repeat left center;
  background-size: 25px 25px;
}
/* --  webp非対応 -- */
.no-webp .gnav-item.other .other-list li.contact a {
  background: url(/img/icn_mail.png) no-repeat left center;
}
.no-webp .gnav-item.other .other-list li.brandsite a {
  background: url(/img/icn_web.png) no-repeat left center;
}
.no-webp .gnav-item.other .other-list li.rec a {
  background: url(/img/icn_rec.png) no-repeat 3px center;
}
.no-webp .gnav-item.other .other-list li.dh-recruit a {
  background: url(/img/icn_dh_02.png) no-repeat 3px center;
}
.no-webp .gnav-item.other .other-list li.sample a {
  background: url(/img/icn_sample_02.png) no-repeat left center;
}

.gnav-item.other .other-list li a {
  padding: 6px 0 5px 30px;
  color: #fff;
  line-height: 20px;
}
.gnav-item.other .other-list li a:hover {
  opacity: .7;
}

.gnav-item.gnav-bnr {
  padding: 60px 0 0;
  border-bottom: none;
}
.gnav-item.gnav-bnr + .gnav-item.gnav-bnr {
  padding-top: 15px;
}
.gnav-item.gnav-bnr a:hover {
  opacity: .7;
  background: none;
}
.gnav-item.gnav-bnr a.current {
  background: none;
}
.gnav-item.gnav-bnr.is-on a {
  background: none;
}
.gnav-item.gnav-bnr a {
  padding: 0 24.5px;
}
.gnav-item.gnav-bnr br {
  display: none;
}
.gnav-item.gnav-bnr a::after {
  background: none;
}

.sp-gnav-bnr {
  display: none;
}
.gnav-sub {
  position: absolute;
  top: 0;
  left: 250px;
  width: 180px;
  height: 100vh;
  padding: 160px 20px 0;
  background: #f5f3ef;
  border-right: solid 1px #d0dadb;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease .3s;
  transition: all .3s ease .3s;
}
.gnav-sub.open {
  width: 270px;
  opacity: 1;
  visibility: visible;
}
.gnav-sub-list {
  position: absolute;
  top: 162px;
  width: calc(100% - 40px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0s ease .3s;
  transition: all 0s ease .3s;
}
.gnav-sub-list li {
  background: #f5f3ef;
  border-bottom: solid 1px #d0dadb;
}
.gnav-sub-list li:first-child {
  border-top: solid 1px #d0dadb;
}
.gnav-sub-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 61px;
  background: #f5f3ef;
  line-height: 1.5;
}
.gnav-sub-list a span {
  display: block;
  width: 100%;
  margin: auto;
  background: url(/img/icn_arrow_03.webp) no-repeat right center;
}
/* --  webp非対応 -- */
.no-webp .gnav-sub-list a span {
  background: url(/img/icn_arrow_03.png) no-repeat right center;
}
.gnav-sub-list a:hover {
  color: #00abb4;
}
.gnav-sub-list.open {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 1200px) {
  .gnav {
    display: none;
  }
}

/* ハンバーガーメニュー */
@media only screen and (max-width: 1200px) {
  .sp-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 55px;
    margin: auto;
  }
  .sp-menu a {
    display: block;
  }
  .sp-menu-btn {
    position: relative;
    display: block;
    width: 25px;
    height: 18px;
    margin: 0 auto 7px;
  }
  .sp-menu-btn span {
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    margin: 0 auto;
    background-color: #333;
    border-radius: 1px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .sp-menu-btn span:nth-child(1) {
    top: 0px;
  }
  .sp-menu-btn span:nth-child(2) {
    top: 8px;
  }
  .sp-menu-btn span:nth-child(3) {
    bottom: 0;
  }
  .sp-menu-txt {
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 10px;
    letter-spacing: 0.02em;
    line-height: 1.0;
  }
  .sp-menu.active .sp-menu-btn span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
  .sp-menu.active .sp-menu-btn span:nth-child(2) {
    opacity: 0;
  }
  .sp-menu.active .sp-menu-btn span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }

  .sp-gnav-bnr {
    display: block;
  }
}
/* ヘッダーお問い合わせ */
@media only screen and (max-width: 1200px) {
  .sp-contact {
    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;
    position: absolute;
    top: 0;
    right: 0;
    width: 74px;
    height: 55px;
    padding: 2px 0 0;
    font-family: "Lato", sans-serif;
    font-size: 10px;
    letter-spacing: 0.02em;
    line-height: 1.0;
    text-align: center;
  }
  .sp-contact span {
    display: block;
    margin: 0 0 9px;
    text-align: center;
  }
  .sp-contact span img {
    width: inherit;
    zoom: .5;
  }
}
/* gnav sp */
@media only screen and (max-width: 1200px) {
  .nav-wrap {
    position: absolute;
    width: 100%;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
  }
  .nav-wrap > div {
    position: relative;
    background: #00abb4;
  }
  .nav-wrap.open {
    position: fixed;
    top: 55px;
    bottom: 0;
    height: auto;
    opacity: 1;
    visibility: visible;
    overflow: scroll;
  }
}

.sp-gnav {
  width: 100%;
  padding: 0;
  background: none;
}
.sp-gnav-inner {
  height: auto;
  padding: 0 0 14px;
  background: #00abb4;
}
.sp-gnav-item {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
.sp-gnav-item > a {
  display: block;
  position: relative;
  height: 55px;
  padding: 18px 20px;
  color: #fff;
}
.sp-gnav-item > a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 15px;
  height: 15px;
  margin: auto;
  background: url(/img/icn_plus.webp) no-repeat center center;
  background-size: 15px auto;
}
/* --  webp非対応 -- */
.no-webp .sp-gnav-item > a::after {
  background: url(/img/icn_plus.png) no-repeat center center;
}
.sp-gnav-item > a.is-on::after {
  background: url(/img/icn_minus.webp) no-repeat center center;
  background-size: 15px auto;
  opacity: 1;
}
/* --  webp非対応 -- */
.no-webp .sp-gnav-item > a.is-on::after {
  background: url(/img/icn_minus.png) no-repeat center center;
}
.sp-gnav-item > a.current {
  background: #00abb4;
}
.sp-gnav-item:last-child {
  border-bottom: none;
}
.sp-gnav-item.no-open > a {
  position: relative;
  color: #fff;
  padding: 18px 20px;
}
.sp-gnav-item.no-open > a::after {
  background: url(/img/icn_arrow_02.webp) no-repeat center center;
  background-size: 12px auto;
}
/* --  webp非対応 -- */
.no-webp .sp-gnav-item.no-open > a::after {
  background: url(/img/icn_arrow_02.png) no-repeat center center;
}
.sp-gnav-item.other {
  position: relative;
  padding: 0;
}
.sp-gnav-item.other .other-list {
  margin: 0;
  padding: 0;
  border-top: none;
}
.sp-gnav-item.other .other-list li {
  width: 100%;
  margin: 0;
}
.sp-gnav-item.other .other-list li.contact {
  padding: 0;
}
.sp-gnav-item.other .other-list li.contact a {
  background: url(/img/icn_mail.webp) no-repeat 16px center;
  background-size: 15.5px auto;
}
.sp-gnav-item.other .other-list li.brandsite a {
  background: url(/img/icn_web.webp) no-repeat 15px center;
  background-size: 18.5px auto;
}
.sp-gnav-item.other .other-list li.rec a {
  background: url(/img/icn_rec.webp) no-repeat 17px center;
  background-size: 14.5px auto;
}
.sp-gnav-item.other .other-list li.dh-recruit a {
  background: url(/img/icn_dh_02.webp) no-repeat 17px center;
  background-size: 14px auto;
}
.sp-gnav-item.other .other-list li.sample a {
  background: url(/img/icn_sample_02.webp) no-repeat 15px center;
  background-size: 17.5px 17.5px;
}
/* --  webp非対応 -- */
.no-webp .sp-gnav-item.other .other-list li.contact a {
  background: url(/img/icn_mail.png) no-repeat 16px center;
}
.no-webp .sp-gnav-item.other .other-list li.brandsite a {
  background: url(/img/icn_web.png) no-repeat 15px center;
}
.no-webp .sp-gnav-item.other .other-list li.rec a {
  background: url(/img/icn_rec.png) no-repeat 17px center;
}
.no-webp .sp-gnav-item.other .other-list li.dh-recruit a {
  background: url(/img/icn_dh_02.png) no-repeat 17px center;
}
.no-webp .sp-gnav-item.other .other-list li.sample a {
  background: url(/img/icn_sample_02.png) no-repeat 15px center;
}

.sp-gnav-item.other .other-list li a {
  display: block;
  padding: 0 0 0 41px;
  color: #fff;
  line-height: 45px;
}
.sp-gnav-item .sp-sub-list {
  max-height: 0;
  background: #f5f3ef;
  overflow: hidden;
  font-size: 0;
  letter-spacing: 0;
  word-spacing: 0;
  -webkit-transition: max-height .4s ease;
  transition: max-height .4s ease;
}
.sp-gnav-item .sp-sub-list.open {
  max-height: 200px;
}
.sp-gnav-item .sp-sub-list li {
  display: inline-block;
  width: 50%;
  border-right: solid 1px #d0dadb;
  border-bottom: solid 1px #d0dadb;
  font-size: 14px;
  letter-spacing: 0.06em;
  word-spacing: normal;
  vertical-align: top;
}
.sp-gnav-item .sp-sub-list li:nth-child(2n) {
  border-right: none;
}
.sp-gnav-item .sp-sub-list li:nth-child(5) {
  border-bottom: none;
}
.sp-gnav-item .sp-sub-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 55px;
  padding: 0 38px 0 10px;
}
.sp-gnav-item .sp-sub-list li a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 12px;
  height: 11px;
  margin: auto;
  background: url(/img/icn_arrow_01.webp) no-repeat center center;
  background-size: 12px auto;
}
/* --  webp非対応 -- */
.no-webp .sp-gnav-item .sp-sub-list li a::after {
  background: url(/img/icn_arrow_01.png) no-repeat center center;
}

.sp-gnav-bnr {
  width: 200px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
.sp-gnav-bnr + .sp-gnav-bnr {
  padding-top: 0;
}

.sp-gnav-bnr img {
  width: inherit;
}
@media only screen and (max-width: 360px) {
  .sp-gnav-item .sp-sub-list li {
    font-size: 12px;
  }
  .sp-gnav-item .sp-sub-list li a {
    padding: 0 13% 0 10px;
  }
}

/* =================================================================
フッター
================================================================= */
.foot {
  text-align: center;
}
.foot-inner {
  position: relative;
  padding: 40px 0 35px;
  background: #f5f3ef;
  width: 100%;
}
.foot-ttl {
  margin: 0 0 25px;
}
@media only screen and (max-width: 768px) {
  .foot-inner {
    width: auto;
    padding: 20px 15px 14px;
  }
  .foot p {
    font-size: 12px;
    line-height: 2.0;
  }
  .foot-ttl {
    margin: 0 0 9px;
  }
}

footer {
  padding: 2px 0;
  background: #00abb4;
  color: #fff;
}
footer .pagetop {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  text-align: center;
  z-index: 999;
}
footer .pagetop a {
  display: table;
  width: 100%;
  height: 100%;
}
footer .pagetop span {
  display: table-cell;
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  font-weight: 600;
  vertical-align: middle;
}
footer .pagetop span img {
  display: block;
  margin: auto;
}
footer .footer-nav {
  float: left;
}
footer .footer-nav a {
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
}
footer .footer-nav a:hover {
  opacity: .7;
}
footer .copy {
  float: right;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  footer {
    padding: 0;
    background: none;
    border-top: solid 1px #d0dadb;
    color: #fff;
  }
  footer .pagetop {
    bottom: 50px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: solid 1px #d0dadb;
  }
  footer .pagetop span img {
    width: 29px;
  }
  footer .footer-nav {
    float: none;
    color: #555;
    text-align: center;
  }
  footer .footer-nav a {
    display: inline-block;
    padding: 10px 0 9px;
    color: #555;
    font-size: 10px;
    line-height: 1.1;
  }
  footer .footer-nav a:hover {
    opacity: 1;
  }
  footer .copy {
    width: 100%;
    float: none;
    padding: 9px 0;
    background: #00abb4;
    font-size: 10px;
    line-height: 1.1;
    text-align: center;
  }
}

.wrapper.short footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 0 0 250px;
}
@media only screen and (max-width: 768px) {
  .wrapper.short footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: auto;
    padding: 0;
  }
}

/* =================================================================
ローカルナビ
================================================================= */
.local-nav {
  height: 50px;
  background: #e3f5f6;
  line-height: 50px;
}
.local-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.local-nav-list li a {
  display: block;
  position: relative;
  padding: 0 42px;
}
.local-nav-list li a::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #00abb4;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}
.local-nav-list li a:hover::before, .local-nav-list li a.current::before {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .local-nav {
    height: auto;
    background: #e3f5f6;
    border-top: solid 1px #becccd;
    line-height: normal;
  }
  .local-nav-list {
    display: block;
    font-size: 0;
    letter-spacing: 0;
    word-spacing: 0;
  }
  .local-nav-list li {
    display: inline-block;
    width: calc(100% / 3);
    height: 50px;
    border-right: solid 1px #becccd;
    border-bottom: solid 1px #becccd;
    letter-spacing: 0.06em;
    word-spacing: normal;
    vertical-align: top;
  }
  .local-nav-list li:nth-child(3n) {
    border-right: none;
  }
  .local-nav-list li a {
    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;
    height: 50px;
    padding: 0 15px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
  }
  .local-nav-list li a::before {
    display: none;
  }
  .local-nav-list li a.current {
    background: #00abb4;
    color: #fff;
  }
}

/* =================================================================
パンくず
================================================================= */
.breadcrumb {
  padding: 0 20px;
  line-height: 1.4;
}
.breadcrumb ol li {
  display: inline-block;
  font-size: 12px;
}
.breadcrumb ol li a {
  color: #00abb4;
  border-bottom: solid 1px #00abb4;
}
.breadcrumb ol li::after {
  display: inline-block;
  content: " > ";
  margin: 0 5px;
}
.breadcrumb ol li:last-child::after {
  display: none;
}
@media only screen and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}

/* =================================================================
contents
================================================================= */
.inner {
  max-width: 930px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .inner {
    max-width: inherit;
    min-width: inherit;
  }
}

/* タブ */
.tab {
  position: relative;
}
.tab-list {
  font-size: 0;
  letter-spacing: 0;
  word-spacing: 0;
  text-align: center;
}
.tab::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00abb4;
}
.tab li {
  display: inline-block;
  height: 48px;
  margin: 0 2.5px;
  padding: 1px 0 0;
  background: #fff;
  font-size: 14px;
  letter-spacing: 0.06em;
  word-spacing: normal;
}
.tab li span {
  display: inline-block;
  width: 100%;
  height: 40px;
  border: solid 1px #d0dadb;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  line-height: 40px;
  vertical-align: middle;
  cursor: pointer;
}
.tab li.is-on {
  position: relative;
  border: solid 2px #00abb4;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}
.tab li.is-on::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
.tab li.is-on span {
  color: #00abb4;
  border: none;
}
@media screen and (min-width: 951px) {
  .tab li:hover {
    position: relative;
    border: solid 2px #00abb4;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
  }
  .tab li:hover::after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  .tab li:hover span {
    color: #00abb4;
    border: none;
  }
}
@media only screen and (max-width: 768px) {
  .tab {
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tab-list {
    width: 100%;
    display: table;
    table-layout: fixed;
    position: relative;
    font-size: 0;
    letter-spacing: 0;
    word-spacing: 0;
    text-align: center;
  }
  .tab::before {
    display: none;
  }
  .tab li {
    display: table-cell;
    height: auto;
    margin: 0;
    padding: 0;
    border: solid 1px #d0dadb;
    border-bottom: solid 5px #d0dadb;
    border-left: none;
    font-size: 12px;
    letter-spacing: 0.02em;
    word-spacing: normal;
  }
  .tab li:last-child {
    border-right: none;
  }
  .tab li span {
    display: inline-block;
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 0;
    color: #888;
    line-height: 40px;
    vertical-align: middle;
    cursor: none;
  }
  .tab li.is-on {
    position: relative;
    border: solid 1px #d0dadb;
    border-bottom: solid 5px #00abb4;
    border-left: none;
    border-radius: 0;
  }
  .tab li.is-on span {
    border: none;
    color: #00abb4;
  }
  .tab li.is-on::after {
    display: none;
  }
}

.new {
  position: relative;
}
.new::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 37px;
  height: 37px;
  background: url(/img/icn_new.webp) no-repeat center center;
  background-size: 37px;
  z-index: 1;
}
/* --  webp非対応 -- */
.no-webp .new::before {
  background: url(/img/icn_new.png) no-repeat center center;
}
@media only screen and (max-width: 768px) {
  .new::before {
    width: 30px;
    height: 30px;
    background-size: 30px;
  }
}

/* 検索 */
.cse .gsc-control-cse,
.gsc-control-cse {
  padding: 0 !important;
}

img.gcsc-branding-img-noclear {
  vertical-align: text-top;
}

.gsc-control-cse .gs-result .gs-title {
  margin: 0 0 2px;
  line-height: 1.2;
}

/* # =================================================================
# バナー
# ================================================================= */

.bnr {
  padding: 40px 0;
}
.bnr-slides {
  margin: 0 -10px;
}
.bnr-slides li {
  width: 296px;
  margin: 0 10px;
  overflow: hidden;
}

.bnr-slides li a {
  display: block;
  border: solid 1px #d0dadb;
}

.bnr-slides li.bnr01 div {
  padding: 33.3333333% 0 0;
  position: relative;
}
.bnr-slides li.bnr01 a {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.bnr-slides li.bnr01 img {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.bnr-slides li br {
  display: none;
}
.bnr .slick-list {
  margin: 0 auto;
}
.bnr .slick-prev,
.bnr .slick-next {
  width: 20px;
  height: 100%;
  background: #fff;
  border: none;
  overflow: hidden;
  z-index: 1;
}
.bnr .slick-prev {
  left: -11px;
}
.bnr .slick-next {
  right: -11px;
}
.bnr .slick-prev:before,
.bnr .slick-next:before {
  display: block;
  content: "";
  width: 15px;
  height: 14px;
  float: right;
  background: url(/img/icn_arrow_01.webp) no-repeat center center;
  background-size: 15px auto;
  opacity: 1;
}
/* --  webp非対応 -- */
.no-webp .bnr .slick-prev:before,
.no-webp .bnr .slick-next:before {
  background: url(/img/icn_arrow_01.png) no-repeat center center;
}
.bnr .slick-prev:before {
  float: left;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.bnr .slick-track {
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .bnr {
    padding: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .bnr {
    padding: 40px 50px;
  }
  .bnr-slides {
    margin: 0;
  }
  .bnr-slides li {
    width: 100%;
    margin: 0;
  }

  .bnr-slides li.bnr01 div {
    padding: 34.1390909% 0 0;
  }
  .bnr-slides li.bnr01 img {
    width: initial;
  }
  .bnr .slick-list {
    width: 100%;
  }
  .bnr .slick-prev,
  .bnr .slick-next {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 1;
  }
  .bnr .slick-prev {
    left: -18px;
  }
  .bnr .slick-next {
    right: -18px;
  }
  .bnr .slick-prev:before,
  .bnr .slick-next:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}


.company-bnr {
  padding: 80px 0 0;
}

.company-bnr a {
  width: 75.268817204%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .company-bnr {
    padding: 40px 15px;
  }
  .company-bnr a {
    width: 100%;
    margin: 0 auto;
  }
}

/* # =================================================================
# 汎用
# ================================================================= */
.fll {
  float: left !important;
}

.flr {
  float: right !important;
}

.clear {
  clear: both;
}

.relative {
  position: relative !important;
}

.bgw {
  background: #fff !important;
}

.bgg {
  background: #d9d9d9 !important;
}

.bgb {
  background: #d9edff !important;
}

.bgp {
  background: #fef2fb !important;
}

.hide {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

.block {
  display: block;
}

.tc {
  text-align: center !important;
}

.tr {
  text-align: right !important;
}

.tl {
  text-align: left !important;
}

.fc-orange {
  color: #ff925c;
}

.fw-b {
  font-weight: bold;
}

.fs10 {
  font-size: 10px !important;
}

.fs11 {
  font-size: 11px !important;
}

.fs12 {
  font-size: 12px !important;
}

.fs13 {
  font-size: 13px !important;
}

.fs14 {
  font-size: 14px !important;
}

.fs15 {
  font-size: 15px !important;
}

.fs16 {
  font-size: 16px !important;
}

.fs17 {
  font-size: 17px !important;
}

.fs18 {
  font-size: 18px !important;
}

.fs19 {
  font-size: 19px !important;
}

.fs20 {
  font-size: 20px !important;
}

.m0 {
  margin: 0 !important;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb1 {
  margin-bottom: 1px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mbt30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.mlr5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.mlr10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.mlr15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.mlr20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.mlr25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.mlr30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.plr5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.plr10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.plr15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.plr20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.plr25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.plr30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
