@charset "UTF-8";
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
  /*
  .modaal-close {
  	border: none;
  	background: transparent;
  	padding: 0;
  	appearance: none;
  }
  */
}
.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

/*
.modaal-close {
	position: fixed;
	right: 20px;
	top: 20px;
	color: $modaal-light;
	cursor: pointer;
	opacity: 1;
	width: 50px;
	height: 50px;
	background: rgba(0,0,0, 0);
	border-radius: 100%;
	@include modaal-transition(all);
	&:focus,
	&:hover {
		outline: none;
		background: #fff;
		&:before,
		&:after { background: $modaal-close-hover-color; }
	}
	span {
		@include modaal-hidetext;
	}
	&:before,
	&:after {
		display: block;
		content: " ";
		position: absolute;
		top: 14px;
		left: 23px;
		width: 4px;
		height: 22px;
		border-radius: 4px;
		background: #fff;
		@include modaal-transition(background);
	}
	&:before {
		transform: rotate(-45deg);
	}
	&:after {
		transform: rotate(45deg);
	}
	.modaal-fullscreen & {
		background: $modaal-grey;
		right: 10px;
		top: 10px;
	}
}
*/
.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: rgb(46.75, 46.75, 46.75);
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: rgb(46.75, 46.75, 46.75);
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff;
}

/* Icons */
/*
@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
*/
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/*/////////////////////アニメーション/////////////////////*/
.ani {
  transition: 0.8s;
}

.list-mv01 {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 0.8s ease;
}

.mv01 {
  opacity: 1;
  transform: translate(0, 0);
}

.list-mv02 {
  opacity: 0;
  transform: translate(-100px, 0);
  transition: all 0.8s ease;
}

.mv02 {
  opacity: 1;
  transform: translate(0, 0);
}

.list-mv03 {
  opacity: 0;
  transition: all 0.8s ease;
}

.mv03 {
  opacity: 1;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1;
}

.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
ol, ul {
  list-style: none;
}

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

