@charset "UTF-8";
/* -------------------------------------------------------------------------
	Web font
------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------
	Foundation
------------------------------------------------------------------------- */
/* Vendor */
/* Variable */
/*

brakepoints

*/
/*

base color

*/
/*

text color

*/
/*

width

*/
/* Function */
/* Mixin */
/*

clearfix

*/
/*

メディアクエリ

ブレークポイント定義
```sass
$breakpoints:(
	tablet: 959px,
	sp: 679px
);
```

● max-widthで指定する
```sass
@include mq(sp) {
	height:40px;
}
```
```output css
@media screen and (max-width: 679px) {
	height: 40px;
}
```

● 範囲指定する場合は、引数に2つ入れる
```sass
@include mq(sp tablet) {
	height:40px;
}
```
```output css
@media screen and (min-width: 680px) and (max-width: 959px) {
	height: 40px;
}
```

● min-widthで指定する場合は第2引数をtrueにする
```sass
@include mq(tablet, true) {
	height:40px;
}
```
```output css
@media screen and (min-width: 960px) {
	height: 40px;
}
```

*/
/*

章番号用mixin (IE8以上)

キャプションに章番号をつける場合
```sass
$counterName: oreoreCounter;
.parent-section {
	@include resetCounter($counterName);
	h2 {
		@include addCounter($counterName, '第', '章');
	}
}
```

入れ子になってるリストに通し番号(1-1-1など）を付ける場合
```sass
$counterName: listCounter;
ol {
	@include resetCounter($counterName);
	li {
		@include addCounters($counterName, '-');
	}
}
```

*/
/* Base */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

small {
  font-size: smaller;
}

sup {
  font-size: 0.7em;
  vertical-align: top;
}

sub {
  font-size: 0.7em;
  vertical-align: baseline;
}

/* YUI 3.9.1 (build 5852) Copyright 2013 Yahoo! Inc. http://yuilibrary.com/license/ */
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
  *font-size: small;
  /* for IE */
  *font: x-small;
  /* for IE in quirks mode */
}

/**
 * Nudge down to get to 13px equivalent for these form elements
 */
select,
input,
button,
textarea {
  font: 99% arial,sans-serif;
}

/**
 * To help tables remember to inherit
 */
table {
  font-size: inherit;
  font: 100%;
}

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  font-size: 108%;
  line-height: 100%;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssfonts {
  display: none;
}

/*

プロジェクトにおける基本的なスタイル
（ページ全体の背景や、基本的なタイポグラフィ）
※ クラスは使わない

*/
html {
  font-size: 62.5%;
}

html, body {
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
}

body {
  /* font-family: "Noto Sans", "Noto Sans CJK JP","游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif,'Noto Serif JP', serif; */
  font-family: "Noto Sans", "Noto Sans CJK JP","游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro', sans-serif;
  color: #333333;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333333;
  line-height: 2;
  overflow-x: hidden;
  /* background: url("../img/common/bg.png") repeat center/170%; */
}

@media screen and (max-width: 479px) {
  body {
    /* background: url("../img/common/bg.png") repeat center/cover; */
  }
}

h1, h2, h3, h4 {
  font-weight: normal;
  letter-spacing: 0.9px;
}

@media screen and (max-width: 767px) {
  h1, h2, h3, h4 {
    letter-spacing: 0px;
  }
}