.clear {
  clear: both;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

*, :after, :before {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
}

.trim {
  text-box: trim-both cap alphabetic;
}

.pc,
.md,
.sm,
.sp {
  display: none !important;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .md {
    display: block !important;
  }
  .hidden-md {
    display: none !important;
  }
}
@media screen and (max-width: 576px) {
  .sm,
  .sp {
    display: block !important;
  }
  .hidden-sm,
  .hidden-sp {
    display: none !important;
  }
}
.w-fc {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.mr-a {
  margin-right: auto !important;
}

.ml-a {
  margin-left: auto !important;
}

.mrl-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

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

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

.tl {
  text-align: left !important;
}

@media screen and (max-width: 768px) {
  .tc-md {
    text-align: center !important;
  }
  .tr-md {
    text-align: right !important;
  }
  .tl-md {
    text-align: left !important;
  }
  .mrl-md-a {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media screen and (max-width: 576px) {
  .tc-sm {
    text-align: center !important;
  }
  .tr-sm {
    text-align: right !important;
  }
  .tl-sm {
    text-align: left !important;
  }
  .mrl-sm-a {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.pb-0 {
  padding-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pb-85 {
  padding-bottom: 85px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

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

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

.-pb-85 {
  padding-bottom: -85px !important;
}

.-pt-85 {
  padding-top: -85px !important;
}

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

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

.pb-90 {
  padding-bottom: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

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

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

.-pb-90 {
  padding-bottom: -90px !important;
}

.-pt-90 {
  padding-top: -90px !important;
}

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

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

.pb-95 {
  padding-bottom: 95px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

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

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

.-pb-95 {
  padding-bottom: -95px !important;
}

.-pt-95 {
  padding-top: -95px !important;
}

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

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

.pb-100 {
  padding-bottom: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

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

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

.-pb-100 {
  padding-bottom: -100px !important;
}

.-pt-100 {
  padding-top: -100px !important;
}

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

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

.pb-105 {
  padding-bottom: 105px !important;
}

.pt-105 {
  padding-top: 105px !important;
}

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

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

.-pb-105 {
  padding-bottom: -105px !important;
}

.-pt-105 {
  padding-top: -105px !important;
}

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

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

.pb-110 {
  padding-bottom: 110px !important;
}

.pt-110 {
  padding-top: 110px !important;
}

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

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

.-pb-110 {
  padding-bottom: -110px !important;
}

.-pt-110 {
  padding-top: -110px !important;
}

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

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

.pb-115 {
  padding-bottom: 115px !important;
}

.pt-115 {
  padding-top: 115px !important;
}

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

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

.-pb-115 {
  padding-bottom: -115px !important;
}

.-pt-115 {
  padding-top: -115px !important;
}

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

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

.pb-120 {
  padding-bottom: 120px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

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

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

.-pb-120 {
  padding-bottom: -120px !important;
}

.-pt-120 {
  padding-top: -120px !important;
}

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

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

.pb-125 {
  padding-bottom: 125px !important;
}

.pt-125 {
  padding-top: 125px !important;
}

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

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

.-pb-125 {
  padding-bottom: -125px !important;
}

.-pt-125 {
  padding-top: -125px !important;
}

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

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

.pb-130 {
  padding-bottom: 130px !important;
}

.pt-130 {
  padding-top: 130px !important;
}

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

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

.-pb-130 {
  padding-bottom: -130px !important;
}

.-pt-130 {
  padding-top: -130px !important;
}

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

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

.pb-135 {
  padding-bottom: 135px !important;
}

.pt-135 {
  padding-top: 135px !important;
}

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

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

.-pb-135 {
  padding-bottom: -135px !important;
}

.-pt-135 {
  padding-top: -135px !important;
}

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

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

.pb-140 {
  padding-bottom: 140px !important;
}

.pt-140 {
  padding-top: 140px !important;
}

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

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

.-pb-140 {
  padding-bottom: -140px !important;
}

.-pt-140 {
  padding-top: -140px !important;
}

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

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

.pb-145 {
  padding-bottom: 145px !important;
}

.pt-145 {
  padding-top: 145px !important;
}

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

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

.-pb-145 {
  padding-bottom: -145px !important;
}

.-pt-145 {
  padding-top: -145px !important;
}

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

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

.pb-150 {
  padding-bottom: 150px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

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

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

.-pb-150 {
  padding-bottom: -150px !important;
}

.-pt-150 {
  padding-top: -150px !important;
}

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

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

.pb-155 {
  padding-bottom: 155px !important;
}

.pt-155 {
  padding-top: 155px !important;
}

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

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

.-pb-155 {
  padding-bottom: -155px !important;
}

.-pt-155 {
  padding-top: -155px !important;
}

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

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

.pb-160 {
  padding-bottom: 160px !important;
}

.pt-160 {
  padding-top: 160px !important;
}

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

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

.-pb-160 {
  padding-bottom: -160px !important;
}

.-pt-160 {
  padding-top: -160px !important;
}

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

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

.pb-165 {
  padding-bottom: 165px !important;
}

.pt-165 {
  padding-top: 165px !important;
}

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

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

.-pb-165 {
  padding-bottom: -165px !important;
}

.-pt-165 {
  padding-top: -165px !important;
}

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

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

.pb-170 {
  padding-bottom: 170px !important;
}

.pt-170 {
  padding-top: 170px !important;
}

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

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

.-pb-170 {
  padding-bottom: -170px !important;
}

.-pt-170 {
  padding-top: -170px !important;
}

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

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

.pb-175 {
  padding-bottom: 175px !important;
}

.pt-175 {
  padding-top: 175px !important;
}

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

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

.-pb-175 {
  padding-bottom: -175px !important;
}

.-pt-175 {
  padding-top: -175px !important;
}

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

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

.pb-180 {
  padding-bottom: 180px !important;
}

.pt-180 {
  padding-top: 180px !important;
}

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

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

.-pb-180 {
  padding-bottom: -180px !important;
}

.-pt-180 {
  padding-top: -180px !important;
}

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

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

.pb-185 {
  padding-bottom: 185px !important;
}

.pt-185 {
  padding-top: 185px !important;
}

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

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

.-pb-185 {
  padding-bottom: -185px !important;
}

.-pt-185 {
  padding-top: -185px !important;
}

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

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

.pb-190 {
  padding-bottom: 190px !important;
}

.pt-190 {
  padding-top: 190px !important;
}

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

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

.-pb-190 {
  padding-bottom: -190px !important;
}

.-pt-190 {
  padding-top: -190px !important;
}

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

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

.pb-195 {
  padding-bottom: 195px !important;
}

.pt-195 {
  padding-top: 195px !important;
}

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

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

.-pb-195 {
  padding-bottom: -195px !important;
}

.-pt-195 {
  padding-top: -195px !important;
}

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

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

.pb-200 {
  padding-bottom: 200px !important;
}

.pt-200 {
  padding-top: 200px !important;
}

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

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

.-pb-200 {
  padding-bottom: -200px !important;
}

.-pt-200 {
  padding-top: -200px !important;
}

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

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

@media screen and (max-width: 768px) {
  .pb-md-0 {
    padding-bottom: 0px !important;
  }
  .pt-md-0 {
    padding-top: 0px !important;
  }
  .mb-md-0 {
    margin-bottom: 0px !important;
  }
  .mt-md-0 {
    margin-top: 0px !important;
  }
  .-pb-md-0 {
    padding-bottom: 0px !important;
  }
  .-pt-md-0 {
    padding-top: 0px !important;
  }
  .-mb-md-0 {
    margin-bottom: 0px !important;
  }
  .-mt-md-0 {
    margin-top: 0px !important;
  }
  .pb-md-5 {
    padding-bottom: 5px !important;
  }
  .pt-md-5 {
    padding-top: 5px !important;
  }
  .mb-md-5 {
    margin-bottom: 5px !important;
  }
  .mt-md-5 {
    margin-top: 5px !important;
  }
  .-pb-md-5 {
    padding-bottom: -5px !important;
  }
  .-pt-md-5 {
    padding-top: -5px !important;
  }
  .-mb-md-5 {
    margin-bottom: -5px !important;
  }
  .-mt-md-5 {
    margin-top: -5px !important;
  }
  .pb-md-10 {
    padding-bottom: 10px !important;
  }
  .pt-md-10 {
    padding-top: 10px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .mt-md-10 {
    margin-top: 10px !important;
  }
  .-pb-md-10 {
    padding-bottom: -10px !important;
  }
  .-pt-md-10 {
    padding-top: -10px !important;
  }
  .-mb-md-10 {
    margin-bottom: -10px !important;
  }
  .-mt-md-10 {
    margin-top: -10px !important;
  }
  .pb-md-15 {
    padding-bottom: 15px !important;
  }
  .pt-md-15 {
    padding-top: 15px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .mt-md-15 {
    margin-top: 15px !important;
  }
  .-pb-md-15 {
    padding-bottom: -15px !important;
  }
  .-pt-md-15 {
    padding-top: -15px !important;
  }
  .-mb-md-15 {
    margin-bottom: -15px !important;
  }
  .-mt-md-15 {
    margin-top: -15px !important;
  }
  .pb-md-20 {
    padding-bottom: 20px !important;
  }
  .pt-md-20 {
    padding-top: 20px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .mt-md-20 {
    margin-top: 20px !important;
  }
  .-pb-md-20 {
    padding-bottom: -20px !important;
  }
  .-pt-md-20 {
    padding-top: -20px !important;
  }
  .-mb-md-20 {
    margin-bottom: -20px !important;
  }
  .-mt-md-20 {
    margin-top: -20px !important;
  }
  .pb-md-25 {
    padding-bottom: 25px !important;
  }
  .pt-md-25 {
    padding-top: 25px !important;
  }
  .mb-md-25 {
    margin-bottom: 25px !important;
  }
  .mt-md-25 {
    margin-top: 25px !important;
  }
  .-pb-md-25 {
    padding-bottom: -25px !important;
  }
  .-pt-md-25 {
    padding-top: -25px !important;
  }
  .-mb-md-25 {
    margin-bottom: -25px !important;
  }
  .-mt-md-25 {
    margin-top: -25px !important;
  }
  .pb-md-30 {
    padding-bottom: 30px !important;
  }
  .pt-md-30 {
    padding-top: 30px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .mt-md-30 {
    margin-top: 30px !important;
  }
  .-pb-md-30 {
    padding-bottom: -30px !important;
  }
  .-pt-md-30 {
    padding-top: -30px !important;
  }
  .-mb-md-30 {
    margin-bottom: -30px !important;
  }
  .-mt-md-30 {
    margin-top: -30px !important;
  }
  .pb-md-35 {
    padding-bottom: 35px !important;
  }
  .pt-md-35 {
    padding-top: 35px !important;
  }
  .mb-md-35 {
    margin-bottom: 35px !important;
  }
  .mt-md-35 {
    margin-top: 35px !important;
  }
  .-pb-md-35 {
    padding-bottom: -35px !important;
  }
  .-pt-md-35 {
    padding-top: -35px !important;
  }
  .-mb-md-35 {
    margin-bottom: -35px !important;
  }
  .-mt-md-35 {
    margin-top: -35px !important;
  }
  .pb-md-40 {
    padding-bottom: 40px !important;
  }
  .pt-md-40 {
    padding-top: 40px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .mt-md-40 {
    margin-top: 40px !important;
  }
  .-pb-md-40 {
    padding-bottom: -40px !important;
  }
  .-pt-md-40 {
    padding-top: -40px !important;
  }
  .-mb-md-40 {
    margin-bottom: -40px !important;
  }
  .-mt-md-40 {
    margin-top: -40px !important;
  }
  .pb-md-45 {
    padding-bottom: 45px !important;
  }
  .pt-md-45 {
    padding-top: 45px !important;
  }
  .mb-md-45 {
    margin-bottom: 45px !important;
  }
  .mt-md-45 {
    margin-top: 45px !important;
  }
  .-pb-md-45 {
    padding-bottom: -45px !important;
  }
  .-pt-md-45 {
    padding-top: -45px !important;
  }
  .-mb-md-45 {
    margin-bottom: -45px !important;
  }
  .-mt-md-45 {
    margin-top: -45px !important;
  }
  .pb-md-50 {
    padding-bottom: 50px !important;
  }
  .pt-md-50 {
    padding-top: 50px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .mt-md-50 {
    margin-top: 50px !important;
  }
  .-pb-md-50 {
    padding-bottom: -50px !important;
  }
  .-pt-md-50 {
    padding-top: -50px !important;
  }
  .-mb-md-50 {
    margin-bottom: -50px !important;
  }
  .-mt-md-50 {
    margin-top: -50px !important;
  }
  .pb-md-55 {
    padding-bottom: 55px !important;
  }
  .pt-md-55 {
    padding-top: 55px !important;
  }
  .mb-md-55 {
    margin-bottom: 55px !important;
  }
  .mt-md-55 {
    margin-top: 55px !important;
  }
  .-pb-md-55 {
    padding-bottom: -55px !important;
  }
  .-pt-md-55 {
    padding-top: -55px !important;
  }
  .-mb-md-55 {
    margin-bottom: -55px !important;
  }
  .-mt-md-55 {
    margin-top: -55px !important;
  }
  .pb-md-60 {
    padding-bottom: 60px !important;
  }
  .pt-md-60 {
    padding-top: 60px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .mt-md-60 {
    margin-top: 60px !important;
  }
  .-pb-md-60 {
    padding-bottom: -60px !important;
  }
  .-pt-md-60 {
    padding-top: -60px !important;
  }
  .-mb-md-60 {
    margin-bottom: -60px !important;
  }
  .-mt-md-60 {
    margin-top: -60px !important;
  }
  .pb-md-65 {
    padding-bottom: 65px !important;
  }
  .pt-md-65 {
    padding-top: 65px !important;
  }
  .mb-md-65 {
    margin-bottom: 65px !important;
  }
  .mt-md-65 {
    margin-top: 65px !important;
  }
  .-pb-md-65 {
    padding-bottom: -65px !important;
  }
  .-pt-md-65 {
    padding-top: -65px !important;
  }
  .-mb-md-65 {
    margin-bottom: -65px !important;
  }
  .-mt-md-65 {
    margin-top: -65px !important;
  }
  .pb-md-70 {
    padding-bottom: 70px !important;
  }
  .pt-md-70 {
    padding-top: 70px !important;
  }
  .mb-md-70 {
    margin-bottom: 70px !important;
  }
  .mt-md-70 {
    margin-top: 70px !important;
  }
  .-pb-md-70 {
    padding-bottom: -70px !important;
  }
  .-pt-md-70 {
    padding-top: -70px !important;
  }
  .-mb-md-70 {
    margin-bottom: -70px !important;
  }
  .-mt-md-70 {
    margin-top: -70px !important;
  }
  .pb-md-75 {
    padding-bottom: 75px !important;
  }
  .pt-md-75 {
    padding-top: 75px !important;
  }
  .mb-md-75 {
    margin-bottom: 75px !important;
  }
  .mt-md-75 {
    margin-top: 75px !important;
  }
  .-pb-md-75 {
    padding-bottom: -75px !important;
  }
  .-pt-md-75 {
    padding-top: -75px !important;
  }
  .-mb-md-75 {
    margin-bottom: -75px !important;
  }
  .-mt-md-75 {
    margin-top: -75px !important;
  }
  .pb-md-80 {
    padding-bottom: 80px !important;
  }
  .pt-md-80 {
    padding-top: 80px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .mt-md-80 {
    margin-top: 80px !important;
  }
  .-pb-md-80 {
    padding-bottom: -80px !important;
  }
  .-pt-md-80 {
    padding-top: -80px !important;
  }
  .-mb-md-80 {
    margin-bottom: -80px !important;
  }
  .-mt-md-80 {
    margin-top: -80px !important;
  }
  .pb-md-85 {
    padding-bottom: 85px !important;
  }
  .pt-md-85 {
    padding-top: 85px !important;
  }
  .mb-md-85 {
    margin-bottom: 85px !important;
  }
  .mt-md-85 {
    margin-top: 85px !important;
  }
  .-pb-md-85 {
    padding-bottom: -85px !important;
  }
  .-pt-md-85 {
    padding-top: -85px !important;
  }
  .-mb-md-85 {
    margin-bottom: -85px !important;
  }
  .-mt-md-85 {
    margin-top: -85px !important;
  }
  .pb-md-90 {
    padding-bottom: 90px !important;
  }
  .pt-md-90 {
    padding-top: 90px !important;
  }
  .mb-md-90 {
    margin-bottom: 90px !important;
  }
  .mt-md-90 {
    margin-top: 90px !important;
  }
  .-pb-md-90 {
    padding-bottom: -90px !important;
  }
  .-pt-md-90 {
    padding-top: -90px !important;
  }
  .-mb-md-90 {
    margin-bottom: -90px !important;
  }
  .-mt-md-90 {
    margin-top: -90px !important;
  }
  .pb-md-95 {
    padding-bottom: 95px !important;
  }
  .pt-md-95 {
    padding-top: 95px !important;
  }
  .mb-md-95 {
    margin-bottom: 95px !important;
  }
  .mt-md-95 {
    margin-top: 95px !important;
  }
  .-pb-md-95 {
    padding-bottom: -95px !important;
  }
  .-pt-md-95 {
    padding-top: -95px !important;
  }
  .-mb-md-95 {
    margin-bottom: -95px !important;
  }
  .-mt-md-95 {
    margin-top: -95px !important;
  }
  .pb-md-100 {
    padding-bottom: 100px !important;
  }
  .pt-md-100 {
    padding-top: 100px !important;
  }
  .mb-md-100 {
    margin-bottom: 100px !important;
  }
  .mt-md-100 {
    margin-top: 100px !important;
  }
  .-pb-md-100 {
    padding-bottom: -100px !important;
  }
  .-pt-md-100 {
    padding-top: -100px !important;
  }
  .-mb-md-100 {
    margin-bottom: -100px !important;
  }
  .-mt-md-100 {
    margin-top: -100px !important;
  }
  .pb-md-105 {
    padding-bottom: 105px !important;
  }
  .pt-md-105 {
    padding-top: 105px !important;
  }
  .mb-md-105 {
    margin-bottom: 105px !important;
  }
  .mt-md-105 {
    margin-top: 105px !important;
  }
  .-pb-md-105 {
    padding-bottom: -105px !important;
  }
  .-pt-md-105 {
    padding-top: -105px !important;
  }
  .-mb-md-105 {
    margin-bottom: -105px !important;
  }
  .-mt-md-105 {
    margin-top: -105px !important;
  }
  .pb-md-110 {
    padding-bottom: 110px !important;
  }
  .pt-md-110 {
    padding-top: 110px !important;
  }
  .mb-md-110 {
    margin-bottom: 110px !important;
  }
  .mt-md-110 {
    margin-top: 110px !important;
  }
  .-pb-md-110 {
    padding-bottom: -110px !important;
  }
  .-pt-md-110 {
    padding-top: -110px !important;
  }
  .-mb-md-110 {
    margin-bottom: -110px !important;
  }
  .-mt-md-110 {
    margin-top: -110px !important;
  }
  .pb-md-115 {
    padding-bottom: 115px !important;
  }
  .pt-md-115 {
    padding-top: 115px !important;
  }
  .mb-md-115 {
    margin-bottom: 115px !important;
  }
  .mt-md-115 {
    margin-top: 115px !important;
  }
  .-pb-md-115 {
    padding-bottom: -115px !important;
  }
  .-pt-md-115 {
    padding-top: -115px !important;
  }
  .-mb-md-115 {
    margin-bottom: -115px !important;
  }
  .-mt-md-115 {
    margin-top: -115px !important;
  }
  .pb-md-120 {
    padding-bottom: 120px !important;
  }
  .pt-md-120 {
    padding-top: 120px !important;
  }
  .mb-md-120 {
    margin-bottom: 120px !important;
  }
  .mt-md-120 {
    margin-top: 120px !important;
  }
  .-pb-md-120 {
    padding-bottom: -120px !important;
  }
  .-pt-md-120 {
    padding-top: -120px !important;
  }
  .-mb-md-120 {
    margin-bottom: -120px !important;
  }
  .-mt-md-120 {
    margin-top: -120px !important;
  }
  .pb-md-125 {
    padding-bottom: 125px !important;
  }
  .pt-md-125 {
    padding-top: 125px !important;
  }
  .mb-md-125 {
    margin-bottom: 125px !important;
  }
  .mt-md-125 {
    margin-top: 125px !important;
  }
  .-pb-md-125 {
    padding-bottom: -125px !important;
  }
  .-pt-md-125 {
    padding-top: -125px !important;
  }
  .-mb-md-125 {
    margin-bottom: -125px !important;
  }
  .-mt-md-125 {
    margin-top: -125px !important;
  }
  .pb-md-130 {
    padding-bottom: 130px !important;
  }
  .pt-md-130 {
    padding-top: 130px !important;
  }
  .mb-md-130 {
    margin-bottom: 130px !important;
  }
  .mt-md-130 {
    margin-top: 130px !important;
  }
  .-pb-md-130 {
    padding-bottom: -130px !important;
  }
  .-pt-md-130 {
    padding-top: -130px !important;
  }
  .-mb-md-130 {
    margin-bottom: -130px !important;
  }
  .-mt-md-130 {
    margin-top: -130px !important;
  }
  .pb-md-135 {
    padding-bottom: 135px !important;
  }
  .pt-md-135 {
    padding-top: 135px !important;
  }
  .mb-md-135 {
    margin-bottom: 135px !important;
  }
  .mt-md-135 {
    margin-top: 135px !important;
  }
  .-pb-md-135 {
    padding-bottom: -135px !important;
  }
  .-pt-md-135 {
    padding-top: -135px !important;
  }
  .-mb-md-135 {
    margin-bottom: -135px !important;
  }
  .-mt-md-135 {
    margin-top: -135px !important;
  }
  .pb-md-140 {
    padding-bottom: 140px !important;
  }
  .pt-md-140 {
    padding-top: 140px !important;
  }
  .mb-md-140 {
    margin-bottom: 140px !important;
  }
  .mt-md-140 {
    margin-top: 140px !important;
  }
  .-pb-md-140 {
    padding-bottom: -140px !important;
  }
  .-pt-md-140 {
    padding-top: -140px !important;
  }
  .-mb-md-140 {
    margin-bottom: -140px !important;
  }
  .-mt-md-140 {
    margin-top: -140px !important;
  }
  .pb-md-145 {
    padding-bottom: 145px !important;
  }
  .pt-md-145 {
    padding-top: 145px !important;
  }
  .mb-md-145 {
    margin-bottom: 145px !important;
  }
  .mt-md-145 {
    margin-top: 145px !important;
  }
  .-pb-md-145 {
    padding-bottom: -145px !important;
  }
  .-pt-md-145 {
    padding-top: -145px !important;
  }
  .-mb-md-145 {
    margin-bottom: -145px !important;
  }
  .-mt-md-145 {
    margin-top: -145px !important;
  }
  .pb-md-150 {
    padding-bottom: 150px !important;
  }
  .pt-md-150 {
    padding-top: 150px !important;
  }
  .mb-md-150 {
    margin-bottom: 150px !important;
  }
  .mt-md-150 {
    margin-top: 150px !important;
  }
  .-pb-md-150 {
    padding-bottom: -150px !important;
  }
  .-pt-md-150 {
    padding-top: -150px !important;
  }
  .-mb-md-150 {
    margin-bottom: -150px !important;
  }
  .-mt-md-150 {
    margin-top: -150px !important;
  }
  .pb-md-155 {
    padding-bottom: 155px !important;
  }
  .pt-md-155 {
    padding-top: 155px !important;
  }
  .mb-md-155 {
    margin-bottom: 155px !important;
  }
  .mt-md-155 {
    margin-top: 155px !important;
  }
  .-pb-md-155 {
    padding-bottom: -155px !important;
  }
  .-pt-md-155 {
    padding-top: -155px !important;
  }
  .-mb-md-155 {
    margin-bottom: -155px !important;
  }
  .-mt-md-155 {
    margin-top: -155px !important;
  }
  .pb-md-160 {
    padding-bottom: 160px !important;
  }
  .pt-md-160 {
    padding-top: 160px !important;
  }
  .mb-md-160 {
    margin-bottom: 160px !important;
  }
  .mt-md-160 {
    margin-top: 160px !important;
  }
  .-pb-md-160 {
    padding-bottom: -160px !important;
  }
  .-pt-md-160 {
    padding-top: -160px !important;
  }
  .-mb-md-160 {
    margin-bottom: -160px !important;
  }
  .-mt-md-160 {
    margin-top: -160px !important;
  }
  .pb-md-165 {
    padding-bottom: 165px !important;
  }
  .pt-md-165 {
    padding-top: 165px !important;
  }
  .mb-md-165 {
    margin-bottom: 165px !important;
  }
  .mt-md-165 {
    margin-top: 165px !important;
  }
  .-pb-md-165 {
    padding-bottom: -165px !important;
  }
  .-pt-md-165 {
    padding-top: -165px !important;
  }
  .-mb-md-165 {
    margin-bottom: -165px !important;
  }
  .-mt-md-165 {
    margin-top: -165px !important;
  }
  .pb-md-170 {
    padding-bottom: 170px !important;
  }
  .pt-md-170 {
    padding-top: 170px !important;
  }
  .mb-md-170 {
    margin-bottom: 170px !important;
  }
  .mt-md-170 {
    margin-top: 170px !important;
  }
  .-pb-md-170 {
    padding-bottom: -170px !important;
  }
  .-pt-md-170 {
    padding-top: -170px !important;
  }
  .-mb-md-170 {
    margin-bottom: -170px !important;
  }
  .-mt-md-170 {
    margin-top: -170px !important;
  }
  .pb-md-175 {
    padding-bottom: 175px !important;
  }
  .pt-md-175 {
    padding-top: 175px !important;
  }
  .mb-md-175 {
    margin-bottom: 175px !important;
  }
  .mt-md-175 {
    margin-top: 175px !important;
  }
  .-pb-md-175 {
    padding-bottom: -175px !important;
  }
  .-pt-md-175 {
    padding-top: -175px !important;
  }
  .-mb-md-175 {
    margin-bottom: -175px !important;
  }
  .-mt-md-175 {
    margin-top: -175px !important;
  }
  .pb-md-180 {
    padding-bottom: 180px !important;
  }
  .pt-md-180 {
    padding-top: 180px !important;
  }
  .mb-md-180 {
    margin-bottom: 180px !important;
  }
  .mt-md-180 {
    margin-top: 180px !important;
  }
  .-pb-md-180 {
    padding-bottom: -180px !important;
  }
  .-pt-md-180 {
    padding-top: -180px !important;
  }
  .-mb-md-180 {
    margin-bottom: -180px !important;
  }
  .-mt-md-180 {
    margin-top: -180px !important;
  }
  .pb-md-185 {
    padding-bottom: 185px !important;
  }
  .pt-md-185 {
    padding-top: 185px !important;
  }
  .mb-md-185 {
    margin-bottom: 185px !important;
  }
  .mt-md-185 {
    margin-top: 185px !important;
  }
  .-pb-md-185 {
    padding-bottom: -185px !important;
  }
  .-pt-md-185 {
    padding-top: -185px !important;
  }
  .-mb-md-185 {
    margin-bottom: -185px !important;
  }
  .-mt-md-185 {
    margin-top: -185px !important;
  }
  .pb-md-190 {
    padding-bottom: 190px !important;
  }
  .pt-md-190 {
    padding-top: 190px !important;
  }
  .mb-md-190 {
    margin-bottom: 190px !important;
  }
  .mt-md-190 {
    margin-top: 190px !important;
  }
  .-pb-md-190 {
    padding-bottom: -190px !important;
  }
  .-pt-md-190 {
    padding-top: -190px !important;
  }
  .-mb-md-190 {
    margin-bottom: -190px !important;
  }
  .-mt-md-190 {
    margin-top: -190px !important;
  }
  .pb-md-195 {
    padding-bottom: 195px !important;
  }
  .pt-md-195 {
    padding-top: 195px !important;
  }
  .mb-md-195 {
    margin-bottom: 195px !important;
  }
  .mt-md-195 {
    margin-top: 195px !important;
  }
  .-pb-md-195 {
    padding-bottom: -195px !important;
  }
  .-pt-md-195 {
    padding-top: -195px !important;
  }
  .-mb-md-195 {
    margin-bottom: -195px !important;
  }
  .-mt-md-195 {
    margin-top: -195px !important;
  }
  .pb-md-200 {
    padding-bottom: 200px !important;
  }
  .pt-md-200 {
    padding-top: 200px !important;
  }
  .mb-md-200 {
    margin-bottom: 200px !important;
  }
  .mt-md-200 {
    margin-top: 200px !important;
  }
  .-pb-md-200 {
    padding-bottom: -200px !important;
  }
  .-pt-md-200 {
    padding-top: -200px !important;
  }
  .-mb-md-200 {
    margin-bottom: -200px !important;
  }
  .-mt-md-200 {
    margin-top: -200px !important;
  }
}
@media screen and (max-width: 576px) {
  .pb-sm-0 {
    padding-bottom: 0px !important;
  }
  .pt-sm-0 {
    padding-top: 0px !important;
  }
  .mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .mt-sm-0 {
    margin-top: 0px !important;
  }
  .-pb-sm-0 {
    padding-bottom: 0px !important;
  }
  .-pt-sm-0 {
    padding-top: 0px !important;
  }
  .-mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .-mt-sm-0 {
    margin-top: 0px !important;
  }
  .pb-sm-5 {
    padding-bottom: 5px !important;
  }
  .pt-sm-5 {
    padding-top: 5px !important;
  }
  .mb-sm-5 {
    margin-bottom: 5px !important;
  }
  .mt-sm-5 {
    margin-top: 5px !important;
  }
  .-pb-sm-5 {
    padding-bottom: -5px !important;
  }
  .-pt-sm-5 {
    padding-top: -5px !important;
  }
  .-mb-sm-5 {
    margin-bottom: -5px !important;
  }
  .-mt-sm-5 {
    margin-top: -5px !important;
  }
  .pb-sm-10 {
    padding-bottom: 10px !important;
  }
  .pt-sm-10 {
    padding-top: 10px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .mt-sm-10 {
    margin-top: 10px !important;
  }
  .-pb-sm-10 {
    padding-bottom: -10px !important;
  }
  .-pt-sm-10 {
    padding-top: -10px !important;
  }
  .-mb-sm-10 {
    margin-bottom: -10px !important;
  }
  .-mt-sm-10 {
    margin-top: -10px !important;
  }
  .pb-sm-15 {
    padding-bottom: 15px !important;
  }
  .pt-sm-15 {
    padding-top: 15px !important;
  }
  .mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .mt-sm-15 {
    margin-top: 15px !important;
  }
  .-pb-sm-15 {
    padding-bottom: -15px !important;
  }
  .-pt-sm-15 {
    padding-top: -15px !important;
  }
  .-mb-sm-15 {
    margin-bottom: -15px !important;
  }
  .-mt-sm-15 {
    margin-top: -15px !important;
  }
  .pb-sm-20 {
    padding-bottom: 20px !important;
  }
  .pt-sm-20 {
    padding-top: 20px !important;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .mt-sm-20 {
    margin-top: 20px !important;
  }
  .-pb-sm-20 {
    padding-bottom: -20px !important;
  }
  .-pt-sm-20 {
    padding-top: -20px !important;
  }
  .-mb-sm-20 {
    margin-bottom: -20px !important;
  }
  .-mt-sm-20 {
    margin-top: -20px !important;
  }
  .pb-sm-25 {
    padding-bottom: 25px !important;
  }
  .pt-sm-25 {
    padding-top: 25px !important;
  }
  .mb-sm-25 {
    margin-bottom: 25px !important;
  }
  .mt-sm-25 {
    margin-top: 25px !important;
  }
  .-pb-sm-25 {
    padding-bottom: -25px !important;
  }
  .-pt-sm-25 {
    padding-top: -25px !important;
  }
  .-mb-sm-25 {
    margin-bottom: -25px !important;
  }
  .-mt-sm-25 {
    margin-top: -25px !important;
  }
  .pb-sm-30 {
    padding-bottom: 30px !important;
  }
  .pt-sm-30 {
    padding-top: 30px !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .mt-sm-30 {
    margin-top: 30px !important;
  }
  .-pb-sm-30 {
    padding-bottom: -30px !important;
  }
  .-pt-sm-30 {
    padding-top: -30px !important;
  }
  .-mb-sm-30 {
    margin-bottom: -30px !important;
  }
  .-mt-sm-30 {
    margin-top: -30px !important;
  }
  .pb-sm-35 {
    padding-bottom: 35px !important;
  }
  .pt-sm-35 {
    padding-top: 35px !important;
  }
  .mb-sm-35 {
    margin-bottom: 35px !important;
  }
  .mt-sm-35 {
    margin-top: 35px !important;
  }
  .-pb-sm-35 {
    padding-bottom: -35px !important;
  }
  .-pt-sm-35 {
    padding-top: -35px !important;
  }
  .-mb-sm-35 {
    margin-bottom: -35px !important;
  }
  .-mt-sm-35 {
    margin-top: -35px !important;
  }
  .pb-sm-40 {
    padding-bottom: 40px !important;
  }
  .pt-sm-40 {
    padding-top: 40px !important;
  }
  .mb-sm-40 {
    margin-bottom: 40px !important;
  }
  .mt-sm-40 {
    margin-top: 40px !important;
  }
  .-pb-sm-40 {
    padding-bottom: -40px !important;
  }
  .-pt-sm-40 {
    padding-top: -40px !important;
  }
  .-mb-sm-40 {
    margin-bottom: -40px !important;
  }
  .-mt-sm-40 {
    margin-top: -40px !important;
  }
  .pb-sm-45 {
    padding-bottom: 45px !important;
  }
  .pt-sm-45 {
    padding-top: 45px !important;
  }
  .mb-sm-45 {
    margin-bottom: 45px !important;
  }
  .mt-sm-45 {
    margin-top: 45px !important;
  }
  .-pb-sm-45 {
    padding-bottom: -45px !important;
  }
  .-pt-sm-45 {
    padding-top: -45px !important;
  }
  .-mb-sm-45 {
    margin-bottom: -45px !important;
  }
  .-mt-sm-45 {
    margin-top: -45px !important;
  }
  .pb-sm-50 {
    padding-bottom: 50px !important;
  }
  .pt-sm-50 {
    padding-top: 50px !important;
  }
  .mb-sm-50 {
    margin-bottom: 50px !important;
  }
  .mt-sm-50 {
    margin-top: 50px !important;
  }
  .-pb-sm-50 {
    padding-bottom: -50px !important;
  }
  .-pt-sm-50 {
    padding-top: -50px !important;
  }
  .-mb-sm-50 {
    margin-bottom: -50px !important;
  }
  .-mt-sm-50 {
    margin-top: -50px !important;
  }
  .pb-sm-55 {
    padding-bottom: 55px !important;
  }
  .pt-sm-55 {
    padding-top: 55px !important;
  }
  .mb-sm-55 {
    margin-bottom: 55px !important;
  }
  .mt-sm-55 {
    margin-top: 55px !important;
  }
  .-pb-sm-55 {
    padding-bottom: -55px !important;
  }
  .-pt-sm-55 {
    padding-top: -55px !important;
  }
  .-mb-sm-55 {
    margin-bottom: -55px !important;
  }
  .-mt-sm-55 {
    margin-top: -55px !important;
  }
  .pb-sm-60 {
    padding-bottom: 60px !important;
  }
  .pt-sm-60 {
    padding-top: 60px !important;
  }
  .mb-sm-60 {
    margin-bottom: 60px !important;
  }
  .mt-sm-60 {
    margin-top: 60px !important;
  }
  .-pb-sm-60 {
    padding-bottom: -60px !important;
  }
  .-pt-sm-60 {
    padding-top: -60px !important;
  }
  .-mb-sm-60 {
    margin-bottom: -60px !important;
  }
  .-mt-sm-60 {
    margin-top: -60px !important;
  }
  .pb-sm-65 {
    padding-bottom: 65px !important;
  }
  .pt-sm-65 {
    padding-top: 65px !important;
  }
  .mb-sm-65 {
    margin-bottom: 65px !important;
  }
  .mt-sm-65 {
    margin-top: 65px !important;
  }
  .-pb-sm-65 {
    padding-bottom: -65px !important;
  }
  .-pt-sm-65 {
    padding-top: -65px !important;
  }
  .-mb-sm-65 {
    margin-bottom: -65px !important;
  }
  .-mt-sm-65 {
    margin-top: -65px !important;
  }
  .pb-sm-70 {
    padding-bottom: 70px !important;
  }
  .pt-sm-70 {
    padding-top: 70px !important;
  }
  .mb-sm-70 {
    margin-bottom: 70px !important;
  }
  .mt-sm-70 {
    margin-top: 70px !important;
  }
  .-pb-sm-70 {
    padding-bottom: -70px !important;
  }
  .-pt-sm-70 {
    padding-top: -70px !important;
  }
  .-mb-sm-70 {
    margin-bottom: -70px !important;
  }
  .-mt-sm-70 {
    margin-top: -70px !important;
  }
  .pb-sm-75 {
    padding-bottom: 75px !important;
  }
  .pt-sm-75 {
    padding-top: 75px !important;
  }
  .mb-sm-75 {
    margin-bottom: 75px !important;
  }
  .mt-sm-75 {
    margin-top: 75px !important;
  }
  .-pb-sm-75 {
    padding-bottom: -75px !important;
  }
  .-pt-sm-75 {
    padding-top: -75px !important;
  }
  .-mb-sm-75 {
    margin-bottom: -75px !important;
  }
  .-mt-sm-75 {
    margin-top: -75px !important;
  }
  .pb-sm-80 {
    padding-bottom: 80px !important;
  }
  .pt-sm-80 {
    padding-top: 80px !important;
  }
  .mb-sm-80 {
    margin-bottom: 80px !important;
  }
  .mt-sm-80 {
    margin-top: 80px !important;
  }
  .-pb-sm-80 {
    padding-bottom: -80px !important;
  }
  .-pt-sm-80 {
    padding-top: -80px !important;
  }
  .-mb-sm-80 {
    margin-bottom: -80px !important;
  }
  .-mt-sm-80 {
    margin-top: -80px !important;
  }
  .pb-sm-85 {
    padding-bottom: 85px !important;
  }
  .pt-sm-85 {
    padding-top: 85px !important;
  }
  .mb-sm-85 {
    margin-bottom: 85px !important;
  }
  .mt-sm-85 {
    margin-top: 85px !important;
  }
  .-pb-sm-85 {
    padding-bottom: -85px !important;
  }
  .-pt-sm-85 {
    padding-top: -85px !important;
  }
  .-mb-sm-85 {
    margin-bottom: -85px !important;
  }
  .-mt-sm-85 {
    margin-top: -85px !important;
  }
  .pb-sm-90 {
    padding-bottom: 90px !important;
  }
  .pt-sm-90 {
    padding-top: 90px !important;
  }
  .mb-sm-90 {
    margin-bottom: 90px !important;
  }
  .mt-sm-90 {
    margin-top: 90px !important;
  }
  .-pb-sm-90 {
    padding-bottom: -90px !important;
  }
  .-pt-sm-90 {
    padding-top: -90px !important;
  }
  .-mb-sm-90 {
    margin-bottom: -90px !important;
  }
  .-mt-sm-90 {
    margin-top: -90px !important;
  }
  .pb-sm-95 {
    padding-bottom: 95px !important;
  }
  .pt-sm-95 {
    padding-top: 95px !important;
  }
  .mb-sm-95 {
    margin-bottom: 95px !important;
  }
  .mt-sm-95 {
    margin-top: 95px !important;
  }
  .-pb-sm-95 {
    padding-bottom: -95px !important;
  }
  .-pt-sm-95 {
    padding-top: -95px !important;
  }
  .-mb-sm-95 {
    margin-bottom: -95px !important;
  }
  .-mt-sm-95 {
    margin-top: -95px !important;
  }
  .pb-sm-100 {
    padding-bottom: 100px !important;
  }
  .pt-sm-100 {
    padding-top: 100px !important;
  }
  .mb-sm-100 {
    margin-bottom: 100px !important;
  }
  .mt-sm-100 {
    margin-top: 100px !important;
  }
  .-pb-sm-100 {
    padding-bottom: -100px !important;
  }
  .-pt-sm-100 {
    padding-top: -100px !important;
  }
  .-mb-sm-100 {
    margin-bottom: -100px !important;
  }
  .-mt-sm-100 {
    margin-top: -100px !important;
  }
  .pb-sm-105 {
    padding-bottom: 105px !important;
  }
  .pt-sm-105 {
    padding-top: 105px !important;
  }
  .mb-sm-105 {
    margin-bottom: 105px !important;
  }
  .mt-sm-105 {
    margin-top: 105px !important;
  }
  .-pb-sm-105 {
    padding-bottom: -105px !important;
  }
  .-pt-sm-105 {
    padding-top: -105px !important;
  }
  .-mb-sm-105 {
    margin-bottom: -105px !important;
  }
  .-mt-sm-105 {
    margin-top: -105px !important;
  }
  .pb-sm-110 {
    padding-bottom: 110px !important;
  }
  .pt-sm-110 {
    padding-top: 110px !important;
  }
  .mb-sm-110 {
    margin-bottom: 110px !important;
  }
  .mt-sm-110 {
    margin-top: 110px !important;
  }
  .-pb-sm-110 {
    padding-bottom: -110px !important;
  }
  .-pt-sm-110 {
    padding-top: -110px !important;
  }
  .-mb-sm-110 {
    margin-bottom: -110px !important;
  }
  .-mt-sm-110 {
    margin-top: -110px !important;
  }
  .pb-sm-115 {
    padding-bottom: 115px !important;
  }
  .pt-sm-115 {
    padding-top: 115px !important;
  }
  .mb-sm-115 {
    margin-bottom: 115px !important;
  }
  .mt-sm-115 {
    margin-top: 115px !important;
  }
  .-pb-sm-115 {
    padding-bottom: -115px !important;
  }
  .-pt-sm-115 {
    padding-top: -115px !important;
  }
  .-mb-sm-115 {
    margin-bottom: -115px !important;
  }
  .-mt-sm-115 {
    margin-top: -115px !important;
  }
  .pb-sm-120 {
    padding-bottom: 120px !important;
  }
  .pt-sm-120 {
    padding-top: 120px !important;
  }
  .mb-sm-120 {
    margin-bottom: 120px !important;
  }
  .mt-sm-120 {
    margin-top: 120px !important;
  }
  .-pb-sm-120 {
    padding-bottom: -120px !important;
  }
  .-pt-sm-120 {
    padding-top: -120px !important;
  }
  .-mb-sm-120 {
    margin-bottom: -120px !important;
  }
  .-mt-sm-120 {
    margin-top: -120px !important;
  }
  .pb-sm-125 {
    padding-bottom: 125px !important;
  }
  .pt-sm-125 {
    padding-top: 125px !important;
  }
  .mb-sm-125 {
    margin-bottom: 125px !important;
  }
  .mt-sm-125 {
    margin-top: 125px !important;
  }
  .-pb-sm-125 {
    padding-bottom: -125px !important;
  }
  .-pt-sm-125 {
    padding-top: -125px !important;
  }
  .-mb-sm-125 {
    margin-bottom: -125px !important;
  }
  .-mt-sm-125 {
    margin-top: -125px !important;
  }
  .pb-sm-130 {
    padding-bottom: 130px !important;
  }
  .pt-sm-130 {
    padding-top: 130px !important;
  }
  .mb-sm-130 {
    margin-bottom: 130px !important;
  }
  .mt-sm-130 {
    margin-top: 130px !important;
  }
  .-pb-sm-130 {
    padding-bottom: -130px !important;
  }
  .-pt-sm-130 {
    padding-top: -130px !important;
  }
  .-mb-sm-130 {
    margin-bottom: -130px !important;
  }
  .-mt-sm-130 {
    margin-top: -130px !important;
  }
  .pb-sm-135 {
    padding-bottom: 135px !important;
  }
  .pt-sm-135 {
    padding-top: 135px !important;
  }
  .mb-sm-135 {
    margin-bottom: 135px !important;
  }
  .mt-sm-135 {
    margin-top: 135px !important;
  }
  .-pb-sm-135 {
    padding-bottom: -135px !important;
  }
  .-pt-sm-135 {
    padding-top: -135px !important;
  }
  .-mb-sm-135 {
    margin-bottom: -135px !important;
  }
  .-mt-sm-135 {
    margin-top: -135px !important;
  }
  .pb-sm-140 {
    padding-bottom: 140px !important;
  }
  .pt-sm-140 {
    padding-top: 140px !important;
  }
  .mb-sm-140 {
    margin-bottom: 140px !important;
  }
  .mt-sm-140 {
    margin-top: 140px !important;
  }
  .-pb-sm-140 {
    padding-bottom: -140px !important;
  }
  .-pt-sm-140 {
    padding-top: -140px !important;
  }
  .-mb-sm-140 {
    margin-bottom: -140px !important;
  }
  .-mt-sm-140 {
    margin-top: -140px !important;
  }
  .pb-sm-145 {
    padding-bottom: 145px !important;
  }
  .pt-sm-145 {
    padding-top: 145px !important;
  }
  .mb-sm-145 {
    margin-bottom: 145px !important;
  }
  .mt-sm-145 {
    margin-top: 145px !important;
  }
  .-pb-sm-145 {
    padding-bottom: -145px !important;
  }
  .-pt-sm-145 {
    padding-top: -145px !important;
  }
  .-mb-sm-145 {
    margin-bottom: -145px !important;
  }
  .-mt-sm-145 {
    margin-top: -145px !important;
  }
  .pb-sm-150 {
    padding-bottom: 150px !important;
  }
  .pt-sm-150 {
    padding-top: 150px !important;
  }
  .mb-sm-150 {
    margin-bottom: 150px !important;
  }
  .mt-sm-150 {
    margin-top: 150px !important;
  }
  .-pb-sm-150 {
    padding-bottom: -150px !important;
  }
  .-pt-sm-150 {
    padding-top: -150px !important;
  }
  .-mb-sm-150 {
    margin-bottom: -150px !important;
  }
  .-mt-sm-150 {
    margin-top: -150px !important;
  }
  .pb-sm-155 {
    padding-bottom: 155px !important;
  }
  .pt-sm-155 {
    padding-top: 155px !important;
  }
  .mb-sm-155 {
    margin-bottom: 155px !important;
  }
  .mt-sm-155 {
    margin-top: 155px !important;
  }
  .-pb-sm-155 {
    padding-bottom: -155px !important;
  }
  .-pt-sm-155 {
    padding-top: -155px !important;
  }
  .-mb-sm-155 {
    margin-bottom: -155px !important;
  }
  .-mt-sm-155 {
    margin-top: -155px !important;
  }
  .pb-sm-160 {
    padding-bottom: 160px !important;
  }
  .pt-sm-160 {
    padding-top: 160px !important;
  }
  .mb-sm-160 {
    margin-bottom: 160px !important;
  }
  .mt-sm-160 {
    margin-top: 160px !important;
  }
  .-pb-sm-160 {
    padding-bottom: -160px !important;
  }
  .-pt-sm-160 {
    padding-top: -160px !important;
  }
  .-mb-sm-160 {
    margin-bottom: -160px !important;
  }
  .-mt-sm-160 {
    margin-top: -160px !important;
  }
  .pb-sm-165 {
    padding-bottom: 165px !important;
  }
  .pt-sm-165 {
    padding-top: 165px !important;
  }
  .mb-sm-165 {
    margin-bottom: 165px !important;
  }
  .mt-sm-165 {
    margin-top: 165px !important;
  }
  .-pb-sm-165 {
    padding-bottom: -165px !important;
  }
  .-pt-sm-165 {
    padding-top: -165px !important;
  }
  .-mb-sm-165 {
    margin-bottom: -165px !important;
  }
  .-mt-sm-165 {
    margin-top: -165px !important;
  }
  .pb-sm-170 {
    padding-bottom: 170px !important;
  }
  .pt-sm-170 {
    padding-top: 170px !important;
  }
  .mb-sm-170 {
    margin-bottom: 170px !important;
  }
  .mt-sm-170 {
    margin-top: 170px !important;
  }
  .-pb-sm-170 {
    padding-bottom: -170px !important;
  }
  .-pt-sm-170 {
    padding-top: -170px !important;
  }
  .-mb-sm-170 {
    margin-bottom: -170px !important;
  }
  .-mt-sm-170 {
    margin-top: -170px !important;
  }
  .pb-sm-175 {
    padding-bottom: 175px !important;
  }
  .pt-sm-175 {
    padding-top: 175px !important;
  }
  .mb-sm-175 {
    margin-bottom: 175px !important;
  }
  .mt-sm-175 {
    margin-top: 175px !important;
  }
  .-pb-sm-175 {
    padding-bottom: -175px !important;
  }
  .-pt-sm-175 {
    padding-top: -175px !important;
  }
  .-mb-sm-175 {
    margin-bottom: -175px !important;
  }
  .-mt-sm-175 {
    margin-top: -175px !important;
  }
  .pb-sm-180 {
    padding-bottom: 180px !important;
  }
  .pt-sm-180 {
    padding-top: 180px !important;
  }
  .mb-sm-180 {
    margin-bottom: 180px !important;
  }
  .mt-sm-180 {
    margin-top: 180px !important;
  }
  .-pb-sm-180 {
    padding-bottom: -180px !important;
  }
  .-pt-sm-180 {
    padding-top: -180px !important;
  }
  .-mb-sm-180 {
    margin-bottom: -180px !important;
  }
  .-mt-sm-180 {
    margin-top: -180px !important;
  }
  .pb-sm-185 {
    padding-bottom: 185px !important;
  }
  .pt-sm-185 {
    padding-top: 185px !important;
  }
  .mb-sm-185 {
    margin-bottom: 185px !important;
  }
  .mt-sm-185 {
    margin-top: 185px !important;
  }
  .-pb-sm-185 {
    padding-bottom: -185px !important;
  }
  .-pt-sm-185 {
    padding-top: -185px !important;
  }
  .-mb-sm-185 {
    margin-bottom: -185px !important;
  }
  .-mt-sm-185 {
    margin-top: -185px !important;
  }
  .pb-sm-190 {
    padding-bottom: 190px !important;
  }
  .pt-sm-190 {
    padding-top: 190px !important;
  }
  .mb-sm-190 {
    margin-bottom: 190px !important;
  }
  .mt-sm-190 {
    margin-top: 190px !important;
  }
  .-pb-sm-190 {
    padding-bottom: -190px !important;
  }
  .-pt-sm-190 {
    padding-top: -190px !important;
  }
  .-mb-sm-190 {
    margin-bottom: -190px !important;
  }
  .-mt-sm-190 {
    margin-top: -190px !important;
  }
  .pb-sm-195 {
    padding-bottom: 195px !important;
  }
  .pt-sm-195 {
    padding-top: 195px !important;
  }
  .mb-sm-195 {
    margin-bottom: 195px !important;
  }
  .mt-sm-195 {
    margin-top: 195px !important;
  }
  .-pb-sm-195 {
    padding-bottom: -195px !important;
  }
  .-pt-sm-195 {
    padding-top: -195px !important;
  }
  .-mb-sm-195 {
    margin-bottom: -195px !important;
  }
  .-mt-sm-195 {
    margin-top: -195px !important;
  }
  .pb-sm-200 {
    padding-bottom: 200px !important;
  }
  .pt-sm-200 {
    padding-top: 200px !important;
  }
  .mb-sm-200 {
    margin-bottom: 200px !important;
  }
  .mt-sm-200 {
    margin-top: 200px !important;
  }
  .-pb-sm-200 {
    padding-bottom: -200px !important;
  }
  .-pt-sm-200 {
    padding-top: -200px !important;
  }
  .-mb-sm-200 {
    margin-bottom: -200px !important;
  }
  .-mt-sm-200 {
    margin-top: -200px !important;
  }
}
.fs-0 {
  font-size: 0px !important;
}

.fs-1 {
  font-size: 1px !important;
}

.fs-2 {
  font-size: 2px !important;
}

.fs-3 {
  font-size: 3px !important;
}

.fs-4 {
  font-size: 4px !important;
}

.fs-5 {
  font-size: 5px !important;
}

.fs-6 {
  font-size: 6px !important;
}

.fs-7 {
  font-size: 7px !important;
}

.fs-8 {
  font-size: 8px !important;
}

.fs-9 {
  font-size: 9px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-21 {
  font-size: 21px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-23 {
  font-size: 23px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-27 {
  font-size: 27px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-29 {
  font-size: 29px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-31 {
  font-size: 31px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-33 {
  font-size: 33px !important;
}

.fs-34 {
  font-size: 34px !important;
}

.fs-35 {
  font-size: 35px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-37 {
  font-size: 37px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-39 {
  font-size: 39px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-41 {
  font-size: 41px !important;
}

.fs-42 {
  font-size: 42px !important;
}

.fs-43 {
  font-size: 43px !important;
}

.fs-44 {
  font-size: 44px !important;
}

.fs-45 {
  font-size: 45px !important;
}

.fs-46 {
  font-size: 46px !important;
}

.fs-47 {
  font-size: 47px !important;
}

.fs-48 {
  font-size: 48px !important;
}

.fs-49 {
  font-size: 49px !important;
}

.fs-50 {
  font-size: 50px !important;
}

@media screen and (max-width: 768px) {
  .fs-md-0 {
    font-size: 0px !important;
  }
  .fs-md-1 {
    font-size: 1px !important;
  }
  .fs-md-2 {
    font-size: 2px !important;
  }
  .fs-md-3 {
    font-size: 3px !important;
  }
  .fs-md-4 {
    font-size: 4px !important;
  }
  .fs-md-5 {
    font-size: 5px !important;
  }
  .fs-md-6 {
    font-size: 6px !important;
  }
  .fs-md-7 {
    font-size: 7px !important;
  }
  .fs-md-8 {
    font-size: 8px !important;
  }
  .fs-md-9 {
    font-size: 9px !important;
  }
  .fs-md-10 {
    font-size: 10px !important;
  }
  .fs-md-11 {
    font-size: 11px !important;
  }
  .fs-md-12 {
    font-size: 12px !important;
  }
  .fs-md-13 {
    font-size: 13px !important;
  }
  .fs-md-14 {
    font-size: 14px !important;
  }
  .fs-md-15 {
    font-size: 15px !important;
  }
  .fs-md-16 {
    font-size: 16px !important;
  }
  .fs-md-17 {
    font-size: 17px !important;
  }
  .fs-md-18 {
    font-size: 18px !important;
  }
  .fs-md-19 {
    font-size: 19px !important;
  }
  .fs-md-20 {
    font-size: 20px !important;
  }
  .fs-md-21 {
    font-size: 21px !important;
  }
  .fs-md-22 {
    font-size: 22px !important;
  }
  .fs-md-23 {
    font-size: 23px !important;
  }
  .fs-md-24 {
    font-size: 24px !important;
  }
  .fs-md-25 {
    font-size: 25px !important;
  }
  .fs-md-26 {
    font-size: 26px !important;
  }
  .fs-md-27 {
    font-size: 27px !important;
  }
  .fs-md-28 {
    font-size: 28px !important;
  }
  .fs-md-29 {
    font-size: 29px !important;
  }
  .fs-md-30 {
    font-size: 30px !important;
  }
  .fs-md-31 {
    font-size: 31px !important;
  }
  .fs-md-32 {
    font-size: 32px !important;
  }
  .fs-md-33 {
    font-size: 33px !important;
  }
  .fs-md-34 {
    font-size: 34px !important;
  }
  .fs-md-35 {
    font-size: 35px !important;
  }
  .fs-md-36 {
    font-size: 36px !important;
  }
  .fs-md-37 {
    font-size: 37px !important;
  }
  .fs-md-38 {
    font-size: 38px !important;
  }
  .fs-md-39 {
    font-size: 39px !important;
  }
  .fs-md-40 {
    font-size: 40px !important;
  }
  .fs-md-41 {
    font-size: 41px !important;
  }
  .fs-md-42 {
    font-size: 42px !important;
  }
  .fs-md-43 {
    font-size: 43px !important;
  }
  .fs-md-44 {
    font-size: 44px !important;
  }
  .fs-md-45 {
    font-size: 45px !important;
  }
  .fs-md-46 {
    font-size: 46px !important;
  }
  .fs-md-47 {
    font-size: 47px !important;
  }
  .fs-md-48 {
    font-size: 48px !important;
  }
  .fs-md-49 {
    font-size: 49px !important;
  }
  .fs-md-50 {
    font-size: 50px !important;
  }
}
@media screen and (max-width: 576px) {
  .fs-sm-0 {
    font-size: 0px !important;
  }
  .fs-sm-1 {
    font-size: 1px !important;
  }
  .fs-sm-2 {
    font-size: 2px !important;
  }
  .fs-sm-3 {
    font-size: 3px !important;
  }
  .fs-sm-4 {
    font-size: 4px !important;
  }
  .fs-sm-5 {
    font-size: 5px !important;
  }
  .fs-sm-6 {
    font-size: 6px !important;
  }
  .fs-sm-7 {
    font-size: 7px !important;
  }
  .fs-sm-8 {
    font-size: 8px !important;
  }
  .fs-sm-9 {
    font-size: 9px !important;
  }
  .fs-sm-10 {
    font-size: 10px !important;
  }
  .fs-sm-11 {
    font-size: 11px !important;
  }
  .fs-sm-12 {
    font-size: 12px !important;
  }
  .fs-sm-13 {
    font-size: 13px !important;
  }
  .fs-sm-14 {
    font-size: 14px !important;
  }
  .fs-sm-15 {
    font-size: 15px !important;
  }
  .fs-sm-16 {
    font-size: 16px !important;
  }
  .fs-sm-17 {
    font-size: 17px !important;
  }
  .fs-sm-18 {
    font-size: 18px !important;
  }
  .fs-sm-19 {
    font-size: 19px !important;
  }
  .fs-sm-20 {
    font-size: 20px !important;
  }
  .fs-sm-21 {
    font-size: 21px !important;
  }
  .fs-sm-22 {
    font-size: 22px !important;
  }
  .fs-sm-23 {
    font-size: 23px !important;
  }
  .fs-sm-24 {
    font-size: 24px !important;
  }
  .fs-sm-25 {
    font-size: 25px !important;
  }
  .fs-sm-26 {
    font-size: 26px !important;
  }
  .fs-sm-27 {
    font-size: 27px !important;
  }
  .fs-sm-28 {
    font-size: 28px !important;
  }
  .fs-sm-29 {
    font-size: 29px !important;
  }
  .fs-sm-30 {
    font-size: 30px !important;
  }
  .fs-sm-31 {
    font-size: 31px !important;
  }
  .fs-sm-32 {
    font-size: 32px !important;
  }
  .fs-sm-33 {
    font-size: 33px !important;
  }
  .fs-sm-34 {
    font-size: 34px !important;
  }
  .fs-sm-35 {
    font-size: 35px !important;
  }
  .fs-sm-36 {
    font-size: 36px !important;
  }
  .fs-sm-37 {
    font-size: 37px !important;
  }
  .fs-sm-38 {
    font-size: 38px !important;
  }
  .fs-sm-39 {
    font-size: 39px !important;
  }
  .fs-sm-40 {
    font-size: 40px !important;
  }
  .fs-sm-41 {
    font-size: 41px !important;
  }
  .fs-sm-42 {
    font-size: 42px !important;
  }
  .fs-sm-43 {
    font-size: 43px !important;
  }
  .fs-sm-44 {
    font-size: 44px !important;
  }
  .fs-sm-45 {
    font-size: 45px !important;
  }
  .fs-sm-46 {
    font-size: 46px !important;
  }
  .fs-sm-47 {
    font-size: 47px !important;
  }
  .fs-sm-48 {
    font-size: 48px !important;
  }
  .fs-sm-49 {
    font-size: 49px !important;
  }
  .fs-sm-50 {
    font-size: 50px !important;
  }
}
.ls-0 {
  letter-spacing: 0em !important;
}

.ls-5 {
  letter-spacing: 0.05em !important;
}

.ls-10 {
  letter-spacing: 0.1em !important;
}

.ls-15 {
  letter-spacing: 0.15em !important;
}

.ls-20 {
  letter-spacing: 0.2em !important;
}

.ls-25 {
  letter-spacing: 0.25em !important;
}

.ls-30 {
  letter-spacing: 0.3em !important;
}

.ls-35 {
  letter-spacing: 0.35em !important;
}

.ls-40 {
  letter-spacing: 0.4em !important;
}

.ls-45 {
  letter-spacing: 0.45em !important;
}

.ls-50 {
  letter-spacing: 0.5em !important;
}

.ls-55 {
  letter-spacing: 0.55em !important;
}

.ls-60 {
  letter-spacing: 0.6em !important;
}

.ls-65 {
  letter-spacing: 0.65em !important;
}

.ls-70 {
  letter-spacing: 0.7em !important;
}

.ls-75 {
  letter-spacing: 0.75em !important;
}

.ls-80 {
  letter-spacing: 0.8em !important;
}

.ls-85 {
  letter-spacing: 0.85em !important;
}

.ls-90 {
  letter-spacing: 0.9em !important;
}

.ls-95 {
  letter-spacing: 0.95em !important;
}

.ls-100 {
  letter-spacing: 1em !important;
}

@media screen and (max-width: 768px) {
  .ls-md-0 {
    letter-spacing: 0em !important;
  }
  .ls-md-5 {
    letter-spacing: 0.05em !important;
  }
  .ls-md-10 {
    letter-spacing: 0.1em !important;
  }
  .ls-md-15 {
    letter-spacing: 0.15em !important;
  }
  .ls-md-20 {
    letter-spacing: 0.2em !important;
  }
  .ls-md-25 {
    letter-spacing: 0.25em !important;
  }
  .ls-md-30 {
    letter-spacing: 0.3em !important;
  }
  .ls-md-35 {
    letter-spacing: 0.35em !important;
  }
  .ls-md-40 {
    letter-spacing: 0.4em !important;
  }
  .ls-md-45 {
    letter-spacing: 0.45em !important;
  }
  .ls-md-50 {
    letter-spacing: 0.5em !important;
  }
  .ls-md-55 {
    letter-spacing: 0.55em !important;
  }
  .ls-md-60 {
    letter-spacing: 0.6em !important;
  }
  .ls-md-65 {
    letter-spacing: 0.65em !important;
  }
  .ls-md-70 {
    letter-spacing: 0.7em !important;
  }
  .ls-md-75 {
    letter-spacing: 0.75em !important;
  }
  .ls-md-80 {
    letter-spacing: 0.8em !important;
  }
  .ls-md-85 {
    letter-spacing: 0.85em !important;
  }
  .ls-md-90 {
    letter-spacing: 0.9em !important;
  }
  .ls-md-95 {
    letter-spacing: 0.95em !important;
  }
  .ls-md-100 {
    letter-spacing: 1em !important;
  }
}
@media screen and (max-width: 576px) {
  .ls-sm-0 {
    letter-spacing: 0em !important;
  }
  .ls-sm-5 {
    letter-spacing: 0.05em !important;
  }
  .ls-sm-10 {
    letter-spacing: 0.1em !important;
  }
  .ls-sm-15 {
    letter-spacing: 0.15em !important;
  }
  .ls-sm-20 {
    letter-spacing: 0.2em !important;
  }
  .ls-sm-25 {
    letter-spacing: 0.25em !important;
  }
  .ls-sm-30 {
    letter-spacing: 0.3em !important;
  }
  .ls-sm-35 {
    letter-spacing: 0.35em !important;
  }
  .ls-sm-40 {
    letter-spacing: 0.4em !important;
  }
  .ls-sm-45 {
    letter-spacing: 0.45em !important;
  }
  .ls-sm-50 {
    letter-spacing: 0.5em !important;
  }
  .ls-sm-55 {
    letter-spacing: 0.55em !important;
  }
  .ls-sm-60 {
    letter-spacing: 0.6em !important;
  }
  .ls-sm-65 {
    letter-spacing: 0.65em !important;
  }
  .ls-sm-70 {
    letter-spacing: 0.7em !important;
  }
  .ls-sm-75 {
    letter-spacing: 0.75em !important;
  }
  .ls-sm-80 {
    letter-spacing: 0.8em !important;
  }
  .ls-sm-85 {
    letter-spacing: 0.85em !important;
  }
  .ls-sm-90 {
    letter-spacing: 0.9em !important;
  }
  .ls-sm-95 {
    letter-spacing: 0.95em !important;
  }
  .ls-sm-100 {
    letter-spacing: 1em !important;
  }
}
.lh-0 {
  line-height: 0 !important;
}

.lh-1 {
  line-height: 0.1 !important;
}

.lh-2 {
  line-height: 0.2 !important;
}

.lh-3 {
  line-height: 0.3 !important;
}

.lh-4 {
  line-height: 0.4 !important;
}

.lh-5 {
  line-height: 0.5 !important;
}

.lh-6 {
  line-height: 0.6 !important;
}

.lh-7 {
  line-height: 0.7 !important;
}

.lh-8 {
  line-height: 0.8 !important;
}

.lh-9 {
  line-height: 0.9 !important;
}

.lh-10 {
  line-height: 1 !important;
}

.lh-11 {
  line-height: 1.1 !important;
}

.lh-12 {
  line-height: 1.2 !important;
}

.lh-13 {
  line-height: 1.3 !important;
}

.lh-14 {
  line-height: 1.4 !important;
}

.lh-15 {
  line-height: 1.5 !important;
}

.lh-16 {
  line-height: 1.6 !important;
}

.lh-17 {
  line-height: 1.7 !important;
}

.lh-18 {
  line-height: 1.8 !important;
}

.lh-19 {
  line-height: 1.9 !important;
}

.lh-20 {
  line-height: 2 !important;
}

.lh-21 {
  line-height: 2.1 !important;
}

.lh-22 {
  line-height: 2.2 !important;
}

.lh-23 {
  line-height: 2.3 !important;
}

.lh-24 {
  line-height: 2.4 !important;
}

.lh-25 {
  line-height: 2.5 !important;
}

.lh-26 {
  line-height: 2.6 !important;
}

.lh-27 {
  line-height: 2.7 !important;
}

.lh-28 {
  line-height: 2.8 !important;
}

.lh-29 {
  line-height: 2.9 !important;
}

.lh-30 {
  line-height: 3 !important;
}

@media screen and (max-width: 768px) {
  .lh-md-0 {
    line-height: 0 !important;
  }
  .lh-md-1 {
    line-height: 0.1 !important;
  }
  .lh-md-2 {
    line-height: 0.2 !important;
  }
  .lh-md-3 {
    line-height: 0.3 !important;
  }
  .lh-md-4 {
    line-height: 0.4 !important;
  }
  .lh-md-5 {
    line-height: 0.5 !important;
  }
  .lh-md-6 {
    line-height: 0.6 !important;
  }
  .lh-md-7 {
    line-height: 0.7 !important;
  }
  .lh-md-8 {
    line-height: 0.8 !important;
  }
  .lh-md-9 {
    line-height: 0.9 !important;
  }
  .lh-md-10 {
    line-height: 1 !important;
  }
  .lh-md-11 {
    line-height: 1.1 !important;
  }
  .lh-md-12 {
    line-height: 1.2 !important;
  }
  .lh-md-13 {
    line-height: 1.3 !important;
  }
  .lh-md-14 {
    line-height: 1.4 !important;
  }
  .lh-md-15 {
    line-height: 1.5 !important;
  }
  .lh-md-16 {
    line-height: 1.6 !important;
  }
  .lh-md-17 {
    line-height: 1.7 !important;
  }
  .lh-md-18 {
    line-height: 1.8 !important;
  }
  .lh-md-19 {
    line-height: 1.9 !important;
  }
  .lh-md-20 {
    line-height: 2 !important;
  }
  .lh-md-21 {
    line-height: 2.1 !important;
  }
  .lh-md-22 {
    line-height: 2.2 !important;
  }
  .lh-md-23 {
    line-height: 2.3 !important;
  }
  .lh-md-24 {
    line-height: 2.4 !important;
  }
  .lh-md-25 {
    line-height: 2.5 !important;
  }
  .lh-md-26 {
    line-height: 2.6 !important;
  }
  .lh-md-27 {
    line-height: 2.7 !important;
  }
  .lh-md-28 {
    line-height: 2.8 !important;
  }
  .lh-md-29 {
    line-height: 2.9 !important;
  }
  .lh-md-30 {
    line-height: 3 !important;
  }
}
@media screen and (max-width: 576px) {
  .lh-sm-0 {
    line-height: 0 !important;
  }
  .lh-sm-1 {
    line-height: 0.1 !important;
  }
  .lh-sm-2 {
    line-height: 0.2 !important;
  }
  .lh-sm-3 {
    line-height: 0.3 !important;
  }
  .lh-sm-4 {
    line-height: 0.4 !important;
  }
  .lh-sm-5 {
    line-height: 0.5 !important;
  }
  .lh-sm-6 {
    line-height: 0.6 !important;
  }
  .lh-sm-7 {
    line-height: 0.7 !important;
  }
  .lh-sm-8 {
    line-height: 0.8 !important;
  }
  .lh-sm-9 {
    line-height: 0.9 !important;
  }
  .lh-sm-10 {
    line-height: 1 !important;
  }
  .lh-sm-11 {
    line-height: 1.1 !important;
  }
  .lh-sm-12 {
    line-height: 1.2 !important;
  }
  .lh-sm-13 {
    line-height: 1.3 !important;
  }
  .lh-sm-14 {
    line-height: 1.4 !important;
  }
  .lh-sm-15 {
    line-height: 1.5 !important;
  }
  .lh-sm-16 {
    line-height: 1.6 !important;
  }
  .lh-sm-17 {
    line-height: 1.7 !important;
  }
  .lh-sm-18 {
    line-height: 1.8 !important;
  }
  .lh-sm-19 {
    line-height: 1.9 !important;
  }
  .lh-sm-20 {
    line-height: 2 !important;
  }
  .lh-sm-21 {
    line-height: 2.1 !important;
  }
  .lh-sm-22 {
    line-height: 2.2 !important;
  }
  .lh-sm-23 {
    line-height: 2.3 !important;
  }
  .lh-sm-24 {
    line-height: 2.4 !important;
  }
  .lh-sm-25 {
    line-height: 2.5 !important;
  }
  .lh-sm-26 {
    line-height: 2.6 !important;
  }
  .lh-sm-27 {
    line-height: 2.7 !important;
  }
  .lh-sm-28 {
    line-height: 2.8 !important;
  }
  .lh-sm-29 {
    line-height: 2.9 !important;
  }
  .lh-sm-30 {
    line-height: 3 !important;
  }
}
.fw-b {
  font-weight: 700 !important;
}

.fw-m {
  font-weight: 500 !important;
}

.fw-r {
  font-weight: 400 !important;
}

.fw-l {
  font-weight: 300 !important;
}

.fw-t {
  font-weight: 100 !important;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

:root {
  --map-height: 500px;
}

@media screen and (max-width: 768px) {
  :root {
    --map-height: 300px;
  }
}
.ggmap {
  position: relative;
  height: var(--map-height);
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: calc(var(--map-height) * 2);
}

.hoverBtn {
  transition: 0.3s;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
}
.btn::-ms-expand {
  display: none;
}

body.of-hidden {
  overflow-y: hidden;
}

body * {
  font-family: "Jost", "Herlvetica Neue", Helvetica, "Noto Sans JP", "Noto Sans CJK JP", "Yu Gothic", YuGothic, "Hiragino Sans", sans-serif;
}

@font-face {
  font-family: "Jost";
  src: url("./fonts/Jost-200-subset.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Jost";
  src: url("./fonts/Jost-300-subset.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Jost";
  src: url("./fonts/Jost-400-subset.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
}

a, a:visited {
  color: inherit; /* または、通常のリンクと同じ色を指定 */
}

header {
  width: 100%;
  margin-bottom: 40px;
  z-index: 1000;
  position: sticky;
  top: 0px;
  left: 0px;
  background: white;
  transition: 0.5s;
}
header.fix {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 576px) {
  header {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  header .headerInner {
    position: relative;
  }
}
header .headerInner .logoBox {
  padding: 24px 20px 4px 24px;
  text-align: center;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  header .headerInner .logoBox {
    padding: 20px 20px;
  }
  header .headerInner .logoBox img {
    max-width: 225px;
  }
}
header .headerInner nav {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .headerInner nav {
    position: absolute;
    margin: 0;
    top: 12px;
    left: 10px;
    transform: none;
  }
}
header .headerInner .menuBtn {
  width: 17px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: -28px;
  z-index: 1000;
  transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header .headerInner .menuBtn {
    left: inherit;
    top: inherit;
    transform: none;
  }
}
header .headerInner .menuBtn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #C7C7C7;
  transition: 0.3s;
  position: relative;
}
header .headerInner .menuBtn span:nth-child(1) {
  top: 0;
}
header .headerInner .menuBtn span:nth-child(3) {
  bottom: 0;
}
header .headerInner .menuBtn span:nth-child(2) {
  opacity: 1;
}
header .headerInner .menuBtn.active span:nth-child(1) {
  rotate: 45deg;
  top: 5px;
}
header .headerInner .menuBtn.active span:nth-child(3) {
  rotate: -45deg;
  bottom: 5px;
}
header .headerInner .menuBtn.active span:nth-child(2) {
  opacity: 0;
}
header .headerInner .menu {
  padding: 20px 20px 20px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}
@media screen and (max-width: 768px) {
  header .headerInner .menu {
    display: none;
  }
}
header .headerInner .menu a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: #000;
}
header .headerInner .menu a:hover {
  color: #bf193f;
}
header .toggleMenu {
  width: 100%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transform: translateY(-150%);
  transition: 0.5s;
  background: #FFF;
}
header .toggleMenu nav {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 150px 100px;
  overflow-y: auto;
}
header .toggleMenu nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
header .toggleMenu nav ul li a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #000;
}
header .toggleMenu nav ul li a:hover {
  color: #bf193f;
}
header .toggleMenu.active {
  transform: translateY(0%);
}

.contentsContainer {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px; /* base: スマホ */
}

@media (min-width: 768px) {
  .contentsContainer { /* タブレット */
    padding: 0 40px;
  }
}
@media (min-width: 1300px) {
  .contentsContainer { /* PCワイド */
    padding: 0 66px;
  }
}
.title_h2 {
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.category_h {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 576px) {
  .category_h {
    font-size: 24px;
  }
}

article.box a {
  color: #000;
  transition: 0.3s;
}
article.box a:hover {
  color: #bf193f;
}
article.box .imgBox {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  article.box .imgBox {
    margin-bottom: 10px;
  }
}
article.box .category {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: #000;
  text-transform: uppercase;
  line-height: 1em;
}
@media screen and (max-width: 576px) {
  article.box .category {
    font-size: 12px;
  }
}
article.box .articleTitle {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Yu Gothic", YuGothic, "Hiragino Sans", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 1.3em;
  line-break: strict;
  overflow-wrap: break-word;
}
@media screen and (max-width: 576px) {
  article.box .articleTitle {
    font-size: 16px;
  }
}
article.box time {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #222;
}
.mvWrapper {
  max-width: 1600px;
  margin: 0 auto;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .mvWrapper .mvSlide {
    margin-bottom: 0;
  }
}
.mvWrapper .mvSlide .box {
  position: relative;
  margin: 0 3px;
  transition: 0.3s;
  /*
  &:has(+ .slick-center){
  	a{
  		transform: translateX(-50%);
  	}
  }
  */
}
@media screen and (max-width: 768px) {
  .mvWrapper .mvSlide .box {
    margin: 0;
  }
}
.mvWrapper .mvSlide .box a {
  display: flex;
  color: #000;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .mvWrapper .mvSlide .box a {
    gap: 10px;
    flex-direction: column;
  }
}
.mvWrapper .mvSlide .box a:hover {
  color: #bf193f;
}
.mvWrapper .mvSlide .box a .imgBox {
  width: 100%;
  margin-bottom: 0;
  max-height: 700px;
}
.mvWrapper .mvSlide .box a .imgBox img {
  width: 100%;
  height: 56.25vw; /* 16:9（=9/16*100vw）。必要に応じて変更 */
  max-height: 720px; /* 上限を付けたい場合。不要なら削除可 */
  -o-object-fit: cover;
     object-fit: cover; /* 画像をカバー表示（上下左右をトリム） */
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .mvWrapper .mvSlide .box a .imgBox {
    max-width: inherit;
  }
  .mvWrapper .mvSlide .box a .imgBox img {
    width: 100%;
  }
}
.mvWrapper .mvSlide .box a .articleData {
  width: 70%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0; /* 画面下に貼り付け */
  z-index: 2;
  padding: 24px 24px 28px;
}
.mvWrapper .mvSlide .box a .articleData ::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .mvWrapper .mvSlide .box a .articleData {
    max-width: inherit;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    padding: 12px 10px 7px;
  }
}
.mvWrapper .mvSlide .box a .articleData .category {
  margin-bottom: 0;
  font-size: 14px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .mvWrapper .mvSlide .box a .articleData .category {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.mvWrapper .mvSlide .box a .articleData time {
  display: block;
  margin-bottom: 24px;
  font-size: 12px;
  color: #797979;
}
@media screen and (max-width: 768px) {
  .mvWrapper .mvSlide .box a .articleData time {
    padding-top: 3px;
    margin-bottom: 0;
  }
}
.mvWrapper .mvSlide .box a .articleData .articleTitle {
  font-size: 36px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .mvWrapper .mvSlide .box a .articleData .articleTitle {
    font-size: 26px;
  }
}
@media screen and (max-width: 576px) {
  .mvWrapper .mvSlide .box a .articleData .articleTitle {
    font-size: 16px;
  }
}
.mvWrapper .optionBox {
  max-width: 100%;
  padding: 0 66px;
  margin: 15px auto 0 auto;
  display: flex;
  gap: 26px;
}
@media screen and (max-width: 576px) {
  .mvWrapper .optionBox {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .mvWrapper .optionBox {
    padding: 0 40px;
  }
}
@media screen and (max-width: 992px) {
  .mvWrapper .optionBox .contentsContainer { /* PCワイド */
    padding: 0 40px;
  }
}
.mvWrapper .optionBox .dots-wrap {
  display: flex;
  gap: 10px;
  position: relative;
}
.mvWrapper .optionBox .dots-wrap li {
  width: 14px;
  height: 14px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .mvWrapper .optionBox .dots-wrap li {
    width: 10px;
    height: 10px;
  }
}
.mvWrapper .optionBox .dots-wrap li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  border: 0;
  outline: none;
  background: rgba(0, 0, 0, 0);
  width: inherit;
  height: inherit;
  margin: inherit;
  padding: inherit;
}
.mvWrapper .optionBox .dots-wrap li button::before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  background: #D9D9D9;
  border-radius: 14px;
  opacity: 1;
}
.mvWrapper .optionBox .dots-wrap li.slick-active button::before {
  background: #000;
}
.mvWrapper .optionBox .arrows {
  display: flex;
  align-items: center;
}
.mvWrapper .optionBox .arrows .slick-prev {
  display: none;
}
.mvWrapper .optionBox .arrows .arrow_next {
  height: 7px;
  cursor: pointer;
}

.latestArticleContents {
  padding-bottom: 34px;
}
.latestArticleContents .contents {
  display: flex;
  gap: 45px 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .latestArticleContents .contents {
    gap: 30px;
  }
}
.latestArticleContents .contents > .box {
  width: calc((100% - 40px) / 3);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .latestArticleContents .contents > .box {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    width: 100%;
  }
}
.latestArticleContents .contents > .box .imgBox img {
  width: 100%;
  aspect-ratio: 345/285;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.latestArticleContents .contents > .box:nth-child(1), .latestArticleContents .contents > .box:nth-child(2) {
  display: block;
  width: calc((100% - 20px) / 2);
  text-align: left;
}
.latestArticleContents .contents > .box:nth-child(1) .articleTitle, .latestArticleContents .contents > .box:nth-child(2) .articleTitle {
  font-size: 27px;
}
.latestArticleContents .contents > .box:nth-child(1) .imgBox img, .latestArticleContents .contents > .box:nth-child(2) .imgBox img {
  width: 100%;
  aspect-ratio: 525/300;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media screen and (max-width: 768px) {
  .latestArticleContents .contents > .box:nth-child(1), .latestArticleContents .contents > .box:nth-child(2) {
    width: 100%;
  }
  .latestArticleContents .contents > .box:nth-child(1):not(:last-child), .latestArticleContents .contents > .box:nth-child(2):not(:last-child) {
    margin-bottom: 10px;
  }
  .latestArticleContents .contents > .box:nth-child(1) .category, .latestArticleContents .contents > .box:nth-child(2) .category {
    margin-bottom: 5px;
  }
  .latestArticleContents .contents > .box:nth-child(1) .imgBox img, .latestArticleContents .contents > .box:nth-child(2) .imgBox img {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .latestArticleContents .contents > .box:nth-child(1) .articleTitle, .latestArticleContents .contents > .box:nth-child(2) .articleTitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .latestArticleContents .contents > .box:nth-child(n+3) a {
    display: flex;
    gap: 20px;
    text-align: left;
  }
  .latestArticleContents .contents > .box:nth-child(n+3) a .imgBox {
    min-width: 120px;
    max-width: 120px;
    margin-bottom: 0;
  }
}

.FeatureContents {
  padding: 65px 0 20px;
  background: #F5F5F5;
}
.FeatureContents .contents {
  display: flex;
  gap: 45px 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .FeatureContents .contents {
    gap: 0;
    justify-content: space-between;
  }
}
.FeatureContents .contents > .box {
  width: calc((100% - 90px) / 4);
}
.FeatureContents .contents > .box .category {
  margin-bottom: 10px;
}
.FeatureContents .contents > .box .articleTitle {
  font-weight: 400;
}
.FeatureContents .contents > .box .imgBox a img {
  width: 100%;
  aspect-ratio: 245/182;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media screen and (max-width: 768px) {
  .FeatureContents .contents > .box {
    width: calc(50% - 0.65rem);
    display: inline-block;
    gap: 30px;
  }
  .FeatureContents .contents > .box .imgBox {
    display: flex;
    gap: 20px;
    text-align: left;
  }
  .FeatureContents .contents > .box .imgBox .category {
    margin-bottom: 5px;
  }
  .FeatureContents .contents > .box .imgBox .articleTitle {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.BeautyContents .title_h2,
.MovieTvContents .title_h2,
.WellnessContents .title_h2,
.LifeStyleContents .title_h2,
.MusicContents .title_h2 {
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .BeautyContents .title_h2,
  .MovieTvContents .title_h2,
  .WellnessContents .title_h2,
  .LifeStyleContents .title_h2,
  .MusicContents .title_h2 {
    margin-top: 20px;
  }
}

.FashionContents,
.BeautyContents,
.MovieTvContents,
.MusicContents,
.WellnessContents,
.LifeStyleContents,
.ReccomendContents {
  padding: 45px 0 0 0;
}
.FashionContents .contents,
.BeautyContents .contents,
.MovieTvContents .contents,
.MusicContents .contents,
.WellnessContents .contents,
.LifeStyleContents .contents,
.ReccomendContents .contents {
  display: flex;
  gap: 45px 30px;
  align-items: flex-start;
}
.FashionContents .contents:not(:last-of-type),
.BeautyContents .contents:not(:last-of-type),
.MovieTvContents .contents:not(:last-of-type),
.MusicContents .contents:not(:last-of-type),
.WellnessContents .contents:not(:last-of-type),
.LifeStyleContents .contents:not(:last-of-type),
.ReccomendContents .contents:not(:last-of-type) {
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .FashionContents .contents,
  .BeautyContents .contents,
  .MovieTvContents .contents,
  .MusicContents .contents,
  .WellnessContents .contents,
  .LifeStyleContents .contents,
  .ReccomendContents .contents {
    flex-direction: column;
  }
}
.FashionContents .contents .imgBox img,
.BeautyContents .contents .imgBox img,
.MovieTvContents .contents .imgBox img,
.MusicContents .contents .imgBox img,
.WellnessContents .contents .imgBox img,
.LifeStyleContents .contents .imgBox img,
.ReccomendContents .contents .imgBox img {
  width: 100%;
}
.FashionContents .contents .bigContents,
.BeautyContents .contents .bigContents,
.MovieTvContents .contents .bigContents,
.MusicContents .contents .bigContents,
.WellnessContents .contents .bigContents,
.LifeStyleContents .contents .bigContents,
.ReccomendContents .contents .bigContents {
  width: 100%;
  max-width: 770px;
  position: sticky;
  left: 0;
  top: 120px;
}
.FashionContents .contents .bigContents .articleTitle,
.BeautyContents .contents .bigContents .articleTitle,
.MovieTvContents .contents .bigContents .articleTitle,
.MusicContents .contents .bigContents .articleTitle,
.WellnessContents .contents .bigContents .articleTitle,
.LifeStyleContents .contents .bigContents .articleTitle,
.ReccomendContents .contents .bigContents .articleTitle {
  font-size: 27px;
}
@media screen and (max-width: 576px) {
  .FashionContents .contents .bigContents .articleTitle,
  .BeautyContents .contents .bigContents .articleTitle,
  .MovieTvContents .contents .bigContents .articleTitle,
  .MusicContents .contents .bigContents .articleTitle,
  .WellnessContents .contents .bigContents .articleTitle,
  .LifeStyleContents .contents .bigContents .articleTitle,
  .ReccomendContents .contents .bigContents .articleTitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .FashionContents .contents .bigContents,
  .BeautyContents .contents .bigContents,
  .MovieTvContents .contents .bigContents,
  .MusicContents .contents .bigContents,
  .WellnessContents .contents .bigContents,
  .LifeStyleContents .contents .bigContents,
  .ReccomendContents .contents .bigContents {
    position: inherit;
    left: inherit;
    top: inherit;
    max-width: inherit;
  }
}
@media screen and (max-width: 768px) {
  .FashionContents .contents .bigContents .imgBox,
  .BeautyContents .contents .bigContents .imgBox,
  .MovieTvContents .contents .bigContents .imgBox,
  .MusicContents .contents .bigContents .imgBox,
  .WellnessContents .contents .bigContents .imgBox,
  .LifeStyleContents .contents .bigContents .imgBox,
  .ReccomendContents .contents .bigContents .imgBox {
    position: inherit;
    left: inherit;
    top: inherit;
    max-width: inherit;
  }
}
.FashionContents .contents .smallContents,
.BeautyContents .contents .smallContents,
.MovieTvContents .contents .smallContents,
.MusicContents .contents .smallContents,
.WellnessContents .contents .smallContents,
.LifeStyleContents .contents .smallContents,
.ReccomendContents .contents .smallContents {
  width: 100%;
  max-width: 830px;
  display: flex;
  gap: 45px 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .FashionContents .contents .smallContents,
  .BeautyContents .contents .smallContents,
  .MovieTvContents .contents .smallContents,
  .MusicContents .contents .smallContents,
  .WellnessContents .contents .smallContents,
  .LifeStyleContents .contents .smallContents,
  .ReccomendContents .contents .smallContents {
    gap: 45px 20px;
  }
}
.FashionContents .contents .smallContents > .box,
.BeautyContents .contents .smallContents > .box,
.MovieTvContents .contents .smallContents > .box,
.MusicContents .contents .smallContents > .box,
.WellnessContents .contents .smallContents > .box,
.LifeStyleContents .contents .smallContents > .box,
.ReccomendContents .contents .smallContents > .box {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 768px) {
  .FashionContents .contents .smallContents > .box,
  .BeautyContents .contents .smallContents > .box,
  .MovieTvContents .contents .smallContents > .box,
  .MusicContents .contents .smallContents > .box,
  .WellnessContents .contents .smallContents > .box,
  .LifeStyleContents .contents .smallContents > .box,
  .ReccomendContents .contents .smallContents > .box {
    width: calc((100% - 20px) / 2);
  }
}

.detailContents {
  padding-bottom: 125px;
}
@media screen and (max-width: 768px) {
  .detailContents {
    padding-bottom: 50px;
  }
}
.detailContents .contentsContainer {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .detailContents .contentsContainer {
    flex-direction: column;
  }
}
.detailContents .contentsContainer .leftContents {
  width: 100%;
  max-width: 660px;
}
@media screen and (max-width: 768px) {
  .detailContents .contentsContainer .leftContents {
    max-width: inherit;
  }
}
.detailContents .contentsContainer .leftContents > article .articleHead {
  margin-bottom: 35px;
}
.detailContents .contentsContainer .leftContents > article .articleHead .category {
  margin-bottom: 15px;
  font-size: 12px;
}
.detailContents .contentsContainer .leftContents > article .articleHead time {
  margin-bottom: 25px;
  font-size: 12px;
  color: #797979;
  display: inline-block;
}
.detailContents .contentsContainer .leftContents > article .articleHead .title_h1 {
  margin-bottom: 35px;
  font-size: 32px;
  letter-spacing: 0.03em;
  font-weight: 500;
  text-transform: none;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Yu Gothic", YuGothic, "Hiragino Sans", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.3em;
  line-break: strict;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .detailContents .contentsContainer .leftContents > article .articleHead .title_h1 {
    font-size: 28px;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .detailContents .contentsContainer .leftContents > article .articleHead .title_h1 {
    font-size: 24px;
    text-align: center;
  }
}
.detailContents .contentsContainer .leftContents > article .articleHead .writer {
  text-align: center;
}
.detailContents .contentsContainer .leftContents > article .articleHead .writer figure img {
  border-radius: 100px;
}
.detailContents .contentsContainer .leftContents > article .articleHead .writer figure figcaption {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #555;
}
.detailContents .contentsContainer .leftContents > article .articleHead .singleMainThumb {
  margin-top: 20px;
}
.detailContents .contentsContainer .leftContents > article .articleHead .imgCaption,
.detailContents .contentsContainer .leftContents > article .articleHead .imgDescription {
  margin-top: 3px;
  text-transform: none;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Yu Gothic", YuGothic, "Hiragino Sans", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 1.6em;
  line-break: strict;
  font-size: 13px;
  font-weight: 400;
  overflow-wrap: break-word;
}
.detailContents .contentsContainer .leftContents > article .articleHead .imgDescription {
  color: #797979;
}
.detailContents .contentsContainer .leftContents > article .contents {
  /* 埋め込みボックスをレスポンシブ化 */
}
.detailContents .contentsContainer .leftContents > article .contents .raw-html iframe {
  width: 100%;
}
.detailContents .contentsContainer .leftContents > article .contents .title_h2 {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.detailContents .contentsContainer .leftContents > article .contents .title_h3 {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 0 5px 13px;
  border-left: 7px solid #D9D9D9;
}
@media screen and (max-width: 576px) {
  .detailContents .contentsContainer .leftContents > article .contents .title_h3 {
    font-size: 18px;
  }
}
.detailContents .contentsContainer .leftContents > article .contents * + .title_h2, .detailContents .contentsContainer .leftContents > article .contents * + .title_h3 {
  margin-top: 70px;
}
.detailContents .contentsContainer .leftContents > article .contents p {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  font-weight: 300;
}
.detailContents .contentsContainer .leftContents > article .contents p a {
  text-decoration: underline;
}
.detailContents .contentsContainer .leftContents > article .contents figure {
  text-align: center;
}
.detailContents .contentsContainer .leftContents > article .contents figure:not(:last-child) {
  margin-bottom: 30px;
}
.detailContents .contentsContainer .leftContents > article .contents figure figcaption {
  margin-top: 10px;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  color: #797979;
}
@media screen and (max-width: 768px) {
  .detailContents .contentsContainer .leftContents > article .contents figure figcaption {
    text-align: center;
  }
}
.detailContents .contentsContainer .leftContents > article .contents figure figcaption a {
  color: #797979;
  transition: 0.3s;
}
.detailContents .contentsContainer .leftContents > article .contents figure figcaption a:hover {
  color: #bf193f;
}
.detailContents .contentsContainer .leftContents > article .contents .embed-box {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9; /* アスペクト比を16:9に固定 */
  margin: 0 auto 20px;
  overflow: hidden;
}
.detailContents .contentsContainer .leftContents > article .contents .embed-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  max-width: 100%;
}
.detailContents .contentsContainer .rightContents {
  width: 100%;
  max-width: 360px;
  position: sticky;
  top: 130px;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .detailContents .contentsContainer .rightContents {
    max-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .detailContents .contentsContainer .rightContents {
    max-width: inherit;
    position: inherit;
    top: inherit;
    right: inherit;
  }
}
.detailContents .contentsContainer .rightContents .adBanner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detailContents .contentsContainer .rightContents .adBanner:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .detailContents .contentsContainer .rightContents .adBanner {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }
  .detailContents .contentsContainer .rightContents .adBanner > * {
    width: calc((100% - 10px) / 2);
    max-width: 360px;
    display: block;
  }
  .detailContents .contentsContainer .rightContents .adBanner > *:only-child {
    width: 100%;
    margin: 0 auto;
  }
}
.detailContents .contentsContainer .rightContents .rankingContents h1 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  position: relative;
}
.detailContents .contentsContainer .rightContents .rankingContents h1::after {
  content: "";
  width: 65px;
  height: 1px;
  display: block;
  background: #000;
  position: absolute;
  left: 0px;
  bottom: -20px;
}
.detailContents .contentsContainer .rightContents .rankingContents article.box:not(:last-child) {
  margin-bottom: 10px;
}
.detailContents .contentsContainer .rightContents .rankingContents article.box a {
  display: flex;
  gap: 15px;
}
.detailContents .contentsContainer .rightContents .rankingContents article.box a .imgBox {
  min-width: 80px;
  max-width: 80px;
}
.detailContents .contentsContainer .rightContents .rankingContents article.box a .articleTitle {
  font-size: 13px;
}

.snsLinks {
  margin-top: 40px;
  display: flex;
  gap: 5px;
}
.snsLinks a {
  width: 100%;
  max-width: 255px;
  height: 50px;
  border: 1px solid #d7d6d6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  transition: 0.3s;
}
.snsLinks a:hover {
  background: #bf193f;
  border-color: #bf193f;
  color: #FFF;
}

.moreContents {
  margin-top: 40px;
}
.moreContents ul {
  padding: 24px;
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .moreContents ul {
    padding: 15px;
  }
}
.moreContents ul a {
  color: #000;
  transition: 0.3s;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: underline;
}
.moreContents ul a:hover {
  color: #bf193f;
}
@media screen and (max-width: 768px) {
  .moreContents ul a {
    font-size: 18px;
  }
}

.tagCloud {
  margin-top: 28px;
}
.tagCloud ul {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  line-height: 1.8;
}
.tagCloud ul li a {
  width: 100%;
  padding: 10px 20px;
  text-box: trim-both cap alphabetic;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid #000;
  color: #000;
  transition: 0.3s;
}
.tagCloud ul li a:hover {
  background: #bf193f;
  border-color: #bf193f;
  color: #FFF;
}

/* footer */
#footer-system {
  display: none;
}

#footer-container {
  max-width: 1070px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

#footer {
  margin-top: 120px;
  background: #000;
  color: #FFF;
}

#footer a {
  color: #FFF;
}

#footer a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.footer-inner {
  padding: 50px 0 12px;
}

.footer-links {
  display: flex;
}

.footer-links-logo {
  max-width: 230px;
  margin-right: 50px;
}

.footer-logo,
.footer-produce-logo {
  width: 100%;
}

.footer-produceby-text {
  font-size: 93.75%;
  margin: 28px 0 8px;
}

.footer-sns a.sns-icon {
  margin: 0 10px;
  color: #FFF;
  fill: #fff;
}

.footer-sns .fa {
  font-size: 150%;
}

.footer-sns + .footer-linklist {
  margin-top: 26px;
}

.footer-linklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 68.75%;
}

.footer-linklist li {
  margin: 0 16px 8px 0;
}

.footer-inner .note-txt {
  margin-top: 50px;
}

.footer-inner .prohibited {
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
  padding: 12px 0 12px;
}

.footer-inner .prohibited strong {
  font-size: 93.75%;
}

.footer-inner .prohibited p {
  margin: 8px 0 0;
  font-size: 68.75%;
  line-height: 1.8em;
}

.footer-inner .affiliate {
  margin: 10px 0 0;
  font-size: 68.75%;
  line-height: 1.8em;
}

.footer-inner .copylight {
  margin: 40px 0 0;
  font-size: 68.75%;
  line-height: 1.5em;
  color: #808080;
  text-align: right;
  display: block;
}

@media (max-width: 767px) {
  #footer {
    margin-top: 80px;
  }
  .footer-inner {
    padding: 40px 0 15px;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-links-logo {
    margin: 0 auto;
    text-align: center;
  }
  .footer-sns {
    margin-top: 35px;
    text-align: center;
  }
  .footer-sns + .footer-linklist {
    margin-top: 28px;
  }
  .footer-linklist {
    justify-content: center;
  }
  .footer-linklist li {
    margin: 0 16px 8px 0;
  }
  .footer-inner .note-txt {
    margin-top: 25px;
  }
  .footer-inner .copylight {
    margin: 30px 0 0;
  }
}
.listsContents {
  padding-bottom: 125px;
}
@media screen and (max-width: 768px) {
  .listsContents {
    padding-bottom: 50px;
  }
}
.listsContents .contentsContainer {
  max-width: 1600px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .listsContents .contentsContainer {
    flex-direction: column;
  }
}
.listsContents .contentsContainer .leftContents {
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .listsContents .contentsContainer .leftContents {
    max-width: inherit;
  }
}
.listsContents .contentsContainer .leftContents .smallContents {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 30px;
}
@media screen and (max-width: 768px) {
  .listsContents .contentsContainer .leftContents .smallContents {
    gap: 26px 30px;
  }
}
.listsContents .contentsContainer .leftContents .smallContents > .box {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 576px) {
  .listsContents .contentsContainer .leftContents .smallContents > .box .imgBox {
    min-width: 120px;
    max-width: 120px;
    margin-bottom: 0;
  }
}
.listsContents .contentsContainer .leftContents .smallContents > .box img {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  width: 100%;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 576px) {
  .listsContents .contentsContainer .leftContents .smallContents > .box {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    width: 100%;
  }
  .listsContents .contentsContainer .leftContents .smallContents .category {
    font-size: 12px;
  }
}
.listsContents .contentsContainer .rightContents {
  width: 100%;
  max-width: 360px;
  position: sticky;
  top: 130px;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .listsContents .contentsContainer .rightContents {
    max-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .listsContents .contentsContainer .rightContents {
    max-width: inherit;
    position: inherit;
    top: inherit;
    right: inherit;
  }
}
.listsContents .contentsContainer .rightContents .adBanner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.listsContents .contentsContainer .rightContents .adBanner:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .listsContents .contentsContainer .rightContents .adBanner {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }
  .listsContents .contentsContainer .rightContents .adBanner > * {
    width: calc((100% - 10px) / 2);
    max-width: 360px;
    display: block;
  }
  .listsContents .contentsContainer .rightContents .adBanner > *:only-child {
    width: 100%;
    margin: 0 auto;
  }
}
.listsContents .contentsContainer .rightContents .rankingContents h1 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  position: relative;
}
.listsContents .contentsContainer .rightContents .rankingContents h1::after {
  content: "";
  width: 65px;
  height: 1px;
  display: block;
  background: #000;
  position: absolute;
  left: 0px;
  bottom: -20px;
}
.listsContents .contentsContainer .rightContents .rankingContents article.box:not(:last-child) {
  margin-bottom: 10px;
}
.listsContents .contentsContainer .rightContents .rankingContents article.box a {
  display: flex;
  gap: 15px;
}
.listsContents .contentsContainer .rightContents .rankingContents article.box a .imgBox {
  min-width: 80px;
  max-width: 80px;
}
.listsContents .contentsContainer .rightContents .rankingContents article.box a .articleTitle {
  font-size: 13px;
}

/* ボタンリンク共通 */
.wp-block-button__link {
  display: inline-block;
  background-image: url(assets/images/external_link.svg);
  text-decoration: none;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  font-size: 1.125em;
}

/* hover 時 */
.wp-block-button__link:hover {
  background-color: #005177;
}

.wp-block-quote {
  max-width: 500px;
  padding: 1em 1.5em;
  border-left: 4px solid #f2f2f2;
  color: #333333;
}

.wp-block-quote:has(cite) {
  padding-bottom: 0.5em;
}

.wp-block-quote p {
  margin-top: 0;
}

.wp-block-quote cite {
  display: block;
  color: #737373;
  font-size: 0.8em;
  text-align: right;
}

/* ===========================
   FRONTROW Contact (CF7) SCSS
   =========================== */
:root {
  color-scheme: light;
}

#primary.site-main {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  color: #1a1a1a;
}
#primary.site-main .entry-header {
  max-width: 880px;
  margin: 32px 0 8px;
  margin: 0 auto;
  padding: 8px 16px 64px;
}
#primary.site-main .entry-header .entry-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
}
#primary.site-main .entry-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 8px 16px 64px;
}
#primary.site-main .entry-content p {
  line-height: 1.9;
  color: #6b7280;
  margin: 0 0 1.2em;
}

/* ---------------------------------
   CF7 form
---------------------------------- */
.wpcf7-form {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.03);
  padding: clamp(16px, 3vw, 28px);
  /* エラーメッセージ（フィールド単位） */
  /* 送信ボタン */
  /* 送信結果（フォーム下部の枠） */
}
.wpcf7-form .cf7-fields {
  display: grid;
  gap: 16px;
}
.wpcf7-form label {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.wpcf7-form label br {
  display: none;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-textarea {
  display: block;
  width: 100%;
  font: inherit;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  outline: none;
}
.wpcf7-form .wpcf7-text::-moz-placeholder, .wpcf7-form .wpcf7-email::-moz-placeholder, .wpcf7-form .wpcf7-tel::-moz-placeholder, .wpcf7-form .wpcf7-textarea::-moz-placeholder {
  color: rgba(107, 114, 128, 0.9);
}
.wpcf7-form .wpcf7-text::placeholder,
.wpcf7-form .wpcf7-email::placeholder,
.wpcf7-form .wpcf7-tel::placeholder,
.wpcf7-form .wpcf7-textarea::placeholder {
  color: rgba(107, 114, 128, 0.9);
}
.wpcf7-form .wpcf7-text:hover,
.wpcf7-form .wpcf7-email:hover,
.wpcf7-form .wpcf7-tel:hover,
.wpcf7-form .wpcf7-textarea:hover {
  border-color: #e5e7eb;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.06);
}
.wpcf7-form .wpcf7-text:focus, .wpcf7-form .wpcf7-text:focus-visible,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-email:focus-visible,
.wpcf7-form .wpcf7-tel:focus,
.wpcf7-form .wpcf7-tel:focus-visible,
.wpcf7-form .wpcf7-textarea:focus,
.wpcf7-form .wpcf7-textarea:focus-visible {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.18);
}
.wpcf7-form .wpcf7-text.wpcf7-not-valid,
.wpcf7-form .wpcf7-email.wpcf7-not-valid,
.wpcf7-form .wpcf7-tel.wpcf7-not-valid,
.wpcf7-form .wpcf7-textarea.wpcf7-not-valid {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}
.wpcf7-form .wpcf7-textarea {
  min-height: 200px;
  resize: vertical;
}
.wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
  color: #ef4444;
}
.wpcf7-form .submit-area {
  margin-top: 8px;
  /* 読み込みスピナー（CF7 has-spinner） */
}
.wpcf7-form .submit-area .wpcf7-submit {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.03s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.wpcf7-form .submit-area .wpcf7-submit:hover {
  background: rgb(10.8071428571, 15.2571428571, 24.7928571429);
}
.wpcf7-form .submit-area .wpcf7-submit:active {
  transform: translateY(1px);
}
.wpcf7-form .submit-area .wpcf7-submit:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.35);
  outline-offset: 2px;
}
.wpcf7-form .submit-area .wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.wpcf7-form .submit-area .has-spinner {
  position: relative;
}
.wpcf7-form .submit-area .has-spinner::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: white;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
.wpcf7-form .wpcf7-response-output {
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 12px 14px;
  font-size: 14px;
  color: #6b7280;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.05);
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors, .wpcf7-form .wpcf7-response-output.wpcf7-acceptance-missing, .wpcf7-form .wpcf7-response-output.wpcf7-aborted {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.05);
  color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
}

/* スクリーンリーダー用 */
.screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* アニメーション */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ---------------------------------
   レスポンシブ
---------------------------------- */
@media (min-width: 768px) {
  .wpcf7-form .cf7-fields {
    gap: 20px;
  }
}