h2, h3, h4 {
  font-weight: bold;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

a:hover {
  opacity: .7;
  text-decoration: none;
  cursor: pointer;
}

/* -------------------------------------------------------------------------
	Layout
------------------------------------------------------------------------- */
.main_column {
  width: 820px;
  float: right;
}

@media screen and (max-width: tablet) {
  .main_column {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .main_column {
    float: none;
  }
}

.sub_column {
  width: 440px;
  float: left;
}

.bw {
  padding: 170px 0 60px 0;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .bw {
    padding: 100px 0 50px 0;
  }
}

.cw {
  width: 960px;
  margin: 0 auto;
}

/* @media screen and (max-width: tablet) { */
@media screen and (max-width: 960px) {
  .cw {
    width: 80%;
  }
}

@media screen and (max-width: 479px) {
  .cw {
    width: 90%;
  }
}

.cw__inner {
  width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .cw__inner {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  iframe {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .entry-content {
    width: 90%;
    margin: 0 auto;
  }
}

.anchor {
  display: block;
  padding-top: 170px;
  margin-top: -170px;
}

.footer {
  padding: 40px 0 30px;
  background-color: #fff;
  border-top: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 0px 0 30px 0 !important;
    background-color: #333333;
    color: #fff;
    border-top: none;
  }
}

@media screen and (max-width: 767px) {
  .footer .cw {
    width: 100%;
  }
}

.footer__inner {
  margin-bottom: 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .footer__inner {
    display: block;
    color: #fff;
  }
}

.footer__logo {
  width: 140px;
  text-align: center;
  margin: 0 0 0 40px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  /* font-family: serif; */
}

@media screen and (max-width: 767px) {
  .footer__r {
    margin: 0 0 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .footer__l {
    display: none;
  }
}

.footer__aside {
  display: none;
}

.footer__aside img {
  width: 20px;
  margin: 0 10px 20px;
}

@media screen and (max-width: 767px) {
  .footer__aside img {
    width: 40px;
    margin: 0px 15px 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer__tokyo {
    border-top: solid 1px #666;
  }
}

.footer__office {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .footer__office {
    display: block;
  }
}

.footer__office__item {
  width: 40%;
  margin: 15px 0;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .footer__office__item {
    width: 100%;
    border-bottom: solid 1px #666;
    margin: 0;
    padding: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.footer__office__item > a {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .footer__office__item > a {
    color: #fff;
  }
}

.footer__office .name-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .footer__office .name-sp {
    display: block;
    width: 70%;
    margin: 0 auto 15px auto;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 20px;
  }
}

.footer .copy {
  font-size: 12px;
  font-size: 1.2rem;
  opacity: .6;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer .copy {
    color: #ddd;
  }
}

.global_nav {
  height: 50px;
  background-color: #333333;
}

.header {
  width: 100%;
  height: 95px;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 100;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header__inner {
  height: 95px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
}
.header__brand {
  width: 50%;
}
.header__brand__inner {
  display: inline-block;
}
.header__brand__inner img {
  height: 52px;
}
/* .header__logo {
  width: 88px;
} */

@media screen and (max-width: 767px) {
  /* .header__logo {
    width: 72px;
  } */
  .header__brand {
    width: 75%;
  }
  .header__brand__inner img {
    width: auto;
    max-width: 70vw;
    height: auto;
    max-height: 50px;
  }

}

.header__name {
  width: 280px;
  -webkit-transform: translateX(10px) translateY(6px);
  -ms-transform: translateX(10px) translateY(6px);
  transform: translateX(10px) translateY(6px);
}

@media screen and (max-width: 767px) {
  .header__name {
    width: 190px;
  }
}

.header__aside {
  width: 38%;
  margin:0;
  display: flex;
  align-items: center;
}

.header__aside-l {
  width: 60%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.header__aside-l a {
  display: block;
  text-align: left;
}
.header__aside-l .logo-sommer {
  width: auto;
  height: 20px;
  margin: -18px 0 6px 0;
}

.header__aside-l .logo-twaudio {
  width: auto;
  height: 20px;
  margin: 0 0 0 6px;
}
.header__aside-l .logo-sommer img,
.header__aside-l .logo-twaudio img {
  height: 100%;
}
.header__aside-r {
  width: 35%;
  display: flex;
  justify-content: flex-end;
}
.header__aside-r a {
  margin: 0 5px;
}
.header__aside-r a > img {
  width: 46px;
}

@media screen and (max-width: 767px) {
  .header__aside {
    display: none;
    width: 100%;
    height: auto;
    margin: 80px auto 0 auto;
    padding: 15px 0;
    display: block;
    position: fixed;
    left: 100%;
    -webkit-transition: .9s ease;
    -o-transition: .9s ease;
    transition: .9s ease;
    background-color: #fff;
    text-align: center;
  }
}

.header__aside-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .header__aside-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px 0 35px 0;
  }
}

@media screen and (max-width: 767px) {
  .header__aside-sp > a {
    display: inline-block !important;
    width: auto !important;
  }
}

@media screen and (max-width: 767px) {
  .header__aside-sp img {
    width: 50%;
  }
}

.header__aside-sp .sns-sp {
  width: 50px;
  margin: 0 22px;
}

.header .header__nav {
  width: 100%;
  /* height: px; */
  background-color: #fff;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .header .header__nav__inner {
    width: 100%;
    height: 100vh;
    overflow: auto;
  }
}

.header .header__nav__list {
  width: 100%;
  height: 75px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .header .header__nav__list {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .header .header__nav__list {
    width: 100%;
    height: 100vh;
    display: block;
    margin: 0 auto 110px auto;
    overflow: auto;
  }
}

.header .header__nav__item {
  /* font-size: 14px;
  font-size: 1.4rem; */
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 10px 20px;
}

@media screen and (max-width: 767px) {
  .header .header__nav__item {
    width: 100%;
    padding: 15px 0;
    border-bottom: solid 1px #ddd;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.header .header__nav__item::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #E60013;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 100;
}

.header .header__nav__item:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

@media screen and (max-width: 767px) {
  .header .header__nav__item:hover::after {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  }
}

.header .header__nav__item:hover .header__nav-child {
  top: 40px;
  visibility: visible;
  opacity: 1;
}

.header .header__nav__item a {
  width: 100%;
  display: block;
  color:#000;
}

.header .header__nav-child {
  width: 120px;
  padding: 30px 10px 10px 10px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: -20px;
  left: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  background-color: #fff;
  text-align: left;
  z-index: -1;
}

.header .header__nav-child a {
  /* font-size: 12px;
  font-size: 1.2rem; */
  font-size:14px;
}

@media screen and (max-width: 1200px) {
  .header .header__nav-child {
    padding: 25px;
  }
}

@media screen and (max-width: 767px) {
  .header .header__nav-child {
    width: 100%;
    position: static;
    -webkit-transform: translateX(0) translateY(0);
    -ms-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    padding: 0;
    visibility: visible;
    opacity: 1;
    text-align: center;
  }
}

@media screen and (max-width: 1200px) {
  .header .header__nav .child02 {
    padding: 25px;
  }
}

@media screen and (max-width: 767px) {
  .header .header__nav .child02 {
    width: 100%;
    -webkit-transform: translateX(0) translateY(0);
    -ms-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .header .header__nav .child03 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header .header__nav {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: fixed;
    left: 100%;
    -webkit-transition: .9s ease;
    -o-transition: .9s ease;
    transition: .9s ease;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.header .nav_toggle {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header .nav_toggle .navbar {
  display: block;
  width: 30px;
  height: 24px;
  cursor: pointer;
  text-align: center;
}

.header .nav_toggle .navbar span {
  display: block;
  position: absolute;
  width: 100%;
  border-bottom: solid 3px #333333;
  border-radius: 20px;
  -webkit-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.header .nav_toggle .navbar span:nth-child(1) {
  top: 0;
}

.header .nav_toggle .navbar span:nth-child(2) {
  top: 50%;
}

.header .nav_toggle .navbar span:nth-child(3) {
  top: 100%;
}

.open {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .open .header__nav {
    left: 0;
  }
}

.open #navbar_active span:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.open #navbar_active span:nth-child(2) {
  top: 50%;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.open #navbar_active span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.open #nav_active {
  height: 100%;
  left: 0;
  background-color: #fff;
  overflow: auto;
  z-index: 100;
  -webkit-overflow-scrolling: touch;
}

/* -------------------------------------------------------------------------
	Object
------------------------------------------------------------------------- */
/* Component */
/*

標準のマーカーを使ったリスト

*/
.list_disc > li, .list_square > li, .list_decimal > li, .list_decimal_zero > li, .list_dot > li, .list_circle > li, .list_decimal_01 > li, .list_decimal_02 > li, .list_decimal_03 > li, .list_decimal_04 > li, .list_upper_alpha_01 > li {
  margin-bottom: 7px;
}

.list_disc > li:last-child, .list_square > li:last-child, .list_decimal > li:last-child, .list_decimal_zero > li:last-child, .list_dot > li:last-child, .list_circle > li:last-child, .list_decimal_01 > li:last-child, .list_decimal_02 > li:last-child, .list_decimal_03 > li:last-child, .list_decimal_04 > li:last-child, .list_upper_alpha_01 > li:last-child {
  margin-bottom: 0;
}

.list_disc {
  margin-left: 1.2em;
  list-style: disc;
}

.list_square {
  margin-left: 1.2em;
  list-style: square;
}

.list_decimal {
  margin-left: 1.7em;
  list-style: decimal;
}

.list_decimal_zero {
  margin-left: 2.3em;
  list-style: decimal-leading-zero;
}

/*

beforeでマーカーを作ったリスト (IE8以上)

*/
/* ---- ・ ---- */
.list_dot > li {
  text-indent: -1em;
  margin-left: 1em;
}

.list_dot > li:before {
  content: "・";
}

.list_dot > li > * {
  text-indent: 0;
}

/* ---- ● ---- */
.list_circle > li {
  text-indent: -1em;
  margin-left: 1em;
}

.list_circle > li:before {
  content: "● ";
}

.list_circle > li > * {
  text-indent: 0;
}

/* ---- 1. ---- */
.list_decimal_01 > li {
  counter-increment: decimal_01;
  margin-left: 1.2em;
  text-indent: -1.2em;
}

.list_decimal_01 > li:before {
  content: counter(decimal_01) ". ";
}

.list_decimal_01 > li > * {
  text-indent: 0;
}

/* ---- (1) ---- */
.list_decimal_02 > li {
  counter-increment: decimal_02;
  margin-left: 1.5em;
  text-indent: -1.5em;
}

.list_decimal_02 > li:before {
  content: "(" counter(decimal_02) ") ";
}

.list_decimal_02 > li > * {
  text-indent: 0;
}

/* ---- [1] ---- */
.list_decimal_03 > li {
  counter-increment: decimal_03;
  margin-left: 1.5em;
  text-indent: -1.5em;
}

.list_decimal_03 > li:before {
  content: "[" counter(decimal_03) "] ";
}

.list_decimal_03 > li > * {
  text-indent: 0;
}

/* ---- 丸数字 ---- */
.list_decimal_04 > li {
  counter-increment: decimal_04;
  margin-left: 1.5em;
  text-indent: -1.5em;
}

.list_decimal_04 > li:before {
  content: counter(decimal_04);
  border: 1px solid #000;
  padding: 0 3px;
  font-size: 10px;
  margin-right: 5px;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
}

.list_decimal_04 > li > * {
  text-indent: 0;
}

/* ---- upper alpha ---- */
.list_upper_alpha_01 > li {
  counter-increment: upper_alpha_01;
  margin-left: 1.5em;
  text-indent: -1.5em;
}

.list_upper_alpha_01 > li:before {
  content: counter(upper_alpha_01, upper-alpha) ") ";
}

.list_upper_alpha_01 > li > * {
  text-indent: 0;
}

/*

no support message

*/
.noscript,
.legacy_ie_message {
  background-color: #000;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1px;
}

.legacy_ie_message {
  display: none;
}

.regacy_ie .legacy_ie_message {
  display: block;
}

/*

注釈 (IE8以上)

*/
/* ---- ※（注釈） ---- */
.notes {
  margin-left: 1.3em !important;
  text-indent: -1.3em !important;
}

.notes:before {
  content: "※ ";
}

.notes > * {
  text-indent: 0;
}

/* ---- ※n （番号付き注釈）---- */
.notes_num {
  counter-increment: decimal_notes;
  margin-left: 1.9em !important;
  text-indent: -1.9em !important;
}

.notes_num:before {
  content: "※" counter(decimal_notes) " ";
}

.notes_num > * {
  text-indent: 0;
}

/* Project */
.heading_lv1 {
  font-weight: normal;
}

.heading_lv2 {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.15;
  margin: 0 0 26px 0;
  padding: 10px 10px 10px 5px;
  border-bottom: 2px solid #ea7b82;
}

@media screen and (max-width: 767px) {
  .heading_lv2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.heading_lv3, h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.05;
  margin: 0.8em 0;
  padding: 0.3em 0.5em 0.3em 1em;
  border-left: 5px solid #bcbcbc;
}

@media screen and (max-width: 767px) {
  .heading_lv3, h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

h4 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #171717;
  font-style: italic;
  line-height: 1.3125;
  margin: 20px 0 8px 0;
  border-bottom: 1px solid #CCC;
  padding: 0.3em 0.5em 0.3em 0.5em;
}

.heading_lv4 {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  padding: 100px 0;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .heading_lv4 {
    font-size: 22px;
    font-size: 2.2rem;
    padding: 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .heading_lv4 {
    padding: 40px 0;
  }
}

.heading_linktitle {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
  border-bottom: solid 1px #ccc;
}

.rec__equipment {
  margin: 30px 0;
}

.rec__equipment a {
  font-size: 19px;
  font-size: 1.9rem;
}

@media screen and (max-width: 479px) {
  .rec__equipment a {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.office__spec__wrap {
  margin: 0 0 60px 0;
}

.office__spec {
  margin: 0 0 20px 0;
}

.office__spec a {
  margin: 0 0 10px 0;
  font-weight: bold;
}

.office__spec a::before {
  content: "⇒";
  display: inline-block;
  color: #000;
  margin: 0 5px 0 10px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.office__spec a:hover::before {
  color: #E60013;
}

.tel {
  font-weight: normal !important;
  display: inline-block !important;
  margin: 0 0 0 3px !important;
}

.tel::before {
  content: none !important;
}

.btn {
  width: 300px;
  display: inline-block;
  padding: 1em 0.3em;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  background-color: #959bee;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border: none;
}

@media screen and (max-width: 479px) {
  .btn {
    width: 90%;
  }
}

.btn:hover {
  background-color: #fff;
  border: solid 1px #959bee;
  color: #959bee;
}

.btn-return {
  color: #fff;
  background-color: #999;
  margin: 0 20px 0 0;
}

.btn-form {
  width: 350px;
  display: inline-block;
  padding: 1em 0.3em;
  margin: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #333333;
  border: solid 1px #333333;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

@media screen and (max-width: 479px) {
  .btn-form {
    width: 160px;
    margin: 0 10px  20px 0;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.btn-form:hover {
  background-color: #ccc;
  border: solid 1px #333333;
  color: #333333;
  text-decoration: none;
}

.btn-form > span {
  font-size: 16px;
  font-size: 1.6rem;
}

.btn__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 40px 0;
}

@media screen and (max-width: 479px) {
  .btn__wrap {
    text-align: center;
  }
}

/* Scope */
/*

top page

*/
main.home {
  padding: 170px 0 0 0;
}

@media screen and (max-width: 767px) {
  main.home {
    padding: 90px 0 0 0;
  }
}

/* MainVisual */
main.home .mv {
  margin: 30px auto 100px;
}

@media screen and (max-width: 767px) {
  main.home .mv {
    margin: 0 auto;
  }
}

#top-mainvisual {
  width: 100%;
  height: 440px;
  position: relative;
  overflow: hidden;
}
.top-main-img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  animation: top-slide-mov 49s 0s infinite;
}
 /* 1枚5秒 */
.top-main-img:nth-of-type(1) {
  animation-delay: 0s;
}
.top-main-img:nth-of-type(2) {
  animation-delay: 7s;
}
.top-main-img:nth-of-type(3) {
  animation-delay: 14s;
}
.top-main-img:nth-of-type(4) {
  animation-delay: 21s;
}
.top-main-img:nth-of-type(5) {
  animation-delay: 28s;
}
.top-main-img:nth-of-type(6) {
  animation-delay: 35s;
}
.top-main-img:nth-of-type(7) {
  animation-delay: 42s;
}
@media screen and (max-width: 767px) {
  #top-mainvisual {
    width: 96%;
    height: 100vw;
    margin-inline: auto;
  }
}

@keyframes top-slide-mov {
  0% {
    opacity: 0;
  }
  /* 画像が表示される開始点（例：全体の0.5秒後からフェードイン） */
  1% {
    opacity: 0;
  }
  /* 画像が表示されている期間（例：全体の1秒後から6秒後まで表示） */
  3% {
    opacity: 1; /* フェードイン開始 */
  }
  12% { /* 7秒表示のうち、約6秒間表示する計算（7秒/49秒 = 約14%なので、その少し前でフェードアウト開始） */
    opacity: 1;
  }
  /* 次の画像に切り替わる前のフェードアウト */
  14% { /* 7秒/49秒 = 約14% */
    opacity: 0;
  }
  /* アニメーションの残りの時間は非表示 */
  100% {
    opacity: 0;
  }
}

main.home .simply-scroll-container {
  position: relative;
}

main.home .simply-scroll-clip {
  position: relative;
  overflow: hidden;
}

main.home .simply-scroll-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 画像の高さ;
  /* 崩れる場合にはこちらも設定 */
}

main.home .simply-scroll-list li {
  list-style: none !important;
  float: left;
  width: 600px;
  margin: 20px;
  padding: 0;
}

main.home .simply-scroll-list li img {
  display: block;
}

/* .company table.type03 {
  width: 600px;
  font-family: "Noto Sans", "Noto Sans CJK JP", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #ccc;
  border-left: 3px solid #d4d4d4;
} */

.company-table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
}
.company-table th,
.company-table td {
  padding: 12px 0;
  font-size: 1.1em;
  border-bottom:1px solid #CCC;
}
.company-table th {
  width: 40%;
  font-weight: bold;
  text-align: center;
}
.company-table td {
  width: 60%;
  text-align: center;
}
.company-role-title {
  font-size: 1.6em;
}
.company-role {
  color:#005ca3;
}
.company-staff-list {
  padding-left:.5em;
}
/* .company-staff-table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
}
.company-staff-table th,
.company-staff-table td {
  padding: 12px 0;
  border-bottom:1px solid #CCC;
}
.company-staff-table th {
  width: 40%;
  color:#005ca3;
  font-weight: normal;
  text-align: left;
  line-height: 1.4;
}
.company-staff-table td {
  width: 60%;
  text-align: left;
} */


@media screen and (max-width: 767px) {
  /* .company table.type03 {
    width: 100%;
  } */
  .company-table th {
    width: 30%;
    text-align: left;
  }
  .company-table td {
    width: 70%;
    text-align: left;
  }

}

.company table.type03 th {
  width: 147px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  color: #153d73;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.company table.type03 td {
  width: 349px;
  padding: 10px;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.company h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.05;
  margin: 0.8em 0;
  padding: 0.3em 0.5em 0.3em 1em;
  border-left: 5px solid #bcbcbc;
}

.company p {
  font-size: 13px;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.office h3 {
  font-weight: bold;
}

.office .office__spec__wrap {
  margin: -170px 0 60px 0;
}

.pa .pa__equipment {
  margin: 0 0 40px 0;
}

.pa__list table.type03 {
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #ccc;
  border-left: 3px solid #d4d4d4;
}

.pa__list table.type03 th {
  width: 100%;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  color: #153d73;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.pa__list table.type03 td {
  padding: 10px;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.rec__studio table.type03 {
  font-family: "Noto Sans", "Noto Sans CJK JP", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #ccc;
  border-left: 3px solid #d4d4d4;
}

.rec__studio table.type03 th {
  width: 147px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  color: #153d73;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.rec__studio table.type03 td {
  width: 349px;
  padding: 10px;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.rec__list table.type03 {
  font-family: "Noto Sans", "Noto Sans CJK JP", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #ccc;
  border-left: 3px solid #d4d4d4;
}

.rec__list table.type03 th {
  width: 147px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  color: #153d73;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.rec__list table.type03 td {
  width: 349px;
  padding: 10px;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.booth__rental table.type03 {
  font-family: "Noto Sans", "Noto Sans CJK JP", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #ccc;
  border-left: 3px solid #d4d4d4;
}

.booth__rental table.type03 th {
  width: 147px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  color: #153d73;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.booth__rental table.type03 td {
  width: 349px;
  padding: 10px;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.premade-cable h3 {
  margin: 0 0 30px 0;
}

.premade-cable .cable__catch {
  margin: 0 0 50px 0;
}

.premade-cable .cable__list {
  margin: 0 0 30px 0;
}

.premade-cable .cable__list a {
  display: block;
  margin: 0 0 10px 0;
}

.premade-cable .cable__list a::before {
  content: "⇒";
  display: inline-block;
  color: #000;
  margin: 0 5px 0 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.premade-cable .cable__list a:hover::before {
  color: #E60013;
}

.premade-cable table.type03 {
  font-family: "Noto Sans", "Noto Sans CJK JP", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #ccc;
  border-left: 3px solid #d4d4d4;
}

.premade-cable table.type03 th {
  width: 147px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  color: #153d73;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.premade-cable table.type03 td {
  width: 349px;
  padding: 10px;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.premade-cable .form__inner {
  width: auto !important;
}

.contact {
  font-size: 13px;
  font-size: 1.3rem;
}

.contact * {
  outline: none;
}

@media screen and (max-width: 959px) {
  .contact .cw {
    width: 90%;
  }
}

.contact .form__head__wrap {
  width: 1200px;
  position: fixed;
  top: 120px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .contact .form__head__wrap {
    top: 80px;
    left: 0;
    background-color: #dfdfdf;
  }
}

@media screen and (max-width: 767px) {
  .contact .form__head__wrap h2 {
    margin: 0 0 14px 0;
  }
}

.contact .form__head {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .contact .form__head {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .contact .form__head h3 {
    margin: 0.5em 0;
  }
}

.contact .form__inner {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}

@media screen and (max-width: 959px) {
  .contact .form__inner {
    width: 100%;
    padding: 10px 0;
    display: block;
  }
}

.contact .form__inner .cta {
  margin: 20px 0;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact .form__inner .cta input {
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: none;
}

@media screen and (max-width: 767px) {
  .contact .form__inner .cta input {
    margin: 0 auto;
  }
}

.contact .mw_wp_form, .contact .formarea {
  width: 100%;
}

.contact .formarea, .contact .textarea, .contact textarea {
  width: 100%;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2;
  outline: none;
  border: none;
  background-color: #f7f7f7;
  padding: 5px;
}

.contact .c-tbl {
  width: 70%;
  margin: 50px 0 0 0;
  font-family: "Noto Sans", "Noto Sans CJK JP", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .contact .c-tbl {
    width: 95%;
    margin: 130px 0 0 0;
  }
}

@media screen and (max-width: 959px) {
  .contact .c-tbl tbody {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 959px) {
  .contact .c-tbl tr {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 959px) {
  .contact .c-tbl {
    display: block;
    border: none;
  }
}

.contact .c-tbl__head .require {
  font-size: 13px;
  font-size: 1.3rem;
  color: #B70000;
  margin-left: 10px;
}

@media screen and (max-width: 959px) {
  .contact .c-tbl__head .require {
    position: static;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.contact .c-tbl__head .text_s {
  font-size: 14px;
  font-size: 1.4rem;
}

.contact .c-tbl__data {
  width: 100%;
  padding: 10px 0px;
  font-size: 17px;
  font-size: 1.3rem;
  color: #333333;
  font-weight: normal;
}

.contact .c-tbl__data__textbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 2;
  display: block;
}

.contact .c-tbl .form__br {
  width: 100%;
  display: block;
  margin-top: 15px;
}

.contact .c-tbl .form__memo {
  width: 100%;
  margin-left: 20px;
  color: #d37789;
}

@media screen and (max-width: 479px) {
  .contact .c-tbl .form__memo {
    margin-left: 15px;
  }
}

@media screen and (max-width: 767px) {
  .contact .c-tbl input, .contact .c-tbl textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    font-size: 16px;
  }
}

.contact .contact__privacy {
  padding: 80px 0 56px 0;
  font-family: "Noto Sans", "Noto Sans CJK JP", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact .contact__privacy {
    padding: 40px 0 30px 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.contact .contact__privacy .privacy__link {
  display: inline-block;
  border-bottom: 1px solid #333333;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.contact .contact__privacy .privacy__link:hover {
  border-bottom: none;
}

.contact .contact__privacy .icon-new {
  width: 12px;
  vertical-align: middle;
  margin: 0 5px;
}

.contact .contact__privacy p:first-of-type {
  margin-bottom: 20px;
}

.contact .thanks__text {
  padding: 50px 0;
  font-family: "Noto Sans", "Noto Sans CJK JP", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  text-align: center;
}

.mw_wp_form_confirm .form__head {
  display: none;
}

.mw_wp_form_confirm .form__head .c-tbl__head .require {
  display: none;
}

@media screen and (max-width: 479px) {
  .mw_wp_form_confirm .form__inner .cta input {
    margin: 8px;
  }
}

.mw_wp_form_complete {
  padding: 180px;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_complete {
    padding: 100px 20px;
  }
}

/* Utility */
.align_l {
  text-align: left !important;
}

.align_r {
  text-align: right !important;
}

.align_c {
  text-align: center !important;
}

.valign_m {
  vertical-align: middle;
}

.valign_t {
  vertical-align: top;
}

.valign_b {
  vertical-align: bottom;
}

/*for modern browser*/
.clearfix::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

/*for IE 5.5-7*/
.clearfix {
  zoom: 1;
}

.clear_both {
  clear: both;
  height: 1px;
  font-size: 1px;
  text-align: center;
  line-height: 0;
}

.clear {
  clear: both;
}

/*

display用クラス

PC向け
.none
.block
.inline_block
.inline
.table
.table_cell

タブレット向け
.tablet_none
.tablet_block
.tablet_inline_block
.tablet_inline
.tablet_table
.tablet_table_cell

スマホ向け
.sp_none
.sp_block
.sp_inline_block
.sp_inline
.sp_table
.sp_table_cell

*/
.none {
  display: none !important;
}

.block {
  display: block !important;
}

.inline_block {
  display: inline-block  !important;
}

.inline {
  display: inline !important;
}

.table {
  display: table !important;
}

.table_cell {
  display: table-cell !important;
}

@media screen and (max-width: 1199px) {
  .liquid_none {
    display: none !important;
  }
}

@media screen and (max-width: 959px) {
  .tab_none {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp_l_none {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  .sp_none {
    display: none !important;
  }
}

@media screen and (max-width: 1199px) {
  .liquid_block {
    display: block !important;
  }
  .liquid_inline_block {
    display: inline-block !important;
  }
  .liquid_inline {
    display: inline !important;
  }
  .liquid_table {
    display: table !important;
  }
  .liquid_cell {
    display: table-cell !important;
  }
}

@media screen and (max-width: 959px) {
  .tab_block {
    display: block !important;
  }
  .tab_inline_block {
    display: inline-block !important;
  }
  .tab_inline {
    display: inline !important;
  }
  .tab_table {
    display: table !important;
  }
  .tab_cell {
    display: table-cell !important;
  }
}

@media screen and (max-width: 767px) {
  .sp_l_block {
    display: block !important;
  }
  .sp_l_inline_block {
    display: inline-block !important;
  }
  .sp_l_inline {
    display: inline !important;
  }
  .sp_l_table {
    display: table !important;
  }
  .sp_l_cell {
    display: table-cell !important;
  }
}

@media screen and (max-width: 479px) {
  .sp_block {
    display: block !important;
  }
  .sp_inline_block {
    display: inline-block !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .sp_table {
    display: table !important;
  }
  .sp_cell {
    display: table-cell !important;
  }
}

/*

margin and padding

5刻みで上下左右のマージンとパディングのクラスを定義
$start_value x 5の値から、$end_value x 5 までを設定

```class
.mb-5
.mt-5
.mr-5
.ml-5

.mb0
.mt0
.mr0
.ml0

.mb5
.mt5
.mr5
.ml5

.mb10
.mt10
.mr10
.ml10

.pb-5
.pt-5
.pr-5
.pl-5

.pb0
.pt0
.pr0
.pl0

.pb5
.pt5
.pr5
.pl5

.pb10
.pt10
.pr10
.pl10
```

レスポンシブ用に$breakpointsのキーを接頭辞にしたクラスも書き出します。
```class
.tablet_mb10
.sp_mb10
```

*/
.mb-50 {
  margin-bottom: -50px !important;
}

.mt-50 {
  margin-top: -50px !important;
}

.mr-50 {
  margin-right: -50px !important;
}

.ml-50 {
  margin-left: -50px !important;
}

.mb-45 {
  margin-bottom: -45px !important;
}

.mt-45 {
  margin-top: -45px !important;
}

.mr-45 {
  margin-right: -45px !important;
}

.ml-45 {
  margin-left: -45px !important;
}

.mb-40 {
  margin-bottom: -40px !important;
}

.mt-40 {
  margin-top: -40px !important;
}

.mr-40 {
  margin-right: -40px !important;
}

.ml-40 {
  margin-left: -40px !important;
}

.mb-35 {
  margin-bottom: -35px !important;
}

.mt-35 {
  margin-top: -35px !important;
}

.mr-35 {
  margin-right: -35px !important;
}

.ml-35 {
  margin-left: -35px !important;
}

.mb-30 {
  margin-bottom: -30px !important;
}

.mt-30 {
  margin-top: -30px !important;
}

.mr-30 {
  margin-right: -30px !important;
}

.ml-30 {
  margin-left: -30px !important;
}

.mb-25 {
  margin-bottom: -25px !important;
}

.mt-25 {
  margin-top: -25px !important;
}

.mr-25 {
  margin-right: -25px !important;
}

.ml-25 {
  margin-left: -25px !important;
}

.mb-20 {
  margin-bottom: -20px !important;
}

.mt-20 {
  margin-top: -20px !important;
}

.mr-20 {
  margin-right: -20px !important;
}

.ml-20 {
  margin-left: -20px !important;
}

.mb-15 {
  margin-bottom: -15px !important;
}

.mt-15 {
  margin-top: -15px !important;
}

.mr-15 {
  margin-right: -15px !important;
}

.ml-15 {
  margin-left: -15px !important;
}

.mb-10 {
  margin-bottom: -10px !important;
}

.mt-10 {
  margin-top: -10px !important;
}

.mr-10 {
  margin-right: -10px !important;
}

.ml-10 {
  margin-left: -10px !important;
}

.mb-5 {
  margin-bottom: -5px !important;
}

.mt-5 {
  margin-top: -5px !important;
}

.mr-5 {
  margin-right: -5px !important;
}

.ml-5 {
  margin-left: -5px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

@media screen and (max-width: 1199px) {
  .liquid_mb-50 {
    margin-bottom: -50px !important;
  }
  .liquid_mt-50 {
    margin-top: -50px !important;
  }
  .liquid_mr-50 {
    margin-right: -50px !important;
  }
  .liquid_ml-50 {
    margin-left: -50px !important;
  }
  .liquid_mb-45 {
    margin-bottom: -45px !important;
  }
  .liquid_mt-45 {
    margin-top: -45px !important;
  }
  .liquid_mr-45 {
    margin-right: -45px !important;
  }
  .liquid_ml-45 {
    margin-left: -45px !important;
  }
  .liquid_mb-40 {
    margin-bottom: -40px !important;
  }
  .liquid_mt-40 {
    margin-top: -40px !important;
  }
  .liquid_mr-40 {
    margin-right: -40px !important;
  }
  .liquid_ml-40 {
    margin-left: -40px !important;
  }
  .liquid_mb-35 {
    margin-bottom: -35px !important;
  }
  .liquid_mt-35 {
    margin-top: -35px !important;
  }
  .liquid_mr-35 {
    margin-right: -35px !important;
  }
  .liquid_ml-35 {
    margin-left: -35px !important;
  }
  .liquid_mb-30 {
    margin-bottom: -30px !important;
  }
  .liquid_mt-30 {
    margin-top: -30px !important;
  }
  .liquid_mr-30 {
    margin-right: -30px !important;
  }
  .liquid_ml-30 {
    margin-left: -30px !important;
  }
  .liquid_mb-25 {
    margin-bottom: -25px !important;
  }
  .liquid_mt-25 {
    margin-top: -25px !important;
  }
  .liquid_mr-25 {
    margin-right: -25px !important;
  }
  .liquid_ml-25 {
    margin-left: -25px !important;
  }
  .liquid_mb-20 {
    margin-bottom: -20px !important;
  }
  .liquid_mt-20 {
    margin-top: -20px !important;
  }
  .liquid_mr-20 {
    margin-right: -20px !important;
  }
  .liquid_ml-20 {
    margin-left: -20px !important;
  }
  .liquid_mb-15 {
    margin-bottom: -15px !important;
  }
  .liquid_mt-15 {
    margin-top: -15px !important;
  }
  .liquid_mr-15 {
    margin-right: -15px !important;
  }
  .liquid_ml-15 {
    margin-left: -15px !important;
  }
  .liquid_mb-10 {
    margin-bottom: -10px !important;
  }
  .liquid_mt-10 {
    margin-top: -10px !important;
  }
  .liquid_mr-10 {
    margin-right: -10px !important;
  }
  .liquid_ml-10 {
    margin-left: -10px !important;
  }
  .liquid_mb-5 {
    margin-bottom: -5px !important;
  }
  .liquid_mt-5 {
    margin-top: -5px !important;
  }
  .liquid_mr-5 {
    margin-right: -5px !important;
  }
  .liquid_ml-5 {
    margin-left: -5px !important;
  }
  .liquid_mb0 {
    margin-bottom: 0px !important;
  }
  .liquid_mt0 {
    margin-top: 0px !important;
  }
  .liquid_mr0 {
    margin-right: 0px !important;
  }
  .liquid_ml0 {
    margin-left: 0px !important;
  }
  .liquid_mb5 {
    margin-bottom: 5px !important;
  }
  .liquid_mt5 {
    margin-top: 5px !important;
  }
  .liquid_mr5 {
    margin-right: 5px !important;
  }
  .liquid_ml5 {
    margin-left: 5px !important;
  }
  .liquid_mb10 {
    margin-bottom: 10px !important;
  }
  .liquid_mt10 {
    margin-top: 10px !important;
  }
  .liquid_mr10 {
    margin-right: 10px !important;
  }
  .liquid_ml10 {
    margin-left: 10px !important;
  }
  .liquid_mb15 {
    margin-bottom: 15px !important;
  }
  .liquid_mt15 {
    margin-top: 15px !important;
  }
  .liquid_mr15 {
    margin-right: 15px !important;
  }
  .liquid_ml15 {
    margin-left: 15px !important;
  }
  .liquid_mb20 {
    margin-bottom: 20px !important;
  }
  .liquid_mt20 {
    margin-top: 20px !important;
  }
  .liquid_mr20 {
    margin-right: 20px !important;
  }
  .liquid_ml20 {
    margin-left: 20px !important;
  }
  .liquid_mb25 {
    margin-bottom: 25px !important;
  }
  .liquid_mt25 {
    margin-top: 25px !important;
  }
  .liquid_mr25 {
    margin-right: 25px !important;
  }
  .liquid_ml25 {
    margin-left: 25px !important;
  }
  .liquid_mb30 {
    margin-bottom: 30px !important;
  }
  .liquid_mt30 {
    margin-top: 30px !important;
  }
  .liquid_mr30 {
    margin-right: 30px !important;
  }
  .liquid_ml30 {
    margin-left: 30px !important;
  }
  .liquid_mb35 {
    margin-bottom: 35px !important;
  }
  .liquid_mt35 {
    margin-top: 35px !important;
  }
  .liquid_mr35 {
    margin-right: 35px !important;
  }
  .liquid_ml35 {
    margin-left: 35px !important;
  }
  .liquid_mb40 {
    margin-bottom: 40px !important;
  }
  .liquid_mt40 {
    margin-top: 40px !important;
  }
  .liquid_mr40 {
    margin-right: 40px !important;
  }
  .liquid_ml40 {
    margin-left: 40px !important;
  }
  .liquid_mb45 {
    margin-bottom: 45px !important;
  }
  .liquid_mt45 {
    margin-top: 45px !important;
  }
  .liquid_mr45 {
    margin-right: 45px !important;
  }
  .liquid_ml45 {
    margin-left: 45px !important;
  }
  .liquid_mb50 {
    margin-bottom: 50px !important;
  }
  .liquid_mt50 {
    margin-top: 50px !important;
  }
  .liquid_mr50 {
    margin-right: 50px !important;
  }
  .liquid_ml50 {
    margin-left: 50px !important;
  }
  .liquid_mb55 {
    margin-bottom: 55px !important;
  }
  .liquid_mt55 {
    margin-top: 55px !important;
  }
  .liquid_mr55 {
    margin-right: 55px !important;
  }
  .liquid_ml55 {
    margin-left: 55px !important;
  }
  .liquid_mb60 {
    margin-bottom: 60px !important;
  }
  .liquid_mt60 {
    margin-top: 60px !important;
  }
  .liquid_mr60 {
    margin-right: 60px !important;
  }
  .liquid_ml60 {
    margin-left: 60px !important;
  }
  .liquid_mb65 {
    margin-bottom: 65px !important;
  }
  .liquid_mt65 {
    margin-top: 65px !important;
  }
  .liquid_mr65 {
    margin-right: 65px !important;
  }
  .liquid_ml65 {
    margin-left: 65px !important;
  }
  .liquid_mb70 {
    margin-bottom: 70px !important;
  }
  .liquid_mt70 {
    margin-top: 70px !important;
  }
  .liquid_mr70 {
    margin-right: 70px !important;
  }
  .liquid_ml70 {
    margin-left: 70px !important;
  }
  .liquid_mb75 {
    margin-bottom: 75px !important;
  }
  .liquid_mt75 {
    margin-top: 75px !important;
  }
  .liquid_mr75 {
    margin-right: 75px !important;
  }
  .liquid_ml75 {
    margin-left: 75px !important;
  }
  .liquid_mb80 {
    margin-bottom: 80px !important;
  }
  .liquid_mt80 {
    margin-top: 80px !important;
  }
  .liquid_mr80 {
    margin-right: 80px !important;
  }
  .liquid_ml80 {
    margin-left: 80px !important;
  }
}

@media screen and (max-width: 959px) {
  .tab_mb-50 {
    margin-bottom: -50px !important;
  }
  .tab_mt-50 {
    margin-top: -50px !important;
  }
  .tab_mr-50 {
    margin-right: -50px !important;
  }
  .tab_ml-50 {
    margin-left: -50px !important;
  }
  .tab_mb-45 {
    margin-bottom: -45px !important;
  }
  .tab_mt-45 {
    margin-top: -45px !important;
  }
  .tab_mr-45 {
    margin-right: -45px !important;
  }
  .tab_ml-45 {
    margin-left: -45px !important;
  }
  .tab_mb-40 {
    margin-bottom: -40px !important;
  }
  .tab_mt-40 {
    margin-top: -40px !important;
  }
  .tab_mr-40 {
    margin-right: -40px !important;
  }
  .tab_ml-40 {
    margin-left: -40px !important;
  }
  .tab_mb-35 {
    margin-bottom: -35px !important;
  }
  .tab_mt-35 {
    margin-top: -35px !important;
  }
  .tab_mr-35 {
    margin-right: -35px !important;
  }
  .tab_ml-35 {
    margin-left: -35px !important;
  }
  .tab_mb-30 {
    margin-bottom: -30px !important;
  }
  .tab_mt-30 {
    margin-top: -30px !important;
  }
  .tab_mr-30 {
    margin-right: -30px !important;
  }
  .tab_ml-30 {
    margin-left: -30px !important;
  }
  .tab_mb-25 {
    margin-bottom: -25px !important;
  }
  .tab_mt-25 {
    margin-top: -25px !important;
  }
  .tab_mr-25 {
    margin-right: -25px !important;
  }
  .tab_ml-25 {
    margin-left: -25px !important;
  }
  .tab_mb-20 {
    margin-bottom: -20px !important;
  }
  .tab_mt-20 {
    margin-top: -20px !important;
  }
  .tab_mr-20 {
    margin-right: -20px !important;
  }
  .tab_ml-20 {
    margin-left: -20px !important;
  }
  .tab_mb-15 {
    margin-bottom: -15px !important;
  }
  .tab_mt-15 {
    margin-top: -15px !important;
  }
  .tab_mr-15 {
    margin-right: -15px !important;
  }
  .tab_ml-15 {
    margin-left: -15px !important;
  }
  .tab_mb-10 {
    margin-bottom: -10px !important;
  }
  .tab_mt-10 {
    margin-top: -10px !important;
  }
  .tab_mr-10 {
    margin-right: -10px !important;
  }
  .tab_ml-10 {
    margin-left: -10px !important;
  }
  .tab_mb-5 {
    margin-bottom: -5px !important;
  }
  .tab_mt-5 {
    margin-top: -5px !important;
  }
  .tab_mr-5 {
    margin-right: -5px !important;
  }
  .tab_ml-5 {
    margin-left: -5px !important;
  }
  .tab_mb0 {
    margin-bottom: 0px !important;
  }
  .tab_mt0 {
    margin-top: 0px !important;
  }
  .tab_mr0 {
    margin-right: 0px !important;
  }
  .tab_ml0 {
    margin-left: 0px !important;
  }
  .tab_mb5 {
    margin-bottom: 5px !important;
  }
  .tab_mt5 {
    margin-top: 5px !important;
  }
  .tab_mr5 {
    margin-right: 5px !important;
  }
  .tab_ml5 {
    margin-left: 5px !important;
  }
  .tab_mb10 {
    margin-bottom: 10px !important;
  }
  .tab_mt10 {
    margin-top: 10px !important;
  }
  .tab_mr10 {
    margin-right: 10px !important;
  }
  .tab_ml10 {
    margin-left: 10px !important;
  }
  .tab_mb15 {
    margin-bottom: 15px !important;
  }
  .tab_mt15 {
    margin-top: 15px !important;
  }
  .tab_mr15 {
    margin-right: 15px !important;
  }
  .tab_ml15 {
    margin-left: 15px !important;
  }
  .tab_mb20 {
    margin-bottom: 20px !important;
  }
  .tab_mt20 {
    margin-top: 20px !important;
  }
  .tab_mr20 {
    margin-right: 20px !important;
  }
  .tab_ml20 {
    margin-left: 20px !important;
  }
  .tab_mb25 {
    margin-bottom: 25px !important;
  }
  .tab_mt25 {
    margin-top: 25px !important;
  }
  .tab_mr25 {
    margin-right: 25px !important;
  }
  .tab_ml25 {
    margin-left: 25px !important;
  }
  .tab_mb30 {
    margin-bottom: 30px !important;
  }
  .tab_mt30 {
    margin-top: 30px !important;
  }
  .tab_mr30 {
    margin-right: 30px !important;
  }
  .tab_ml30 {
    margin-left: 30px !important;
  }
  .tab_mb35 {
    margin-bottom: 35px !important;
  }
  .tab_mt35 {
    margin-top: 35px !important;
  }
  .tab_mr35 {
    margin-right: 35px !important;
  }
  .tab_ml35 {
    margin-left: 35px !important;
  }
  .tab_mb40 {
    margin-bottom: 40px !important;
  }
  .tab_mt40 {
    margin-top: 40px !important;
  }
  .tab_mr40 {
    margin-right: 40px !important;
  }
  .tab_ml40 {
    margin-left: 40px !important;
  }
  .tab_mb45 {
    margin-bottom: 45px !important;
  }
  .tab_mt45 {
    margin-top: 45px !important;
  }
  .tab_mr45 {
    margin-right: 45px !important;
  }
  .tab_ml45 {
    margin-left: 45px !important;
  }
  .tab_mb50 {
    margin-bottom: 50px !important;
  }
  .tab_mt50 {
    margin-top: 50px !important;
  }
  .tab_mr50 {
    margin-right: 50px !important;
  }
  .tab_ml50 {
    margin-left: 50px !important;
  }
  .tab_mb55 {
    margin-bottom: 55px !important;
  }
  .tab_mt55 {
    margin-top: 55px !important;
  }
  .tab_mr55 {
    margin-right: 55px !important;
  }
  .tab_ml55 {
    margin-left: 55px !important;
  }
  .tab_mb60 {
    margin-bottom: 60px !important;
  }
  .tab_mt60 {
    margin-top: 60px !important;
  }
  .tab_mr60 {
    margin-right: 60px !important;
  }
  .tab_ml60 {
    margin-left: 60px !important;
  }
  .tab_mb65 {
    margin-bottom: 65px !important;
  }
  .tab_mt65 {
    margin-top: 65px !important;
  }
  .tab_mr65 {
    margin-right: 65px !important;
  }
  .tab_ml65 {
    margin-left: 65px !important;
  }
  .tab_mb70 {
    margin-bottom: 70px !important;
  }
  .tab_mt70 {
    margin-top: 70px !important;
  }
  .tab_mr70 {
    margin-right: 70px !important;
  }
  .tab_ml70 {
    margin-left: 70px !important;
  }
  .tab_mb75 {
    margin-bottom: 75px !important;
  }
  .tab_mt75 {
    margin-top: 75px !important;
  }
  .tab_mr75 {
    margin-right: 75px !important;
  }
  .tab_ml75 {
    margin-left: 75px !important;
  }
  .tab_mb80 {
    margin-bottom: 80px !important;
  }
  .tab_mt80 {
    margin-top: 80px !important;
  }
  .tab_mr80 {
    margin-right: 80px !important;
  }
  .tab_ml80 {
    margin-left: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .sp_l_mb-50 {
    margin-bottom: -50px !important;
  }
  .sp_l_mt-50 {
    margin-top: -50px !important;
  }
  .sp_l_mr-50 {
    margin-right: -50px !important;
  }
  .sp_l_ml-50 {
    margin-left: -50px !important;
  }
  .sp_l_mb-45 {
    margin-bottom: -45px !important;
  }
  .sp_l_mt-45 {
    margin-top: -45px !important;
  }
  .sp_l_mr-45 {
    margin-right: -45px !important;
  }
  .sp_l_ml-45 {
    margin-left: -45px !important;
  }
  .sp_l_mb-40 {
    margin-bottom: -40px !important;
  }
  .sp_l_mt-40 {
    margin-top: -40px !important;
  }
  .sp_l_mr-40 {
    margin-right: -40px !important;
  }
  .sp_l_ml-40 {
    margin-left: -40px !important;
  }
  .sp_l_mb-35 {
    margin-bottom: -35px !important;
  }
  .sp_l_mt-35 {
    margin-top: -35px !important;
  }
  .sp_l_mr-35 {
    margin-right: -35px !important;
  }
  .sp_l_ml-35 {
    margin-left: -35px !important;
  }
  .sp_l_mb-30 {
    margin-bottom: -30px !important;
  }
  .sp_l_mt-30 {
    margin-top: -30px !important;
  }
  .sp_l_mr-30 {
    margin-right: -30px !important;
  }
  .sp_l_ml-30 {
    margin-left: -30px !important;
  }
  .sp_l_mb-25 {
    margin-bottom: -25px !important;
  }
  .sp_l_mt-25 {
    margin-top: -25px !important;
  }
  .sp_l_mr-25 {
    margin-right: -25px !important;
  }
  .sp_l_ml-25 {
    margin-left: -25px !important;
  }
  .sp_l_mb-20 {
    margin-bottom: -20px !important;
  }
  .sp_l_mt-20 {
    margin-top: -20px !important;
  }
  .sp_l_mr-20 {
    margin-right: -20px !important;
  }
  .sp_l_ml-20 {
    margin-left: -20px !important;
  }
  .sp_l_mb-15 {
    margin-bottom: -15px !important;
  }
  .sp_l_mt-15 {
    margin-top: -15px !important;
  }
  .sp_l_mr-15 {
    margin-right: -15px !important;
  }
  .sp_l_ml-15 {
    margin-left: -15px !important;
  }
  .sp_l_mb-10 {
    margin-bottom: -10px !important;
  }
  .sp_l_mt-10 {
    margin-top: -10px !important;
  }
  .sp_l_mr-10 {
    margin-right: -10px !important;
  }
  .sp_l_ml-10 {
    margin-left: -10px !important;
  }
  .sp_l_mb-5 {
    margin-bottom: -5px !important;
  }
  .sp_l_mt-5 {
    margin-top: -5px !important;
  }
  .sp_l_mr-5 {
    margin-right: -5px !important;
  }
  .sp_l_ml-5 {
    margin-left: -5px !important;
  }
  .sp_l_mb0 {
    margin-bottom: 0px !important;
  }
  .sp_l_mt0 {
    margin-top: 0px !important;
  }
  .sp_l_mr0 {
    margin-right: 0px !important;
  }
  .sp_l_ml0 {
    margin-left: 0px !important;
  }
  .sp_l_mb5 {
    margin-bottom: 5px !important;
  }
  .sp_l_mt5 {
    margin-top: 5px !important;
  }
  .sp_l_mr5 {
    margin-right: 5px !important;
  }
  .sp_l_ml5 {
    margin-left: 5px !important;
  }
  .sp_l_mb10 {
    margin-bottom: 10px !important;
  }
  .sp_l_mt10 {
    margin-top: 10px !important;
  }
  .sp_l_mr10 {
    margin-right: 10px !important;
  }
  .sp_l_ml10 {
    margin-left: 10px !important;
  }
  .sp_l_mb15 {
    margin-bottom: 15px !important;
  }
  .sp_l_mt15 {
    margin-top: 15px !important;
  }
  .sp_l_mr15 {
    margin-right: 15px !important;
  }
  .sp_l_ml15 {
    margin-left: 15px !important;
  }
  .sp_l_mb20 {
    margin-bottom: 20px !important;
  }
  .sp_l_mt20 {
    margin-top: 20px !important;
  }
  .sp_l_mr20 {
    margin-right: 20px !important;
  }
  .sp_l_ml20 {
    margin-left: 20px !important;
  }
  .sp_l_mb25 {
    margin-bottom: 25px !important;
  }
  .sp_l_mt25 {
    margin-top: 25px !important;
  }
  .sp_l_mr25 {
    margin-right: 25px !important;
  }
  .sp_l_ml25 {
    margin-left: 25px !important;
  }
  .sp_l_mb30 {
    margin-bottom: 30px !important;
  }
  .sp_l_mt30 {
    margin-top: 30px !important;
  }
  .sp_l_mr30 {
    margin-right: 30px !important;
  }
  .sp_l_ml30 {
    margin-left: 30px !important;
  }
  .sp_l_mb35 {
    margin-bottom: 35px !important;
  }
  .sp_l_mt35 {
    margin-top: 35px !important;
  }
  .sp_l_mr35 {
    margin-right: 35px !important;
  }
  .sp_l_ml35 {
    margin-left: 35px !important;
  }
  .sp_l_mb40 {
    margin-bottom: 40px !important;
  }
  .sp_l_mt40 {
    margin-top: 40px !important;
  }
  .sp_l_mr40 {
    margin-right: 40px !important;
  }
  .sp_l_ml40 {
    margin-left: 40px !important;
  }
  .sp_l_mb45 {
    margin-bottom: 45px !important;
  }
  .sp_l_mt45 {
    margin-top: 45px !important;
  }
  .sp_l_mr45 {
    margin-right: 45px !important;
  }
  .sp_l_ml45 {
    margin-left: 45px !important;
  }
  .sp_l_mb50 {
    margin-bottom: 50px !important;
  }
  .sp_l_mt50 {
    margin-top: 50px !important;
  }
  .sp_l_mr50 {
    margin-right: 50px !important;
  }
  .sp_l_ml50 {
    margin-left: 50px !important;
  }
  .sp_l_mb55 {
    margin-bottom: 55px !important;
  }
  .sp_l_mt55 {
    margin-top: 55px !important;
  }
  .sp_l_mr55 {
    margin-right: 55px !important;
  }
  .sp_l_ml55 {
    margin-left: 55px !important;
  }
  .sp_l_mb60 {
    margin-bottom: 60px !important;
  }
  .sp_l_mt60 {
    margin-top: 60px !important;
  }
  .sp_l_mr60 {
    margin-right: 60px !important;
  }
  .sp_l_ml60 {
    margin-left: 60px !important;
  }
  .sp_l_mb65 {
    margin-bottom: 65px !important;
  }
  .sp_l_mt65 {
    margin-top: 65px !important;
  }
  .sp_l_mr65 {
    margin-right: 65px !important;
  }
  .sp_l_ml65 {
    margin-left: 65px !important;
  }
  .sp_l_mb70 {
    margin-bottom: 70px !important;
  }
  .sp_l_mt70 {
    margin-top: 70px !important;
  }
  .sp_l_mr70 {
    margin-right: 70px !important;
  }
  .sp_l_ml70 {
    margin-left: 70px !important;
  }
  .sp_l_mb75 {
    margin-bottom: 75px !important;
  }
  .sp_l_mt75 {
    margin-top: 75px !important;
  }
  .sp_l_mr75 {
    margin-right: 75px !important;
  }
  .sp_l_ml75 {
    margin-left: 75px !important;
  }
  .sp_l_mb80 {
    margin-bottom: 80px !important;
  }
  .sp_l_mt80 {
    margin-top: 80px !important;
  }
  .sp_l_mr80 {
    margin-right: 80px !important;
  }
  .sp_l_ml80 {
    margin-left: 80px !important;
  }
}

@media screen and (max-width: 479px) {
  .sp_mb-50 {
    margin-bottom: -50px !important;
  }
  .sp_mt-50 {
    margin-top: -50px !important;
  }
  .sp_mr-50 {
    margin-right: -50px !important;
  }
  .sp_ml-50 {
    margin-left: -50px !important;
  }
  .sp_mb-45 {
    margin-bottom: -45px !important;
  }
  .sp_mt-45 {
    margin-top: -45px !important;
  }
  .sp_mr-45 {
    margin-right: -45px !important;
  }
  .sp_ml-45 {
    margin-left: -45px !important;
  }
  .sp_mb-40 {
    margin-bottom: -40px !important;
  }
  .sp_mt-40 {
    margin-top: -40px !important;
  }
  .sp_mr-40 {
    margin-right: -40px !important;
  }
  .sp_ml-40 {
    margin-left: -40px !important;
  }
  .sp_mb-35 {
    margin-bottom: -35px !important;
  }
  .sp_mt-35 {
    margin-top: -35px !important;
  }
  .sp_mr-35 {
    margin-right: -35px !important;
  }
  .sp_ml-35 {
    margin-left: -35px !important;
  }
  .sp_mb-30 {
    margin-bottom: -30px !important;
  }
  .sp_mt-30 {
    margin-top: -30px !important;
  }
  .sp_mr-30 {
    margin-right: -30px !important;
  }
  .sp_ml-30 {
    margin-left: -30px !important;
  }
  .sp_mb-25 {
    margin-bottom: -25px !important;
  }
  .sp_mt-25 {
    margin-top: -25px !important;
  }
  .sp_mr-25 {
    margin-right: -25px !important;
  }
  .sp_ml-25 {
    margin-left: -25px !important;
  }
  .sp_mb-20 {
    margin-bottom: -20px !important;
  }
  .sp_mt-20 {
    margin-top: -20px !important;
  }
  .sp_mr-20 {
    margin-right: -20px !important;
  }
  .sp_ml-20 {
    margin-left: -20px !important;
  }
  .sp_mb-15 {
    margin-bottom: -15px !important;
  }
  .sp_mt-15 {
    margin-top: -15px !important;
  }
  .sp_mr-15 {
    margin-right: -15px !important;
  }
  .sp_ml-15 {
    margin-left: -15px !important;
  }
  .sp_mb-10 {
    margin-bottom: -10px !important;
  }
  .sp_mt-10 {
    margin-top: -10px !important;
  }
  .sp_mr-10 {
    margin-right: -10px !important;
  }
  .sp_ml-10 {
    margin-left: -10px !important;
  }
  .sp_mb-5 {
    margin-bottom: -5px !important;
  }
  .sp_mt-5 {
    margin-top: -5px !important;
  }
  .sp_mr-5 {
    margin-right: -5px !important;
  }
  .sp_ml-5 {
    margin-left: -5px !important;
  }
  .sp_mb0 {
    margin-bottom: 0px !important;
  }
  .sp_mt0 {
    margin-top: 0px !important;
  }
  .sp_mr0 {
    margin-right: 0px !important;
  }
  .sp_ml0 {
    margin-left: 0px !important;
  }
  .sp_mb5 {
    margin-bottom: 5px !important;
  }
  .sp_mt5 {
    margin-top: 5px !important;
  }
  .sp_mr5 {
    margin-right: 5px !important;
  }
  .sp_ml5 {
    margin-left: 5px !important;
  }
  .sp_mb10 {
    margin-bottom: 10px !important;
  }
  .sp_mt10 {
    margin-top: 10px !important;
  }
  .sp_mr10 {
    margin-right: 10px !important;
  }
  .sp_ml10 {
    margin-left: 10px !important;
  }
  .sp_mb15 {
    margin-bottom: 15px !important;
  }
  .sp_mt15 {
    margin-top: 15px !important;
  }
  .sp_mr15 {
    margin-right: 15px !important;
  }
  .sp_ml15 {
    margin-left: 15px !important;
  }
  .sp_mb20 {
    margin-bottom: 20px !important;
  }
  .sp_mt20 {
    margin-top: 20px !important;
  }
  .sp_mr20 {
    margin-right: 20px !important;
  }
  .sp_ml20 {
    margin-left: 20px !important;
  }
  .sp_mb25 {
    margin-bottom: 25px !important;
  }
  .sp_mt25 {
    margin-top: 25px !important;
  }
  .sp_mr25 {
    margin-right: 25px !important;
  }
  .sp_ml25 {
    margin-left: 25px !important;
  }
  .sp_mb30 {
    margin-bottom: 30px !important;
  }
  .sp_mt30 {
    margin-top: 30px !important;
  }
  .sp_mr30 {
    margin-right: 30px !important;
  }
  .sp_ml30 {
    margin-left: 30px !important;
  }
  .sp_mb35 {
    margin-bottom: 35px !important;
  }
  .sp_mt35 {
    margin-top: 35px !important;
  }
  .sp_mr35 {
    margin-right: 35px !important;
  }
  .sp_ml35 {
    margin-left: 35px !important;
  }
  .sp_mb40 {
    margin-bottom: 40px !important;
  }
  .sp_mt40 {
    margin-top: 40px !important;
  }
  .sp_mr40 {
    margin-right: 40px !important;
  }
  .sp_ml40 {
    margin-left: 40px !important;
  }
  .sp_mb45 {
    margin-bottom: 45px !important;
  }
  .sp_mt45 {
    margin-top: 45px !important;
  }
  .sp_mr45 {
    margin-right: 45px !important;
  }
  .sp_ml45 {
    margin-left: 45px !important;
  }
  .sp_mb50 {
    margin-bottom: 50px !important;
  }
  .sp_mt50 {
    margin-top: 50px !important;
  }
  .sp_mr50 {
    margin-right: 50px !important;
  }
  .sp_ml50 {
    margin-left: 50px !important;
  }
  .sp_mb55 {
    margin-bottom: 55px !important;
  }
  .sp_mt55 {
    margin-top: 55px !important;
  }
  .sp_mr55 {
    margin-right: 55px !important;
  }
  .sp_ml55 {
    margin-left: 55px !important;
  }
  .sp_mb60 {
    margin-bottom: 60px !important;
  }
  .sp_mt60 {
    margin-top: 60px !important;
  }
  .sp_mr60 {
    margin-right: 60px !important;
  }
  .sp_ml60 {
    margin-left: 60px !important;
  }
  .sp_mb65 {
    margin-bottom: 65px !important;
  }
  .sp_mt65 {
    margin-top: 65px !important;
  }
  .sp_mr65 {
    margin-right: 65px !important;
  }
  .sp_ml65 {
    margin-left: 65px !important;
  }
  .sp_mb70 {
    margin-bottom: 70px !important;
  }
  .sp_mt70 {
    margin-top: 70px !important;
  }
  .sp_mr70 {
    margin-right: 70px !important;
  }
  .sp_ml70 {
    margin-left: 70px !important;
  }
  .sp_mb75 {
    margin-bottom: 75px !important;
  }
  .sp_mt75 {
    margin-top: 75px !important;
  }
  .sp_mr75 {
    margin-right: 75px !important;
  }
  .sp_ml75 {
    margin-left: 75px !important;
  }
  .sp_mb80 {
    margin-bottom: 80px !important;
  }
  .sp_mt80 {
    margin-top: 80px !important;
  }
  .sp_mr80 {
    margin-right: 80px !important;
  }
  .sp_ml80 {
    margin-left: 80px !important;
  }
}

.pb0 {
  padding-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

@media screen and (max-width: 1199px) {
  .liquid_pb0 {
    padding-bottom: 0px !important;
  }
  .liquid_pt0 {
    padding-top: 0px !important;
  }
  .liquid_pr0 {
    padding-right: 0px !important;
  }
  .liquid_pl0 {
    padding-left: 0px !important;
  }
  .liquid_pb5 {
    padding-bottom: 5px !important;
  }
  .liquid_pt5 {
    padding-top: 5px !important;
  }
  .liquid_pr5 {
    padding-right: 5px !important;
  }
  .liquid_pl5 {
    padding-left: 5px !important;
  }
  .liquid_pb10 {
    padding-bottom: 10px !important;
  }
  .liquid_pt10 {
    padding-top: 10px !important;
  }
  .liquid_pr10 {
    padding-right: 10px !important;
  }
  .liquid_pl10 {
    padding-left: 10px !important;
  }
  .liquid_pb15 {
    padding-bottom: 15px !important;
  }
  .liquid_pt15 {
    padding-top: 15px !important;
  }
  .liquid_pr15 {
    padding-right: 15px !important;
  }
  .liquid_pl15 {
    padding-left: 15px !important;
  }
  .liquid_pb20 {
    padding-bottom: 20px !important;
  }
  .liquid_pt20 {
    padding-top: 20px !important;
  }
  .liquid_pr20 {
    padding-right: 20px !important;
  }
  .liquid_pl20 {
    padding-left: 20px !important;
  }
  .liquid_pb25 {
    padding-bottom: 25px !important;
  }
  .liquid_pt25 {
    padding-top: 25px !important;
  }
  .liquid_pr25 {
    padding-right: 25px !important;
  }
  .liquid_pl25 {
    padding-left: 25px !important;
  }
  .liquid_pb30 {
    padding-bottom: 30px !important;
  }
  .liquid_pt30 {
    padding-top: 30px !important;
  }
  .liquid_pr30 {
    padding-right: 30px !important;
  }
  .liquid_pl30 {
    padding-left: 30px !important;
  }
  .liquid_pb35 {
    padding-bottom: 35px !important;
  }
  .liquid_pt35 {
    padding-top: 35px !important;
  }
  .liquid_pr35 {
    padding-right: 35px !important;
  }
  .liquid_pl35 {
    padding-left: 35px !important;
  }
  .liquid_pb40 {
    padding-bottom: 40px !important;
  }
  .liquid_pt40 {
    padding-top: 40px !important;
  }
  .liquid_pr40 {
    padding-right: 40px !important;
  }
  .liquid_pl40 {
    padding-left: 40px !important;
  }
  .liquid_pb45 {
    padding-bottom: 45px !important;
  }
  .liquid_pt45 {
    padding-top: 45px !important;
  }
  .liquid_pr45 {
    padding-right: 45px !important;
  }
  .liquid_pl45 {
    padding-left: 45px !important;
  }
  .liquid_pb50 {
    padding-bottom: 50px !important;
  }
  .liquid_pt50 {
    padding-top: 50px !important;
  }
  .liquid_pr50 {
    padding-right: 50px !important;
  }
  .liquid_pl50 {
    padding-left: 50px !important;
  }
  .liquid_pb55 {
    padding-bottom: 55px !important;
  }
  .liquid_pt55 {
    padding-top: 55px !important;
  }
  .liquid_pr55 {
    padding-right: 55px !important;
  }
  .liquid_pl55 {
    padding-left: 55px !important;
  }
  .liquid_pb60 {
    padding-bottom: 60px !important;
  }
  .liquid_pt60 {
    padding-top: 60px !important;
  }
  .liquid_pr60 {
    padding-right: 60px !important;
  }
  .liquid_pl60 {
    padding-left: 60px !important;
  }
  .liquid_pb65 {
    padding-bottom: 65px !important;
  }
  .liquid_pt65 {
    padding-top: 65px !important;
  }
  .liquid_pr65 {
    padding-right: 65px !important;
  }
  .liquid_pl65 {
    padding-left: 65px !important;
  }
  .liquid_pb70 {
    padding-bottom: 70px !important;
  }
  .liquid_pt70 {
    padding-top: 70px !important;
  }
  .liquid_pr70 {
    padding-right: 70px !important;
  }
  .liquid_pl70 {
    padding-left: 70px !important;
  }
  .liquid_pb75 {
    padding-bottom: 75px !important;
  }
  .liquid_pt75 {
    padding-top: 75px !important;
  }
  .liquid_pr75 {
    padding-right: 75px !important;
  }
  .liquid_pl75 {
    padding-left: 75px !important;
  }
  .liquid_pb80 {
    padding-bottom: 80px !important;
  }
  .liquid_pt80 {
    padding-top: 80px !important;
  }
  .liquid_pr80 {
    padding-right: 80px !important;
  }
  .liquid_pl80 {
    padding-left: 80px !important;
  }
}

@media screen and (max-width: 959px) {
  .tab_pb0 {
    padding-bottom: 0px !important;
  }
  .tab_pt0 {
    padding-top: 0px !important;
  }
  .tab_pr0 {
    padding-right: 0px !important;
  }
  .tab_pl0 {
    padding-left: 0px !important;
  }
  .tab_pb5 {
    padding-bottom: 5px !important;
  }
  .tab_pt5 {
    padding-top: 5px !important;
  }
  .tab_pr5 {
    padding-right: 5px !important;
  }
  .tab_pl5 {
    padding-left: 5px !important;
  }
  .tab_pb10 {
    padding-bottom: 10px !important;
  }
  .tab_pt10 {
    padding-top: 10px !important;
  }
  .tab_pr10 {
    padding-right: 10px !important;
  }
  .tab_pl10 {
    padding-left: 10px !important;
  }
  .tab_pb15 {
    padding-bottom: 15px !important;
  }
  .tab_pt15 {
    padding-top: 15px !important;
  }
  .tab_pr15 {
    padding-right: 15px !important;
  }
  .tab_pl15 {
    padding-left: 15px !important;
  }
  .tab_pb20 {
    padding-bottom: 20px !important;
  }
  .tab_pt20 {
    padding-top: 20px !important;
  }
  .tab_pr20 {
    padding-right: 20px !important;
  }
  .tab_pl20 {
    padding-left: 20px !important;
  }
  .tab_pb25 {
    padding-bottom: 25px !important;
  }
  .tab_pt25 {
    padding-top: 25px !important;
  }
  .tab_pr25 {
    padding-right: 25px !important;
  }
  .tab_pl25 {
    padding-left: 25px !important;
  }
  .tab_pb30 {
    padding-bottom: 30px !important;
  }
  .tab_pt30 {
    padding-top: 30px !important;
  }
  .tab_pr30 {
    padding-right: 30px !important;
  }
  .tab_pl30 {
    padding-left: 30px !important;
  }
  .tab_pb35 {
    padding-bottom: 35px !important;
  }
  .tab_pt35 {
    padding-top: 35px !important;
  }
  .tab_pr35 {
    padding-right: 35px !important;
  }
  .tab_pl35 {
    padding-left: 35px !important;
  }
  .tab_pb40 {
    padding-bottom: 40px !important;
  }
  .tab_pt40 {
    padding-top: 40px !important;
  }
  .tab_pr40 {
    padding-right: 40px !important;
  }
  .tab_pl40 {
    padding-left: 40px !important;
  }
  .tab_pb45 {
    padding-bottom: 45px !important;
  }
  .tab_pt45 {
    padding-top: 45px !important;
  }
  .tab_pr45 {
    padding-right: 45px !important;
  }
  .tab_pl45 {
    padding-left: 45px !important;
  }
  .tab_pb50 {
    padding-bottom: 50px !important;
  }
  .tab_pt50 {
    padding-top: 50px !important;
  }
  .tab_pr50 {
    padding-right: 50px !important;
  }
  .tab_pl50 {
    padding-left: 50px !important;
  }
  .tab_pb55 {
    padding-bottom: 55px !important;
  }
  .tab_pt55 {
    padding-top: 55px !important;
  }
  .tab_pr55 {
    padding-right: 55px !important;
  }
  .tab_pl55 {
    padding-left: 55px !important;
  }
  .tab_pb60 {
    padding-bottom: 60px !important;
  }
  .tab_pt60 {
    padding-top: 60px !important;
  }
  .tab_pr60 {
    padding-right: 60px !important;
  }
  .tab_pl60 {
    padding-left: 60px !important;
  }
  .tab_pb65 {
    padding-bottom: 65px !important;
  }
  .tab_pt65 {
    padding-top: 65px !important;
  }
  .tab_pr65 {
    padding-right: 65px !important;
  }
  .tab_pl65 {
    padding-left: 65px !important;
  }
  .tab_pb70 {
    padding-bottom: 70px !important;
  }
  .tab_pt70 {
    padding-top: 70px !important;
  }
  .tab_pr70 {
    padding-right: 70px !important;
  }
  .tab_pl70 {
    padding-left: 70px !important;
  }
  .tab_pb75 {
    padding-bottom: 75px !important;
  }
  .tab_pt75 {
    padding-top: 75px !important;
  }
  .tab_pr75 {
    padding-right: 75px !important;
  }
  .tab_pl75 {
    padding-left: 75px !important;
  }
  .tab_pb80 {
    padding-bottom: 80px !important;
  }
  .tab_pt80 {
    padding-top: 80px !important;
  }
  .tab_pr80 {
    padding-right: 80px !important;
  }
  .tab_pl80 {
    padding-left: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .sp_l_pb0 {
    padding-bottom: 0px !important;
  }
  .sp_l_pt0 {
    padding-top: 0px !important;
  }
  .sp_l_pr0 {
    padding-right: 0px !important;
  }
  .sp_l_pl0 {
    padding-left: 0px !important;
  }
  .sp_l_pb5 {
    padding-bottom: 5px !important;
  }
  .sp_l_pt5 {
    padding-top: 5px !important;
  }
  .sp_l_pr5 {
    padding-right: 5px !important;
  }
  .sp_l_pl5 {
    padding-left: 5px !important;
  }
  .sp_l_pb10 {
    padding-bottom: 10px !important;
  }
  .sp_l_pt10 {
    padding-top: 10px !important;
  }
  .sp_l_pr10 {
    padding-right: 10px !important;
  }
  .sp_l_pl10 {
    padding-left: 10px !important;
  }
  .sp_l_pb15 {
    padding-bottom: 15px !important;
  }
  .sp_l_pt15 {
    padding-top: 15px !important;
  }
  .sp_l_pr15 {
    padding-right: 15px !important;
  }
  .sp_l_pl15 {
    padding-left: 15px !important;
  }
  .sp_l_pb20 {
    padding-bottom: 20px !important;
  }
  .sp_l_pt20 {
    padding-top: 20px !important;
  }
  .sp_l_pr20 {
    padding-right: 20px !important;
  }
  .sp_l_pl20 {
    padding-left: 20px !important;
  }
  .sp_l_pb25 {
    padding-bottom: 25px !important;
  }
  .sp_l_pt25 {
    padding-top: 25px !important;
  }
  .sp_l_pr25 {
    padding-right: 25px !important;
  }
  .sp_l_pl25 {
    padding-left: 25px !important;
  }
  .sp_l_pb30 {
    padding-bottom: 30px !important;
  }
  .sp_l_pt30 {
    padding-top: 30px !important;
  }
  .sp_l_pr30 {
    padding-right: 30px !important;
  }
  .sp_l_pl30 {
    padding-left: 30px !important;
  }
  .sp_l_pb35 {
    padding-bottom: 35px !important;
  }
  .sp_l_pt35 {
    padding-top: 35px !important;
  }
  .sp_l_pr35 {
    padding-right: 35px !important;
  }
  .sp_l_pl35 {
    padding-left: 35px !important;
  }
  .sp_l_pb40 {
    padding-bottom: 40px !important;
  }
  .sp_l_pt40 {
    padding-top: 40px !important;
  }
  .sp_l_pr40 {
    padding-right: 40px !important;
  }
  .sp_l_pl40 {
    padding-left: 40px !important;
  }
  .sp_l_pb45 {
    padding-bottom: 45px !important;
  }
  .sp_l_pt45 {
    padding-top: 45px !important;
  }
  .sp_l_pr45 {
    padding-right: 45px !important;
  }
  .sp_l_pl45 {
    padding-left: 45px !important;
  }
  .sp_l_pb50 {
    padding-bottom: 50px !important;
  }
  .sp_l_pt50 {
    padding-top: 50px !important;
  }
  .sp_l_pr50 {
    padding-right: 50px !important;
  }
  .sp_l_pl50 {
    padding-left: 50px !important;
  }
  .sp_l_pb55 {
    padding-bottom: 55px !important;
  }
  .sp_l_pt55 {
    padding-top: 55px !important;
  }
  .sp_l_pr55 {
    padding-right: 55px !important;
  }
  .sp_l_pl55 {
    padding-left: 55px !important;
  }
  .sp_l_pb60 {
    padding-bottom: 60px !important;
  }
  .sp_l_pt60 {
    padding-top: 60px !important;
  }
  .sp_l_pr60 {
    padding-right: 60px !important;
  }
  .sp_l_pl60 {
    padding-left: 60px !important;
  }
  .sp_l_pb65 {
    padding-bottom: 65px !important;
  }
  .sp_l_pt65 {
    padding-top: 65px !important;
  }
  .sp_l_pr65 {
    padding-right: 65px !important;
  }
  .sp_l_pl65 {
    padding-left: 65px !important;
  }
  .sp_l_pb70 {
    padding-bottom: 70px !important;
  }
  .sp_l_pt70 {
    padding-top: 70px !important;
  }
  .sp_l_pr70 {
    padding-right: 70px !important;
  }
  .sp_l_pl70 {
    padding-left: 70px !important;
  }
  .sp_l_pb75 {
    padding-bottom: 75px !important;
  }
  .sp_l_pt75 {
    padding-top: 75px !important;
  }
  .sp_l_pr75 {
    padding-right: 75px !important;
  }
  .sp_l_pl75 {
    padding-left: 75px !important;
  }
  .sp_l_pb80 {
    padding-bottom: 80px !important;
  }
  .sp_l_pt80 {
    padding-top: 80px !important;
  }
  .sp_l_pr80 {
    padding-right: 80px !important;
  }
  .sp_l_pl80 {
    padding-left: 80px !important;
  }
}

@media screen and (max-width: 479px) {
  .sp_pb0 {
    padding-bottom: 0px !important;
  }
  .sp_pt0 {
    padding-top: 0px !important;
  }
  .sp_pr0 {
    padding-right: 0px !important;
  }
  .sp_pl0 {
    padding-left: 0px !important;
  }
  .sp_pb5 {
    padding-bottom: 5px !important;
  }
  .sp_pt5 {
    padding-top: 5px !important;
  }
  .sp_pr5 {
    padding-right: 5px !important;
  }
  .sp_pl5 {
    padding-left: 5px !important;
  }
  .sp_pb10 {
    padding-bottom: 10px !important;
  }
  .sp_pt10 {
    padding-top: 10px !important;
  }
  .sp_pr10 {
    padding-right: 10px !important;
  }
  .sp_pl10 {
    padding-left: 10px !important;
  }
  .sp_pb15 {
    padding-bottom: 15px !important;
  }
  .sp_pt15 {
    padding-top: 15px !important;
  }
  .sp_pr15 {
    padding-right: 15px !important;
  }
  .sp_pl15 {
    padding-left: 15px !important;
  }
  .sp_pb20 {
    padding-bottom: 20px !important;
  }
  .sp_pt20 {
    padding-top: 20px !important;
  }
  .sp_pr20 {
    padding-right: 20px !important;
  }
  .sp_pl20 {
    padding-left: 20px !important;
  }
  .sp_pb25 {
    padding-bottom: 25px !important;
  }
  .sp_pt25 {
    padding-top: 25px !important;
  }
  .sp_pr25 {
    padding-right: 25px !important;
  }
  .sp_pl25 {
    padding-left: 25px !important;
  }
  .sp_pb30 {
    padding-bottom: 30px !important;
  }
  .sp_pt30 {
    padding-top: 30px !important;
  }
  .sp_pr30 {
    padding-right: 30px !important;
  }
  .sp_pl30 {
    padding-left: 30px !important;
  }
  .sp_pb35 {
    padding-bottom: 35px !important;
  }
  .sp_pt35 {
    padding-top: 35px !important;
  }
  .sp_pr35 {
    padding-right: 35px !important;
  }
  .sp_pl35 {
    padding-left: 35px !important;
  }
  .sp_pb40 {
    padding-bottom: 40px !important;
  }
  .sp_pt40 {
    padding-top: 40px !important;
  }
  .sp_pr40 {
    padding-right: 40px !important;
  }
  .sp_pl40 {
    padding-left: 40px !important;
  }
  .sp_pb45 {
    padding-bottom: 45px !important;
  }
  .sp_pt45 {
    padding-top: 45px !important;
  }
  .sp_pr45 {
    padding-right: 45px !important;
  }
  .sp_pl45 {
    padding-left: 45px !important;
  }
  .sp_pb50 {
    padding-bottom: 50px !important;
  }
  .sp_pt50 {
    padding-top: 50px !important;
  }
  .sp_pr50 {
    padding-right: 50px !important;
  }
  .sp_pl50 {
    padding-left: 50px !important;
  }
  .sp_pb55 {
    padding-bottom: 55px !important;
  }
  .sp_pt55 {
    padding-top: 55px !important;
  }
  .sp_pr55 {
    padding-right: 55px !important;
  }
  .sp_pl55 {
    padding-left: 55px !important;
  }
  .sp_pb60 {
    padding-bottom: 60px !important;
  }
  .sp_pt60 {
    padding-top: 60px !important;
  }
  .sp_pr60 {
    padding-right: 60px !important;
  }
  .sp_pl60 {
    padding-left: 60px !important;
  }
  .sp_pb65 {
    padding-bottom: 65px !important;
  }
  .sp_pt65 {
    padding-top: 65px !important;
  }
  .sp_pr65 {
    padding-right: 65px !important;
  }
  .sp_pl65 {
    padding-left: 65px !important;
  }
  .sp_pb70 {
    padding-bottom: 70px !important;
  }
  .sp_pt70 {
    padding-top: 70px !important;
  }
  .sp_pr70 {
    padding-right: 70px !important;
  }
  .sp_pl70 {
    padding-left: 70px !important;
  }
  .sp_pb75 {
    padding-bottom: 75px !important;
  }
  .sp_pt75 {
    padding-top: 75px !important;
  }
  .sp_pr75 {
    padding-right: 75px !important;
  }
  .sp_pl75 {
    padding-left: 75px !important;
  }
  .sp_pb80 {
    padding-bottom: 80px !important;
  }
  .sp_pt80 {
    padding-top: 80px !important;
  }
  .sp_pr80 {
    padding-right: 80px !important;
  }
  .sp_pl80 {
    padding-left: 80px !important;
  }
}

/*# sourceMappingURL=style.css.map */