@charset "UTF-8";
/* ---------------------------------------------------
  Setting
--------------------------------------------------- */
/* ---------------------------------------------------
  Mixin
--------------------------------------------------- */
/* ---------------------------------------------------
  Functions
--------------------------------------------------- */
/* ---------------------------------------------------
  Reset
--------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

img, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
select,
textarea {
  font: inherit;
  text-transform: none;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

#root, #__next {
  isolation: isolate;
}

/* ---------------------------------------------------
  Base
--------------------------------------------------- */
:root {
  --vh: 1vh;
  --vh: 1svh;
  --header-height: 60px;
}
@media screen and (min-width: 1266px) {
  :root {
    --header-height: 80px;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html.is-scroll-prevent {
  overflow: hidden;
}

body {
  position: relative;
  color: #434343;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0;
  scroll-behavior: smooth;
  padding-top: var(--header-height);
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}
body::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: 0.5s ease;
}
body.home {
  padding-top: 0;
}
body.is-domloaded::before {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

a {
  color: #434343;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-property: color, background;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: #FC6600;
    text-decoration: none;
  }
}
a:active {
  color: #FC6600;
  text-decoration: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

/* ---------------------------------------------------
  Header
--------------------------------------------------- */
/**
* 常時表示部分
*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-backdrop-filter: blur(2px) saturate(180%);
  backdrop-filter: blur(2px) saturate(180%);
  will-change: filter;
  transition: background 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 9000;
}
.l-header.is-front {
  background: rgba(255, 255, 255, 0.5);
}

.is-humopen .l-header {
  background: #fff;
}

.l-header__inr {
  display: flex;
  align-items: center;
  height: var(--header-height);
  margin: 0;
}
@media screen and (min-width: 1266px) {
  .l-header__inr {
    margin: 0 auto;
    padding: 0 50px;
    max-width: 1300px;
  }
}

@media screen and (min-width: 601px) {
  body.customize-support .l-header {
    top: 46px;
  }
}
@media screen and (min-width: 783px) {
  body.customize-support .l-header {
    top: 32px;
  }
}

/**
* ロゴ
*/
.l-header__logo {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1266px) {
  .l-header__logo {
    margin: 0 32px 0 0;
  }
}
.l-header__logo .l-header__logo-txt {
  display: none;
}
@media screen and (min-width: 1266px) {
  .l-header__logo .l-header__logo-txt {
    display: block;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2307692308;
    margin-bottom: 6px;
  }
  .l-header__logo .l-header__logo-txt span {
    font-size: 14px;
    line-height: 1.1428571429;
  }
}
.l-header__logo .l-header__logo-img {
  width: 100%;
  max-width: 114px;
  height: 48px;
}
@media screen and (min-width: 1266px) {
  .l-header__logo .l-header__logo-img {
    max-width: 155px;
    height: 65px;
  }
}

.l-header__onair {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 1266px) {
  .l-header__onair {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1;
  }
}
.l-header__onair img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
@media screen and (min-width: 1266px) {
  .l-header__onair img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
  }
}
.l-header__onair span {
  color: #FC6600;
}

.l-header__txt-inr {
  display: flex;
  flex-direction: column;
  margin-right: auto;
}

/**
* ナビゲーション
*/
.l-header__nav {
  display: block;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  width: 100vw;
  height: calc(100% - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  min-height: calc(var(--vh) * 100 - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  background: #FFF0E8;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9000;
}
@media screen and (min-width: 1266px) {
  .l-header__nav {
    position: static;
    width: auto;
    height: auto;
    min-width: auto;
    min-height: auto;
    background: transparent;
    overflow-y: unset;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-right: 20px;
  }
}

.is-domloaded .l-header__nav {
  transition: visibility 5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media screen and (min-width: 1266px) {
  .is-domloaded .l-header__nav {
    transition: 0;
  }
}

.is-humopen .l-header__nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.l-header__nav-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 0 20px 26px;
}
@media screen and (min-width: 1266px) {
  .l-header__nav-list {
    flex-direction: row;
    min-height: auto;
    padding: 0;
    gap: 0 max(10px, min(1.0416666667vw, 20px));
  }
}

.l-header__nav-item a {
  position: relative;
  display: block;
  font-size: 19px;
  line-height: 1.0526315789;
  font-weight: 700;
  min-width: 274px;
  padding: 30px;
  background-image: radial-gradient(circle at left, #434343, #434343 50%, transparent 50%, transparent);
  background-size: 4px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (min-width: 1266px) {
  .l-header__nav-item a {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 500;
    min-width: auto;
    padding: 0;
    background: none;
  }
}
.l-header__nav-item a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 12.5px);
  right: 30px;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJf57md772s57mn772k57md772k57md7728XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDUwIDUwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6I2Y5NjYwMDt9PC9zdHlsZT48L2RlZnM+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIyNSIgY3k9IjI1IiByPSIyNSIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIzNi44MiAyNS4xNSAyMC44MyAxMC40MiAyMC44MyAzOC4xMSAzNi44MiAyNS4xNSIvPjwvc3ZnPg==");
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media screen and (min-width: 1266px) {
  .l-header__nav-item a::after {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-item a:hover {
    color: #FC6600;
  }
  .l-header__nav-item a:hover::after {
    transform: translateX(4px);
  }
}

/**
* お問い合わせ
*/
.l-header__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  background: #FC6600;
  width: var(--header-height);
  height: 100%;
  margin-left: 12px;
  border: 1px solid #FC6600;
}
@media screen and (min-width: 1266px) {
  .l-header__contact {
    flex-direction: row;
    font-size: 19px;
    line-height: 1.1052631579;
    width: 116px;
    height: 42px;
    margin-left: 0;
    border-radius: 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__contact:hover {
    color: #FC6600;
    background: #fff;
  }
  .l-header__contact:hover svg path {
    fill: #FC6600;
  }
}
.l-header__contact svg {
  width: 20px;
  height: 20px;
  margin-bottom: 6px;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media screen and (min-width: 1266px) {
  .l-header__contact svg {
    width: 16px;
    height: 16px;
    margin: 0 6px 0 0;
  }
}
.l-header__contact svg path {
  fill: #fff;
}

/**
* ハンバーガー
*/
.l-header__hum {
  width: 100%;
  max-width: 50px;
  height: 60px;
  margin-right: 5px;
  cursor: pointer;
}
@media screen and (min-width: 1266px) {
  .l-header__hum {
    display: none;
  }
}
.l-header__hum > div {
  position: absolute;
  left: 14px;
  width: 21px;
  height: 2px;
  background: #434343;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform-origin: center;
  z-index: 1;
}
.l-header__hum > div:nth-child(1) {
  top: 14px;
}
.l-header__hum > div:nth-child(2) {
  top: 22px;
}
.l-header__hum > div:nth-child(3) {
  top: 30px;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__hum:hover div:nth-child(1) {
    transform: translateY(3px);
  }
  .l-header__hum:hover div:nth-child(3) {
    transform: translateY(-3px);
  }
}

.is-humopen .l-header__hum > div:nth-child(1) {
  top: 22px;
  transform: rotate(135deg);
}
.is-humopen .l-header__hum > div:nth-child(2) {
  transform: scale(1, 0);
}
.is-humopen .l-header__hum > div:nth-child(3) {
  top: 22px;
  transform: rotate(45deg);
}

/* ---------------------------------------------------
  footer
--------------------------------------------------- */
.l-footer {
  background: #fff;
  padding: 22px 0 15px;
}
@media screen and (min-width: 1024px) {
  .l-footer {
    padding: 30px 0;
  }
}

.l-footer__inr {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .l-footer__inr {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }
}

/**
* ロゴ
*/
.l-footer__logo {
  max-width: 114px;
  max-height: 48px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 1024px) {
  .l-footer__logo {
    max-width: 155px;
    max-height: 65px;
    margin: 0 0 auto;
  }
}

/**
* ナビゲーション
*/
.l-footer__nav {
  margin-top: auto;
}

.l-footer__nav-list {
  display: flex;
  justify-content: center;
  gap: 0 16px;
}
@media screen and (min-width: 1024px) {
  .l-footer__nav-list {
    justify-content: flex-end;
    gap: 0 42px;
  }
}

.l-footer__nav-item > a {
  font-size: 13px;
  line-height: 1.1538461538;
}
@media screen and (min-width: 1024px) {
  .l-footer__nav-item > a {
    font-size: 16px;
    line-height: 1.25;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav-item > a:hover {
    color: #FF9E00;
  }
}

/**
* コピーライト
*/
.l-footer__copyright {
  font-family: "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-footer__copyright {
    font-size: 11px;
    line-height: 1;
    text-align: left;
  }
}

/* ---------------------------------------------------
  Main
--------------------------------------------------- */
/* ---------------------------------------------------
  固定ナビ
--------------------------------------------------- */
.l-fix-nav {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(calc(100% + 16px));
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) transform;
  z-index: 8000;
}
@media screen and (min-width: 1024px) {
  .l-fix-nav {
    display: block;
  }
}
.l-fix-nav .c-cta-btn-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.l-fix-nav .c-cta-btn-item {
  width: 100%;
  min-width: 50%;
  min-height: 80px;
}
.l-fix-nav .c-cta-btn {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 24px 10px 12px;
  border-radius: 0;
  filter: none;
}
@media (hover: hover) and (pointer: fine) {
  .l-fix-nav .c-cta-btn:hover {
    filter: none;
  }
}
.l-fix-nav .c-cta-btn__ttl {
  top: -8px;
  width: auto;
}
@media screen and (min-width: 1024px) {
  .l-fix-nav .c-cta-btn__ttl {
    top: -14px;
  }
}
.l-fix-nav .c-cta-btn__txt {
  font-size: 24px;
  line-height: 1;
}
.l-fix-nav.is-show {
  transform: translateY(0%);
}

.l-fix-nav-sp {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(calc(100% + 16px));
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) transform;
  z-index: 8000;
}
@media screen and (min-width: 1024px) {
  .l-fix-nav-sp {
    display: none;
  }
}
.l-fix-nav-sp.is-show {
  transform: translateY(0%);
}

.l-fix-nav-sp__list {
  display: flex;
  background: #fff;
}

.l-fix-nav-sp__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 33.3333333333%;
  height: 78px;
}

.l-fix-nav-sp__item--tel {
  background: #5FB6AA;
}

.l-fix-nav-sp__item--online {
  background: #FF70A1;
}

.l-fix-nav-sp__item--line {
  background: #84c773;
}

.l-fix-nav-sp__item-txt {
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 13px;
  line-height: 1;
}
.l-fix-nav-sp__item-txt span {
  display: inline-block;
  font-size: clamp(24px, 6.7632850242vw, 28px);
  line-height: 1;
  margin-bottom: 5px;
}

.l-fix-nav-sp__item-lineicon {
  height: clamp(23px, 6.5217391304vw, 27px);
  margin-bottom: 8px;
}

/* ---------------------------------------------------
  headline
--------------------------------------------------- */
.c-headline01__big {
  position: relative;
  color: #FC6600;
  font-family: "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
  font-size: 26px;
  line-height: 1.2307692308;
  text-align: center;
  font-weight: 700;
  text-indent: 0.05em;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .c-headline01__big {
    text-indent: 0.15em;
    letter-spacing: 0.15em;
    font-size: 40px;
    line-height: 1.2;
  }
}
.c-headline01__big::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: 8px auto 0;
  background: #FC6600;
}
@media screen and (min-width: 1024px) {
  .c-headline01__big::after {
    width: 80px;
    height: 6px;
    margin: 20px auto 0;
  }
}
.c-headline01__big .word {
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
}
.c-headline01__big .word .char {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: calc(0.05s * var(--char-index));
  transform: translateY(1.2em);
  pointer-events: none;
}

[data-scroll=in] .c-headline01__big .word .char {
  transform: translateY(0);
  pointer-events: auto;
}

.c-headline01__small {
  font-size: 15px;
  line-height: 1.4666666667;
  text-align: center;
  font-weight: 700;
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .c-headline01__small {
    font-size: 30px;
    line-height: 1.3333333333;
    margin-top: 24px;
  }
}

.c-headline02 {
  text-align: center;
  padding-bottom: 46px;
}
@media screen and (min-width: 1024px) {
  .c-headline02 {
    padding-bottom: 95px;
  }
}
.c-headline02 span {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
  min-width: calc(100% - 44px);
  background: #FF9E00;
  padding: 14px 10px;
}
@media screen and (min-width: 1024px) {
  .c-headline02 span {
    font-size: 30px;
    line-height: 1.2;
    min-width: 682px;
    padding: 24px 20px;
  }
}
.c-headline02 span::before {
  position: absolute;
  content: "";
  display: block;
  bottom: -45px;
  left: calc(50% - 17px);
  width: 34px;
  height: 46px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2OS4xMiA5NC44OCI+PHBvbHlnb24gZmlsbD0iI2ZmOWIwMCIgcG9pbnRzPSI0MC4xMiAwIDEwLjQxIDAgMCAzMy4wMyA0MC4xMyAzNy4wMiAyMC4wNiA5NC44OCA2OS4xMiAyMS42IDMwLjggMjEuMDcgNDAuMTIgMCIvPjwvc3ZnPg==");
  background-position: center top;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .c-headline02 span::before {
    bottom: -94px;
    left: calc(50% - 35px);
    width: 69px;
    height: 95px;
  }
}

/* ---------------------------------------------------
  AccBtn
--------------------------------------------------- */
/**
 * accbtn01
 */
.c-accbtn01 {
  display: block;
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4NiA4NiI+PHBhdGggZmlsbD0iI2Y5NjYwMCIgZD0iTTU4LjA2LDIuNzFjLS41Mi0uMTktMS4wOSwuMDctMS4yOSwuNTktLjE5LC41MiwuMDcsMS4wOSwuNTksMS4yOSwxNS45NCw1Ljk2LDI2LjY0LDIxLjQsMjYuNjQsMzguNDIsMCwyMi42MS0xOC4zOSw0MS00MSw0MVMyLDY1LjYxLDIsNDMsMTkuODUsMi41NCw0MiwyLjAxVjM3LjgxbC0xMy41OC0xMC4zOWMtLjQ0LS4zNC0xLjA3LS4yNS0xLjQsLjE5LS4zNCwuNDQtLjI1LDEuMDcsLjE5LDEuNGwxNS4xOSwxMS42MnMuMDksLjA1LC4xNCwuMDdjLjA0LC4wMiwuMDcsLjA0LC4xMSwuMDYsLjExLC4wNCwuMjMsLjA3LC4zNiwuMDdzLjI0LS4wMywuMzYtLjA3Yy4wNC0uMDIsLjA3LS4wNCwuMTEtLjA2LC4wNS0uMDMsLjEtLjA0LC4xNC0uMDdsMTUuMTktMTEuNjJjLjQ0LS4zNCwuNTItLjk2LC4xOS0xLjQtLjMzLS40NC0uOTYtLjUyLTEuNC0uMTlsLTEzLjU4LDEwLjM5VjFjMC0uNTUtLjQ1LTEtMS0xQzE5LjI5LDAsMCwxOS4yOSwwLDQzczE5LjI5LDQzLDQzLDQzLDQzLTE5LjI5LDQzLTQzYzAtMTcuODUtMTEuMjMtMzQuMDQtMjcuOTQtNDAuMjlaIi8+PC9zdmc+");
  transition: 0.5s ease transform;
}
@media screen and (min-width: 1024px) {
  .c-accbtn01 {
    width: 86px;
    height: 86px;
  }
}
.c-accbtn01::before {
  content: "MORE";
  position: absolute;
  left: 0;
  top: 40px;
  color: #FC6600;
  font-size: 14px;
  line-height: 1;
  font-family: "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .c-accbtn01::before {
    top: 50px;
    font-size: 15px;
    line-height: 1;
  }
}
.c-accbtn01.is-acc-open {
  transform: rotateZ(180deg);
}
.c-accbtn01.is-acc-open::before {
  content: "CLOSE";
  transform: rotateZ(-180deg);
}

@media (hover: hover) and (pointer: fine) {
  a.c-accbtn01:hover {
    transform: translateY(10px);
  }
}

/**
 * accbtn02
 */
.c-accbtn02 {
  position: relative;
  width: 28px;
  height: 28px;
  background: #FC6600;
  border: 1px solid #FC6600;
  transition: 0.3s ease;
}
.c-accbtn02::before, .c-accbtn02::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% + 4px);
  background: #fff;
  width: 10px;
  height: 2px;
  transform-origin: center;
  transition: 0.3s ease;
}
.c-accbtn02::before {
  left: calc(50% - 5px);
  transform: rotate(40deg) translate(-50%, -50%);
}
.c-accbtn02::after {
  top: calc(50% + 4px);
  right: calc(50% - 5px);
  transform: rotate(-40deg) translate(50%, -50%);
}

.is-acc-open .c-accbtn02 {
  background: #fff;
}
.is-acc-open .c-accbtn02::before, .is-acc-open .c-accbtn02::after {
  top: calc(50% - 4px);
  background: #FC6600;
}
.is-acc-open .c-accbtn02::before {
  left: calc(50% - 4px);
  transform: rotate(-40deg) translate(-50%, -50%);
}
.is-acc-open .c-accbtn02::after {
  left: calc(50% - 6px);
  transform: rotate(40deg) translate(50%, -50%);
}

/* ---------------------------------------------------
  外部リンク
--------------------------------------------------- */
.c-ex-link {
  position: relative;
}
.c-ex-link:after {
  content: "";
  display: block;
  display: inline-block;
  position: relative;
  top: 0.125em;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  vertical-align: baseline;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMy45NyAxMy45OCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMjAyMDI7fS5jbHMtMntmaWxsOiMwMzAzMDM7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAsNy40M2MwLTEuNTgsMC0zLjE1LDAtNC43MywwLS45MiwuNTYtMS42MiwxLjQyLTEuNzksLjEzLS4wMywuMjctLjAzLC40MS0uMDMsMS4wOCwwLDIuMTUsMCwzLjIzLDAsLjE2LDAsLjE5LC4wNSwuMTgsLjIsMCwuNDUtLjAxLC45LDAsMS4zNSwwLC4xNi0uMDMsLjItLjIsLjItMS4wMywwLTIuMDYsMC0zLjA5LDAtLjE3LDAtLjIxLC4wNC0uMjEsLjIxLDAsMy4wNywwLDYuMTQsMCw5LjIsMCwuMTYsLjA0LC4yLC4yLC4yLDMuMDcsMCw2LjE0LDAsOS4yLDAsLjE3LDAsLjIxLS4wNCwuMjEtLjIxLDAtMS4wMiwwLTIuMDUsMC0zLjA3LDAtLjE5LC4wNi0uMjIsLjIzLS4yMiwuNDYsLjAxLC45MSwwLDEuMzcsMCwuMTEsMCwuMTUsLjAyLC4xNSwuMTQsMCwxLjEyLDAsMi4yNCwwLDMuMzUtLjAxLDEuMDItLjc3LDEuNzQtMS44MiwxLjc0LTEuNTksMC0zLjE4LDAtNC43NywwLTEuNTUsMC0zLjExLDAtNC42NiwwLS45LDAtMS41OC0uNTItMS43OS0xLjM1LS4wNC0uMTctLjA1LS4zNS0uMDUtLjUzLDAtMS41NSwwLTMuMTEsMC00LjY2WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEwLjk0LDEuNzVjLS4wOSwwLS4xOCwwLS4yOCwwLS44NywwLTEuNzUsMC0yLjYyLDAtLjE3LDAtLjItLjA1LS4yLS4yLC4wMS0uNDYsMC0uOTMsMC0xLjM5LDAtLjEyLC4wMy0uMTYsLjE2LS4xNkM5Ljk1LDAsMTEuODgsMCwxMy44MiwwYy4xMywwLC4xNiwuMDUsLjE2LC4xNywwLDEuOTMsMCwzLjg2LDAsNS43OSwwLC4xNC0uMDQsLjE3LS4xNywuMTctLjQ2LDAtLjkzLDAtMS4zOSwwLS4xNSwwLS4xOS0uMDMtLjE5LS4xOSwwLS45LDAtMS44LDAtMi43LDAtLjA3LDAtLjEzLDAtLjI0LS4wOCwuMDgtLjE0LC4xMy0uMTksLjE4LTEuNzIsMS43Mi0zLjQzLDMuNDMtNS4xNCw1LjE1LS4xMywuMTMtLjE5LC4xMy0uMzEsMC0uMzEtLjMzLS42My0uNjUtLjk1LS45NS0uMTEtLjExLS4xLS4xNiwwLS4yNywxLjcyLTEuNzIsMy40NC0zLjQ0LDUuMTctNS4xNiwuMDYtLjA2LC4xMy0uMDksLjE5LS4xNC0uMDEtLjAyLS4wMi0uMDQtLjA0LS4wNloiLz48L3N2Zz4=");
  background-size: 100%;
}

/* ---------------------------------------------------
  Slider
--------------------------------------------------- */
.c-slider {
  width: 100%;
  overflow: hidden;
}
.c-slider .swiper-wrapper {
  transition-timing-function: linear;
  gap: 0 5px;
}
.c-slider .swiper-slide {
  width: 212px;
  height: 141px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .c-slider .swiper-slide {
    width: 310px;
    height: 206px;
    border-radius: 20px;
  }
}

/* ---------------------------------------------------
  フォーム
--------------------------------------------------- */
/**
* 必須
*/
.c-form-icon {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
  background: #ababab;
  margin-right: 12px;
  padding: 6px 8px;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .c-form-icon {
    font-size: 17px;
    line-height: 1;
    margin-right: 16px;
    padding: 10px 12px;
    border-radius: 10px;
  }
}

.c-form-icon--required {
  background: #FC6600;
}

/**
* Select
*/
.c-select {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.c-select:before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  right: 15px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fS5jbHMtMntmaWxsOm5vbmU7c3Ryb2tlOiNmOTY2MDA7c3Ryb2tlLWxpbmVjYXA6cm91bmQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS13aWR0aDoxLjhweDt9LmNscy0ze2ZpbGw6I2Y5NjYwMDt9PC9zdHlsZT48cmVjdCBjbGFzcz0iY2xzLTEiIHg9Ii40NSIgeT0iLjQ1IiB3aWR0aD0iMTcuMSIgaGVpZ2h0PSIxNy4xIi8+PHBhdGggY2xhc3M9ImNscy0zIiBkPSJNLjksLjlIMTcuMXMwLDE2LjIsMCwxNi4ySC45czAtMTYuMiwwLTE2LjJNMCwwVjE4czE4LDAsMTgsMFYwUzAsMCwwLDBIMFoiLz48cG9seWxpbmUgY2xhc3M9ImNscy0yIiBwb2ludHM9IjEzLjUgNy4wNyA5IDEwLjkzIDQuNSA3LjA3Ii8+PC9zdmc+");
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .c-select:before {
    top: 13px;
  }
}
.c-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #F1F1F1;
  border: none;
  outline: none;
  width: 100%;
  padding: 8px 45px 8px 16px;
  border-radius: 10px;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .c-select select {
    padding: 10px 45px 10px 22px;
  }
}
.c-select select::-ms-expand {
  display: none;
}

/**
* input
*/
[type=text],
[type=email],
[type=time],
[type=date],
[type=datetime-local],
[type=week],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=url],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 44px;
  background: #F1F1F1;
  padding: 8px 16px;
  line-height: normal;
  border: none;
  border-radius: 10px;
  outline: none;
}
@media screen and (min-width: 1024px) {
  [type=text],
  [type=email],
  [type=time],
  [type=date],
  [type=datetime-local],
  [type=week],
  [type=month],
  [type=number],
  [type=password],
  [type=search],
  [type=tel],
  [type=url],
  textarea {
    padding: 10px 22px;
  }
}
[type=text]::-ms-expand,
[type=email]::-ms-expand,
[type=time]::-ms-expand,
[type=date]::-ms-expand,
[type=datetime-local]::-ms-expand,
[type=week]::-ms-expand,
[type=month]::-ms-expand,
[type=number]::-ms-expand,
[type=password]::-ms-expand,
[type=search]::-ms-expand,
[type=tel]::-ms-expand,
[type=url]::-ms-expand,
textarea::-ms-expand {
  display: none;
}
[type=text]:-webkit-autofill, [type=email]:-webkit-autofill, [type=time]:-webkit-autofill, [type=date]:-webkit-autofill, [type=datetime-local]:-webkit-autofill, [type=week]:-webkit-autofill, [type=month]:-webkit-autofill, [type=number]:-webkit-autofill, [type=password]:-webkit-autofill, [type=search]:-webkit-autofill, [type=tel]:-webkit-autofill, [type=url]:-webkit-autofill, textarea:-webkit-autofill {
  box-shadow: 0 0 0 100px #e8f0fe inset;
}
[type=text]:-webkit-autofill, [type=text]:focus:-webkit-autofill, [type=text]:autofill,
[type=email]:-webkit-autofill,
[type=email]:focus:-webkit-autofill,
[type=email]:autofill,
[type=time]:-webkit-autofill,
[type=time]:focus:-webkit-autofill,
[type=time]:autofill,
[type=date]:-webkit-autofill,
[type=date]:focus:-webkit-autofill,
[type=date]:autofill,
[type=datetime-local]:-webkit-autofill,
[type=datetime-local]:focus:-webkit-autofill,
[type=datetime-local]:autofill,
[type=week]:-webkit-autofill,
[type=week]:focus:-webkit-autofill,
[type=week]:autofill,
[type=month]:-webkit-autofill,
[type=month]:focus:-webkit-autofill,
[type=month]:autofill,
[type=number]:-webkit-autofill,
[type=number]:focus:-webkit-autofill,
[type=number]:autofill,
[type=password]:-webkit-autofill,
[type=password]:focus:-webkit-autofill,
[type=password]:autofill,
[type=search]:-webkit-autofill,
[type=search]:focus:-webkit-autofill,
[type=search]:autofill,
[type=tel]:-webkit-autofill,
[type=tel]:focus:-webkit-autofill,
[type=tel]:autofill,
[type=url]:-webkit-autofill,
[type=url]:focus:-webkit-autofill,
[type=url]:autofill,
textarea:-webkit-autofill,
textarea:focus:-webkit-autofill,
textarea:autofill {
  box-shadow: 0 0 0 100px #e8f0fe inset;
}

/**
* Checkbox
*/
.c-checkbox .wpcf7-list-item-label,
.c-radio .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  position: relative;
}
.c-checkbox .wpcf7-list-item-label::before,
.c-radio .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: relative;
  width: 17px;
  height: 17px;
  background: #fff;
  border: 1px solid #AFAFAF;
  border-radius: 3px;
  margin-right: 6px;
  z-index: 1;
}
.c-checkbox .wpcf7-list-item-label::after,
.c-radio .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 1px;
  width: 15px;
  height: 7px;
  border: 3px solid #FC6600;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) opacity;
  z-index: 2;
}
.c-checkbox .wpcf7-acceptance .wpcf7-list-item-label::after,
.c-radio .wpcf7-acceptance .wpcf7-list-item-label::after {
  top: 9px;
}
@media screen and (min-width: 1024px) {
  .c-checkbox .wpcf7-acceptance .wpcf7-list-item-label::after,
  .c-radio .wpcf7-acceptance .wpcf7-list-item-label::after {
    top: 12px;
  }
}
.c-checkbox input[type=checkbox],
.c-checkbox input[type=radio],
.c-radio input[type=checkbox],
.c-radio input[type=radio] {
  display: none;
}
.c-checkbox input[type=checkbox]:checked + span::after,
.c-checkbox input[type=radio]:checked + span::after,
.c-radio input[type=checkbox]:checked + span::after,
.c-radio input[type=radio]:checked + span::after {
  opacity: 1;
}

.c-radio .wpcf7-form-control {
  display: flex;
  align-items: center;
}

/**
* Date
*/
input[type=date] {
  background-size: 24px 21px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNC43IDIxLjQxIj48c3R5bGU+LmNscy0xe2ZpbGw6I2Y5NjYwMDt9PC9zdHlsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yNC4yOSwyLjI2aC0yLjk2Yy0uMjMsMC0uNDEsLjE4LS40MSwuNDFzLjE4LC40MSwuNDEsLjQxaDIuNTV2Mi4wNUguODJWMy4wOEgyLjg1Yy4yMywwLC40MS0uMTgsLjQxLS40MXMtLjE4LS40MS0uNDEtLjQxSC40MWMtLjIzLDAtLjQxLC4xOC0uNDEsLjQxVjIxYzAsLjIzLC4xOCwuNDEsLjQxLC40MUgyNC4yOWMuMjMsMCwuNDEtLjE4LC40MS0uNDFWMi42N2MwLS4yMy0uMTgtLjQxLS40MS0uNDFabS0uNDEsMTguMzRILjgyVjUuOTRIMjMuODh2MTQuNjVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNC43MiwwYy0uMjMsMC0uNDEsLjE4LS40MSwuNDFWMy45MWMwLC4yMywuMTgsLjQxLC40MSwuNDFoMi4wOWMuMjMsMCwuNDEtLjE4LC40MS0uNDFWLjQxYzAtLjIzLS4xOC0uNDEtLjQxLS40MWgtMi4wOVptMS42OCwzLjVoLTEuMjdWLjgyaDEuMjdWMy41WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE3LjgyLDBjLS4yMywwLS40MSwuMTgtLjQxLC40MVYzLjkxYzAsLjIzLC4xOCwuNDEsLjQxLC40MWgyLjA5Yy4yMywwLC40MS0uMTgsLjQxLS40MVYuNDFjMC0uMjMtLjE4LS40MS0uNDEtLjQxaC0yLjA5Wm0xLjY4LDMuNWgtMS4yN1YuODJoMS4yN1YzLjVaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNOC44MSwyLjE1Yy0uMjMsMC0uNDEsLjE4LS40MSwuNDFzLjE4LC40MSwuNDEsLjQxaDYuNjljLjIzLDAsLjQxLS4xOCwuNDEtLjQxcy0uMTgtLjQxLS40MS0uNDFoLTYuNjlaIi8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSI1LjI3IiB5PSI5LjEiIHdpZHRoPSIyLjc4IiBoZWlnaHQ9IjIuNzgiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjguOTciIHk9IjkuMSIgd2lkdGg9IjIuNzgiIGhlaWdodD0iMi43OCIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMTIuNjciIHk9IjkuMSIgd2lkdGg9IjIuNzgiIGhlaWdodD0iMi43OCIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMTYuMzciIHk9IjkuMSIgd2lkdGg9IjIuNzgiIGhlaWdodD0iMi43OCIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iNS4yNyIgeT0iMTMuNzIiIHdpZHRoPSIyLjc4IiBoZWlnaHQ9IjIuNzgiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjguOTciIHk9IjEzLjcyIiB3aWR0aD0iMi43OCIgaGVpZ2h0PSIyLjc4Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxMi42NyIgeT0iMTMuNzIiIHdpZHRoPSIyLjc4IiBoZWlnaHQ9IjIuNzgiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjE2LjM3IiB5PSIxMy43MiIgd2lkdGg9IjIuNzgiIGhlaWdodD0iMi43OCIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
@media screen and (min-width: 1024px) {
  input[type=date] {
    background-position: right 24px center;
  }
}

input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  width: 24px;
  height: 21px;
  background: none;
}

input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}

/**
* textarea
*/
.c-textarea textarea {
  height: auto;
  resize: vertical;
}

/**
* button
*/
.c-input-btn label {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  background-color: #FC6600;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMy43NCAyNi44MyI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTMzLjY3LDEzLjc3Yy4wNC0uMTEsLjA3LS4yMywuMDctLjM1LDAsMCwwLDAsMCwwLDAsMCwwLDAsMCwwLDAtLjEyLS4wMy0uMjQtLjA3LS4zNS0uMDItLjA0LS4wNC0uMDgtLjA2LS4xMi0uMDItLjA1LS4wNC0uMDktLjA3LS4xNEwyNC4wNCwuMzljLS4zMy0uNDQtLjk2LS41Mi0xLjQtLjE5LS40NCwuMzQtLjUyLC45Ni0uMTksMS40bDguMjcsMTAuODFIMWMtLjU1LDAtMSwuNDUtMSwxcy40NSwxLDEsMUgzMC43MWwtOC4yNywxMC44MWMtLjM0LC40NC0uMjUsMS4wNywuMTksMS40LC4xOCwuMTQsLjM5LC4yMSwuNjEsLjIxLC4zLDAsLjYtLjE0LC43OS0uMzlsOS41LTEyLjQycy4wNS0uMDksLjA3LS4xNGMuMDItLjA0LC4wNS0uMDcsLjA2LS4xMloiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  max-width: 354px;
  margin: 0 auto;
  padding: 16px 64px 16px 24px;
  background-size: 34px 27px;
  background-position: right 24px center;
  border-radius: 40px;
}
@media screen and (min-width: 1024px) {
  .c-input-btn label {
    font-size: 25px;
    line-height: 1.2;
    padding: 16px 84px 16px 36px;
    background-position: right 30px center;
  }
}
.c-input-btn input[type=submit] {
  display: none;
}
.c-input-btn input[type=submit]:disabled ~ label {
  opacity: 0.5;
}

.wpcf7-spinner {
  display: none;
}

.c-noimage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #FFF0E8;
}
.c-noimage img {
  width: 50%;
  max-width: 205px;
}

.c-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
@media screen and (min-width: 1024px) {
  .c-pager {
    gap: 50px;
  }
}
.c-pager .page-numbers {
  color: #c5c5c5;
  font-size: 21px;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .c-pager .page-numbers {
    font-size: 28px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-pager .page-numbers:hover {
    color: #FC6600;
  }
}
.c-pager .page-numbers.current {
  color: #FC6600;
}
.c-pager .page-numbers.prev, .c-pager .page-numbers.next {
  position: relative;
  width: 40px;
  height: 40px;
  font-size: 13px;
  background-color: #FC6600;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%208.1%2015.3%22%20style%3D%22enable-background%3Anew%200%200%208.1%2015.3%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23FFFFFF%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_6%22%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%226.8%2C0.6%200.8%2C7.7%206.8%2C14.6%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: center;
  background-size: 6px 14px;
  background-repeat: no-repeat;
  border: 1px solid #FC6600;
  border-radius: 50%;
}
@media (hover: hover) and (pointer: fine) {
  .c-pager .page-numbers.prev:hover, .c-pager .page-numbers.next:hover {
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%208.1%2015.3%22%20style%3D%22enable-background%3Anew%200%200%208.1%2015.3%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23FC6600%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_6%22%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%226.8%2C0.6%200.8%2C7.7%206.8%2C14.6%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  }
}
@media screen and (min-width: 1024px) {
  .c-pager .page-numbers.prev, .c-pager .page-numbers.next {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
.c-pager .page-numbers.prev {
  margin-right: 15px;
  margin-left: -40px;
}
@media screen and (min-width: 1024px) {
  .c-pager .page-numbers.prev {
    margin-right: 30px;
    margin-left: -80px;
  }
}
.c-pager .page-numbers.next {
  margin-right: -40px;
  margin-left: 15px;
  transform: rotate(180deg);
}
@media screen and (min-width: 1024px) {
  .c-pager .page-numbers.next {
    margin-right: -80px;
    margin-left: 30px;
  }
}

/* ---------------------------------------------------
  news
--------------------------------------------------- */
.c-news-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .c-news-list {
    flex-wrap: wrap;
    flex-direction: row;
  }
}

.c-news-item {
  width: auto;
}
@media screen and (min-width: 1024px) {
  .c-news-item {
    width: calc((100% - 64px) / 3);
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-news-item a:hover .c-news-item__thumb img {
    transform: scale(1.1);
  }
}

.c-news-item__cat {
  display: inline-block;
  text-align: center;
  background-color: #FFAF75;
  color: #fff;
  font-size: 14px;
  line-height: 1.8571428571;
  font-weight: 700;
  margin-bottom: 9px;
  padding: 0 15px;
  border-radius: 15px;
}
@media screen and (min-width: 1024px) {
  .c-news-item__cat {
    font-size: 16px;
    line-height: 1.875;
  }
}

.c-news-item__thumb {
  width: 100%;
  height: clamp(230px, 55.5555555556vw, 335px);
  margin-bottom: 20px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .c-news-item__thumb {
    height: 207px;
    margin-bottom: 25px;
  }
}
.c-news-item__thumb div {
  width: 100%;
  height: 100%;
}
.c-news-item__thumb img {
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform-origin: center;
}

.c-news-item__time {
  display: block;
  font-family: "Century Gothic", Futura, Roboto, sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .c-news-item__time {
    font-size: 16px;
    line-height: 1;
  }
}

.c-news-item__ttl {
  font-size: 19px;
  line-height: 1.4210526316;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .c-news-item__ttl {
    font-size: 22px;
    line-height: 1.4204545455;
    letter-spacing: 0.1em;
  }
}

/* ---------------------------------------------------
  CTA
--------------------------------------------------- */
.c-cta__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .c-cta__wrap {
    background: repeating-linear-gradient(135deg, #F9A600, #F9A600 5px, transparent 5px, transparent 10px);
    padding: 54px 50px 64px;
  }
}

/* 見出し */
.c-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .c-cta {
    flex-direction: row;
    margin-bottom: 28px;
  }
}

.c-cta__txt-benefits {
  color: #fff;
  font-size: 17px;
  line-height: 1.1764705882;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 7px 8px;
  border: 1px solid #fff;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .c-cta__txt-benefits {
    font-size: 20px;
    line-height: 1.2;
    margin: 0 20px 0 0;
    padding: 14px 16px;
    border-width: 2px;
    border-radius: 20px;
  }
}

.c-cta__inr {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .c-cta__inr {
    align-items: flex-start;
  }
}

.c-cta__txt-money {
  color: #FFFF35;
  font-size: 33px;
  line-height: 1.2121212121;
  font-weight: 900;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 1024px) {
  .c-cta__txt-money {
    font-size: 46px;
    line-height: 1.2608695652;
    text-align: left;
  }
}
.c-cta__txt-money span {
  font-size: 28px;
  line-height: 1.1428571429;
}
@media screen and (min-width: 1024px) {
  .c-cta__txt-money span {
    font-size: 42px;
    line-height: 1.1904761905;
  }
}

.c-cta__txt-campaign {
  color: #fff;
  font-size: 21px;
  line-height: 1.1904761905;
  font-weight: 900;
  text-align: center;
  margin-top: 6px;
}
@media screen and (min-width: 1024px) {
  .c-cta__txt-campaign {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 0 0.125em;
  }
}

.c-cta2__wrap {
  text-align: center;
  background: #FFAF75;
}

.c-cta2 {
  display: inline-block;
  position: relative;
  min-width: 258px;
  background: #fff;
  padding: 28px clamp(15px, 7.2463768116vw, 30px) 16px;
  border-radius: 5px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .c-cta2 {
    padding: 0;
    width: 100%;
    border-radius: 10px;
  }
}

.c-cta2__txt-benefits {
  position: absolute;
  left: 50%;
  top: -42px;
  width: 283px;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .c-cta2__txt-benefits {
    top: -70px;
    width: 500px;
  }
}

.c-cta2__inr {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .c-cta2__inr {
    flex-direction: row;
    align-items: baseline;
    padding: 64px 0 24px 42px;
  }
}

.c-cta2__txt-gift {
  width: 197px;
}
@media screen and (min-width: 1024px) {
  .c-cta2__txt-gift {
    width: 562px;
  }
}

.c-cta2__txt-use {
  width: 124px;
  margin-top: 14px;
}
@media screen and (min-width: 1024px) {
  .c-cta2__txt-use {
    width: 76px;
    margin: 0 0 0 16px;
  }
}
.c-cta2__txt-use img {
  width: 100%;
}

.c-cta2__card-deco {
  position: absolute;
  width: 128px;
  right: -57px;
  bottom: -28px;
  z-index: 3;
}
@media screen and (min-width: 1024px) {
  .c-cta2__card-deco {
    width: 203px;
    right: -34px;
    bottom: 32px;
  }
}

.c-cta3__wrap {
  margin: 0 -20px;
}
@media screen and (min-width: 1024px) {
  .c-cta3__wrap {
    margin: 0 -90px;
  }
}

/* ボタン */
.c-cta-btn-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px 0;
  background: repeating-linear-gradient(135deg, #F9A600, #F9A600 5px, transparent 5px, transparent 10px);
  padding: 24px 20px;
}
@media screen and (min-width: 1024px) {
  .c-cta-btn-list {
    flex-direction: row;
    justify-content: center;
    gap: 0 15px;
    background: transparent;
    padding: 0;
  }
}

.c-cta-btn-item {
  width: 268px;
}
@media screen and (min-width: 1024px) {
  .c-cta-btn-item {
    width: 300px;
  }
}

.c-cta-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 38px 0 24px;
  border-radius: 50px;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.2));
  mix-blend-mode: overlay;
}
@media screen and (min-width: 1024px) {
  .c-cta-btn {
    padding: 43px 0 27px;
    border-radius: 50px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-cta-btn:hover {
    filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.3));
  }
}

.c-cta-btn--online {
  background: #FF70A1;
}
.c-cta-btn--online .c-cta-btn__ttl {
  color: #FF70A1;
  border-color: #FF70A1;
}

.c-cta-btn--tel {
  background: #5FB6AA;
}
.c-cta-btn--tel .c-cta-btn__ttl {
  color: #5FB6AA;
  border-color: #5FB6AA;
}
.c-cta-btn--tel .c-cta-btn__txt {
  font-family: "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
}

.c-cta-btn__ttl {
  position: absolute;
  left: 50%;
  top: -3px;
  font-size: 15px;
  line-height: 1.1333333333;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  width: 160px;
  background: #fff;
  padding: 3px 6px;
  border: 1px solid;
  border-radius: 10px;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .c-cta-btn__ttl {
    top: -6px;
    width: 132px;
    font-size: 18px;
    line-height: 1.1666666667;
    padding: 4px 10px;
    border-radius: 10px;
  }
}

.c-cta-btn__txt {
  color: #fff;
  font-size: 23px;
  line-height: 1.2173913043;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .c-cta-btn__txt {
    font-size: 26px;
    line-height: 1.3846153846;
  }
}

.c-cta-btn__txt--small {
  font-size: 14px;
  line-height: 1.2142857143;
}
@media screen and (min-width: 1024px) {
  .c-cta-btn__txt--small {
    font-size: 18px;
    line-height: 1.2222222222;
  }
}

.c-cta-btn__info {
  color: #fff;
  font-size: 14px;
  line-height: 1.2857142857;
  text-align: center;
  margin-top: 4px;
}

.c-cta-btn__arrow {
  width: 24px;
  height: 24px;
  margin-left: 7px;
}
@media screen and (min-width: 1024px) {
  .c-cta-btn__arrow {
    width: 27px;
    height: 27px;
    margin-left: 8px;
  }
}

/* ---------------------------------------------------
  Access
--------------------------------------------------- */
.c-access {
  background: #FFF0E8;
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  .c-access {
    padding: 80px 0;
  }
}

@media screen and (min-width: 1024px) {
  .c-access__inr {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 64px;
  }
}

.c-access__ttl {
  color: #fff;
  font-family: "Century Gothic", Futura, Roboto, sans-serif;
  font-size: 56px;
  line-height: 1.0714285714;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .c-access__ttl {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
}

.c-access__tel {
  display: inline-block;
  color: #FC6600;
  font-family: "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  line-height: 1.4545454545;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .c-access__tel {
    font-size: 30px;
    line-height: 1.1333333333;
    margin-bottom: 12px;
  }
}

.c-access__open {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .c-access__open {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}

.c-access__mail {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 18px;
}
@media screen and (min-width: 1024px) {
  .c-access__mail {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 24px;
  }
}
.c-access__mail img {
  width: 22px;
  height: 15px;
  margin-right: 12px;
}

.c-access__address {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .c-access__address {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 6px;
  }
}

.c-access__gmap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .c-access__gmap {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 20px;
  }
}
.c-access__gmap img {
  width: 12px;
  height: 18px;
  margin-right: 6px;
}

.access__sns {
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .access__sns {
    gap: 12px;
  }
}

.access__sns-item {
  width: 36px;
}
@media screen and (min-width: 1024px) {
  .access__sns-item {
    width: 42px;
  }
}
.access__sns-item a {
  display: block;
}

.c-access__map {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-access__map {
    display: block;
    position: relative;
    width: 520px;
    height: 328px;
  }
}
.c-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body:not(.page-template-contact, .page-template-thanks) .grecaptcha-badge {
  opacity: 0;
  visibility: hidden;
}

/* ---------------------------------------------------
  TOP
--------------------------------------------------- */
.p-top {
  overflow-x: hidden;
}

/**
 * メインビジュアル
 */
.p-top-mv {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh) * 100);
  height: 100svh;
  padding-top: var(--header-height);
}
@media screen and (min-width: 1024px) {
  .p-top-mv {
    height: 608px;
  }
}

.p-top-mv__inr {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - var(--header-height));
  height: calc(var(--vh) * 100 - var(--header-height));
  height: calc(100svh - var(--header-height));
  z-index: 1;
}
@media screen and (min-width: 1266px) {
  .p-top-mv__inr {
    margin: 0 auto;
    padding: 0 50px;
    max-width: 1050px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-mv__inr {
    height: 100%;
  }
}

/* テキスト */
.p-top-mv__booking {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 16px;
  top: clamp(10px, 4.8309178744vw, 20px);
  color: #FC6600;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  width: 86px;
  height: 86px;
  padding-top: 5px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  z-index: 2;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.25));
}
@media screen and (min-width: 1024px) {
  .p-top-mv__booking {
    top: 30px;
    right: clamp(60px, 6.25vw, 120px);
    font-size: 20px;
    line-height: 1;
    width: 100px;
    height: 100px;
  }
}
.p-top-mv__booking span {
  font-size: 27px;
  line-height: 1;
}

.p-top-mv__counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  left: clamp(-30px, -7.2463768116vw, -15px);
  color: #FC6600;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .p-top-mv__counter {
    left: 0;
    font-size: 32px;
    line-height: 1.125;
    margin-bottom: 8px;
  }
}
.p-top-mv__counter::before, .p-top-mv__counter::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: #FC6600;
  width: 2px;
  height: 40px;
}
@media screen and (min-width: 1024px) {
  .p-top-mv__counter::before, .p-top-mv__counter::after {
    width: 4px;
    height: 64px;
  }
}
.p-top-mv__counter::before {
  left: -6px;
  rotate: -25deg;
}
@media screen and (min-width: 1024px) {
  .p-top-mv__counter::before {
    left: -8px;
  }
}
.p-top-mv__counter::after {
  right: -6px;
  rotate: 25deg;
}
@media screen and (min-width: 1024px) {
  .p-top-mv__counter::after {
    right: -8px;
  }
}

.p-top-mv__logo {
  position: relative;
  left: clamp(-30px, -7.2463768116vw, -15px);
  width: min(266px, 64.2512077295vw);
  margin: 0 auto 22px;
}
@media screen and (min-width: 1024px) {
  .p-top-mv__logo {
    left: 0;
    width: 412px;
  }
}
.p-top-mv__logo img {
  width: 100%;
}

.p-top-mv__catch {
  position: relative;
  left: clamp(-30px, -7.2463768116vw, -15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .p-top-mv__catch {
    left: 0;
  }
}

.p-top-mv__catch-jp {
  color: #FC6600;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  font-feature-settings: "palt";
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-mv__catch-jp {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 8px;
  }
}

.p-top-mv__catch-en {
  color: #fff;
  font-family: "Century Gothic", Futura, Roboto, sans-serif;
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-top-mv__catch-en {
    font-size: 33px;
    line-height: 1;
  }
}

/* ビデオ */
.p-top-mv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/**
 * オープン
 */
.p-top-open {
  position: relative;
  /*background-image: url(../img/open__bg.svg);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;*/
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-top-open {
    background: #FF9E00;
    /*background-image: url(../img/photo-bg__img.webp);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;*/
  }
}

.p-top-open__inr {
  padding: 64px 0 42px;
}
@media screen and (min-width: 1024px) {
  .p-top-open__inr {
    padding: 108px 0 48px;
  }
}

.p-top-open_deco {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 424px;
  transform: translate(-50%, 0);
  pointer-events: none;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .p-top-open_deco {
    width: 1920px;
    max-width: 1920px;
  }
}

.p-top-open__benefits {
  position: relative;
  width: calc(100% - clamp(15px, 7.2463768116vw, 30px));
  max-width: 336px;
  margin: 0 auto;
  padding: 72px 0 0;
  background: #FFAF75;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits {
    width: 100%;
    max-width: 100%;
    margin-bottom: -114px;
    padding: 0;
    background: transparent;
  }
}

.p-top-open__benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 290px;
  margin-top: -108px;
  gap: 0 clamp(27px, 14.0096618357vw, 58px);
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits-list {
    min-width: 100%;
    margin: 0;
    gap: 0 20px;
  }
}

.p-top-open__benefits-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #FC6600;
  border-radius: 50%;
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits-item {
    width: 218px;
    height: 218px;
  }
}
.p-top-open__benefits-item:nth-child(1) {
  margin: 0 calc((100% - 120px) / 2) -24px;
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits-item:nth-child(1) {
    margin: 0;
  }
}

.p-top-open__benefits-ttl {
  color: #fff;
  font-size: 18px;
  line-height: 1.2222222222;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits-ttl {
    font-size: 39px;
    line-height: 1.1794871795;
    margin-bottom: 14px;
  }
}
.p-top-open__benefits-ttl span {
  display: block;
  font-size: 31px;
  line-height: 1.1935483871;
  color: #FFFF35;
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits-ttl span {
    font-size: 46px;
    line-height: 1.2173913043;
  }
}

.p-top-open__benefits-icon--01 {
  width: 36px;
  margin: -30px 0 8px;
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits-icon--01 {
    width: 54px;
    margin: -54px 0 18px;
  }
}

.p-top-open__benefits-icon--02 {
  width: 31px;
  margin: -20px 0 8px;
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits-icon--02 {
    width: 46px;
    margin: -54px 0 18px;
  }
}

.p-top-open__benefits-icon--03 {
  width: 23px;
  margin: -20px 0 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits-icon--03 {
    width: 35px;
    margin: -50px 0 20px;
  }
}

.p-top-open__benefits-txt {
  margin: 0 auto;
}

.p-top-open__benefits-txt--01 {
  width: 60px;
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits-txt--01 {
    width: 113px;
  }
}

.p-top-open__benefits-txt--02 {
  width: 101px;
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits-txt--02 {
    width: 189px;
  }
}

.p-top-open__benefits-txt--03 {
  width: 84px;
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits-txt--03 {
    width: 144px;
  }
}

.p-top-open__benefits-txt--free {
  width: 60px;
  margin-top: 6px;
}
@media screen and (min-width: 1024px) {
  .p-top-open__benefits-txt--free {
    width: 90px;
    margin-top: 12px;
  }
}

.p-top-open__cta .c-cta2__wrap {
  width: calc(100% - clamp(15px, 7.2463768116vw, 30px));
  max-width: 336px;
  margin: 0 auto 52px;
  padding: 58px 0 30px;
}
@media screen and (min-width: 1024px) {
  .p-top-open__cta .c-cta2__wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 0 45px;
    /*padding: 190px 90px 45px;*/
    padding: 80px 90px 45px;
  }
}
.p-top-open__cta .c-cta-btn-list {
  background: transparent;
  padding: 0;
}

.p-top-trying {
  display: block;
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .p-top-trying {
    margin-bottom: 80px;
  }
}

/**
 * キャンペーン
 */
.p-top-campaign {
  background: #fff;
  margin: 0 0 50px;
}
@media screen and (min-width: 1024px) {
  .p-top-campaign {
    padding: 58px 75px 86px;
    margin: 0 -75px 45px;
  }
}
.p-top-campaign .c-news-list {
  gap: 20px;
  margin-top: 28px;
}
@media screen and (min-width: 1024px) {
  .p-top-campaign .c-news-list {
    gap: 32px;
    margin-top: 0;
  }
}
.p-top-campaign .c-news-item a {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 1024px) {
  .p-top-campaign .c-news-item a {
    display: block;
  }
}
.p-top-campaign .c-news-item a > .c-news-item__cat {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-top-campaign .c-news-item a > .c-news-item__cat {
    display: inline-block;
  }
}
.p-top-campaign .c-news-item__thumb {
  width: clamp(140px, 44.9275362319vw, 279px);
  height: clamp(118px, 28.5024154589vw, 177px);
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-top-campaign .c-news-item__thumb {
    width: 100%;
    height: 207px;
    margin-bottom: 25px;
  }
}
.p-top-campaign .c-news-item__txt {
  width: calc(100% - 15px - clamp(140px, 44.9275362319vw, 279px));
}
@media screen and (min-width: 1024px) {
  .p-top-campaign .c-news-item__txt {
    width: 100%;
  }
}
.p-top-campaign .c-news-item__txt > .c-news-item__cat {
  font-size: 12px;
  line-height: 1.8333333333;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-campaign .c-news-item__txt > .c-news-item__cat {
    display: none;
  }
}
.p-top-campaign .c-news-item__time {
  font-size: 12px;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .p-top-campaign .c-news-item__time {
    font-size: 16px;
    line-height: 1;
  }
}
.p-top-campaign .c-news-item__ttl {
  font-size: 14px;
  line-height: 1.5714285714;
}
@media screen and (min-width: 1024px) {
  .p-top-campaign .c-news-item__ttl {
    font-size: 22px;
    line-height: 1.4204545455;
  }
}

.p-top-campaign__more {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .p-top-campaign__more {
    margin: 30px auto -30px;
  }
}

/**
 * 動画
 */
.p-top-video {
  background: #FF8326;
}

.p-top-video__inr {
  padding: 36px 0 30px;
}
@media screen and (min-width: 1024px) {
  .p-top-video__inr {
    padding: 54px 0 48px;
  }
}

.p-top-video__ttl {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .p-top-video__ttl {
    font-size: 33px;
    line-height: 1.6060606061;
    margin-bottom: 16px;
  }
}

.p-top-video__iframe {
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
.p-top-video__iframe iframe {
  width: 100%;
  height: 100%;
}

/**
 * 導入
 */
.p-top-intro {
  position: relative;
  background: #FFF0E8;
  z-index: 10;
}

.p-top-intro__inr {
  padding: 0 0 63px;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__inr {
    padding: 0 0 168px;
  }
}

.p-top-intro__ttl {
  position: relative;
  text-align: center;
  top: -28px;
  margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__ttl {
    top: calc(-17.0833333333vw + 78px);
    margin-bottom: 60px;
  }
}

.p-top-intro__ttl-inr {
  position: relative;
  display: inline-block;
}
.p-top-intro__ttl-inr span {
  display: inline-block;
  color: #FC6600;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__ttl-inr span {
    font-size: 52px;
    line-height: 1.6153846154;
  }
}
.p-top-intro__ttl-inr span .word {
  display: block;
  overflow: hidden;
}
.p-top-intro__ttl-inr span .word .char {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: calc(0.05s * var(--char-index));
  transform: translateY(1.3em);
  pointer-events: none;
}
.p-top-intro__ttl-inr > span {
  position: relative;
}
.p-top-intro__ttl-inr > span:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  display: block;
  width: calc(100% + 12px);
  height: 4px;
  background: #FFFF35;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__ttl-inr > span:before {
    left: -12px;
    width: calc(100% + 24px);
    height: 6px;
  }
}

[data-scroll=in] .p-top-intro__ttl-inr .word .char {
  transform: translateY(0);
  pointer-events: auto;
}

.p-top-intro__ttl-deco {
  position: absolute;
  top: -92px;
  left: -36px;
  width: 112px;
  height: 128px;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__ttl-deco {
    top: -96px;
    left: -290px;
    width: 226px;
    height: 257px;
  }
}

.p-top-intro__par {
  color: #FC6600;
  font-size: 15px;
  line-height: 1.4666666667;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__par {
    font-size: 17px;
    line-height: 2.1764705882;
  }
}

/* クエスチョン */
.p-top-intro__questions {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__questions {
    margin: calc(-17.0833333333vw + 78px) 0 72px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-intro__questions .p-top-intro__par:last-child {
    margin: -64px 0 0 1em;
  }
}

.p-top-intro__comments {
  position: relative;
  max-width: 360px;
  height: min(270px, 65.2173913043vw);
  margin: 24px auto 12px;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__comments {
    max-width: 630px;
    height: 256px;
    margin: 24px auto 0;
  }
}

.p-top-intro__comment-serif {
  position: absolute;
  z-index: 2;
}

.p-top-intro__comment--01 {
  top: min(90px, 21.7391304348vw);
  left: min(-10px, -2.4154589372vw);
  width: min(163px, 39.3719806763vw);
}
@media screen and (min-width: 1024px) {
  .p-top-intro__comment--01 {
    top: 0;
    left: 12px;
    width: 188px;
  }
}

.p-top-intro__comment--02 {
  top: 0;
  left: min(100px, 24.154589372vw);
  width: min(163px, 39.3719806763vw);
}
@media screen and (min-width: 1024px) {
  .p-top-intro__comment--02 {
    top: 44px;
    left: 228px;
    width: 188px;
  }
}

.p-top-intro__comment--03 {
  top: min(90px, 21.7391304348vw);
  right: min(-12px, -2.8985507246vw);
  width: min(163px, 39.3719806763vw);
}
@media screen and (min-width: 1024px) {
  .p-top-intro__comment--03 {
    top: 4px;
    right: 0;
    width: 188px;
  }
}

.p-top-intro__comment-illust {
  position: absolute;
  z-index: 1;
}

.p-top-intro__comment-illust--01 {
  bottom: 0;
  left: min(90px, 21.7391304348vw);
  width: min(86px, 20.7729468599vw);
}
@media screen and (min-width: 1024px) {
  .p-top-intro__comment-illust--01 {
    left: 0;
    width: 131px;
  }
}

.p-top-intro__comment-illust--02 {
  bottom: 0;
  right: min(109px, 26.3285024155vw);
  width: min(73px, 17.6328502415vw);
}
@media screen and (min-width: 1024px) {
  .p-top-intro__comment-illust--02 {
    right: 0;
    width: 111px;
  }
}

.p-top-intro__advice {
  position: relative;
}

.p-top-intro__attention {
  text-align: center;
  margin: 5px 0 15px;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__attention {
    margin: 10px 0 32px;
  }
}
.p-top-intro__attention span {
  position: relative;
  display: inline-block;
  color: #FC6600;
  font-size: 22px;
  line-height: 1.4545454545;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__attention span {
    font-size: 32px;
    line-height: 1.625;
  }
}
.p-top-intro__attention span:before, .p-top-intro__attention span:after {
  position: absolute;
  bottom: -6px;
  content: "";
  display: block;
  width: 2px;
  height: 88px;
  background: #FC6600;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__attention span:before, .p-top-intro__attention span:after {
    height: 124px;
  }
}
.p-top-intro__attention span:before {
  left: -30px;
  transform: rotate(332deg);
}
.p-top-intro__attention span:after {
  right: -30px;
  transform: rotate(-332deg);
}

.p-top-intro__logo {
  max-width: 216px;
  margin: 0 auto 12px;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__logo {
    max-width: 320px;
  }
}

.p-top-intro__illust {
  position: relative;
  width: 181px;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .p-top-intro__illust {
    position: absolute;
    bottom: -88px;
    right: 16px;
    width: 362px;
    margin: 0;
  }
}

.p-top-intro__photo {
  position: relative;
  width: 100%;
  max-width: 767px;
  margin: -16px auto 0;
  z-index: 1;
}

/**
 * 特典
 */
.p-top-benefits {
  background: #FFF0E8;
}

.p-top-benefits__inr {
  padding: 26px 0 calc(17.0833333333vw + 194px);
}
@media screen and (min-width: 1024px) {
  .p-top-benefits__inr {
    padding: 80px 0 calc(17.0833333333vw + 164px);
  }
}

.p-top-benefits-ttl {
  margin-bottom: 38px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-ttl {
    margin-bottom: 120px;
  }
}
.p-top-benefits-ttl span::before {
  left: calc(50% - 17px + 38px);
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-ttl span::before {
    left: calc(50% - 35px + 188px);
  }
}

/* セクション */
.p-top-benefits-sec {
  position: relative;
  background: #fff;
  border-radius: 15px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-sec {
    border-radius: 30px;
  }
}

.p-top-benefits-sec:nth-child(1) {
  margin-bottom: 88px;
}
.p-top-benefits-sec:nth-child(2) {
  margin-bottom: 67px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-sec:nth-child(2) {
    margin-bottom: -15px;
  }
}

.p-top-benefits-sec:nth-child(3) {
  margin-bottom: 160px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-sec:nth-child(3) {
    margin-bottom: 416px;
  }
}

.p-top-benefits-sec__txt {
  font-size: 14px;
  line-height: 1.7142857143;
  text-align: center;
  margin-bottom: 20px;
}

/* タイトル */
.p-top-benefits-txt-box {
  position: relative;
  top: -40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: clamp(256px, 66.1835748792vw, 274px);
  height: clamp(256px, 66.1835748792vw, 274px);
  margin: 0 auto -26px;
  background: rgba(252, 102, 0, 0.2);
  border-radius: 50%;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-txt-box {
    top: 0;
    width: 583px;
    height: 583px;
    margin: 0 auto;
  }
}

.p-top-benefits-txt-box--white {
  background: rgba(255, 255, 255, 0.6);
}

.p-top-benefits-txt-box__icon {
  position: absolute;
}

.p-top-benefits-txt-box__point {
  color: #FC6600;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-top: -42px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-txt-box__point {
    margin-top: 0;
    font-size: 18px;
    line-height: 1;
  }
}
.p-top-benefits-txt-box__point span {
  display: block;
  font-family: "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-txt-box__point span {
    font-size: 76px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }
}

.p-top-benefits-txt-box__ttl {
  color: #FC6600;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-txt-box__ttl {
    font-size: 44px;
    line-height: 1.2727272727;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    margin: 24px 0 16px;
  }
}

.p-top-benefits-txt-box__txt {
  font-size: 17px;
  line-height: 1.8823529412;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .p-top-benefits-sec:nth-child(1) .p-top-benefits-txt-box {
    top: -175px;
    margin: 0 auto -55px;
  }
}
.p-top-benefits-sec:nth-child(1) .p-top-benefits-txt-box__icon {
  top: -3px;
  right: 22px;
  width: 39px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-sec:nth-child(1) .p-top-benefits-txt-box__icon {
    top: 50px;
    right: 36px;
    width: 78px;
  }
}

.p-top-benefits-sec:nth-child(2) .p-top-benefits-txt-box__icon {
  top: 14px;
  right: 20px;
  width: 44px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-sec:nth-child(2) .p-top-benefits-txt-box__icon {
    top: 6px;
    right: 118px;
    width: 88px;
  }
}

.p-top-benefits-sec:nth-child(3) .p-top-benefits-txt-box__icon {
  top: 19px;
  left: 24px;
  width: 37px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-sec:nth-child(3) .p-top-benefits-txt-box__icon {
    top: 28px;
    left: 105px;
    width: 75px;
  }
}

.p-top-benefits-sec:nth-child(4) .p-top-benefits-txt-box__icon {
  top: 8px;
  right: 46px;
  width: 28px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-sec:nth-child(4) .p-top-benefits-txt-box__icon {
    top: 15px;
    left: 394px;
    width: 60px;
  }
}

/* 汎用 */
.p-top-benefits-general {
  background: transparent;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-general {
    display: flex;
    align-items: center;
    padding: 0;
  }
}

.p-top-benefits-general__img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-general__img {
    max-width: 582px;
  }
}

@media screen and (min-width: 1024px) {
  .p-top-benefits-general:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-general:nth-child(odd) .p-top-benefits-txt-box {
    margin: 0 -82px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-general:nth-child(odd) .p-top-benefits-general__img {
    margin: 0 -82px 0 0;
  }
}

@media screen and (min-width: 1024px) {
  .p-top-benefits-general:nth-child(even) .p-top-benefits-txt-box {
    margin: 0 0 0 -82px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-general:nth-child(even) .p-top-benefits-general__img {
    margin: 0 0 0 -82px;
  }
}

/* コスパ */
.p-top-benefits-cospa {
  padding: 0 15px 30px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa {
    padding: 0 45px 80px;
  }
}
.p-top-benefits-cospa .p-top-benefits-sec__txt {
  margin-bottom: 30px;
}

.p-top-benefits-cospa__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
  gap: 20px 8px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__list {
    max-width: 100%;
    gap: 45px 20px;
  }
}

.p-top-benefits-cospa__item {
  position: relative;
  width: calc((100% - 8px) / 2);
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__item {
    width: calc((100% - 60px) / 4);
  }
}
.p-top-benefits-cospa__item.is-active .p-top-benefits-cospa__popup {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: scale(1) translate(-50%, -50%);
}

.p-top-benefits-cospa__ttl-txt {
  display: block;
  color: #FC6600;
  font-size: 14px;
  line-height: 1.2142857143;
  font-size: min(3.3816425121vw, 14px);
  font-weight: 700;
  text-align: center;
  font-feature-settings: "palt";
  margin: 0 auto 6px;
  padding: 2px 0;
  border: 1px solid #FC6600;
  border-radius: 7.5px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__ttl-txt {
    font-size: 18px;
    line-height: 1.1666666667;
    margin: 0 auto 10px;
    border-radius: 10px;
  }
}

.p-top-benefits-cospa__ttl-point {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(min(22.9468599034vw, 142px) - 14px);
  right: -4px;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
  height: 46px;
  padding: 0 12px;
  background: #FC6600;
  border-radius: 50%;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__ttl-point {
    top: 115px;
    right: -10px;
    height: 60px;
    font-size: 28px;
    line-height: 1.1428571429;
  }
}

.p-top-benefits-cospa__ttl--point-f-small {
  font-size: 13px;
  line-height: 1.1538461538;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__ttl--point-f-small {
    font-size: 17px;
    line-height: 1.2352941176;
  }
}

.p-top-benefits-cospa__img {
  position: relative;
  width: 100%;
  height: min(22.9468599034vw, 142px);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__img {
    height: 130px;
  }
}
.p-top-benefits-cospa__img.js-popup-toggle img {
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform-origin: center;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-benefits-cospa__img.js-popup-toggle img:hover {
    transform: scale(1.1);
  }
}

.p-top-benefits-cospa__notice {
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  margin: 6px 0 -10px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__notice {
    font-size: 14px;
    line-height: 1.1428571429;
    margin: 10px 0 -32px;
  }
}

.p-top-benefits-cospa__popup {
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: scale(0.8) translate(-50%, -50%);
  transform-origin: center center;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition-property: opacity visibility transform;
  z-index: 9990;
  background: #fff;
  padding: 52px 20px 35px;
  width: calc(100vw - 28px - clamp(10px, 4.8309178744vw, 50px) * 2);
  border-radius: 48px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__popup {
    max-width: 826px;
    margin: 0 auto;
    padding: 70px 16px 48px 4px;
    border-radius: 64px;
  }
}

.p-top-benefits-cospa__popup-list {
  position: relative;
  max-width: 100%;
  max-height: 100vh;
  max-height: calc(var(--vh) * 100);
  max-height: 100svh;
  overflow-y: auto;
}

.p-top-benefits-cospa__popup-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 9991;
  background: #c8a062;
  border-radius: 50%;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__popup-close {
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
  }
}
.p-top-benefits-cospa__popup-close::before, .p-top-benefits-cospa__popup-close::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
  background: #fff;
  width: 16px;
  height: 2px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__popup-close::before, .p-top-benefits-cospa__popup-close::after {
    left: calc(50% - 10px);
    width: 20px;
    height: 2px;
  }
}
.p-top-benefits-cospa__popup-close::before {
  transform: rotate(45deg);
}
.p-top-benefits-cospa__popup-close::after {
  transform: rotate(-45deg);
}

.p-top-benefits-cospa__popup-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__popup-content {
    flex-direction: row;
  }
}

.p-top-benefits-cospa__popup-icon {
  width: 106px;
  margin: 0 auto 32px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__popup-icon {
    width: 142px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__popup-right {
    margin-right: 100px;
    width: 340px;
  }
}

.p-top-benefits-cospa__popup-ttl {
  color: #FC6600;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3333333333;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__popup-ttl {
    font-size: 40px;
    line-height: 1.2;
  }
}

.p-top-benefits-cospa__popup-txt {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8571428571;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__popup-txt {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.8823529412;
  }
}

.p-top-benefits-cospa__popup-btn {
  display: block;
  background: #FC6600;
  font-weight: 700;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2027%2027%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23f96600%3B%20%7D%20.cls-2%20%7B%20fill%3A%20%23ffff35%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_6%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%206%22%3E%20%3Ccircle%20class%3D%22cls-2%22%20cx%3D%2213.5%22%20cy%3D%2213.5%22%20r%3D%2213.5%22%2F%3E%20%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2219.88%2013.98%2011.25%205.99%2011.25%2021.01%2019.88%2013.98%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: right 21px center;
  background-size: 20px auto;
  background-repeat: no-repeat;
  color: #fff;
  width: 206px;
  margin: 20px auto 0;
  padding: 14px 12px 14px 50px;
  border-radius: 32px;
  font-size: 18px;
  line-height: 1.3333333333;
  border: 2px solid #FC6600;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  filter: drop-shadow(10px 5px 10px rgba(139, 139, 139, 0.6));
  mix-blend-mode: multiply;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-benefits-cospa__popup-btn:hover {
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2027%2027%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23ffff23%3B%20%7D%20.cls-2%20%7B%20fill%3A%20%23f96600%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_6%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%206%22%3E%20%3Ccircle%20class%3D%22cls-2%22%20cx%3D%2213.5%22%20cy%3D%2213.5%22%20r%3D%2213.5%22%2F%3E%20%3Cpolygon%20class%3D%22cls-1%22%20points%3D%2219.88%2013.98%2011.25%205.99%2011.25%2021.01%2019.88%2013.98%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
    color: #FC6600;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__popup-btn {
    width: 276px;
    margin: 30px 0 0;
    padding: 26px 16px 26px 68px;
    border-radius: 42px;
    background-position: right 28px center;
    background-size: 27px auto;
    font-size: 25px;
    line-height: 1.2;
  }
}

.p-top-benefits-cospa__item--wide {
  width: calc(100% - 52px);
  margin: 0 auto 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__item--wide {
    width: calc((100% - 64px) / 3);
    margin: 0 12px 32px 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__item--wide:nth-child(3n) {
    margin-right: 0;
  }
}
.p-top-benefits-cospa__item--wide .p-top-benefits-cospa__ttl {
  position: absolute;
  top: -20px;
  width: 90px;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__item--wide .p-top-benefits-cospa__ttl {
    width: 164px;
    left: -25px;
    top: -100px;
  }
}
.p-top-benefits-cospa__item--wide:nth-child(odd) .p-top-benefits-cospa__ttl {
  left: -32px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__item--wide:nth-child(odd) .p-top-benefits-cospa__ttl {
    left: -25px;
  }
}
.p-top-benefits-cospa__item--wide:nth-child(even) .p-top-benefits-cospa__ttl {
  right: -32px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__item--wide:nth-child(even) .p-top-benefits-cospa__ttl {
    right: unset;
  }
}
.p-top-benefits-cospa__item--wide .p-top-benefits-cospa__img {
  height: min(38.1642512077vw, 1237px);
  border-radius: 15px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__item--wide .p-top-benefits-cospa__img {
    height: 192px;
  }
}

.p-top-benefits-cospa__item--select {
  display: flex;
  flex-direction: column;
  width: calc(100% - 52px);
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__item--select {
    width: calc((100% - 40px) / 2);
    margin: 0;
  }
}
.p-top-benefits-cospa__item--select .p-top-benefits-cospa__img {
  height: min(38.1642512077vw, 1237px);
  border-radius: 15px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__item--select .p-top-benefits-cospa__img {
    width: 225px;
    height: 130px;
    border-radius: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__select-inr {
    display: flex;
    align-items: center;
    gap: 0 20px;
  }
}

.p-top-benefits-cospa__select-list {
  font-size: 13px;
  line-height: 1.6923076923;
  font-weight: 700;
  text-align: center;
  text-indent: -1em;
  margin-top: 12px;
  padding-left: 1em;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__select-list {
    font-size: 14px;
    line-height: 1.7142857143;
    text-align: left;
    width: 225px;
    margin: 0;
  }
}

.p-top-benefits-cospa__select-item small {
  display: block;
  font-size: 0.9em;
  font-weight: 500;
}

.p-top-benefits-cospa__deco,
.p-top-benefits-cospa__deco-serif {
  position: absolute;
}

.p-top-benefits-cospa__deco--01 {
  left: clamp(12px, 2.8985507246vw, 6px);
  top: clamp(-76px, -18.3574879227vw, -38px);
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__deco--01 {
    left: 18px;
    top: -153px;
  }
}
.p-top-benefits-cospa__deco--01 .p-top-benefits-cospa__deco-serif--01 {
  top: clamp(-14px, -3.3816425121vw, -7px);
  left: clamp(-11px, -2.6570048309vw, -6px);
  width: clamp(15px, 7.2463768116vw, 30px);
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__deco--01 .p-top-benefits-cospa__deco-serif--01 {
    top: -32px;
    left: -24px;
    width: 60px;
  }
}
.p-top-benefits-cospa__deco--01 .p-top-benefits-cospa__deco-serif--02 {
  top: clamp(-10px, -2.4154589372vw, -5px);
  left: clamp(46px, 11.1111111111vw, 23px);
  width: clamp(32px, 15.4589371981vw, 64px);
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__deco--01 .p-top-benefits-cospa__deco-serif--02 {
    width: 69px;
    top: 6px;
    left: 96px;
  }
}
.p-top-benefits-cospa__deco--01 .p-top-benefits-cospa__deco-illust {
  width: 119px;
  width: clamp(60px, 28.7439613527vw, 119px);
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__deco--01 .p-top-benefits-cospa__deco-illust {
    width: 238px;
  }
}

.p-top-benefits-cospa__deco--02 {
  left: clamp(-16px, -3.8647342995vw, -8px);
  bottom: clamp(-58px, -14.0096618357vw, -29px);
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__deco--02 {
    left: unset;
    right: 4px;
    bottom: -70px;
  }
}
.p-top-benefits-cospa__deco--02 .p-top-benefits-cospa__deco-serif {
  top: clamp(-25px, -6.038647343vw, -13px);
  left: clamp(-2px, -0.4830917874vw, -1px);
  width: clamp(25px, 7.729468599vw, 32px);
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__deco--02 .p-top-benefits-cospa__deco-serif {
    left: unset;
    right: -32px;
    width: 60px;
  }
}
.p-top-benefits-cospa__deco--02 .p-top-benefits-cospa__deco-illust {
  width: clamp(41px, 19.806763285vw, 82px);
  transform: scale(-1, 1);
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-cospa__deco--02 .p-top-benefits-cospa__deco-illust {
    width: 126px;
    transform: none;
  }
}

/* ドレス */
.p-top-benefits-dress .p-top-benefits-sec__txt {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress .p-top-benefits-txt-box {
    top: -456px;
    margin: 0 0 -456px 88px;
  }
}

.p-top-benefits-dress__sec {
  position: relative;
  padding: 24px 14px 16px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__sec {
    padding: 24px 35px 35px;
  }
}
.p-top-benefits-dress__sec:not(:last-child) {
  border-bottom: 3px solid #FFF0E8;
}
.p-top-benefits-dress__sec.is-active .p-top-benefits-dress__popup {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: scale(1) translate(-50%, 0%);
}

.p-top-benefits-dress__list {
  display: flex;
  flex-wrap: wrap;
  /*height: clamp(79px,vwSp(158),345px);*/
  gap: 8px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__list {
    /*height: 345px;*/
    gap: 16px;
  }
}
.p-top-benefits-dress__list.is-acc-open {
  /*height: 100%;*/
}

.p-top-benefits-dress__item {
  width: calc((100% - 16px) / 3);
  height: clamp(79px, 38.1642512077vw, 345px);
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__item {
    width: calc((100% - 48px) / 4);
    height: 345px;
    border-radius: 10px;
  }
}
.p-top-benefits-dress__item:first-child {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__item:first-child {
    width: calc((100% - 48px) / 4);
    height: 345px;
  }
}

.p-top-benefits-dress__ttl {
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__ttl {
    margin: 25px 0 20px;
  }
}

.p-top-benefits-dress__ttl-en {
  color: #FC6600;
  font-family: "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
  font-size: 28px;
  line-height: 1.0714285714;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__ttl-en {
    font-size: 32px;
    line-height: 1.09375;
    margin-bottom: 12px;
  }
}

.p-top-benefits-dress__ttl-jp {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__ttl-jp {
    font-size: 17px;
    line-height: 1.1764705882;
  }
}

.p-top-benefits-dress__img {
  width: 100%;
  height: 100%;
}
.p-top-benefits-dress__img img {
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform-origin: center;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-benefits-dress__img:hover img {
    transform: scale(1.1);
  }
}

.p-top-benefits-dress__btn {
  margin: 20px auto 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__btn {
    margin: 10px auto;
  }
}

.p-top-benefits-dress__deco {
  position: absolute;
}

.p-top-benefits-dress__deco--01 {
  top: clamp(-89px, -21.4975845411vw, -45px);
  left: clamp(38px, 9.1787439614vw, 19px);
  width: clamp(60px, 28.9855072464vw, 120px);
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__deco--01 {
    top: -180px;
    left: unset;
    right: 92px;
    width: 241px;
  }
}

.p-top-benefits-dress__deco--02 {
  bottom: 72px;
  right: 6px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__deco--02 {
    bottom: 8px;
    right: clamp(-66px, -3.4375vw, -33px);
  }
}
.p-top-benefits-dress__deco--02 .p-top-benefits-dress__deco-serif {
  position: absolute;
  top: -50px;
  left: 8px;
  width: 88px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__deco--02 .p-top-benefits-dress__deco-serif {
    top: -64px;
    left: 52px;
    width: 103px;
  }
}
.p-top-benefits-dress__deco--02 .p-top-benefits-dress__deco-illust {
  width: 72px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__deco--02 .p-top-benefits-dress__deco-illust {
    width: 144px;
  }
}

.p-top-benefits-dress__popup {
  position: fixed;
  top: var(--header-height);
  left: 50%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: scale(0.8) translate(-50%, 0%);
  transform-origin: center center;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition-property: opacity visibility transform;
  z-index: 9990;
  width: calc(100vw - 28px - clamp(10px, 12.077294686vw, 50px) * 2);
  max-width: 538px;
  max-height: calc(100vh - var(--header-height));
  max-height: calc(var(--vh) * 100 - var(--header-height));
  max-height: calc(100svh - var(--header-height));
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__popup {
    width: calc(100vw - 28px - clamp(10px, 2.6041666667vw, 50px) * 2);
    max-width: 28.0208333333vw;
  }
}

.p-top-benefits-dress__popup-list {
  position: relative;
  max-width: 100%;
  max-height: calc(100vh - var(--header-height));
  max-height: calc(var(--vh) * 100 - var(--header-height));
  max-height: calc(100svh - var(--header-height));
}

.p-top-benefits-dress__popup-item {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}

.p-top-benefits-dress__popup-btn {
  position: absolute;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2260%22%20viewBox%3D%220%200%2036%2060%22%3E%20%3Cg%20id%3D%22Icon_-_ArrowRight_-_Small%22%20data-name%3D%22Icon%20-%20ArrowRight%20-%20Small%22%20transform%3D%22translate(36%2060)%20rotate(180)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_36%22%20data-name%3D%22%E3%83%91%E3%82%B9%2036%22%20d%3D%22M30%2C36%2C0%2C8.262%2C8.936%2C0%2C30%2C19.475%2C51.064%2C0%2C60%2C8.262Z%22%20transform%3D%22translate(0%2060)%20rotate(-90)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(50% - 11px);
  width: 16px;
  height: 24px;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) opacity;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-benefits-dress__popup-btn:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__popup-btn {
    top: calc(50% - 27px);
    width: 32px;
    height: 54px;
  }
}
.p-top-benefits-dress__popup-btn::after {
  content: "";
}

.p-top-benefits-dress__popup-btn--prev {
  left: -23px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__popup-btn--prev {
    left: -98px;
  }
}

.p-top-benefits-dress__popup-btn--next {
  transform: rotate(180deg);
  right: -23px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__popup-btn--next {
    right: -98px;
  }
}

.p-top-benefits-dress__popup-img {
  max-width: 100%;
  height: calc((100vw - 28px - clamp(10px, 12.077294686vw, 50px) * 2) * 1.478);
  max-height: 805px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__popup-img {
    min-height: 405px;
    height: 41.9270833333vw;
    max-height: calc(100vh - var(--header-height) * 3);
    max-height: calc(var(--vh) * 100 - var(--header-height) * 3);
    max-height: calc(100svh - var(--header-height) * 3);
  }
}
.p-top-benefits-dress__popup-img img {
  width: auto;
  margin: 0 auto;
}

.p-top-benefits-dress__popup-txt {
  color: #fff;
  margin-top: 15px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.7142857143;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__popup-txt {
    margin-top: 20px;
    padding: 0 32px;
    font-size: 16px;
    line-height: 1.75;
  }
}

.p-top-benefits-dress__popup-close {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 9991;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__popup-close {
    top: 12px;
    right: calc((537px - 100vw) / 2 + 6.25vw);
    width: 58px;
    height: 58px;
  }
}
.p-top-benefits-dress__popup-close::before, .p-top-benefits-dress__popup-close::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  left: calc(50% - 12px);
  background: #fff;
  width: 24px;
  height: 4px;
  border-radius: 3px;
}
@media screen and (min-width: 1024px) {
  .p-top-benefits-dress__popup-close::before, .p-top-benefits-dress__popup-close::after {
    left: calc(50% - 20px);
    width: 40px;
  }
}
.p-top-benefits-dress__popup-close::before {
  transform: rotate(45deg);
}
.p-top-benefits-dress__popup-close::after {
  transform: rotate(-45deg);
}

/**
 * フォトウェディング
 */
.p-top-photo-wed__inr {
  padding: 0 0 20px;
}
@media screen and (min-width: 1024px) {
  .p-top-photo-wed__inr {
    padding: 0 0 64px;
  }
}

.p-top-photo-wed__icon {
  width: 39px;
  height: 39px;
  margin: calc(-17.0833333333vw - 194px) auto 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-photo-wed__icon {
    width: 60px;
    height: 60px;
    margin: calc(-17.0833333333vw - 285px) auto 27px;
  }
}

.p-top-photo-wed-ttl {
  max-width: 336px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-top-photo-wed-ttl {
    max-width: 602px;
  }
}

.p-top-photo-wed__illusts {
  display: flex;
  justify-content: center;
  margin-top: -20px;
}
@media screen and (min-width: 1024px) {
  .p-top-photo-wed__illusts {
    margin-top: -40px;
  }
}
.p-top-photo-wed__illusts .p-top-photo-wed__illust--01 {
  width: 105px;
  height: 140px;
  margin: 25px 12px 0 0;
}
@media screen and (min-width: 1024px) {
  .p-top-photo-wed__illusts .p-top-photo-wed__illust--01 {
    width: 212px;
    height: 282px;
    margin: 42px 163px 0 0;
  }
}
.p-top-photo-wed__illusts .p-top-photo-wed__illust--02 {
  width: 180px;
  height: 144px;
}
@media screen and (min-width: 1024px) {
  .p-top-photo-wed__illusts .p-top-photo-wed__illust--02 {
    width: 361px;
    height: 288px;
    margin-left: -35px;
  }
}
.p-top-photo-wed__illusts .p-top-photo-wed__illust--03 {
  width: 82px;
  height: 134px;
  margin: 25px 0 0 5px;
}
@media screen and (min-width: 1024px) {
  .p-top-photo-wed__illusts .p-top-photo-wed__illust--03 {
    width: 164px;
    height: 270px;
    margin: 42px 0 0 80px;
  }
}

.p-top-photo-wed__txt {
  margin: -5px 0 20px;
}
@media screen and (min-width: 1024px) {
  .p-top-photo-wed__txt {
    margin: -10px 0 20px;
  }
}

.p-top-photo-wed__txt-catch {
  font-size: 18px;
  line-height: 1.2777777778;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .p-top-photo-wed__txt-catch {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }
}

.p-top-photo-wed__txt-par {
  font-size: 14px;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-top-photo-wed__txt-par {
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }
}

/**
 * サポート
 */
.p-top-support {
  background: #FFF0E8;
}

.p-top-support__inr {
  padding: 16px 0 calc(17.0833333333vw + 84px);
}
@media screen and (min-width: 1024px) {
  .p-top-support__inr {
    padding: 78px 0 calc(17.0833333333vw + 98px);
  }
}

.p-top-support-ttl {
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .p-top-support-ttl {
    margin-bottom: 28px;
  }
}

.p-top-support-sec-wrap {
  position: relative;
  background: #fff;
  padding: 0 10px 48px;
  border-radius: 15px;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec-wrap {
    padding: 0 0 60px;
    border-radius: 20px;
  }
}

.p-top-support-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 27px 0;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec {
    width: 670px;
    padding: 70px 0 32px;
  }
}
.p-top-support-sec:not(:last-of-type) {
  border-bottom: 1px solid #434343;
}

.p-top-support-sec__ttl {
  text-align: center;
  margin-bottom: 25px;
}
.p-top-support-sec__ttl::after {
  content: "";
  display: block;
  max-width: 255px;
  height: 3px;
  background: #FC6600;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec__ttl::after {
    max-width: 388px;
    height: 5px;
  }
}
.p-top-support-sec__ttl > span {
  display: inline-block;
  position: relative;
  color: #FC6600;
  font-size: 22px;
  line-height: 1.3636363636;
  font-weight: 700;
  margin-bottom: 6px;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec__ttl > span {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 14px;
  }
}
.p-top-support-sec__ttl > span br {
  display: none;
}
.p-top-support-sec__ttl > span .word {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.p-top-support-sec__ttl > span .word .char {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: calc(0.05s * var(--char-index));
  transform: translateY(1.2em);
  pointer-events: none;
}

[data-scroll=in] .p-top-support-sec__ttl > span .word .char {
  transform: translateY(0);
  pointer-events: auto;
}

.p-top-support-sec__img {
  position: relative;
  width: clamp(174px, 84.0579710145vw, 348px);
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec__img {
    width: 100%;
    margin-bottom: 40px;
  }
}

.p-top-support-sec__img-serif {
  position: absolute;
  z-index: 2;
}

.p-top-support-sec__img-illust {
  position: relative;
  z-index: 1;
}

.p-top-support-sec__txt-wrap {
  position: relative;
}

.p-top-support-sec__txt {
  font-size: 14px;
  line-height: 1.5714285714;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec__txt {
    font-size: 17px;
    line-height: 1.8823529412;
  }
}

.p-top-support-sec__txt-deco {
  position: absolute;
}

/* 調整 */
.p-top-support-sec--01 .p-top-support-sec__img {
  margin-top: 70px;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--01 .p-top-support-sec__img {
    margin-top: 175px;
  }
}
.p-top-support-sec--01 .p-top-support-sec__img-illust {
  width: clamp(125px, 60.38647343vw, 250px);
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--01 .p-top-support-sec__img-illust {
    width: 423px;
  }
}
.p-top-support-sec--01 .p-top-support-sec__img-serif--01 {
  top: clamp(-58px, -14.0096618357vw, -29px);
  right: clamp(-2px, -0.4830917874vw, -1px);
  width: clamp(61px, 29.4685990338vw, 122px);
  height: clamp(49px, 23.4299516908vw, 97px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--01 .p-top-support-sec__img-serif--01 {
    top: -100px;
    right: 64px;
    width: 188px;
    height: 150px;
  }
}
.p-top-support-sec--01 .p-top-support-sec__img-serif--02 {
  top: clamp(-86px, -20.7729468599vw, -43px);
  left: clamp(62px, 14.9758454106vw, 31px);
  width: clamp(61px, 29.4685990338vw, 122px);
  height: clamp(41px, 20.0483091787vw, 83px);
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--01 .p-top-support-sec__img-serif--02 {
    top: -140px;
    left: 120px;
    width: 188px;
    height: 128px;
  }
}
.p-top-support-sec--01 .p-top-support-sec__img-serif--03 {
  top: clamp(-44px, -10.6280193237vw, -22px);
  left: clamp(-2px, -0.4830917874vw, -1px);
  width: clamp(44px, 21.2560386473vw, 88px);
  height: clamp(31px, 15.2173913043vw, 63px);
  z-index: 11;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--01 .p-top-support-sec__img-serif--03 {
    top: -70px;
    left: 45px;
    width: 124px;
    height: 87px;
  }
}
.p-top-support-sec--01 .p-top-support-sec__txt-deco {
  top: clamp(-64px, -15.4589371981vw, -32px);
  left: clamp(-40px, -9.6618357488vw, -24px);
  width: clamp(42px, 20.2898550725vw, 84px);
  height: clamp(33px, 18.115942029vw, 75px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--01 .p-top-support-sec__txt-deco {
    top: -82px;
    left: -108px;
    width: 144px;
    height: 105px;
  }
}

.p-top-support-sec--02 .p-top-support-sec__img {
  margin-top: 55px;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--02 .p-top-support-sec__img {
    margin-top: 70px;
  }
}
.p-top-support-sec--02 .p-top-support-sec__img-illust {
  width: clamp(129px, 62.5603864734vw, 259px);
  height: clamp(102px, 49.2753623188vw, 204px);
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--02 .p-top-support-sec__img-illust {
    width: 400px;
    height: 316px;
  }
}
.p-top-support-sec--02 .p-top-support-sec__img-serif--01 {
  top: clamp(-70px, -16.9082125604vw, -35px);
  left: clamp(12px, -2.8985507246vw, 6px);
  width: clamp(63px, 30.4347826087vw, 126px);
  height: clamp(43px, 20.7729468599vw, 86px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--02 .p-top-support-sec__img-serif--01 {
    top: 52px;
    left: -40px;
    width: 188px;
    height: 129px;
  }
}
.p-top-support-sec--02 .p-top-support-sec__img-serif--02 {
  top: clamp(-45px, -10.8695652174vw, -22px);
  right: clamp(4px, 0.9661835749vw, 2px);
  width: clamp(61px, 29.4685990338vw, 122px);
  height: clamp(41px, 19.806763285vw, 82px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--02 .p-top-support-sec__img-serif--02 {
    top: 60px;
    right: -50px;
    width: 191px;
    height: 128px;
  }
}
.p-top-support-sec--02 .p-top-support-sec__img-serif--03 {
  top: clamp(92px, 22.2222222222vw, 46px);
  left: clamp(8px, 1.9323671498vw, 4px);
  width: clamp(18px, 8.6956521739vw, 36px);
  height: clamp(8px, 3.8647342995vw, 16px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--02 .p-top-support-sec__img-serif--03 {
    top: 211px;
    left: 79px;
    width: 48px;
    height: 21px;
  }
}

@media screen and (min-width: 1024px) {
  .p-top-support-sec--03 .p-top-support-sec__img {
    margin-top: 95px;
  }
}
.p-top-support-sec--03 .p-top-support-sec__img .p-top-support-sec__img-illust {
  width: clamp(127px, 61.1111111111vw, 253px);
  height: clamp(93px, 44.6859903382vw, 185px);
  margin-left: clamp(-26px, -6.2801932367vw, -13px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--03 .p-top-support-sec__img .p-top-support-sec__img-illust {
    width: 423px;
    height: 310px;
    margin-left: 45px;
  }
}
.p-top-support-sec--03 .p-top-support-sec__img .p-top-support-sec__img-serif--01 {
  top: clamp(-5px, -1.2077294686vw, -3px);
  right: clamp(90px, 21.7391304348vw, 45px);
  width: clamp(61px, 29.4685990338vw, 122px);
  height: clamp(58px, 23.4299516908vw, 97px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--03 .p-top-support-sec__img .p-top-support-sec__img-serif--01 {
    top: -12px;
    right: 148px;
    width: 180px;
    height: 151px;
  }
}
.p-top-support-sec--03 .p-top-support-sec__img .p-top-support-sec__img-serif--02 {
  top: clamp(68px, 16.4251207729vw, 34px);
  right: clamp(5px, 1.2077294686vw, 3px);
  width: clamp(62px, 29.7101449275vw, 123px);
  height: clamp(41px, 20.0483091787vw, 83px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--03 .p-top-support-sec__img .p-top-support-sec__img-serif--02 {
    top: 125px;
    right: 28px;
    width: 190px;
    height: 128px;
  }
}

.p-top-support-sec--04 .p-top-support-sec__img {
  margin-top: 45px;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--04 .p-top-support-sec__img {
    margin-top: 85px;
  }
}
.p-top-support-sec--04 .p-top-support-sec__img-illust {
  width: clamp(86px, 41.5458937198vw, 172px);
  height: clamp(94px, 45.4106280193vw, 188px);
  margin-left: clamp(31px, 14.9758454106vw, 62px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--04 .p-top-support-sec__img-illust {
    width: 266px;
    height: 291px;
    margin-left: 145px;
  }
}
.p-top-support-sec--04 .p-top-support-sec__img-serif--01 {
  top: clamp(-52px, -12.5603864734vw, -26px);
  right: clamp(24px, 5.7971014493vw, 12px);
  width: clamp(86px, 41.5458937198vw, 172px);
  height: clamp(53px, 25.6038647343vw, 106px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--04 .p-top-support-sec__img-serif--01 {
    top: -64px;
    right: 140px;
    width: 236px;
    height: 146px;
  }
}
.p-top-support-sec--04 .p-top-support-sec__img-serif--02 {
  top: clamp(52px, 12.5603864734vw, 26px);
  right: clamp(16px, 3.8647342995vw, 8px);
  width: clamp(49px, 23.4299516908vw, 97px);
  height: clamp(21px, 9.9033816425vw, 41px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--04 .p-top-support-sec__img-serif--02 {
    top: 82px;
    right: 136px;
    width: 132px;
    height: 56px;
  }
}

.p-top-support-sec--05 .p-top-support-sec__img {
  margin-top: 78px;
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--05 .p-top-support-sec__img {
    margin-top: 145px;
  }
}
.p-top-support-sec--05 .p-top-support-sec__img .p-top-support-sec__img-illust {
  width: clamp(71px, 34.2995169082vw, 142px);
  height: clamp(76px, 36.7149758454vw, 152px);
  margin-left: clamp(35px, 16.9082125604vw, 70px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--05 .p-top-support-sec__img .p-top-support-sec__img-illust {
    width: 221px;
    height: 237px;
    margin-left: 140px;
  }
}
.p-top-support-sec--05 .p-top-support-sec__img .p-top-support-sec__img-serif--01 {
  top: clamp(-95px, -22.9468599034vw, 48px);
  left: clamp(25px, 6.038647343vw, 13px);
  width: clamp(105px, 50.4830917874vw, 209px);
  height: clamp(57px, 27.7777777778vw, 115px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--05 .p-top-support-sec__img .p-top-support-sec__img-serif--01 {
    top: -130px;
    left: 120px;
    width: 272px;
    height: 150px;
  }
}
.p-top-support-sec--05 .p-top-support-sec__img .p-top-support-sec__img-serif--02 {
  top: clamp(24px, 5.7971014493vw, 12px);
  right: clamp(22px, 5.3140096618vw, 11px);
  width: clamp(64px, 30.9178743961vw, 128px);
  height: clamp(45px, 21.7391304348vw, 90px);
}
@media screen and (min-width: 1024px) {
  .p-top-support-sec--05 .p-top-support-sec__img .p-top-support-sec__img-serif--02 {
    top: 25px;
    right: 150px;
    width: 183px;
    height: 128px;
  }
}

.p-top-support__deco {
  position: absolute;
  bottom: -52px;
  right: 4px;
}
@media screen and (min-width: 1024px) {
  .p-top-support__deco {
    bottom: -30px;
    right: 0;
  }
}

.p-top-support__deco-serif {
  position: absolute;
  top: -44px;
  right: -8px;
  width: 112px;
  height: 45px;
}
@media screen and (min-width: 1024px) {
  .p-top-support__deco-serif {
    top: -60px;
    right: 30px;
    width: 119px;
    height: 69px;
  }
}

.p-top-support__deco-illust {
  width: 115px;
  height: 75px;
}
@media screen and (min-width: 1024px) {
  .p-top-support__deco-illust {
    width: 178px;
    height: 117px;
  }
}

/**
 * 流れ
 */
.p-top-flow__inr {
  margin: 0 auto calc(8.5416666667vw + 41px + 81px);
}
@media screen and (min-width: 1024px) {
  .p-top-flow__inr {
    margin: 0 auto calc(8.5416666667vw + 21px + 140px);
  }
}

.p-top-flow__illust {
  position: relative;
  top: calc(-17.0833333333vw - 96px);
  width: 84px;
  height: 145px;
  margin: 0 auto 12px;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .p-top-flow__illust {
    top: calc(-17.0833333333vw - 252px);
    width: 169px;
    height: 292px;
    margin: 0 auto 32px;
  }
}

.p-top-flow__ttl {
  margin: calc(-17.0833333333vw - 96px) 0 18px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow__ttl {
    margin: calc(-17.0833333333vw - 252px) 0 36px;
  }
}

.p-top-flow__terminus {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.375;
  font-weight: 700;
  text-align: center;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background: #FC6600;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .p-top-flow__terminus {
    width: 174px;
    height: 174px;
    font-size: 25px;
    line-height: 1.2;
  }
}

.p-top-flow-list {
  position: relative;
  max-width: 420px;
  margin: 12px auto;
  padding-left: clamp(18px, 8.6956521739vw, 36px);
}
@media screen and (min-width: 1024px) {
  .p-top-flow-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 50px;
    padding: 0;
  }
}
.p-top-flow-list::before {
  position: absolute;
  top: 16px;
  left: 4px;
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 16px);
  background: #FC6600;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-list::before {
    top: 0;
    left: calc(50% - 2px);
    width: 4px;
    height: 100%;
  }
}

.p-top-flow-item {
  margin-bottom: 26px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item {
    width: calc((100% - min(140px, 33.8164251208vw)) / 2);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item:nth-child(odd) .p-top-flow-item__ttl::after {
    right: max(-70px, -16.9082125604vw);
  }
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item:nth-child(even) .p-top-flow-item__ttl::after {
    left: max(-70px, -16.9082125604vw);
  }
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item:nth-child(1) {
    margin-top: 54px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item:nth-child(2) {
    margin-top: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item:nth-child(3) {
    margin-top: -90px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item:nth-child(4) {
    margin-top: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item:nth-child(5) {
    margin: -130px 0 45px;
  }
}

.p-top-flow-item__ttl {
  position: relative;
  color: #FC6600;
  font-size: 16px;
  line-height: 1.3125;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 4px 10px;
  border: 1px solid #FC6600;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item__ttl {
    font-size: 27px;
    line-height: 1.5555555556;
    padding: 8px 20px;
    border-width: 2px;
    border-radius: 10px;
  }
}
.p-top-flow-item__ttl::before, .p-top-flow-item__ttl::after {
  content: "";
  display: block;
  position: absolute;
}
.p-top-flow-item__ttl::before {
  top: 13px;
  left: clamp(-36px, -8.6956521739vw, -8px);
  width: 8px;
  height: 8px;
  background: #FC6600;
  border-radius: 50%;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item__ttl::before {
    display: none;
  }
}
.p-top-flow-item__ttl::after {
  top: 16px;
  left: clamp(-32px, -7.729468599vw, -8px);
  width: clamp(8px, 7.729468599vw, 32px);
  height: 2px;
  background-image: repeating-radial-gradient(circle at left, #FC6600, #FC6600 50%, transparent 50%, transparent);
  background-size: 4px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item__ttl::after {
    top: 28px;
    left: unset;
    width: min(70px, 16.9082125604vw);
    height: 3px;
    background-size: 6px 3px;
  }
}

.p-top-flow-item__txt {
  font-size: 14px;
  line-height: 1.4285714286;
  margin: 0 11px 12px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item__txt {
    font-size: 17px;
    line-height: 1.5882352941;
    margin: 0 22px 16px;
  }
}

.p-top-flow-item__logo {
  margin: 0 11px 8px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item__logo {
    margin: 0 22px 10px;
  }
}
.p-top-flow-item__logo .p-top-flow-item__logo-main {
  width: auto;
  height: 64px;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item__logo .p-top-flow-item__logo-main {
    height: 128px;
  }
}
.p-top-flow-item__logo .p-top-flow-item__logo-sub {
  width: auto;
  height: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item__logo .p-top-flow-item__logo-sub {
    height: 14px;
  }
}
.p-top-flow-item__logo span {
  display: inline-block;
  font-size: 14px;
  line-height: 1.1428571429;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item__logo span {
    font-size: 15px;
    line-height: 1.2;
  }
}

.p-top-flow-item__tel {
  display: inline-block;
  color: #FC6600;
  font-size: 21px;
  line-height: 1.1904761905;
  font-family: "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  margin: 0 11px 16px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item__tel {
    font-size: 28px;
    line-height: 1.2142857143;
    margin: 0 22px 20px;
  }
}

.p-top-flow-item__address {
  font-size: 13px;
  line-height: 1.3846153846;
  margin: 0 11px 15px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item__address {
    font-size: 15px;
    line-height: 1.6666666667;
    margin: 0 22px 15px;
  }
}

.p-top-flow-item__anchors {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item__anchors {
    max-width: unset;
    margin: 0 5px;
  }
}

.p-top-flow-anchors-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(88px, 22.7053140097vw, 94px);
  height: clamp(88px, 22.7053140097vw, 94px);
  background: #FFF0E8;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) transform;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-flow-anchors-item:hover {
    transform: translateY(10px);
  }
}
@media screen and (min-width: 1024px) {
  .p-top-flow-anchors-item {
    width: 120px;
    height: 120px;
  }
}
.p-top-flow-anchors-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.p-top-flow-anchors-item a::after {
  content: "";
  display: block;
  width: 13px;
  height: 11px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOC4yIDE0LjUiPjxwb2x5Z29uICBmaWxsPSIjNDM0MzQzIiBwb2ludHM9IjE3IDYuNyAxMC4xIDExLjg4IDEwLjEgMCA4LjEgMCA4LjEgMTEuODggMS4yIDYuNyAwIDguMyA4LjI3IDE0LjUgOS45MyAxNC41IDE4LjIgOC4zIDE3IDYuNyIvPjwvc3ZnPg==");
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-anchors-item a::after {
    width: 18px;
    height: 14px;
  }
}
.p-top-flow-anchors-item:nth-child(1) .p-top-flow-anchors-item__icon {
  width: 18px;
  height: 25px;
  margin-bottom: 2px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-anchors-item:nth-child(1) .p-top-flow-anchors-item__icon {
    width: 22px;
    height: 32px;
  }
}
.p-top-flow-anchors-item:nth-child(2) .p-top-flow-anchors-item__icon {
  width: 28px;
  height: 22px;
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-anchors-item:nth-child(2) .p-top-flow-anchors-item__icon {
    width: 36px;
    height: 28px;
  }
}
.p-top-flow-anchors-item:nth-child(3) .p-top-flow-anchors-item__icon {
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-anchors-item:nth-child(3) .p-top-flow-anchors-item__icon {
    width: 27px;
    height: 28px;
  }
}

.p-top-flow-anchors-item__ttl {
  color: #FC6600;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-anchors-item__ttl {
    font-size: 18px;
    line-height: 1;
    margin: 8px 0 2px;
  }
}
.p-top-flow-anchors-item__ttl span {
  display: inline-block;
  font-size: 11px;
  line-height: 1.2727272727;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-anchors-item__ttl span {
    font-size: 13px;
    line-height: 1.3846153846;
  }
}

.p-top-flow-item__img {
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-top-flow-item__img {
    width: 100%;
    height: 264px;
    border-radius: 10px;
  }
}

.p-top-flow__finish {
  position: relative;
}

.p-top-flow__finish-img {
  position: relative;
  margin: -56px auto 24px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-top-flow__finish-img {
    width: 716px;
    height: 478px;
    margin: -48px auto 24px;
    border-radius: 10px;
  }
}

.p-top-flow__finish-txt {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-top-flow__finish-txt {
    font-size: 30px;
    line-height: 1.3333333333;
  }
}

.p-top-flow__finish-deco {
  position: absolute;
  bottom: 56px;
  right: -8px;
  z-index: 3;
}
@media screen and (min-width: 1024px) {
  .p-top-flow__finish-deco {
    bottom: 78px;
    right: 52px;
  }
}

.p-top-flow__finish-deco-serif {
  position: absolute;
  top: -36px;
  right: -6px;
  width: 96px;
  height: 35px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow__finish-deco-serif {
    top: -40px;
    right: -36px;
    width: 136px;
    height: 54px;
  }
}

.p-top-flow__finish-deco-illust {
  width: 80px;
  height: 81px;
}
@media screen and (min-width: 1024px) {
  .p-top-flow__finish-deco-illust {
    width: 161px;
    height: 163px;
  }
}

/**
 * ホール
 */
.p-top-hall {
  background: #FFF0E8;
}

.p-top-hall__inr {
  margin: 0 auto 8px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__inr {
    margin: 0 auto 54px;
  }
}

.p-top-hall__ttl {
  margin: 0 0 6px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__ttl {
    margin: 0 0 16px;
  }
}

.p-top-hall__attention {
  text-align: center;
  margin: 0 0 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__attention {
    margin: 0 0 20px;
  }
}

.p-top-hall__btn {
  margin: 0 auto -10px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__btn {
    margin: 0 auto -20px;
  }
}

/* タブナビ */
.p-top-hall-tab__nav-list {
  display: flex;
  gap: 0 5px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall-tab__nav-list {
    gap: 0 10px;
  }
}

.p-top-hall-tab__nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: calc((100% - 10px) / 3);
  padding: 14px 0px;
  border-radius: 10px 10px 0 0;
  background: #FC6600;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) background;
}
@media screen and (min-width: 1024px) {
  .p-top-hall-tab__nav-item {
    align-items: stretch;
    min-width: calc((100% - 20px) / 3);
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top-hall-tab__nav-item:hover {
    background: rgba(252, 102, 0, 0.7);
  }
}
.p-top-hall-tab__nav-item.is-active {
  background: #fff;
}
.p-top-hall-tab__nav-item.is-active .p-top-hall-tab__nav-ttl,
.p-top-hall-tab__nav-item.is-active .p-top-hall-tab__nav-txt {
  color: #FC6600;
  border-color: #FC6600;
}

.p-top-hall-tab__nav-ttl {
  color: #fff;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 700;
  text-align: center;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) color;
}
@media screen and (min-width: 1024px) {
  .p-top-hall-tab__nav-ttl {
    font-size: 23px;
    line-height: 1.1739130435;
    text-align: left;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dotted #fff;
  }
}

.p-top-hall-tab__nav-txt {
  color: #fff;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) color;
}
@media screen and (min-width: 1024px) {
  .p-top-hall-tab__nav-txt {
    font-size: 14px;
    line-height: 1.2857142857;
  }
}

/* タブ中身 */
.p-top-hall-tab__contents {
  background: #fff;
  padding: 30px 25px;
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall-tab__contents {
    padding: 50px;
    border-radius: 0 0 20px 20px;
  }
}

.p-top-hall-tab__headline {
  font-size: 18px;
  line-height: 1;
  text-align: center;
  margin-bottom: 14px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall-tab__headline {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 18px;
  }
}

.p-top-hall-tab__anchor-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 28px;
  gap: 6px 12px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall-tab__anchor-list {
    gap: 8px 16px;
    margin-bottom: 40px;
  }
}

.p-top-hall-tab__anchor-item {
  display: inline-flex;
}
.p-top-hall-tab__anchor-item::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background: #FC6600;
  border-radius: 50%;
  margin: 0.425em 0.25em auto 0;
}
.p-top-hall-tab__anchor-item a {
  display: inline-block;
}

.p-top-hall__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__list {
    gap: 30px 20px;
  }
}
.p-top-hall__list.p-top-hall__list--hidden {
  margin-top: 18px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__list.p-top-hall__list--hidden {
    margin-top: 30px;
  }
}

.p-top-hall__item {
  position: relative;
  width: 100%;
  background: #FFF0E8;
}
@media screen and (min-width: 768px) {
  .p-top-hall__item {
    width: calc((100% - 18px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .p-top-hall__item {
    width: calc((100% - 40px) / 3);
  }
}

.p-top-hall__item-thumb {
  height: clamp(195px, 47.1014492754vw, 244px);
}
@media screen and (min-width: 1024px) {
  .p-top-hall__item-thumb {
    height: 190px;
  }
}

.p-top-hall__item-inr {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 15px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__item-inr {
    padding: 15px 20px;
  }
}

.p-top-hall__item-acc-content {
  display: none;
  position: relative;
}

.p-top-hall__item-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  background: #FC6600;
  border: 1px solid #FC6600;
  transition: 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__item-toggle {
    right: 20px;
  }
}
.p-top-hall__item-toggle::before, .p-top-hall__item-toggle::after {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  width: 10px;
  height: 2px;
}
.p-top-hall__item-toggle::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-top-hall__item-toggle::after {
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  transform: rotate(90deg) translate(50%, -50%);
}

.p-top-hall__item-name {
  font-size: 19px;
  line-height: 1.2631578947;
  font-weight: 700;
  padding-right: 38px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__item-name {
    font-size: 22px;
    line-height: 1.1818181818;
    padding-right: 38px;
  }
}

.p-top-hall__item-caption {
  width: calc(100% - 28px - 8px);
  font-size: 14px;
  line-height: 1.2857142857;
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__item-caption {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.3333333333;
  }
}

.p-top-hall__item-viewmore {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  cursor: pointer;
}
.p-top-hall__item-viewmore::before {
  content: "VIEW MORE";
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-right: 6px;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.p-top-hall__item-viewmore::after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%229%22%20viewBox%3D%220%200%2012%209%22%3E%3Cg%20transform%3D%22translate(12)%20rotate(90)%22%3E%3Cpath%20d%3D%22M6%2C9%2C0%2C2.066%2C1.787%2C0%2C6%2C4.869%2C10.213%2C0%2C12%2C2.066Z%22%20transform%3D%22translate(0%2012)%20rotate(-90)%22%20fill%3D%22%23707070%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  width: 12px;
  height: 9px;
  transform-origin: center center;
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-property: transform;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-hall__item-viewmore:hover {
    color: #FC6600;
  }
}
.p-top-hall__item-viewmore.is-acc-open::before {
  content: "CLOSE";
}
.p-top-hall__item-viewmore.is-acc-open::after {
  transform: rotate(180deg);
}

.p-top-hall-tab__intro {
  font-size: 14px;
  line-height: 1.4285714286;
  text-align: center;
  margin-bottom: 24px;
}

.p-top-hall__notion {
  font-size: 12px;
  line-height: 1.3333333333;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__notion {
    font-size: 13px;
    line-height: 1.3846153846;
    text-align: right;
  }
}

/* ポップアップ */
.p-top-hall__popup {
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: scale(0.8) translate(-50%, -50%);
  transform-origin: center center;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition-property: opacity visibility transform;
  z-index: 9990;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__popup {
    padding: 36px;
  }
}

.p-top-hall__popup-inr {
  position: relative;
  max-width: 100%;
  min-width: 320px;
  max-height: 90vh;
  max-height: calc(var(--vh) * 90);
  padding: 18px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #FFF0E8;
  overflow-y: auto;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__popup-inr {
    min-width: 950px;
    padding: 36px;
    border-width: 2px;
    border-radius: 30px;
  }
}

.p-top-hall__popup-close {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 48px;
  height: 48px;
  background: #FC6600;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9991;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__popup-close {
    top: 8px;
    right: 8px;
    width: 64px;
    height: 64px;
  }
}
.p-top-hall__popup-close::before, .p-top-hall__popup-close::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1.5px);
  left: calc(50% - 12px);
  background: #fff;
  width: 24px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__popup-close::before, .p-top-hall__popup-close::after {
    left: calc(50% - 18px);
    width: 36px;
  }
}
.p-top-hall__popup-close::before {
  transform: rotate(45deg);
}
.p-top-hall__popup-close::after {
  transform: rotate(-45deg);
}

.p-top-hall__popup-img-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__popup-img-list {
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 36px;
  }
}

.p-top-hall__popup-img {
  width: calc((100% - 5px) / 2);
}
@media screen and (min-width: 1024px) {
  .p-top-hall__popup-img {
    width: 100%;
  }
}

.p-top-hall__popup-point-ttl {
  color: #FC6600;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__popup-point-ttl {
    font-size: 23px;
    line-height: 1.1739130435;
    text-align: left;
    margin-bottom: 28px;
  }
}

@media screen and (min-width: 1024px) {
  .p-top-hall__popup-point-item {
    display: flex;
    align-items: flex-start;
  }
}
.p-top-hall__popup-point-item:not(:last-child) {
  margin-bottom: 14px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__popup-point-item:not(:last-child) {
    margin-bottom: 18px;
  }
}

.p-top-hall__popup-point-num {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FC6600;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__popup-point-num {
    flex-direction: row;
    font-size: 18px;
    line-height: 1.1666666667;
    margin: -2px 15px 0 0;
  }
}
.p-top-hall__popup-point-num span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  width: 36px;
  height: 36px;
  background: #FC6600;
  border-radius: 50%;
}
@media screen and (min-width: 1024px) {
  .p-top-hall__popup-point-num span {
    margin: 0 0 0 12px;
  }
}

.p-top-hall__popup-point-txt {
  margin-top: 0.25em;
}

.p-top-hall__item.is-active .p-top-hall__popup {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: scale(1) translate(-50%, -50%);
}

/**
 * リゾートウェディング
 */
.p-top-resort-wed__inr {
  padding: 24px 0 20px;
}
@media screen and (min-width: 1024px) {
  .p-top-resort-wed__inr {
    padding: 32px 0 56px;
  }
}

.p-top-resort-wed__ttl {
  color: #FC6600;
  font-family: "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-top-resort-wed__ttl {
    font-size: 22px;
    line-height: 1.1818181818;
    letter-spacing: 0.3em;
    margin-bottom: 27px;
  }
}

.p-top-resort-wed__txt {
  margin-bottom: 22px;
}
@media screen and (min-width: 1024px) {
  .p-top-resort-wed__txt {
    margin-bottom: 55px;
  }
}

.p-top-resort-wed__txt-catch {
  font-size: 18px;
  line-height: 1.2222222222;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .p-top-resort-wed__txt-catch {
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 14px;
  }
}
.p-top-resort-wed__txt-catch .word {
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
}
.p-top-resort-wed__txt-catch .word .char {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: calc(0.05s * var(--char-index));
  transform: translateY(1.2em);
  pointer-events: none;
}

[data-scroll=in] .p-top-resort-wed__txt-catch .word .char {
  transform: translateY(0);
  pointer-events: auto;
}

.p-top-resort-wed__txt-par {
  font-size: 13px;
  line-height: 1.3846153846;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-top-resort-wed__txt-par {
    font-size: 16px;
    line-height: 1.25;
  }
}

/**
 * お客様の声
 */
.p-top-voice {
  padding-top: calc(8.5416666667vw + 41px);
  border-top: 4px solid #FBE2D1;
}
@media screen and (min-width: 1024px) {
  .p-top-voice {
    padding-top: calc(8.5416666667vw + 21px);
    border-width: 8px;
  }
}

.p-top-voice__inr {
  margin: 0 0 163px;
  max-width: none;
}
@media screen and (min-width: 1024px) {
  .p-top-voice__inr {
    margin: 0 auto 280px;
    max-width: 960px;
  }
}

.p-top-voice__illust {
  position: relative;
  width: 87px;
  height: 146px;
  margin: calc(-17.0833333333vw - 85px) auto 8px;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .p-top-voice__illust {
    width: 174px;
    height: 291px;
    margin: calc(-17.0833333333vw - 98px) auto 24px;
  }
}

.p-top-voice__ttl {
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-voice__ttl {
    margin-bottom: 45px;
  }
}

.p-top-voice__btn {
  position: absolute;
  z-index: 100;
  background-color: #FC6600;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%208.1%2015.3%22%20style%3D%22enable-background%3Anew%200%200%208.1%2015.3%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23FFFFFF%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_6%22%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%226.8%2C0.6%200.8%2C7.7%206.8%2C14.6%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border: 1px solid #FC6600;
  border-radius: 50%;
  background-size: 5px 12px;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-voice__btn:hover {
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%208.1%2015.3%22%20style%3D%22enable-background%3Anew%200%200%208.1%2015.3%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23FC6600%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_6%22%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%226.8%2C0.6%200.8%2C7.7%206.8%2C14.6%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  }
}
@media screen and (min-width: 1024px) {
  .p-top-voice__btn {
    top: 50%;
    width: 50px;
    height: 50px;
    background-size: 6px 14px;
  }
}

.p-top-voice__btn--prev {
  left: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-voice__btn--prev {
    left: -70px;
  }
}

.p-top-voice__btn--next {
  transform: rotate(180deg);
  right: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-voice__btn--next {
    right: -70px;
  }
}

.p-top-voice-list {
  position: relative;
}

.p-top-voice-item {
  width: auto;
}
@media screen and (min-width: 1024px) {
  .p-top-voice-item {
    width: calc((100% - 54px) / 3);
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top-voice-item a:hover .p-top-voice-item__thumb img {
    transform: scale(1.1);
  }
}

.p-top-voice-item__thumb {
  width: 100%;
  height: 63.25vw;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-top-voice-item__thumb {
    height: 190px;
  }
}
.p-top-voice-item__thumb div {
  width: 100%;
  height: 100%;
}
.p-top-voice-item__thumb img {
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform-origin: center;
}

.p-top-voice-item__txt {
  background-color: #f1f1f1;
  padding: 21px 18px;
}
@media screen and (min-width: 1024px) {
  .p-top-voice-item__txt {
    padding: 21px 15px;
  }
}

.p-top-voice-item__name {
  min-height: 30px;
  margin-bottom: 15px;
  border-radius: 15px;
  font-size: 18px;
  line-height: 1.6666666667;
  background-color: #c8a062;
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-top-voice-item__name {
    min-height: 36px;
    border-radius: 18px;
    font-size: 22px;
    line-height: 1.6363636364;
  }
}

.p-top-voice-item__ttl {
  font-size: 16px;
  line-height: 1.375;
  letter-spacing: 0.05em;
  margin: 0 5px;
}
@media screen and (min-width: 1024px) {
  .p-top-voice-item__ttl {
    font-size: 18px;
    line-height: 1.4444444444;
    letter-spacing: 0.1em;
    margin: 0 10px;
  }
}

.p-top-voice__more {
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .p-top-voice__more {
    margin-top: 40px;
  }
}

/**
 * FAQ
 */
.p-top-faq {
  background: #FFF0E8;
}

.p-top-faq__illust {
  position: relative;
  top: calc(-17.0833333333vw - 118px);
  width: 177px;
  height: 137px;
  margin: 0 auto 36px;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .p-top-faq__illust {
    top: calc(-17.0833333333vw - 192px);
    width: 344px;
    height: 296px;
    margin: 0 auto 44px;
  }
}

.p-top-faq__inr {
  margin-bottom: -6.038647343vw;
  padding: 0 0 130px;
}
@media screen and (min-width: 1024px) {
  .p-top-faq__inr {
    margin-top: -5.9895833333vw;
    padding: 0 0 175px;
  }
}

.p-top-faq__ttl {
  margin: calc(-17.0833333333vw - 118px) 0 27px;
}
@media screen and (min-width: 1024px) {
  .p-top-faq__ttl {
    margin: calc(-17.0833333333vw - 192px) 0 45px;
  }
}

.p-top-faq-list-wrap {
  background: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-faq-list-wrap {
    border-radius: 20px;
  }
}

.p-top-faq-list {
  counter-reset: num 0;
  padding: 12px 16px;
}
@media screen and (min-width: 1024px) {
  .p-top-faq-list {
    padding: 40px 50px;
  }
}

.p-top-faq-item:not(:last-child) {
  border-bottom: 1px solid #434343;
}

.p-top-faq-item__txt {
  display: flex;
  align-items: center;
  width: 100%;
}
.p-top-faq-item__txt::before {
  display: inline-block;
  width: 42px;
  font-family: "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.3333333333;
  font-weight: 700;
  padding: 14px 0;
}
@media screen and (min-width: 1024px) {
  .p-top-faq-item__txt::before {
    width: 64px;
    font-size: 24px;
    line-height: 1.1666666667;
    padding: 22px 0;
  }
}
.p-top-faq-item__txt p {
  width: calc(100% - 42px);
  font-size: 15px;
  line-height: 1.3333333333;
  padding: 14px 0;
}
@media screen and (min-width: 1024px) {
  .p-top-faq-item__txt p {
    width: calc(100% - 64px);
    font-size: 20px;
    line-height: 1.2;
    padding: 22px 0;
  }
}
.p-top-faq-item__txt .c-accbtn02 {
  margin: 0 0 0 auto;
}

.p-top-faq-item__txt--question::before {
  counter-increment: num;
  content: "Q" counter(num) ".";
}
.p-top-faq-item__txt--question p {
  font-weight: 700;
  border-bottom: 1px dotted #434343;
}

.p-top-faq-item__txt--answer p {
  width: calc(100% - 78px);
  margin-right: 8px;
}
@media screen and (min-width: 1024px) {
  .p-top-faq-item__txt--answer p {
    width: calc(100% - 82px);
    margin-right: 12px;
  }
}
.p-top-faq-item__txt--answer::before {
  content: "A.";
}

.p-top-faq-item__answer-txt p {
  width: calc(100% - 42px);
  font-size: 14px;
  line-height: 1.4285714286;
  margin-left: auto;
  padding-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-top-faq-item__answer-txt p {
    width: calc(100% - 64px);
    font-size: 17px;
    line-height: 1.5882352941;
    padding-bottom: 30px;
  }
}

/**
 * お知らせ
 */
.p-top-news__inr {
  margin: 0 auto 8px;
}
@media screen and (min-width: 1024px) {
  .p-top-news__inr {
    margin: 0 auto 68px;
  }
}

.p-top-news__illust {
  position: relative;
  width: 87px;
  height: 146px;
  margin: calc(-17.0833333333vw - 85px) auto 8px;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .p-top-news__illust {
    width: 174px;
    height: 291px;
    margin: calc(-17.0833333333vw - 98px) auto 24px;
  }
}

.p-top-news__ttl {
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .p-top-news__ttl {
    margin-bottom: 45px;
  }
}

.p-top-news-item.is-sticky {
  margin-bottom: 10px;
  padding-bottom: 38px;
  border-bottom: 1px solid #434343;
}
@media screen and (min-width: 1024px) {
  .p-top-news-item.is-sticky {
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 53px;
  }
}
.p-top-news-item.is-sticky .c-news-item-wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .p-top-news-item.is-sticky .c-news-item-wrap {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.p-top-news-item.is-sticky .c-news-item__thumb {
  width: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-top-news-item.is-sticky .c-news-item__thumb {
    width: calc(100% - 30px - 420px);
    height: auto;
    margin-bottom: 0;
  }
}
.p-top-news-item.is-sticky .c-news-item__txt {
  width: auto;
}
@media screen and (min-width: 1024px) {
  .p-top-news-item.is-sticky .c-news-item__txt {
    width: 420px;
    margin-left: 30px;
  }
}
.p-top-news-item.is-sticky .c-news-item-label {
  border: 2px solid #FFAF75;
  text-align: center;
  font-weight: 700;
  color: #FFAF75;
  width: 135px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: 20px;
  line-height: 40px;
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .p-top-news-item.is-sticky .c-news-item-label {
    width: 180px;
    height: 58px;
    margin-bottom: 32px;
    border-radius: 29px;
    line-height: 58px;
    font-size: 32px;
  }
}
.p-top-news-item.is-sticky .c-news-item__time {
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .p-top-news-item.is-sticky .c-news-item__time {
    margin-bottom: 12px;
  }
}
.p-top-news-item.is-sticky .c-news-item__ttl {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .p-top-news-item.is-sticky .c-news-item__ttl {
    font-size: 25px;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}

.p-top-news-acc {
  margin-top: 45px;
  margin-bottom: 68px;
}
@media screen and (min-width: 1024px) {
  .p-top-news-acc {
    margin-top: 60px;
    margin-bottom: 90px;
  }
}

/**
 * 無料相談カウンター
 */
.p-top-counter {
  background: #FFF0E8;
}

.p-top-counter__inr {
  padding: 25px 0;
}
@media screen and (min-width: 1024px) {
  .p-top-counter__inr {
    padding: 30px 0 25px;
  }
}

.p-top-counter__ttl {
  width: 247px;
  height: 40px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-top-counter__ttl {
    width: 418px;
    height: 68px;
  }
}

.p-top-counter__icon {
  width: 48px;
  height: 67px;
  margin: -15px auto 25px;
}
@media screen and (min-width: 1024px) {
  .p-top-counter__icon {
    width: 66px;
    height: 90px;
    margin: -20px auto 15px;
  }
}

.p-top-counter__txt {
  font-size: 15px;
  line-height: 1.4666666667;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-top-counter__txt {
    font-size: 17px;
    line-height: 1.8823529412;
  }
}

.p-top-counter-img {
  display: flex;
  justify-content: center;
  gap: 0 12px;
  margin: 16px 25px;
}
@media screen and (min-width: 1024px) {
  .p-top-counter-img {
    gap: 0 32px;
    margin: 25px auto;
  }
}

.p-top-counter-img__item {
  max-width: 440px;
  max-height: 320px;
}

/**
 * CTA
 */
.p-top-cta {
  position: relative;
  background: #fd934c;
  padding: 16px 0 48px;
}
@media screen and (min-width: 1024px) {
  .p-top-cta {
    padding: 54px 0 64px;
  }
}

.p-top-cta__top-scroll {
  position: absolute;
  bottom: 32px;
  right: 20px;
  width: 72px;
  height: 72px;
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .p-top-cta__top-scroll {
    width: 86px;
    height: 86px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top-cta__top-scroll:hover {
    transform: translateY(-10px);
  }
}
.p-top-cta__top-scroll span {
  position: absolute;
  left: 0;
  top: 18px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-family: "Century Gothic", Futura, Roboto, sans-serif;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-top-cta__top-scroll span {
    top: 22px;
    font-size: 15px;
    line-height: 1;
  }
}

.p-news {
  padding-bottom: 100px;
}
@media screen and (min-width: 1024px) {
  .p-news {
    padding-bottom: 140px;
  }
}

.p-news__ttl {
  margin: 60px 0;
}
@media screen and (min-width: 1024px) {
  .p-news__ttl {
    margin: 90px 0;
  }
}

.p-news-category {
  margin-bottom: 42px;
}
@media screen and (min-width: 1024px) {
  .p-news-category {
    margin-bottom: 72px;
  }
}

.p-news-category-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .p-news-category-list {
    gap: 10px;
  }
}

.p-news-category-list__item {
  padding: 8px 20px;
  background: #FFF0E8;
  border-radius: 18px;
}
@media screen and (min-width: 1024px) {
  .p-news-category-list__item {
    padding: 12px 28px;
    border-radius: 24px;
  }
}
.p-news-category-list__item.is-active {
  color: #fff;
  background: #FC6600;
}
.p-news-category-list__item span {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4285714286;
}
@media screen and (min-width: 1024px) {
  .p-news-category-list__item span {
    font-size: 16px;
    line-height: 1.5;
  }
}

.p-news-article {
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .p-news-article {
    margin-bottom: 70px;
  }
}

.p-news__post-head {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #434343;
}
@media screen and (min-width: 1024px) {
  .p-news__post-head {
    margin-bottom: 50px;
    padding-bottom: 40px;
  }
}

.p-news__post-head-ttl {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-news__post-head-ttl {
    font-size: 35px;
    line-height: 1.5714285714;
  }
}

.p-news__post-head-state {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  .p-news__post-head-state {
    margin-bottom: 40px;
  }
}

.p-news__post-head-cat {
  color: #fff;
  font-size: 14px;
  line-height: 1.2857142857;
  font-weight: 700;
  background: #FF9B00;
  margin-right: 12px;
  padding: 4px 14px;
  border-radius: 14px;
}
@media screen and (min-width: 1024px) {
  .p-news__post-head-cat {
    font-size: 16px;
    line-height: 1.3125;
  }
}

.p-news__post-head-time {
  font-family: "Century Gothic", Futura, Roboto, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2857142857;
}
@media screen and (min-width: 1024px) {
  .p-news__post-head-time {
    font-size: 16px;
    line-height: 1.3125;
  }
}

.p-news__post-content p {
  font-size: 15px;
  line-height: 2;
}
@media screen and (min-width: 1024px) {
  .p-news__post-content p {
    font-size: 18px;
    line-height: 2;
  }
}
.p-news__post-content a {
  text-decoration: underline;
}
.p-news__post-content > *:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .p-news__post-content > *:not(:first-child) {
    margin-top: 45px;
  }
}

.p-news__post-back-btn {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .p-news__post-back-btn {
    margin-top: 45px;
  }
}
.p-news__post-back-btn a {
  color: #fff;
  font-size: 14px;
  line-height: 1.2857142857;
  font-weight: 700;
  text-align: center;
  background-color: #FC6600;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%208.1%2015.3%22%20style%3D%22enable-background%3Anew%200%200%208.1%2015.3%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23FFFFFF%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_6%22%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%226.8%2C0.6%200.8%2C7.7%206.8%2C14.6%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 16px center;
  background-size: 6px 14px;
  background-repeat: no-repeat;
  padding: 14px 18px 14px 36px;
  border: 2px solid #FC6600;
  border-radius: 32px;
}
@media screen and (min-width: 1024px) {
  .p-news__post-back-btn a {
    font-size: 16px;
    line-height: 1.3125;
    min-width: 360px;
    background-size: 8px 18px;
    background-position: 22px center;
    padding: 16px 24px 16px 52px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news__post-back-btn a:hover {
    color: #FC6600;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%208.1%2015.3%22%20style%3D%22enable-background%3Anew%200%200%208.1%2015.3%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23FC6600%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_6%22%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%226.8%2C0.6%200.8%2C7.7%206.8%2C14.6%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  }
}

.p-voice {
  padding-bottom: 100px;
}
@media screen and (min-width: 1024px) {
  .p-voice {
    padding-bottom: 140px;
  }
}

.p-voice__ttl {
  text-align: center;
  margin: 60px 0;
}
@media screen and (min-width: 1024px) {
  .p-voice__ttl {
    margin: 90px 0;
  }
}

.p-voice-article {
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .p-voice-article {
    margin-bottom: 70px;
  }
}

.p-voice-article-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@media screen and (min-width: 1024px) {
  .p-voice-article-list {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 46px;
  }
}

.p-voice-article-item {
  width: auto;
}
@media screen and (min-width: 1024px) {
  .p-voice-article-item {
    width: calc((100% - 92px) / 3);
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-voice-article-item a:hover .p-voice-article-item__thumb img {
    transform: scale(1.1);
  }
}

.p-voice-article-item__thumb {
  width: 100%;
  height: 63.25vw;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-voice-article-item__thumb {
    height: 190px;
  }
}
.p-voice-article-item__thumb div {
  width: 100%;
  height: 100%;
}
.p-voice-article-item__thumb img {
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform-origin: center;
}

.p-voice-article-item__txt {
  background-color: #f1f1f1;
  padding: 21px 18px;
}
@media screen and (min-width: 1024px) {
  .p-voice-article-item__txt {
    padding: 21px 15px;
  }
}

.p-voice-article-item__name {
  min-height: 30px;
  margin-bottom: 15px;
  border-radius: 15px;
  font-size: 18px;
  line-height: 1.6666666667;
  background-color: #c8a062;
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-voice-article-item__name {
    min-height: 36px;
    border-radius: 18px;
    font-size: 22px;
    line-height: 1.6363636364;
  }
}

.p-voice-article-item__ttl {
  font-size: 16px;
  line-height: 1.375;
  letter-spacing: 0.05em;
  margin: 0 5px;
}
@media screen and (min-width: 1024px) {
  .p-voice-article-item__ttl {
    font-size: 18px;
    line-height: 1.4444444444;
    letter-spacing: 0.1em;
    margin: 0 10px;
  }
}

/* ---------------------------------------------------
  Contact
--------------------------------------------------- */
.p-contact {
  background: #FFF0E8;
}

.p-contact--thanks {
  border-bottom: 6px solid #fff;
}

.p-contact__inr {
  padding: 54px 0;
}
@media screen and (min-width: 1024px) {
  .p-contact__inr {
    padding: 85px 0;
  }
}

.p-contact-intro {
  margin-bottom: 35px;
}
@media screen and (min-width: 1024px) {
  .p-contact-intro {
    margin-bottom: 50px;
  }
}

.p-contact-intro__ttl {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-contact-intro__ttl {
    margin-bottom: 25px;
  }
}

.p-contact-intro__txt {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-contact-intro__txt {
    font-size: 17px;
    line-height: 1.8823529412;
  }
}

/**
 * フォーム
 */
.p-contact-form {
  background: #fff;
  padding: 27px 20px 0;
  border-radius: 15px;
}
@media screen and (min-width: 1024px) {
  .p-contact-form {
    padding: 54px 90px 0;
    border-radius: 30px;
  }
}
.p-contact-form .c-cta2__wrap {
  margin: 24px -20px 28px;
  padding: 56px 0 26px;
}
@media screen and (min-width: 1024px) {
  .p-contact-form .c-cta2__wrap {
    margin: 48px -90px 56px;
    padding: 92px 20px 52px;
  }
}
@media screen and (min-width: 1024px) {
  .p-contact-form .c-cta2 {
    max-width: 870px;
    margin: 0 auto;
  }
}

.p-contact-form__txt {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  margin: 40px 0 20px;
}
@media screen and (min-width: 1024px) {
  .p-contact-form__txt {
    font-size: 17px;
    line-height: 1.8823529412;
    margin: 80px 0 20px;
  }
}

.p-contact-form-tel-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 342px;
  background: #fd934c;
  border-radius: 10px;
  margin: 0 auto 20px;
  padding: 18px 0 12px;
  border: 1px solid #fd934c;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) background;
}
@media screen and (min-width: 1024px) {
  .p-contact-form-tel-contact {
    margin: 0 auto 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-contact-form-tel-contact:hover {
    background: #fff;
  }
  .p-contact-form-tel-contact:hover .p-contact-form-tel-contact__catch,
  .p-contact-form-tel-contact:hover .p-contact-form-tel-contact__ttl {
    color: #FC6600;
  }
  .p-contact-form-tel-contact:hover .p-contact-form-tel-contact__catch::before, .p-contact-form-tel-contact:hover .p-contact-form-tel-contact__catch::after {
    background: #FC6600;
  }
  .p-contact-form-tel-contact:hover .p-contact-form-tel-contact__arrow circle {
    fill: #FC6600;
  }
  .p-contact-form-tel-contact:hover .p-contact-form-tel-contact__arrow polygon {
    fill: #fff;
  }
}

.p-contact-form-tel-contact__catch {
  position: relative;
  color: #fff;
  font-size: 13px;
  line-height: 1.3846153846;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 0 5px;
}
@media screen and (min-width: 1024px) {
  .p-contact-form-tel-contact__catch {
    font-size: 14px;
    line-height: 1.4285714286;
  }
}
.p-contact-form-tel-contact__catch::before, .p-contact-form-tel-contact__catch::after {
  content: "";
  display: block;
  position: relative;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) background;
}
.p-contact-form-tel-contact__catch::before {
  margin-bottom: 4px;
}
.p-contact-form-tel-contact__catch::after {
  margin-top: 4px;
}

.p-contact-form-tel-contact__ttl {
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .p-contact-form-tel-contact__ttl {
    font-size: 22px;
    line-height: 1.1818181818;
  }
}

.p-contact-form-tel-contact__arrow {
  width: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-contact-form-tel-contact__arrow {
    width: 24px;
  }
}
.p-contact-form-tel-contact__arrow circle,
.p-contact-form-tel-contact__arrow polygon {
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) fill;
}

/**
 * フォーム中身
 */
.p-contact-inputs-list {
  margin-bottom: 40px;
}
.p-contact-inputs-list dl {
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list dl {
    display: flex;
  }
}
.p-contact-inputs-list dl dt {
  padding: 20px 0 10px;
  vertical-align: middle;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list dl dt {
    width: 285px;
    padding: 30px 0 25px;
  }
}
.p-contact-inputs-list dl dd {
  padding: 0 0 20px;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list dl dd {
    width: calc(100% - 285px);
    padding: 25px 0;
  }
}

.p-contact-inputs-list__lead {
  font-size: 14px;
  line-height: 2;
  text-align: center;
  font-feature-settings: "palt";
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__lead {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
  }
}

.p-contact-inputs-list__ttl {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__ttl {
    font-size: 18px;
    line-height: 1.2222222222;
  }
}

.p-contact-inputs-list__check-list .wpcf7-form-control,
.p-contact-inputs-list__check-list .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__check-list .wpcf7-form-control,
  .p-contact-inputs-list__check-list .wpcf7-checkbox {
    gap: 12px 16px;
  }
}
.p-contact-inputs-list__check-list .wpcf7-list-item {
  padding: 8px 10px;
  background: #F1F1F1;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__check-list .wpcf7-list-item {
    padding: 12px 14px;
  }
}
.p-contact-inputs-list__check-list .wpcf7-list-item label {
  display: block;
  font-size: 13px;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__check-list .wpcf7-list-item label {
    font-size: 15px;
    line-height: 1;
  }
}

.p-contact-inputs-list__check-list--style .wpcf7-form-control,
.p-contact-inputs-list__check-list--style .wpcf7-checkbox {
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__check-list--style .wpcf7-form-control,
  .p-contact-inputs-list__check-list--style .wpcf7-checkbox {
    gap: 8px 12px;
  }
}
.p-contact-inputs-list__check-list--style .wpcf7-list-item {
  width: calc((100% - 16px) / 2);
  padding: 8px;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__check-list--style .wpcf7-list-item {
    width: calc((100% - 36px) / 4);
    padding: 12px 8px;
  }
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__check-list--style .wpcf7-list-item label {
    font-size: 13px;
    line-height: 1;
  }
}

.p-contact-inputs-list__days,
.p-contact-inputs-list__birth-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.p-contact-inputs-list__days {
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__days {
    gap: 10px 15px;
  }
}
.p-contact-inputs-list__days > * {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__days > * {
    width: calc((100% - 30px - 4em) / 2);
  }
}
.p-contact-inputs-list__days:not(:last-child) {
  margin-bottom: 10px;
}

.p-contact-inputs-list__birth-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.p-contact-inputs-list__birth-item > span {
  width: 100%;
  margin-right: 12px;
}

.p-contact-inputs-list__birth-list {
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__birth-list {
    gap: 10px 24px;
  }
}
.p-contact-inputs-list__birth-list > * {
  width: 100%;
  /*&:last-child {
    &:nth-child(1),
    &:nth-child(2) {
      @include mq(lg) {
        width: calc(1em + ((100% - 48px) / 3));
      }
    }
  }*/
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__birth-list > * {
    width: calc((100% - 48px) / 3);
  }
}

.p-contact-inputs-list__notice {
  font-size: 14px;
  line-height: 2;
  margin: 2px 0 0 10px;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-list__notice {
    font-size: 16px;
    line-height: 2;
  }
}

.p-contact-inputs-acceptance {
  margin-bottom: 30px;
}

.p-contact-inputs-acceptance__txt {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-acceptance__txt {
    font-size: 17px;
    line-height: 1.8823529412;
    margin-bottom: 32px;
  }
}

.p-contact-inputs-acceptance__btn .wpcf7-list-item {
  display: flex;
  justify-content: center;
}
.p-contact-inputs-acceptance__btn .wpcf7-list-item label {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-contact-inputs-acceptance__btn .wpcf7-list-item label .wpcf7-list-item-label {
  color: #fd934c;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.8;
  margin-left: 10px;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-acceptance__btn .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 17px;
    line-height: 1.8823529412;
  }
}

.p-contact-inputs-submit {
  margin-bottom: 28px;
}
@media screen and (min-width: 1024px) {
  .p-contact-inputs-submit {
    margin-bottom: 32px;
  }
}

.p-contact-recapture-msg {
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-contact-recapture-msg {
    font-size: 16px;
    line-height: 2;
  }
}

.wpcf7-not-valid-tip {
  display: block;
  color: #fd934c;
  font-size: 12px;
  line-height: 1.25;
  text-align: left;
  font-weight: 700;
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .wpcf7-not-valid-tip {
    font-size: 14px;
    line-height: 1.2857142857;
  }
}

.wpcf7-response-output {
  color: #fd934c;
  font-size: 15px;
  line-height: 1.8666666667;
  text-align: center;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .wpcf7-response-output {
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.8823529412;
  }
}

.screen-reader-response {
  display: none;
}

/**
 * 電話
 */
.p-contact-tel {
  padding: 16px 0;
  background: #fd934c;
}
@media screen and (min-width: 1024px) {
  .p-contact-tel {
    padding: 32px 0;
  }
}

.p-contact-tel__inr {
  background: repeating-linear-gradient(135deg, #F9A600, #F9A600 5px, transparent 5px, transparent 10px);
  margin: 0;
  padding: 16px 0;
}
@media screen and (min-width: 1024px) {
  .p-contact-tel__inr {
    margin: 0 32px;
    padding: 64px 0;
  }
}

.p-contact-tel__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - 32px);
  background: #FFF0E8;
  margin: 0 auto;
  padding: 24px 0;
  border-radius: 25px;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) background;
}
@media screen and (min-width: 1024px) {
  .p-contact-tel__btn {
    width: 590px;
    padding: 48px 0;
    border-radius: 50px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-contact-tel__btn:hover {
    background: #FC6600;
  }
  .p-contact-tel__btn:hover .p-contact-tel__ttl,
  .p-contact-tel__btn:hover .p-contact-tel__num,
  .p-contact-tel__btn:hover .p-contact-tel__hours {
    color: #fff;
  }
}

.p-contact-tel__ttl {
  color: #FC6600;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .p-contact-tel__ttl {
    font-size: 22px;
    line-height: 1.1818181818;
    margin-bottom: 16px;
  }
}

.p-contact-tel__num {
  color: #FC6600;
  font-family: "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  line-height: 1.4375;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .p-contact-tel__num {
    font-size: 42px;
    line-height: 1.3333333333;
    margin-bottom: 10px;
  }
}

.p-contact-tel__hours {
  color: #FC6600;
  font-size: 13px;
  line-height: 1.5384615385;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-contact-tel__hours {
    font-size: 17px;
    line-height: 1.5882352941;
  }
}

/**
 * サンクスページ
 */
.p-contact-thanks {
  background: #fff;
  padding: 27px 20px 24px;
  border-radius: 15px;
}
@media screen and (min-width: 1024px) {
  .p-contact-thanks {
    padding: 54px 100px 48px;
    border-radius: 30px;
  }
}

.p-contact-thanks__ttl {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 1024px) {
  .p-contact-thanks__ttl {
    margin-bottom: 27px;
    padding-bottom: 25px;
  }
}

.p-contact-thanks__ttl-big {
  color: #FC6600;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}
@media screen and (min-width: 1024px) {
  .p-contact-thanks__ttl-big {
    font-size: 32px;
    line-height: 1.1875;
  }
}

.p-contact-thanks__ttl-small {
  color: #FC6600;
  font-size: 16px;
  line-height: 1.4375;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-contact-thanks__ttl-small {
    font-size: 23px;
    line-height: 1.1739130435;
  }
}

.p-contact-thanks__txt {
  font-size: 14px;
  line-height: 1.9285714286;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-contact-thanks__txt {
    font-size: 17px;
    line-height: 1.8823529412;
  }
}

/* ---------------------------------------------------
  Utility
--------------------------------------------------- */
.u-container {
  position: relative;
  margin: 0 clamp(10px, 4.8309178744vw, 50px);
}
@media screen and (min-width: 1024px) {
  .u-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 50px;
  }
}

.u-none {
  display: none;
}

.u-pc-only {
  display: none;
}
@media screen and (min-width: 1024px) {
  .u-pc-only {
    display: block;
  }
}

.u-sp-only {
  display: block;
}
@media screen and (min-width: 1024px) {
  .u-sp-only {
    display: none;
  }
}

.u-under-line {
  text-decoration: underline;
}

.u-t-just {
  -moz-text-align-last: left;
  text-align-last: left; /* Chrome・Firefox用 */
  text-align: justify; /* IE・Edge用 */
}

.u-ta-c {
  text-align: center;
}

.u-ta-r {
  text-align: right;
}

.u-list-indent li {
  padding-left: 1em;
  text-indent: -1em;
}

.u-cant-click {
  pointer-events: none;
}

.u-hover {
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) opacity;
}
@media (hover: hover) and (pointer: fine) {
  .u-hover:hover {
    opacity: 0.8;
  }
  .u-hover:hover img {
    opacity: 1;
  }
}

.u-hover-fade {
  position: relative;
  display: block;
  background: #fff;
  overflow: hidden;
  z-index: 1;
}
.u-hover-fade:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #269BE0;
  opacity: 0;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) opacity;
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .u-hover-fade:hover:before {
    opacity: 0.2;
  }
  .u-hover-fade:hover img {
    opacity: 1;
  }
}

.u-of img, .u-of video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50%;
  object-position: 50%;
}

.u-scranm-flow {
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-property: transform, opacity;
  transform: translateY(5vh);
  transform: translateY(calc(var(--vh) * 5));
  transition-delay: calc(0.2s + 0.4s * var(--item-index));
  opacity: 0;
  pointer-events: none;
}

[data-scroll=in] .u-scranm-flow {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.u-scranm-bubble {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.25s cubic-bezier(0, 0, 0.58, 1);
  transition-delay: calc(0.2s + 0.4s * var(--item-index));
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

[data-scroll=in] .u-scranm-bubble {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.u-circle-deco,
.u-wave-deco {
  width: 100%;
  margin: 0 auto;
}

.u-color-yellow {
  color: #FFFF35;
}

.u-bg-skyblue {
  background-color: #35C0F2;
}

.u-bg-blue {
  background-color: #269BE0;
}

.u-bg-orange {
  background-color: #FF9E00;
}

.u-bg-green {
  background-color: #35C097;
}

.u-bg-pink {
  background-color: #FF9196;
}

.u-bg-brown {
  background-color: #CD9262;
}

.u-bg-light-green {
  background-color: #00A8A4;
}

.u-bg-notice {
  background-color: #4f6483;
}

.u-bg-club {
  background-color: #95b4d4;
}

.u-bg-school-event,
.u-bg-school-life {
  background-color: #5ab4d2;
}

.u-bg-admission {
  background-color: #ff8d92;
}

.u-bg-other {
  background-color: #263c60;
}

.u-bg-course {
  background-color: #5a9bd6;
}

.u-tc-black {
  color: #434343;
}

.u-tc-gray {
  color: #251E1C;
}

.u-tc-blue {
  color: #269BE0;
}

.u-f-palt {
  font-feature-settings: "palt";
}

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

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

.u-sp-fs-0 {
  font-size: 0px;
}

.u-sp-fs-1 {
  font-size: 1px;
}

.u-sp-fs-2 {
  font-size: 2px;
}

.u-sp-fs-3 {
  font-size: 3px;
}

.u-sp-fs-4 {
  font-size: 4px;
}

.u-sp-fs-5 {
  font-size: 5px;
}

.u-sp-fs-6 {
  font-size: 6px;
}

.u-sp-fs-7 {
  font-size: 7px;
}

.u-sp-fs-8 {
  font-size: 8px;
}

.u-sp-fs-9 {
  font-size: 9px;
}

.u-sp-fs-10 {
  font-size: 10px;
}

.u-sp-fs-11 {
  font-size: 11px;
}

.u-sp-fs-12 {
  font-size: 12px;
}

.u-sp-fs-13 {
  font-size: 13px;
}

.u-sp-fs-14 {
  font-size: 14px;
}

.u-sp-fs-15 {
  font-size: 15px;
}

.u-sp-fs-16 {
  font-size: 16px;
}

.u-sp-fs-17 {
  font-size: 17px;
}

.u-sp-fs-18 {
  font-size: 18px;
}

.u-sp-fs-19 {
  font-size: 19px;
}

.u-sp-fs-20 {
  font-size: 20px;
}

.u-sp-fs-21 {
  font-size: 21px;
}

.u-sp-fs-22 {
  font-size: 22px;
}

.u-sp-fs-23 {
  font-size: 23px;
}

.u-sp-fs-24 {
  font-size: 24px;
}

.u-sp-fs-25 {
  font-size: 25px;
}

.u-sp-fs-26 {
  font-size: 26px;
}

.u-sp-fs-27 {
  font-size: 27px;
}

.u-sp-fs-28 {
  font-size: 28px;
}

.u-sp-fs-29 {
  font-size: 29px;
}

.u-sp-fs-30 {
  font-size: 30px;
}

.u-sp-fs-31 {
  font-size: 31px;
}

.u-sp-fs-32 {
  font-size: 32px;
}

.u-sp-fs-33 {
  font-size: 33px;
}

.u-sp-fs-34 {
  font-size: 34px;
}

.u-sp-fs-35 {
  font-size: 35px;
}

.u-sp-fs-36 {
  font-size: 36px;
}

.u-sp-fs-37 {
  font-size: 37px;
}

.u-sp-fs-38 {
  font-size: 38px;
}

.u-sp-fs-39 {
  font-size: 39px;
}

.u-sp-fs-40 {
  font-size: 40px;
}

.u-sp-fs-41 {
  font-size: 41px;
}

.u-sp-fs-42 {
  font-size: 42px;
}

.u-sp-fs-43 {
  font-size: 43px;
}

.u-sp-fs-44 {
  font-size: 44px;
}

.u-sp-fs-45 {
  font-size: 45px;
}

.u-sp-fs-46 {
  font-size: 46px;
}

.u-sp-fs-47 {
  font-size: 47px;
}

.u-sp-fs-48 {
  font-size: 48px;
}

.u-sp-fs-49 {
  font-size: 49px;
}

.u-sp-fs-50 {
  font-size: 50px;
}

@media screen and (min-width: 568px) {
  .u-pc-fs-1 {
    font-size: 1px;
  }
  .u-pc-fs-2 {
    font-size: 2px;
  }
  .u-pc-fs-3 {
    font-size: 3px;
  }
  .u-pc-fs-4 {
    font-size: 4px;
  }
  .u-pc-fs-5 {
    font-size: 5px;
  }
  .u-pc-fs-6 {
    font-size: 6px;
  }
  .u-pc-fs-7 {
    font-size: 7px;
  }
  .u-pc-fs-8 {
    font-size: 8px;
  }
  .u-pc-fs-9 {
    font-size: 9px;
  }
  .u-pc-fs-10 {
    font-size: 10px;
  }
  .u-pc-fs-11 {
    font-size: 11px;
  }
  .u-pc-fs-12 {
    font-size: 12px;
  }
  .u-pc-fs-13 {
    font-size: 13px;
  }
  .u-pc-fs-14 {
    font-size: 14px;
  }
  .u-pc-fs-15 {
    font-size: 15px;
  }
  .u-pc-fs-16 {
    font-size: 16px;
  }
  .u-pc-fs-17 {
    font-size: 17px;
  }
  .u-pc-fs-18 {
    font-size: 18px;
  }
  .u-pc-fs-19 {
    font-size: 19px;
  }
  .u-pc-fs-20 {
    font-size: 20px;
  }
  .u-pc-fs-21 {
    font-size: 21px;
  }
  .u-pc-fs-22 {
    font-size: 22px;
  }
  .u-pc-fs-23 {
    font-size: 23px;
  }
  .u-pc-fs-24 {
    font-size: 24px;
  }
  .u-pc-fs-25 {
    font-size: 25px;
  }
  .u-pc-fs-26 {
    font-size: 26px;
  }
  .u-pc-fs-27 {
    font-size: 27px;
  }
  .u-pc-fs-28 {
    font-size: 28px;
  }
  .u-pc-fs-29 {
    font-size: 29px;
  }
  .u-pc-fs-30 {
    font-size: 30px;
  }
  .u-pc-fs-31 {
    font-size: 31px;
  }
  .u-pc-fs-32 {
    font-size: 32px;
  }
  .u-pc-fs-33 {
    font-size: 33px;
  }
  .u-pc-fs-34 {
    font-size: 34px;
  }
  .u-pc-fs-35 {
    font-size: 35px;
  }
  .u-pc-fs-36 {
    font-size: 36px;
  }
  .u-pc-fs-37 {
    font-size: 37px;
  }
  .u-pc-fs-38 {
    font-size: 38px;
  }
  .u-pc-fs-39 {
    font-size: 39px;
  }
  .u-pc-fs-40 {
    font-size: 40px;
  }
  .u-pc-fs-41 {
    font-size: 41px;
  }
  .u-pc-fs-42 {
    font-size: 42px;
  }
  .u-pc-fs-43 {
    font-size: 43px;
  }
  .u-pc-fs-44 {
    font-size: 44px;
  }
  .u-pc-fs-45 {
    font-size: 45px;
  }
  .u-pc-fs-46 {
    font-size: 46px;
  }
  .u-pc-fs-47 {
    font-size: 47px;
  }
  .u-pc-fs-48 {
    font-size: 48px;
  }
  .u-pc-fs-49 {
    font-size: 49px;
  }
  .u-pc-fs-50 {
    font-size: 50px;
  }
}
.u-sp-lh-10 {
  line-height: 1;
}

.u-sp-lh-11 {
  line-height: 1.1;
}

.u-sp-lh-12 {
  line-height: 1.2;
}

.u-sp-lh-13 {
  line-height: 1.3;
}

.u-sp-lh-14 {
  line-height: 1.4;
}

.u-sp-lh-15 {
  line-height: 1.5;
}

.u-sp-lh-16 {
  line-height: 1.6;
}

.u-sp-lh-17 {
  line-height: 1.7;
}

.u-sp-lh-18 {
  line-height: 1.8;
}

.u-sp-lh-19 {
  line-height: 1.9;
}

.u-sp-lh-20 {
  line-height: 2;
}

.u-sp-lh-21 {
  line-height: 2.1;
}

.u-sp-lh-22 {
  line-height: 2.2;
}

.u-sp-lh-23 {
  line-height: 2.3;
}

.u-sp-lh-24 {
  line-height: 2.4;
}

.u-sp-lh-25 {
  line-height: 2.5;
}

.u-sp-lh-26 {
  line-height: 2.6;
}

.u-sp-lh-27 {
  line-height: 2.7;
}

.u-sp-lh-28 {
  line-height: 2.8;
}

.u-sp-lh-29 {
  line-height: 2.9;
}

.u-sp-lh-30 {
  line-height: 3;
}

.u-sp-lh-31 {
  line-height: 3.1;
}

.u-sp-lh-32 {
  line-height: 3.2;
}

.u-sp-lh-33 {
  line-height: 3.3;
}

.u-sp-lh-34 {
  line-height: 3.4;
}

.u-sp-lh-35 {
  line-height: 3.5;
}

.u-sp-lh-36 {
  line-height: 3.6;
}

.u-sp-lh-37 {
  line-height: 3.7;
}

.u-sp-lh-38 {
  line-height: 3.8;
}

.u-sp-lh-39 {
  line-height: 3.9;
}

.u-sp-lh-40 {
  line-height: 4;
}

@media screen and (min-width: 568px) {
  .u-pc-lh-10 {
    line-height: 1;
  }
  .u-pc-lh-11 {
    line-height: 1.1;
  }
  .u-pc-lh-12 {
    line-height: 1.2;
  }
  .u-pc-lh-13 {
    line-height: 1.3;
  }
  .u-pc-lh-14 {
    line-height: 1.4;
  }
  .u-pc-lh-15 {
    line-height: 1.5;
  }
  .u-pc-lh-16 {
    line-height: 1.6;
  }
  .u-pc-lh-17 {
    line-height: 1.7;
  }
  .u-pc-lh-18 {
    line-height: 1.8;
  }
  .u-pc-lh-19 {
    line-height: 1.9;
  }
  .u-pc-lh-20 {
    line-height: 2;
  }
  .u-pc-lh-21 {
    line-height: 2.1;
  }
  .u-pc-lh-22 {
    line-height: 2.2;
  }
  .u-pc-lh-23 {
    line-height: 2.3;
  }
  .u-pc-lh-24 {
    line-height: 2.4;
  }
  .u-pc-lh-25 {
    line-height: 2.5;
  }
  .u-pc-lh-26 {
    line-height: 2.6;
  }
  .u-pc-lh-27 {
    line-height: 2.7;
  }
  .u-pc-lh-28 {
    line-height: 2.8;
  }
  .u-pc-lh-29 {
    line-height: 2.9;
  }
  .u-pc-lh-30 {
    line-height: 3;
  }
  .u-pc-lh-31 {
    line-height: 3.1;
  }
  .u-pc-lh-32 {
    line-height: 3.2;
  }
  .u-pc-lh-33 {
    line-height: 3.3;
  }
  .u-pc-lh-34 {
    line-height: 3.4;
  }
  .u-pc-lh-35 {
    line-height: 3.5;
  }
  .u-pc-lh-36 {
    line-height: 3.6;
  }
  .u-pc-lh-37 {
    line-height: 3.7;
  }
  .u-pc-lh-38 {
    line-height: 3.8;
  }
  .u-pc-lh-39 {
    line-height: 3.9;
  }
  .u-pc-lh-40 {
    line-height: 4;
  }
}
.u-ls-75 {
  letter-spacing: 0.075em;
}

.u-sp-mgt-0 {
  margin-top: 0px;
}

.u-sp-mgt-1 {
  margin-top: 1px;
}

.u-sp-mgt-2 {
  margin-top: 2px;
}

.u-sp-mgt-3 {
  margin-top: 3px;
}

.u-sp-mgt-4 {
  margin-top: 4px;
}

.u-sp-mgt-5 {
  margin-top: 5px;
}

.u-sp-mgt-6 {
  margin-top: 6px;
}

.u-sp-mgt-7 {
  margin-top: 7px;
}

.u-sp-mgt-8 {
  margin-top: 8px;
}

.u-sp-mgt-9 {
  margin-top: 9px;
}

.u-sp-mgt-10 {
  margin-top: 10px;
}

.u-sp-mgt-11 {
  margin-top: 11px;
}

.u-sp-mgt-12 {
  margin-top: 12px;
}

.u-sp-mgt-13 {
  margin-top: 13px;
}

.u-sp-mgt-14 {
  margin-top: 14px;
}

.u-sp-mgt-15 {
  margin-top: 15px;
}

.u-sp-mgt-16 {
  margin-top: 16px;
}

.u-sp-mgt-17 {
  margin-top: 17px;
}

.u-sp-mgt-18 {
  margin-top: 18px;
}

.u-sp-mgt-19 {
  margin-top: 19px;
}

.u-sp-mgt-20 {
  margin-top: 20px;
}

.u-sp-mgt-21 {
  margin-top: 21px;
}

.u-sp-mgt-22 {
  margin-top: 22px;
}

.u-sp-mgt-23 {
  margin-top: 23px;
}

.u-sp-mgt-24 {
  margin-top: 24px;
}

.u-sp-mgt-25 {
  margin-top: 25px;
}

.u-sp-mgt-26 {
  margin-top: 26px;
}

.u-sp-mgt-27 {
  margin-top: 27px;
}

.u-sp-mgt-28 {
  margin-top: 28px;
}

.u-sp-mgt-29 {
  margin-top: 29px;
}

.u-sp-mgt-30 {
  margin-top: 30px;
}

.u-sp-mgt-31 {
  margin-top: 31px;
}

.u-sp-mgt-32 {
  margin-top: 32px;
}

.u-sp-mgt-33 {
  margin-top: 33px;
}

.u-sp-mgt-34 {
  margin-top: 34px;
}

.u-sp-mgt-35 {
  margin-top: 35px;
}

.u-sp-mgt-36 {
  margin-top: 36px;
}

.u-sp-mgt-37 {
  margin-top: 37px;
}

.u-sp-mgt-38 {
  margin-top: 38px;
}

.u-sp-mgt-39 {
  margin-top: 39px;
}

.u-sp-mgt-40 {
  margin-top: 40px;
}

.u-sp-mgt-41 {
  margin-top: 41px;
}

.u-sp-mgt-42 {
  margin-top: 42px;
}

.u-sp-mgt-43 {
  margin-top: 43px;
}

.u-sp-mgt-44 {
  margin-top: 44px;
}

.u-sp-mgt-45 {
  margin-top: 45px;
}

.u-sp-mgt-46 {
  margin-top: 46px;
}

.u-sp-mgt-47 {
  margin-top: 47px;
}

.u-sp-mgt-48 {
  margin-top: 48px;
}

.u-sp-mgt-49 {
  margin-top: 49px;
}

.u-sp-mgt-50 {
  margin-top: 50px;
}

.u-sp-mgt-51 {
  margin-top: 51px;
}

.u-sp-mgt-52 {
  margin-top: 52px;
}

.u-sp-mgt-53 {
  margin-top: 53px;
}

.u-sp-mgt-54 {
  margin-top: 54px;
}

.u-sp-mgt-55 {
  margin-top: 55px;
}

.u-sp-mgt-56 {
  margin-top: 56px;
}

.u-sp-mgt-57 {
  margin-top: 57px;
}

.u-sp-mgt-58 {
  margin-top: 58px;
}

.u-sp-mgt-59 {
  margin-top: 59px;
}

.u-sp-mgt-60 {
  margin-top: 60px;
}

.u-sp-mgt-61 {
  margin-top: 61px;
}

.u-sp-mgt-62 {
  margin-top: 62px;
}

.u-sp-mgt-63 {
  margin-top: 63px;
}

.u-sp-mgt-64 {
  margin-top: 64px;
}

.u-sp-mgt-65 {
  margin-top: 65px;
}

.u-sp-mgt-66 {
  margin-top: 66px;
}

.u-sp-mgt-67 {
  margin-top: 67px;
}

.u-sp-mgt-68 {
  margin-top: 68px;
}

.u-sp-mgt-69 {
  margin-top: 69px;
}

.u-sp-mgt-70 {
  margin-top: 70px;
}

.u-sp-mgt-71 {
  margin-top: 71px;
}

.u-sp-mgt-72 {
  margin-top: 72px;
}

.u-sp-mgt-73 {
  margin-top: 73px;
}

.u-sp-mgt-74 {
  margin-top: 74px;
}

.u-sp-mgt-75 {
  margin-top: 75px;
}

.u-sp-mgt-76 {
  margin-top: 76px;
}

.u-sp-mgt-77 {
  margin-top: 77px;
}

.u-sp-mgt-78 {
  margin-top: 78px;
}

.u-sp-mgt-79 {
  margin-top: 79px;
}

.u-sp-mgt-80 {
  margin-top: 80px;
}

.u-sp-mgt-81 {
  margin-top: 81px;
}

.u-sp-mgt-82 {
  margin-top: 82px;
}

.u-sp-mgt-83 {
  margin-top: 83px;
}

.u-sp-mgt-84 {
  margin-top: 84px;
}

.u-sp-mgt-85 {
  margin-top: 85px;
}

.u-sp-mgt-86 {
  margin-top: 86px;
}

.u-sp-mgt-87 {
  margin-top: 87px;
}

.u-sp-mgt-88 {
  margin-top: 88px;
}

.u-sp-mgt-89 {
  margin-top: 89px;
}

.u-sp-mgt-90 {
  margin-top: 90px;
}

.u-sp-mgt-91 {
  margin-top: 91px;
}

.u-sp-mgt-92 {
  margin-top: 92px;
}

.u-sp-mgt-93 {
  margin-top: 93px;
}

.u-sp-mgt-94 {
  margin-top: 94px;
}

.u-sp-mgt-95 {
  margin-top: 95px;
}

.u-sp-mgt-96 {
  margin-top: 96px;
}

.u-sp-mgt-97 {
  margin-top: 97px;
}

.u-sp-mgt-98 {
  margin-top: 98px;
}

.u-sp-mgt-99 {
  margin-top: 99px;
}

.u-sp-mgt-100 {
  margin-top: 100px;
}

.u-sp-mgt-101 {
  margin-top: 101px;
}

.u-sp-mgt-102 {
  margin-top: 102px;
}

.u-sp-mgt-103 {
  margin-top: 103px;
}

.u-sp-mgt-104 {
  margin-top: 104px;
}

.u-sp-mgt-105 {
  margin-top: 105px;
}

.u-sp-mgt-106 {
  margin-top: 106px;
}

.u-sp-mgt-107 {
  margin-top: 107px;
}

.u-sp-mgt-108 {
  margin-top: 108px;
}

.u-sp-mgt-109 {
  margin-top: 109px;
}

.u-sp-mgt-110 {
  margin-top: 110px;
}

.u-sp-mgt-111 {
  margin-top: 111px;
}

.u-sp-mgt-112 {
  margin-top: 112px;
}

.u-sp-mgt-113 {
  margin-top: 113px;
}

.u-sp-mgt-114 {
  margin-top: 114px;
}

.u-sp-mgt-115 {
  margin-top: 115px;
}

.u-sp-mgt-116 {
  margin-top: 116px;
}

.u-sp-mgt-117 {
  margin-top: 117px;
}

.u-sp-mgt-118 {
  margin-top: 118px;
}

.u-sp-mgt-119 {
  margin-top: 119px;
}

.u-sp-mgt-120 {
  margin-top: 120px;
}

.u-sp-mgt-121 {
  margin-top: 121px;
}

.u-sp-mgt-122 {
  margin-top: 122px;
}

.u-sp-mgt-123 {
  margin-top: 123px;
}

.u-sp-mgt-124 {
  margin-top: 124px;
}

.u-sp-mgt-125 {
  margin-top: 125px;
}

.u-sp-mgt-126 {
  margin-top: 126px;
}

.u-sp-mgt-127 {
  margin-top: 127px;
}

.u-sp-mgt-128 {
  margin-top: 128px;
}

.u-sp-mgt-129 {
  margin-top: 129px;
}

.u-sp-mgt-130 {
  margin-top: 130px;
}

.u-sp-mgt-131 {
  margin-top: 131px;
}

.u-sp-mgt-132 {
  margin-top: 132px;
}

.u-sp-mgt-133 {
  margin-top: 133px;
}

.u-sp-mgt-134 {
  margin-top: 134px;
}

.u-sp-mgt-135 {
  margin-top: 135px;
}

.u-sp-mgt-136 {
  margin-top: 136px;
}

.u-sp-mgt-137 {
  margin-top: 137px;
}

.u-sp-mgt-138 {
  margin-top: 138px;
}

.u-sp-mgt-139 {
  margin-top: 139px;
}

.u-sp-mgt-140 {
  margin-top: 140px;
}

.u-sp-mgt-141 {
  margin-top: 141px;
}

.u-sp-mgt-142 {
  margin-top: 142px;
}

.u-sp-mgt-143 {
  margin-top: 143px;
}

.u-sp-mgt-144 {
  margin-top: 144px;
}

.u-sp-mgt-145 {
  margin-top: 145px;
}

.u-sp-mgt-146 {
  margin-top: 146px;
}

.u-sp-mgt-147 {
  margin-top: 147px;
}

.u-sp-mgt-148 {
  margin-top: 148px;
}

.u-sp-mgt-149 {
  margin-top: 149px;
}

.u-sp-mgt-150 {
  margin-top: 150px;
}

.u-sp-mgt-151 {
  margin-top: 151px;
}

.u-sp-mgt-152 {
  margin-top: 152px;
}

.u-sp-mgt-153 {
  margin-top: 153px;
}

.u-sp-mgt-154 {
  margin-top: 154px;
}

.u-sp-mgt-155 {
  margin-top: 155px;
}

.u-sp-mgt-156 {
  margin-top: 156px;
}

.u-sp-mgt-157 {
  margin-top: 157px;
}

.u-sp-mgt-158 {
  margin-top: 158px;
}

.u-sp-mgt-159 {
  margin-top: 159px;
}

.u-sp-mgt-160 {
  margin-top: 160px;
}

.u-sp-mgt-161 {
  margin-top: 161px;
}

.u-sp-mgt-162 {
  margin-top: 162px;
}

.u-sp-mgt-163 {
  margin-top: 163px;
}

.u-sp-mgt-164 {
  margin-top: 164px;
}

.u-sp-mgt-165 {
  margin-top: 165px;
}

.u-sp-mgt-166 {
  margin-top: 166px;
}

.u-sp-mgt-167 {
  margin-top: 167px;
}

.u-sp-mgt-168 {
  margin-top: 168px;
}

.u-sp-mgt-169 {
  margin-top: 169px;
}

.u-sp-mgt-170 {
  margin-top: 170px;
}

.u-sp-mgt-171 {
  margin-top: 171px;
}

.u-sp-mgt-172 {
  margin-top: 172px;
}

.u-sp-mgt-173 {
  margin-top: 173px;
}

.u-sp-mgt-174 {
  margin-top: 174px;
}

.u-sp-mgt-175 {
  margin-top: 175px;
}

.u-sp-mgt-176 {
  margin-top: 176px;
}

.u-sp-mgt-177 {
  margin-top: 177px;
}

.u-sp-mgt-178 {
  margin-top: 178px;
}

.u-sp-mgt-179 {
  margin-top: 179px;
}

.u-sp-mgt-180 {
  margin-top: 180px;
}

.u-sp-mgt-181 {
  margin-top: 181px;
}

.u-sp-mgt-182 {
  margin-top: 182px;
}

.u-sp-mgt-183 {
  margin-top: 183px;
}

.u-sp-mgt-184 {
  margin-top: 184px;
}

.u-sp-mgt-185 {
  margin-top: 185px;
}

.u-sp-mgt-186 {
  margin-top: 186px;
}

.u-sp-mgt-187 {
  margin-top: 187px;
}

.u-sp-mgt-188 {
  margin-top: 188px;
}

.u-sp-mgt-189 {
  margin-top: 189px;
}

.u-sp-mgt-190 {
  margin-top: 190px;
}

.u-sp-mgt-191 {
  margin-top: 191px;
}

.u-sp-mgt-192 {
  margin-top: 192px;
}

.u-sp-mgt-193 {
  margin-top: 193px;
}

.u-sp-mgt-194 {
  margin-top: 194px;
}

.u-sp-mgt-195 {
  margin-top: 195px;
}

.u-sp-mgt-196 {
  margin-top: 196px;
}

.u-sp-mgt-197 {
  margin-top: 197px;
}

.u-sp-mgt-198 {
  margin-top: 198px;
}

.u-sp-mgt-199 {
  margin-top: 199px;
}

.u-sp-mgt-200 {
  margin-top: 200px;
}

.u-sp-mgb-0 {
  margin-bottom: 0px;
}

.u-sp-mgb-1 {
  margin-bottom: 1px;
}

.u-sp-mgb-2 {
  margin-bottom: 2px;
}

.u-sp-mgb-3 {
  margin-bottom: 3px;
}

.u-sp-mgb-4 {
  margin-bottom: 4px;
}

.u-sp-mgb-5 {
  margin-bottom: 5px;
}

.u-sp-mgb-6 {
  margin-bottom: 6px;
}

.u-sp-mgb-7 {
  margin-bottom: 7px;
}

.u-sp-mgb-8 {
  margin-bottom: 8px;
}

.u-sp-mgb-9 {
  margin-bottom: 9px;
}

.u-sp-mgb-10 {
  margin-bottom: 10px;
}

.u-sp-mgb-11 {
  margin-bottom: 11px;
}

.u-sp-mgb-12 {
  margin-bottom: 12px;
}

.u-sp-mgb-13 {
  margin-bottom: 13px;
}

.u-sp-mgb-14 {
  margin-bottom: 14px;
}

.u-sp-mgb-15 {
  margin-bottom: 15px;
}

.u-sp-mgb-16 {
  margin-bottom: 16px;
}

.u-sp-mgb-17 {
  margin-bottom: 17px;
}

.u-sp-mgb-18 {
  margin-bottom: 18px;
}

.u-sp-mgb-19 {
  margin-bottom: 19px;
}

.u-sp-mgb-20 {
  margin-bottom: 20px;
}

.u-sp-mgb-21 {
  margin-bottom: 21px;
}

.u-sp-mgb-22 {
  margin-bottom: 22px;
}

.u-sp-mgb-23 {
  margin-bottom: 23px;
}

.u-sp-mgb-24 {
  margin-bottom: 24px;
}

.u-sp-mgb-25 {
  margin-bottom: 25px;
}

.u-sp-mgb-26 {
  margin-bottom: 26px;
}

.u-sp-mgb-27 {
  margin-bottom: 27px;
}

.u-sp-mgb-28 {
  margin-bottom: 28px;
}

.u-sp-mgb-29 {
  margin-bottom: 29px;
}

.u-sp-mgb-30 {
  margin-bottom: 30px;
}

.u-sp-mgb-31 {
  margin-bottom: 31px;
}

.u-sp-mgb-32 {
  margin-bottom: 32px;
}

.u-sp-mgb-33 {
  margin-bottom: 33px;
}

.u-sp-mgb-34 {
  margin-bottom: 34px;
}

.u-sp-mgb-35 {
  margin-bottom: 35px;
}

.u-sp-mgb-36 {
  margin-bottom: 36px;
}

.u-sp-mgb-37 {
  margin-bottom: 37px;
}

.u-sp-mgb-38 {
  margin-bottom: 38px;
}

.u-sp-mgb-39 {
  margin-bottom: 39px;
}

.u-sp-mgb-40 {
  margin-bottom: 40px;
}

.u-sp-mgb-41 {
  margin-bottom: 41px;
}

.u-sp-mgb-42 {
  margin-bottom: 42px;
}

.u-sp-mgb-43 {
  margin-bottom: 43px;
}

.u-sp-mgb-44 {
  margin-bottom: 44px;
}

.u-sp-mgb-45 {
  margin-bottom: 45px;
}

.u-sp-mgb-46 {
  margin-bottom: 46px;
}

.u-sp-mgb-47 {
  margin-bottom: 47px;
}

.u-sp-mgb-48 {
  margin-bottom: 48px;
}

.u-sp-mgb-49 {
  margin-bottom: 49px;
}

.u-sp-mgb-50 {
  margin-bottom: 50px;
}

.u-sp-mgb-51 {
  margin-bottom: 51px;
}

.u-sp-mgb-52 {
  margin-bottom: 52px;
}

.u-sp-mgb-53 {
  margin-bottom: 53px;
}

.u-sp-mgb-54 {
  margin-bottom: 54px;
}

.u-sp-mgb-55 {
  margin-bottom: 55px;
}

.u-sp-mgb-56 {
  margin-bottom: 56px;
}

.u-sp-mgb-57 {
  margin-bottom: 57px;
}

.u-sp-mgb-58 {
  margin-bottom: 58px;
}

.u-sp-mgb-59 {
  margin-bottom: 59px;
}

.u-sp-mgb-60 {
  margin-bottom: 60px;
}

.u-sp-mgb-61 {
  margin-bottom: 61px;
}

.u-sp-mgb-62 {
  margin-bottom: 62px;
}

.u-sp-mgb-63 {
  margin-bottom: 63px;
}

.u-sp-mgb-64 {
  margin-bottom: 64px;
}

.u-sp-mgb-65 {
  margin-bottom: 65px;
}

.u-sp-mgb-66 {
  margin-bottom: 66px;
}

.u-sp-mgb-67 {
  margin-bottom: 67px;
}

.u-sp-mgb-68 {
  margin-bottom: 68px;
}

.u-sp-mgb-69 {
  margin-bottom: 69px;
}

.u-sp-mgb-70 {
  margin-bottom: 70px;
}

.u-sp-mgb-71 {
  margin-bottom: 71px;
}

.u-sp-mgb-72 {
  margin-bottom: 72px;
}

.u-sp-mgb-73 {
  margin-bottom: 73px;
}

.u-sp-mgb-74 {
  margin-bottom: 74px;
}

.u-sp-mgb-75 {
  margin-bottom: 75px;
}

.u-sp-mgb-76 {
  margin-bottom: 76px;
}

.u-sp-mgb-77 {
  margin-bottom: 77px;
}

.u-sp-mgb-78 {
  margin-bottom: 78px;
}

.u-sp-mgb-79 {
  margin-bottom: 79px;
}

.u-sp-mgb-80 {
  margin-bottom: 80px;
}

.u-sp-mgb-81 {
  margin-bottom: 81px;
}

.u-sp-mgb-82 {
  margin-bottom: 82px;
}

.u-sp-mgb-83 {
  margin-bottom: 83px;
}

.u-sp-mgb-84 {
  margin-bottom: 84px;
}

.u-sp-mgb-85 {
  margin-bottom: 85px;
}

.u-sp-mgb-86 {
  margin-bottom: 86px;
}

.u-sp-mgb-87 {
  margin-bottom: 87px;
}

.u-sp-mgb-88 {
  margin-bottom: 88px;
}

.u-sp-mgb-89 {
  margin-bottom: 89px;
}

.u-sp-mgb-90 {
  margin-bottom: 90px;
}

.u-sp-mgb-91 {
  margin-bottom: 91px;
}

.u-sp-mgb-92 {
  margin-bottom: 92px;
}

.u-sp-mgb-93 {
  margin-bottom: 93px;
}

.u-sp-mgb-94 {
  margin-bottom: 94px;
}

.u-sp-mgb-95 {
  margin-bottom: 95px;
}

.u-sp-mgb-96 {
  margin-bottom: 96px;
}

.u-sp-mgb-97 {
  margin-bottom: 97px;
}

.u-sp-mgb-98 {
  margin-bottom: 98px;
}

.u-sp-mgb-99 {
  margin-bottom: 99px;
}

.u-sp-mgb-100 {
  margin-bottom: 100px;
}

.u-sp-mgb-101 {
  margin-bottom: 101px;
}

.u-sp-mgb-102 {
  margin-bottom: 102px;
}

.u-sp-mgb-103 {
  margin-bottom: 103px;
}

.u-sp-mgb-104 {
  margin-bottom: 104px;
}

.u-sp-mgb-105 {
  margin-bottom: 105px;
}

.u-sp-mgb-106 {
  margin-bottom: 106px;
}

.u-sp-mgb-107 {
  margin-bottom: 107px;
}

.u-sp-mgb-108 {
  margin-bottom: 108px;
}

.u-sp-mgb-109 {
  margin-bottom: 109px;
}

.u-sp-mgb-110 {
  margin-bottom: 110px;
}

.u-sp-mgb-111 {
  margin-bottom: 111px;
}

.u-sp-mgb-112 {
  margin-bottom: 112px;
}

.u-sp-mgb-113 {
  margin-bottom: 113px;
}

.u-sp-mgb-114 {
  margin-bottom: 114px;
}

.u-sp-mgb-115 {
  margin-bottom: 115px;
}

.u-sp-mgb-116 {
  margin-bottom: 116px;
}

.u-sp-mgb-117 {
  margin-bottom: 117px;
}

.u-sp-mgb-118 {
  margin-bottom: 118px;
}

.u-sp-mgb-119 {
  margin-bottom: 119px;
}

.u-sp-mgb-120 {
  margin-bottom: 120px;
}

.u-sp-mgb-121 {
  margin-bottom: 121px;
}

.u-sp-mgb-122 {
  margin-bottom: 122px;
}

.u-sp-mgb-123 {
  margin-bottom: 123px;
}

.u-sp-mgb-124 {
  margin-bottom: 124px;
}

.u-sp-mgb-125 {
  margin-bottom: 125px;
}

.u-sp-mgb-126 {
  margin-bottom: 126px;
}

.u-sp-mgb-127 {
  margin-bottom: 127px;
}

.u-sp-mgb-128 {
  margin-bottom: 128px;
}

.u-sp-mgb-129 {
  margin-bottom: 129px;
}

.u-sp-mgb-130 {
  margin-bottom: 130px;
}

.u-sp-mgb-131 {
  margin-bottom: 131px;
}

.u-sp-mgb-132 {
  margin-bottom: 132px;
}

.u-sp-mgb-133 {
  margin-bottom: 133px;
}

.u-sp-mgb-134 {
  margin-bottom: 134px;
}

.u-sp-mgb-135 {
  margin-bottom: 135px;
}

.u-sp-mgb-136 {
  margin-bottom: 136px;
}

.u-sp-mgb-137 {
  margin-bottom: 137px;
}

.u-sp-mgb-138 {
  margin-bottom: 138px;
}

.u-sp-mgb-139 {
  margin-bottom: 139px;
}

.u-sp-mgb-140 {
  margin-bottom: 140px;
}

.u-sp-mgb-141 {
  margin-bottom: 141px;
}

.u-sp-mgb-142 {
  margin-bottom: 142px;
}

.u-sp-mgb-143 {
  margin-bottom: 143px;
}

.u-sp-mgb-144 {
  margin-bottom: 144px;
}

.u-sp-mgb-145 {
  margin-bottom: 145px;
}

.u-sp-mgb-146 {
  margin-bottom: 146px;
}

.u-sp-mgb-147 {
  margin-bottom: 147px;
}

.u-sp-mgb-148 {
  margin-bottom: 148px;
}

.u-sp-mgb-149 {
  margin-bottom: 149px;
}

.u-sp-mgb-150 {
  margin-bottom: 150px;
}

.u-sp-mgb-151 {
  margin-bottom: 151px;
}

.u-sp-mgb-152 {
  margin-bottom: 152px;
}

.u-sp-mgb-153 {
  margin-bottom: 153px;
}

.u-sp-mgb-154 {
  margin-bottom: 154px;
}

.u-sp-mgb-155 {
  margin-bottom: 155px;
}

.u-sp-mgb-156 {
  margin-bottom: 156px;
}

.u-sp-mgb-157 {
  margin-bottom: 157px;
}

.u-sp-mgb-158 {
  margin-bottom: 158px;
}

.u-sp-mgb-159 {
  margin-bottom: 159px;
}

.u-sp-mgb-160 {
  margin-bottom: 160px;
}

.u-sp-mgb-161 {
  margin-bottom: 161px;
}

.u-sp-mgb-162 {
  margin-bottom: 162px;
}

.u-sp-mgb-163 {
  margin-bottom: 163px;
}

.u-sp-mgb-164 {
  margin-bottom: 164px;
}

.u-sp-mgb-165 {
  margin-bottom: 165px;
}

.u-sp-mgb-166 {
  margin-bottom: 166px;
}

.u-sp-mgb-167 {
  margin-bottom: 167px;
}

.u-sp-mgb-168 {
  margin-bottom: 168px;
}

.u-sp-mgb-169 {
  margin-bottom: 169px;
}

.u-sp-mgb-170 {
  margin-bottom: 170px;
}

.u-sp-mgb-171 {
  margin-bottom: 171px;
}

.u-sp-mgb-172 {
  margin-bottom: 172px;
}

.u-sp-mgb-173 {
  margin-bottom: 173px;
}

.u-sp-mgb-174 {
  margin-bottom: 174px;
}

.u-sp-mgb-175 {
  margin-bottom: 175px;
}

.u-sp-mgb-176 {
  margin-bottom: 176px;
}

.u-sp-mgb-177 {
  margin-bottom: 177px;
}

.u-sp-mgb-178 {
  margin-bottom: 178px;
}

.u-sp-mgb-179 {
  margin-bottom: 179px;
}

.u-sp-mgb-180 {
  margin-bottom: 180px;
}

.u-sp-mgb-181 {
  margin-bottom: 181px;
}

.u-sp-mgb-182 {
  margin-bottom: 182px;
}

.u-sp-mgb-183 {
  margin-bottom: 183px;
}

.u-sp-mgb-184 {
  margin-bottom: 184px;
}

.u-sp-mgb-185 {
  margin-bottom: 185px;
}

.u-sp-mgb-186 {
  margin-bottom: 186px;
}

.u-sp-mgb-187 {
  margin-bottom: 187px;
}

.u-sp-mgb-188 {
  margin-bottom: 188px;
}

.u-sp-mgb-189 {
  margin-bottom: 189px;
}

.u-sp-mgb-190 {
  margin-bottom: 190px;
}

.u-sp-mgb-191 {
  margin-bottom: 191px;
}

.u-sp-mgb-192 {
  margin-bottom: 192px;
}

.u-sp-mgb-193 {
  margin-bottom: 193px;
}

.u-sp-mgb-194 {
  margin-bottom: 194px;
}

.u-sp-mgb-195 {
  margin-bottom: 195px;
}

.u-sp-mgb-196 {
  margin-bottom: 196px;
}

.u-sp-mgb-197 {
  margin-bottom: 197px;
}

.u-sp-mgb-198 {
  margin-bottom: 198px;
}

.u-sp-mgb-199 {
  margin-bottom: 199px;
}

.u-sp-mgb-200 {
  margin-bottom: 200px;
}

.u-sp-mgr-0 {
  margin-right: 0px;
}

.u-sp-mgr-1 {
  margin-right: 1px;
}

.u-sp-mgr-2 {
  margin-right: 2px;
}

.u-sp-mgr-3 {
  margin-right: 3px;
}

.u-sp-mgr-4 {
  margin-right: 4px;
}

.u-sp-mgr-5 {
  margin-right: 5px;
}

.u-sp-mgr-6 {
  margin-right: 6px;
}

.u-sp-mgr-7 {
  margin-right: 7px;
}

.u-sp-mgr-8 {
  margin-right: 8px;
}

.u-sp-mgr-9 {
  margin-right: 9px;
}

.u-sp-mgr-10 {
  margin-right: 10px;
}

.u-sp-mgr-11 {
  margin-right: 11px;
}

.u-sp-mgr-12 {
  margin-right: 12px;
}

.u-sp-mgr-13 {
  margin-right: 13px;
}

.u-sp-mgr-14 {
  margin-right: 14px;
}

.u-sp-mgr-15 {
  margin-right: 15px;
}

.u-sp-mgr-16 {
  margin-right: 16px;
}

.u-sp-mgr-17 {
  margin-right: 17px;
}

.u-sp-mgr-18 {
  margin-right: 18px;
}

.u-sp-mgr-19 {
  margin-right: 19px;
}

.u-sp-mgr-20 {
  margin-right: 20px;
}

.u-sp-mgr-21 {
  margin-right: 21px;
}

.u-sp-mgr-22 {
  margin-right: 22px;
}

.u-sp-mgr-23 {
  margin-right: 23px;
}

.u-sp-mgr-24 {
  margin-right: 24px;
}

.u-sp-mgr-25 {
  margin-right: 25px;
}

.u-sp-mgr-26 {
  margin-right: 26px;
}

.u-sp-mgr-27 {
  margin-right: 27px;
}

.u-sp-mgr-28 {
  margin-right: 28px;
}

.u-sp-mgr-29 {
  margin-right: 29px;
}

.u-sp-mgr-30 {
  margin-right: 30px;
}

.u-sp-mgr-31 {
  margin-right: 31px;
}

.u-sp-mgr-32 {
  margin-right: 32px;
}

.u-sp-mgr-33 {
  margin-right: 33px;
}

.u-sp-mgr-34 {
  margin-right: 34px;
}

.u-sp-mgr-35 {
  margin-right: 35px;
}

.u-sp-mgr-36 {
  margin-right: 36px;
}

.u-sp-mgr-37 {
  margin-right: 37px;
}

.u-sp-mgr-38 {
  margin-right: 38px;
}

.u-sp-mgr-39 {
  margin-right: 39px;
}

.u-sp-mgr-40 {
  margin-right: 40px;
}

.u-sp-mgr-41 {
  margin-right: 41px;
}

.u-sp-mgr-42 {
  margin-right: 42px;
}

.u-sp-mgr-43 {
  margin-right: 43px;
}

.u-sp-mgr-44 {
  margin-right: 44px;
}

.u-sp-mgr-45 {
  margin-right: 45px;
}

.u-sp-mgr-46 {
  margin-right: 46px;
}

.u-sp-mgr-47 {
  margin-right: 47px;
}

.u-sp-mgr-48 {
  margin-right: 48px;
}

.u-sp-mgr-49 {
  margin-right: 49px;
}

.u-sp-mgr-50 {
  margin-right: 50px;
}

.u-sp-mgr-51 {
  margin-right: 51px;
}

.u-sp-mgr-52 {
  margin-right: 52px;
}

.u-sp-mgr-53 {
  margin-right: 53px;
}

.u-sp-mgr-54 {
  margin-right: 54px;
}

.u-sp-mgr-55 {
  margin-right: 55px;
}

.u-sp-mgr-56 {
  margin-right: 56px;
}

.u-sp-mgr-57 {
  margin-right: 57px;
}

.u-sp-mgr-58 {
  margin-right: 58px;
}

.u-sp-mgr-59 {
  margin-right: 59px;
}

.u-sp-mgr-60 {
  margin-right: 60px;
}

.u-sp-mgr-61 {
  margin-right: 61px;
}

.u-sp-mgr-62 {
  margin-right: 62px;
}

.u-sp-mgr-63 {
  margin-right: 63px;
}

.u-sp-mgr-64 {
  margin-right: 64px;
}

.u-sp-mgr-65 {
  margin-right: 65px;
}

.u-sp-mgr-66 {
  margin-right: 66px;
}

.u-sp-mgr-67 {
  margin-right: 67px;
}

.u-sp-mgr-68 {
  margin-right: 68px;
}

.u-sp-mgr-69 {
  margin-right: 69px;
}

.u-sp-mgr-70 {
  margin-right: 70px;
}

.u-sp-mgr-71 {
  margin-right: 71px;
}

.u-sp-mgr-72 {
  margin-right: 72px;
}

.u-sp-mgr-73 {
  margin-right: 73px;
}

.u-sp-mgr-74 {
  margin-right: 74px;
}

.u-sp-mgr-75 {
  margin-right: 75px;
}

.u-sp-mgr-76 {
  margin-right: 76px;
}

.u-sp-mgr-77 {
  margin-right: 77px;
}

.u-sp-mgr-78 {
  margin-right: 78px;
}

.u-sp-mgr-79 {
  margin-right: 79px;
}

.u-sp-mgr-80 {
  margin-right: 80px;
}

.u-sp-mgr-81 {
  margin-right: 81px;
}

.u-sp-mgr-82 {
  margin-right: 82px;
}

.u-sp-mgr-83 {
  margin-right: 83px;
}

.u-sp-mgr-84 {
  margin-right: 84px;
}

.u-sp-mgr-85 {
  margin-right: 85px;
}

.u-sp-mgr-86 {
  margin-right: 86px;
}

.u-sp-mgr-87 {
  margin-right: 87px;
}

.u-sp-mgr-88 {
  margin-right: 88px;
}

.u-sp-mgr-89 {
  margin-right: 89px;
}

.u-sp-mgr-90 {
  margin-right: 90px;
}

.u-sp-mgr-91 {
  margin-right: 91px;
}

.u-sp-mgr-92 {
  margin-right: 92px;
}

.u-sp-mgr-93 {
  margin-right: 93px;
}

.u-sp-mgr-94 {
  margin-right: 94px;
}

.u-sp-mgr-95 {
  margin-right: 95px;
}

.u-sp-mgr-96 {
  margin-right: 96px;
}

.u-sp-mgr-97 {
  margin-right: 97px;
}

.u-sp-mgr-98 {
  margin-right: 98px;
}

.u-sp-mgr-99 {
  margin-right: 99px;
}

.u-sp-mgr-100 {
  margin-right: 100px;
}

.u-sp-mgr-101 {
  margin-right: 101px;
}

.u-sp-mgr-102 {
  margin-right: 102px;
}

.u-sp-mgr-103 {
  margin-right: 103px;
}

.u-sp-mgr-104 {
  margin-right: 104px;
}

.u-sp-mgr-105 {
  margin-right: 105px;
}

.u-sp-mgr-106 {
  margin-right: 106px;
}

.u-sp-mgr-107 {
  margin-right: 107px;
}

.u-sp-mgr-108 {
  margin-right: 108px;
}

.u-sp-mgr-109 {
  margin-right: 109px;
}

.u-sp-mgr-110 {
  margin-right: 110px;
}

.u-sp-mgr-111 {
  margin-right: 111px;
}

.u-sp-mgr-112 {
  margin-right: 112px;
}

.u-sp-mgr-113 {
  margin-right: 113px;
}

.u-sp-mgr-114 {
  margin-right: 114px;
}

.u-sp-mgr-115 {
  margin-right: 115px;
}

.u-sp-mgr-116 {
  margin-right: 116px;
}

.u-sp-mgr-117 {
  margin-right: 117px;
}

.u-sp-mgr-118 {
  margin-right: 118px;
}

.u-sp-mgr-119 {
  margin-right: 119px;
}

.u-sp-mgr-120 {
  margin-right: 120px;
}

.u-sp-mgr-121 {
  margin-right: 121px;
}

.u-sp-mgr-122 {
  margin-right: 122px;
}

.u-sp-mgr-123 {
  margin-right: 123px;
}

.u-sp-mgr-124 {
  margin-right: 124px;
}

.u-sp-mgr-125 {
  margin-right: 125px;
}

.u-sp-mgr-126 {
  margin-right: 126px;
}

.u-sp-mgr-127 {
  margin-right: 127px;
}

.u-sp-mgr-128 {
  margin-right: 128px;
}

.u-sp-mgr-129 {
  margin-right: 129px;
}

.u-sp-mgr-130 {
  margin-right: 130px;
}

.u-sp-mgr-131 {
  margin-right: 131px;
}

.u-sp-mgr-132 {
  margin-right: 132px;
}

.u-sp-mgr-133 {
  margin-right: 133px;
}

.u-sp-mgr-134 {
  margin-right: 134px;
}

.u-sp-mgr-135 {
  margin-right: 135px;
}

.u-sp-mgr-136 {
  margin-right: 136px;
}

.u-sp-mgr-137 {
  margin-right: 137px;
}

.u-sp-mgr-138 {
  margin-right: 138px;
}

.u-sp-mgr-139 {
  margin-right: 139px;
}

.u-sp-mgr-140 {
  margin-right: 140px;
}

.u-sp-mgr-141 {
  margin-right: 141px;
}

.u-sp-mgr-142 {
  margin-right: 142px;
}

.u-sp-mgr-143 {
  margin-right: 143px;
}

.u-sp-mgr-144 {
  margin-right: 144px;
}

.u-sp-mgr-145 {
  margin-right: 145px;
}

.u-sp-mgr-146 {
  margin-right: 146px;
}

.u-sp-mgr-147 {
  margin-right: 147px;
}

.u-sp-mgr-148 {
  margin-right: 148px;
}

.u-sp-mgr-149 {
  margin-right: 149px;
}

.u-sp-mgr-150 {
  margin-right: 150px;
}

.u-sp-mgr-151 {
  margin-right: 151px;
}

.u-sp-mgr-152 {
  margin-right: 152px;
}

.u-sp-mgr-153 {
  margin-right: 153px;
}

.u-sp-mgr-154 {
  margin-right: 154px;
}

.u-sp-mgr-155 {
  margin-right: 155px;
}

.u-sp-mgr-156 {
  margin-right: 156px;
}

.u-sp-mgr-157 {
  margin-right: 157px;
}

.u-sp-mgr-158 {
  margin-right: 158px;
}

.u-sp-mgr-159 {
  margin-right: 159px;
}

.u-sp-mgr-160 {
  margin-right: 160px;
}

.u-sp-mgr-161 {
  margin-right: 161px;
}

.u-sp-mgr-162 {
  margin-right: 162px;
}

.u-sp-mgr-163 {
  margin-right: 163px;
}

.u-sp-mgr-164 {
  margin-right: 164px;
}

.u-sp-mgr-165 {
  margin-right: 165px;
}

.u-sp-mgr-166 {
  margin-right: 166px;
}

.u-sp-mgr-167 {
  margin-right: 167px;
}

.u-sp-mgr-168 {
  margin-right: 168px;
}

.u-sp-mgr-169 {
  margin-right: 169px;
}

.u-sp-mgr-170 {
  margin-right: 170px;
}

.u-sp-mgr-171 {
  margin-right: 171px;
}

.u-sp-mgr-172 {
  margin-right: 172px;
}

.u-sp-mgr-173 {
  margin-right: 173px;
}

.u-sp-mgr-174 {
  margin-right: 174px;
}

.u-sp-mgr-175 {
  margin-right: 175px;
}

.u-sp-mgr-176 {
  margin-right: 176px;
}

.u-sp-mgr-177 {
  margin-right: 177px;
}

.u-sp-mgr-178 {
  margin-right: 178px;
}

.u-sp-mgr-179 {
  margin-right: 179px;
}

.u-sp-mgr-180 {
  margin-right: 180px;
}

.u-sp-mgr-181 {
  margin-right: 181px;
}

.u-sp-mgr-182 {
  margin-right: 182px;
}

.u-sp-mgr-183 {
  margin-right: 183px;
}

.u-sp-mgr-184 {
  margin-right: 184px;
}

.u-sp-mgr-185 {
  margin-right: 185px;
}

.u-sp-mgr-186 {
  margin-right: 186px;
}

.u-sp-mgr-187 {
  margin-right: 187px;
}

.u-sp-mgr-188 {
  margin-right: 188px;
}

.u-sp-mgr-189 {
  margin-right: 189px;
}

.u-sp-mgr-190 {
  margin-right: 190px;
}

.u-sp-mgr-191 {
  margin-right: 191px;
}

.u-sp-mgr-192 {
  margin-right: 192px;
}

.u-sp-mgr-193 {
  margin-right: 193px;
}

.u-sp-mgr-194 {
  margin-right: 194px;
}

.u-sp-mgr-195 {
  margin-right: 195px;
}

.u-sp-mgr-196 {
  margin-right: 196px;
}

.u-sp-mgr-197 {
  margin-right: 197px;
}

.u-sp-mgr-198 {
  margin-right: 198px;
}

.u-sp-mgr-199 {
  margin-right: 199px;
}

.u-sp-mgr-200 {
  margin-right: 200px;
}

.u-sp-mgl-0 {
  margin-left: 0px;
}

.u-sp-mgl-1 {
  margin-left: 1px;
}

.u-sp-mgl-2 {
  margin-left: 2px;
}

.u-sp-mgl-3 {
  margin-left: 3px;
}

.u-sp-mgl-4 {
  margin-left: 4px;
}

.u-sp-mgl-5 {
  margin-left: 5px;
}

.u-sp-mgl-6 {
  margin-left: 6px;
}

.u-sp-mgl-7 {
  margin-left: 7px;
}

.u-sp-mgl-8 {
  margin-left: 8px;
}

.u-sp-mgl-9 {
  margin-left: 9px;
}

.u-sp-mgl-10 {
  margin-left: 10px;
}

.u-sp-mgl-11 {
  margin-left: 11px;
}

.u-sp-mgl-12 {
  margin-left: 12px;
}

.u-sp-mgl-13 {
  margin-left: 13px;
}

.u-sp-mgl-14 {
  margin-left: 14px;
}

.u-sp-mgl-15 {
  margin-left: 15px;
}

.u-sp-mgl-16 {
  margin-left: 16px;
}

.u-sp-mgl-17 {
  margin-left: 17px;
}

.u-sp-mgl-18 {
  margin-left: 18px;
}

.u-sp-mgl-19 {
  margin-left: 19px;
}

.u-sp-mgl-20 {
  margin-left: 20px;
}

.u-sp-mgl-21 {
  margin-left: 21px;
}

.u-sp-mgl-22 {
  margin-left: 22px;
}

.u-sp-mgl-23 {
  margin-left: 23px;
}

.u-sp-mgl-24 {
  margin-left: 24px;
}

.u-sp-mgl-25 {
  margin-left: 25px;
}

.u-sp-mgl-26 {
  margin-left: 26px;
}

.u-sp-mgl-27 {
  margin-left: 27px;
}

.u-sp-mgl-28 {
  margin-left: 28px;
}

.u-sp-mgl-29 {
  margin-left: 29px;
}

.u-sp-mgl-30 {
  margin-left: 30px;
}

.u-sp-mgl-31 {
  margin-left: 31px;
}

.u-sp-mgl-32 {
  margin-left: 32px;
}

.u-sp-mgl-33 {
  margin-left: 33px;
}

.u-sp-mgl-34 {
  margin-left: 34px;
}

.u-sp-mgl-35 {
  margin-left: 35px;
}

.u-sp-mgl-36 {
  margin-left: 36px;
}

.u-sp-mgl-37 {
  margin-left: 37px;
}

.u-sp-mgl-38 {
  margin-left: 38px;
}

.u-sp-mgl-39 {
  margin-left: 39px;
}

.u-sp-mgl-40 {
  margin-left: 40px;
}

.u-sp-mgl-41 {
  margin-left: 41px;
}

.u-sp-mgl-42 {
  margin-left: 42px;
}

.u-sp-mgl-43 {
  margin-left: 43px;
}

.u-sp-mgl-44 {
  margin-left: 44px;
}

.u-sp-mgl-45 {
  margin-left: 45px;
}

.u-sp-mgl-46 {
  margin-left: 46px;
}

.u-sp-mgl-47 {
  margin-left: 47px;
}

.u-sp-mgl-48 {
  margin-left: 48px;
}

.u-sp-mgl-49 {
  margin-left: 49px;
}

.u-sp-mgl-50 {
  margin-left: 50px;
}

.u-sp-mgl-51 {
  margin-left: 51px;
}

.u-sp-mgl-52 {
  margin-left: 52px;
}

.u-sp-mgl-53 {
  margin-left: 53px;
}

.u-sp-mgl-54 {
  margin-left: 54px;
}

.u-sp-mgl-55 {
  margin-left: 55px;
}

.u-sp-mgl-56 {
  margin-left: 56px;
}

.u-sp-mgl-57 {
  margin-left: 57px;
}

.u-sp-mgl-58 {
  margin-left: 58px;
}

.u-sp-mgl-59 {
  margin-left: 59px;
}

.u-sp-mgl-60 {
  margin-left: 60px;
}

.u-sp-mgl-61 {
  margin-left: 61px;
}

.u-sp-mgl-62 {
  margin-left: 62px;
}

.u-sp-mgl-63 {
  margin-left: 63px;
}

.u-sp-mgl-64 {
  margin-left: 64px;
}

.u-sp-mgl-65 {
  margin-left: 65px;
}

.u-sp-mgl-66 {
  margin-left: 66px;
}

.u-sp-mgl-67 {
  margin-left: 67px;
}

.u-sp-mgl-68 {
  margin-left: 68px;
}

.u-sp-mgl-69 {
  margin-left: 69px;
}

.u-sp-mgl-70 {
  margin-left: 70px;
}

.u-sp-mgl-71 {
  margin-left: 71px;
}

.u-sp-mgl-72 {
  margin-left: 72px;
}

.u-sp-mgl-73 {
  margin-left: 73px;
}

.u-sp-mgl-74 {
  margin-left: 74px;
}

.u-sp-mgl-75 {
  margin-left: 75px;
}

.u-sp-mgl-76 {
  margin-left: 76px;
}

.u-sp-mgl-77 {
  margin-left: 77px;
}

.u-sp-mgl-78 {
  margin-left: 78px;
}

.u-sp-mgl-79 {
  margin-left: 79px;
}

.u-sp-mgl-80 {
  margin-left: 80px;
}

.u-sp-mgl-81 {
  margin-left: 81px;
}

.u-sp-mgl-82 {
  margin-left: 82px;
}

.u-sp-mgl-83 {
  margin-left: 83px;
}

.u-sp-mgl-84 {
  margin-left: 84px;
}

.u-sp-mgl-85 {
  margin-left: 85px;
}

.u-sp-mgl-86 {
  margin-left: 86px;
}

.u-sp-mgl-87 {
  margin-left: 87px;
}

.u-sp-mgl-88 {
  margin-left: 88px;
}

.u-sp-mgl-89 {
  margin-left: 89px;
}

.u-sp-mgl-90 {
  margin-left: 90px;
}

.u-sp-mgl-91 {
  margin-left: 91px;
}

.u-sp-mgl-92 {
  margin-left: 92px;
}

.u-sp-mgl-93 {
  margin-left: 93px;
}

.u-sp-mgl-94 {
  margin-left: 94px;
}

.u-sp-mgl-95 {
  margin-left: 95px;
}

.u-sp-mgl-96 {
  margin-left: 96px;
}

.u-sp-mgl-97 {
  margin-left: 97px;
}

.u-sp-mgl-98 {
  margin-left: 98px;
}

.u-sp-mgl-99 {
  margin-left: 99px;
}

.u-sp-mgl-100 {
  margin-left: 100px;
}

.u-sp-mgl-101 {
  margin-left: 101px;
}

.u-sp-mgl-102 {
  margin-left: 102px;
}

.u-sp-mgl-103 {
  margin-left: 103px;
}

.u-sp-mgl-104 {
  margin-left: 104px;
}

.u-sp-mgl-105 {
  margin-left: 105px;
}

.u-sp-mgl-106 {
  margin-left: 106px;
}

.u-sp-mgl-107 {
  margin-left: 107px;
}

.u-sp-mgl-108 {
  margin-left: 108px;
}

.u-sp-mgl-109 {
  margin-left: 109px;
}

.u-sp-mgl-110 {
  margin-left: 110px;
}

.u-sp-mgl-111 {
  margin-left: 111px;
}

.u-sp-mgl-112 {
  margin-left: 112px;
}

.u-sp-mgl-113 {
  margin-left: 113px;
}

.u-sp-mgl-114 {
  margin-left: 114px;
}

.u-sp-mgl-115 {
  margin-left: 115px;
}

.u-sp-mgl-116 {
  margin-left: 116px;
}

.u-sp-mgl-117 {
  margin-left: 117px;
}

.u-sp-mgl-118 {
  margin-left: 118px;
}

.u-sp-mgl-119 {
  margin-left: 119px;
}

.u-sp-mgl-120 {
  margin-left: 120px;
}

.u-sp-mgl-121 {
  margin-left: 121px;
}

.u-sp-mgl-122 {
  margin-left: 122px;
}

.u-sp-mgl-123 {
  margin-left: 123px;
}

.u-sp-mgl-124 {
  margin-left: 124px;
}

.u-sp-mgl-125 {
  margin-left: 125px;
}

.u-sp-mgl-126 {
  margin-left: 126px;
}

.u-sp-mgl-127 {
  margin-left: 127px;
}

.u-sp-mgl-128 {
  margin-left: 128px;
}

.u-sp-mgl-129 {
  margin-left: 129px;
}

.u-sp-mgl-130 {
  margin-left: 130px;
}

.u-sp-mgl-131 {
  margin-left: 131px;
}

.u-sp-mgl-132 {
  margin-left: 132px;
}

.u-sp-mgl-133 {
  margin-left: 133px;
}

.u-sp-mgl-134 {
  margin-left: 134px;
}

.u-sp-mgl-135 {
  margin-left: 135px;
}

.u-sp-mgl-136 {
  margin-left: 136px;
}

.u-sp-mgl-137 {
  margin-left: 137px;
}

.u-sp-mgl-138 {
  margin-left: 138px;
}

.u-sp-mgl-139 {
  margin-left: 139px;
}

.u-sp-mgl-140 {
  margin-left: 140px;
}

.u-sp-mgl-141 {
  margin-left: 141px;
}

.u-sp-mgl-142 {
  margin-left: 142px;
}

.u-sp-mgl-143 {
  margin-left: 143px;
}

.u-sp-mgl-144 {
  margin-left: 144px;
}

.u-sp-mgl-145 {
  margin-left: 145px;
}

.u-sp-mgl-146 {
  margin-left: 146px;
}

.u-sp-mgl-147 {
  margin-left: 147px;
}

.u-sp-mgl-148 {
  margin-left: 148px;
}

.u-sp-mgl-149 {
  margin-left: 149px;
}

.u-sp-mgl-150 {
  margin-left: 150px;
}

.u-sp-mgl-151 {
  margin-left: 151px;
}

.u-sp-mgl-152 {
  margin-left: 152px;
}

.u-sp-mgl-153 {
  margin-left: 153px;
}

.u-sp-mgl-154 {
  margin-left: 154px;
}

.u-sp-mgl-155 {
  margin-left: 155px;
}

.u-sp-mgl-156 {
  margin-left: 156px;
}

.u-sp-mgl-157 {
  margin-left: 157px;
}

.u-sp-mgl-158 {
  margin-left: 158px;
}

.u-sp-mgl-159 {
  margin-left: 159px;
}

.u-sp-mgl-160 {
  margin-left: 160px;
}

.u-sp-mgl-161 {
  margin-left: 161px;
}

.u-sp-mgl-162 {
  margin-left: 162px;
}

.u-sp-mgl-163 {
  margin-left: 163px;
}

.u-sp-mgl-164 {
  margin-left: 164px;
}

.u-sp-mgl-165 {
  margin-left: 165px;
}

.u-sp-mgl-166 {
  margin-left: 166px;
}

.u-sp-mgl-167 {
  margin-left: 167px;
}

.u-sp-mgl-168 {
  margin-left: 168px;
}

.u-sp-mgl-169 {
  margin-left: 169px;
}

.u-sp-mgl-170 {
  margin-left: 170px;
}

.u-sp-mgl-171 {
  margin-left: 171px;
}

.u-sp-mgl-172 {
  margin-left: 172px;
}

.u-sp-mgl-173 {
  margin-left: 173px;
}

.u-sp-mgl-174 {
  margin-left: 174px;
}

.u-sp-mgl-175 {
  margin-left: 175px;
}

.u-sp-mgl-176 {
  margin-left: 176px;
}

.u-sp-mgl-177 {
  margin-left: 177px;
}

.u-sp-mgl-178 {
  margin-left: 178px;
}

.u-sp-mgl-179 {
  margin-left: 179px;
}

.u-sp-mgl-180 {
  margin-left: 180px;
}

.u-sp-mgl-181 {
  margin-left: 181px;
}

.u-sp-mgl-182 {
  margin-left: 182px;
}

.u-sp-mgl-183 {
  margin-left: 183px;
}

.u-sp-mgl-184 {
  margin-left: 184px;
}

.u-sp-mgl-185 {
  margin-left: 185px;
}

.u-sp-mgl-186 {
  margin-left: 186px;
}

.u-sp-mgl-187 {
  margin-left: 187px;
}

.u-sp-mgl-188 {
  margin-left: 188px;
}

.u-sp-mgl-189 {
  margin-left: 189px;
}

.u-sp-mgl-190 {
  margin-left: 190px;
}

.u-sp-mgl-191 {
  margin-left: 191px;
}

.u-sp-mgl-192 {
  margin-left: 192px;
}

.u-sp-mgl-193 {
  margin-left: 193px;
}

.u-sp-mgl-194 {
  margin-left: 194px;
}

.u-sp-mgl-195 {
  margin-left: 195px;
}

.u-sp-mgl-196 {
  margin-left: 196px;
}

.u-sp-mgl-197 {
  margin-left: 197px;
}

.u-sp-mgl-198 {
  margin-left: 198px;
}

.u-sp-mgl-199 {
  margin-left: 199px;
}

.u-sp-mgl-200 {
  margin-left: 200px;
}

@media screen and (min-width: 568px) {
  .u-pc-mgt-0 {
    margin-top: 0px;
  }
  .u-pc-mgt-1 {
    margin-top: 1px;
  }
  .u-pc-mgt-2 {
    margin-top: 2px;
  }
  .u-pc-mgt-3 {
    margin-top: 3px;
  }
  .u-pc-mgt-4 {
    margin-top: 4px;
  }
  .u-pc-mgt-5 {
    margin-top: 5px;
  }
  .u-pc-mgt-6 {
    margin-top: 6px;
  }
  .u-pc-mgt-7 {
    margin-top: 7px;
  }
  .u-pc-mgt-8 {
    margin-top: 8px;
  }
  .u-pc-mgt-9 {
    margin-top: 9px;
  }
  .u-pc-mgt-10 {
    margin-top: 10px;
  }
  .u-pc-mgt-11 {
    margin-top: 11px;
  }
  .u-pc-mgt-12 {
    margin-top: 12px;
  }
  .u-pc-mgt-13 {
    margin-top: 13px;
  }
  .u-pc-mgt-14 {
    margin-top: 14px;
  }
  .u-pc-mgt-15 {
    margin-top: 15px;
  }
  .u-pc-mgt-16 {
    margin-top: 16px;
  }
  .u-pc-mgt-17 {
    margin-top: 17px;
  }
  .u-pc-mgt-18 {
    margin-top: 18px;
  }
  .u-pc-mgt-19 {
    margin-top: 19px;
  }
  .u-pc-mgt-20 {
    margin-top: 20px;
  }
  .u-pc-mgt-21 {
    margin-top: 21px;
  }
  .u-pc-mgt-22 {
    margin-top: 22px;
  }
  .u-pc-mgt-23 {
    margin-top: 23px;
  }
  .u-pc-mgt-24 {
    margin-top: 24px;
  }
  .u-pc-mgt-25 {
    margin-top: 25px;
  }
  .u-pc-mgt-26 {
    margin-top: 26px;
  }
  .u-pc-mgt-27 {
    margin-top: 27px;
  }
  .u-pc-mgt-28 {
    margin-top: 28px;
  }
  .u-pc-mgt-29 {
    margin-top: 29px;
  }
  .u-pc-mgt-30 {
    margin-top: 30px;
  }
  .u-pc-mgt-31 {
    margin-top: 31px;
  }
  .u-pc-mgt-32 {
    margin-top: 32px;
  }
  .u-pc-mgt-33 {
    margin-top: 33px;
  }
  .u-pc-mgt-34 {
    margin-top: 34px;
  }
  .u-pc-mgt-35 {
    margin-top: 35px;
  }
  .u-pc-mgt-36 {
    margin-top: 36px;
  }
  .u-pc-mgt-37 {
    margin-top: 37px;
  }
  .u-pc-mgt-38 {
    margin-top: 38px;
  }
  .u-pc-mgt-39 {
    margin-top: 39px;
  }
  .u-pc-mgt-40 {
    margin-top: 40px;
  }
  .u-pc-mgt-41 {
    margin-top: 41px;
  }
  .u-pc-mgt-42 {
    margin-top: 42px;
  }
  .u-pc-mgt-43 {
    margin-top: 43px;
  }
  .u-pc-mgt-44 {
    margin-top: 44px;
  }
  .u-pc-mgt-45 {
    margin-top: 45px;
  }
  .u-pc-mgt-46 {
    margin-top: 46px;
  }
  .u-pc-mgt-47 {
    margin-top: 47px;
  }
  .u-pc-mgt-48 {
    margin-top: 48px;
  }
  .u-pc-mgt-49 {
    margin-top: 49px;
  }
  .u-pc-mgt-50 {
    margin-top: 50px;
  }
  .u-pc-mgt-51 {
    margin-top: 51px;
  }
  .u-pc-mgt-52 {
    margin-top: 52px;
  }
  .u-pc-mgt-53 {
    margin-top: 53px;
  }
  .u-pc-mgt-54 {
    margin-top: 54px;
  }
  .u-pc-mgt-55 {
    margin-top: 55px;
  }
  .u-pc-mgt-56 {
    margin-top: 56px;
  }
  .u-pc-mgt-57 {
    margin-top: 57px;
  }
  .u-pc-mgt-58 {
    margin-top: 58px;
  }
  .u-pc-mgt-59 {
    margin-top: 59px;
  }
  .u-pc-mgt-60 {
    margin-top: 60px;
  }
  .u-pc-mgt-61 {
    margin-top: 61px;
  }
  .u-pc-mgt-62 {
    margin-top: 62px;
  }
  .u-pc-mgt-63 {
    margin-top: 63px;
  }
  .u-pc-mgt-64 {
    margin-top: 64px;
  }
  .u-pc-mgt-65 {
    margin-top: 65px;
  }
  .u-pc-mgt-66 {
    margin-top: 66px;
  }
  .u-pc-mgt-67 {
    margin-top: 67px;
  }
  .u-pc-mgt-68 {
    margin-top: 68px;
  }
  .u-pc-mgt-69 {
    margin-top: 69px;
  }
  .u-pc-mgt-70 {
    margin-top: 70px;
  }
  .u-pc-mgt-71 {
    margin-top: 71px;
  }
  .u-pc-mgt-72 {
    margin-top: 72px;
  }
  .u-pc-mgt-73 {
    margin-top: 73px;
  }
  .u-pc-mgt-74 {
    margin-top: 74px;
  }
  .u-pc-mgt-75 {
    margin-top: 75px;
  }
  .u-pc-mgt-76 {
    margin-top: 76px;
  }
  .u-pc-mgt-77 {
    margin-top: 77px;
  }
  .u-pc-mgt-78 {
    margin-top: 78px;
  }
  .u-pc-mgt-79 {
    margin-top: 79px;
  }
  .u-pc-mgt-80 {
    margin-top: 80px;
  }
  .u-pc-mgt-81 {
    margin-top: 81px;
  }
  .u-pc-mgt-82 {
    margin-top: 82px;
  }
  .u-pc-mgt-83 {
    margin-top: 83px;
  }
  .u-pc-mgt-84 {
    margin-top: 84px;
  }
  .u-pc-mgt-85 {
    margin-top: 85px;
  }
  .u-pc-mgt-86 {
    margin-top: 86px;
  }
  .u-pc-mgt-87 {
    margin-top: 87px;
  }
  .u-pc-mgt-88 {
    margin-top: 88px;
  }
  .u-pc-mgt-89 {
    margin-top: 89px;
  }
  .u-pc-mgt-90 {
    margin-top: 90px;
  }
  .u-pc-mgt-91 {
    margin-top: 91px;
  }
  .u-pc-mgt-92 {
    margin-top: 92px;
  }
  .u-pc-mgt-93 {
    margin-top: 93px;
  }
  .u-pc-mgt-94 {
    margin-top: 94px;
  }
  .u-pc-mgt-95 {
    margin-top: 95px;
  }
  .u-pc-mgt-96 {
    margin-top: 96px;
  }
  .u-pc-mgt-97 {
    margin-top: 97px;
  }
  .u-pc-mgt-98 {
    margin-top: 98px;
  }
  .u-pc-mgt-99 {
    margin-top: 99px;
  }
  .u-pc-mgt-100 {
    margin-top: 100px;
  }
  .u-pc-mgt-101 {
    margin-top: 101px;
  }
  .u-pc-mgt-102 {
    margin-top: 102px;
  }
  .u-pc-mgt-103 {
    margin-top: 103px;
  }
  .u-pc-mgt-104 {
    margin-top: 104px;
  }
  .u-pc-mgt-105 {
    margin-top: 105px;
  }
  .u-pc-mgt-106 {
    margin-top: 106px;
  }
  .u-pc-mgt-107 {
    margin-top: 107px;
  }
  .u-pc-mgt-108 {
    margin-top: 108px;
  }
  .u-pc-mgt-109 {
    margin-top: 109px;
  }
  .u-pc-mgt-110 {
    margin-top: 110px;
  }
  .u-pc-mgt-111 {
    margin-top: 111px;
  }
  .u-pc-mgt-112 {
    margin-top: 112px;
  }
  .u-pc-mgt-113 {
    margin-top: 113px;
  }
  .u-pc-mgt-114 {
    margin-top: 114px;
  }
  .u-pc-mgt-115 {
    margin-top: 115px;
  }
  .u-pc-mgt-116 {
    margin-top: 116px;
  }
  .u-pc-mgt-117 {
    margin-top: 117px;
  }
  .u-pc-mgt-118 {
    margin-top: 118px;
  }
  .u-pc-mgt-119 {
    margin-top: 119px;
  }
  .u-pc-mgt-120 {
    margin-top: 120px;
  }
  .u-pc-mgt-121 {
    margin-top: 121px;
  }
  .u-pc-mgt-122 {
    margin-top: 122px;
  }
  .u-pc-mgt-123 {
    margin-top: 123px;
  }
  .u-pc-mgt-124 {
    margin-top: 124px;
  }
  .u-pc-mgt-125 {
    margin-top: 125px;
  }
  .u-pc-mgt-126 {
    margin-top: 126px;
  }
  .u-pc-mgt-127 {
    margin-top: 127px;
  }
  .u-pc-mgt-128 {
    margin-top: 128px;
  }
  .u-pc-mgt-129 {
    margin-top: 129px;
  }
  .u-pc-mgt-130 {
    margin-top: 130px;
  }
  .u-pc-mgt-131 {
    margin-top: 131px;
  }
  .u-pc-mgt-132 {
    margin-top: 132px;
  }
  .u-pc-mgt-133 {
    margin-top: 133px;
  }
  .u-pc-mgt-134 {
    margin-top: 134px;
  }
  .u-pc-mgt-135 {
    margin-top: 135px;
  }
  .u-pc-mgt-136 {
    margin-top: 136px;
  }
  .u-pc-mgt-137 {
    margin-top: 137px;
  }
  .u-pc-mgt-138 {
    margin-top: 138px;
  }
  .u-pc-mgt-139 {
    margin-top: 139px;
  }
  .u-pc-mgt-140 {
    margin-top: 140px;
  }
  .u-pc-mgt-141 {
    margin-top: 141px;
  }
  .u-pc-mgt-142 {
    margin-top: 142px;
  }
  .u-pc-mgt-143 {
    margin-top: 143px;
  }
  .u-pc-mgt-144 {
    margin-top: 144px;
  }
  .u-pc-mgt-145 {
    margin-top: 145px;
  }
  .u-pc-mgt-146 {
    margin-top: 146px;
  }
  .u-pc-mgt-147 {
    margin-top: 147px;
  }
  .u-pc-mgt-148 {
    margin-top: 148px;
  }
  .u-pc-mgt-149 {
    margin-top: 149px;
  }
  .u-pc-mgt-150 {
    margin-top: 150px;
  }
  .u-pc-mgt-151 {
    margin-top: 151px;
  }
  .u-pc-mgt-152 {
    margin-top: 152px;
  }
  .u-pc-mgt-153 {
    margin-top: 153px;
  }
  .u-pc-mgt-154 {
    margin-top: 154px;
  }
  .u-pc-mgt-155 {
    margin-top: 155px;
  }
  .u-pc-mgt-156 {
    margin-top: 156px;
  }
  .u-pc-mgt-157 {
    margin-top: 157px;
  }
  .u-pc-mgt-158 {
    margin-top: 158px;
  }
  .u-pc-mgt-159 {
    margin-top: 159px;
  }
  .u-pc-mgt-160 {
    margin-top: 160px;
  }
  .u-pc-mgt-161 {
    margin-top: 161px;
  }
  .u-pc-mgt-162 {
    margin-top: 162px;
  }
  .u-pc-mgt-163 {
    margin-top: 163px;
  }
  .u-pc-mgt-164 {
    margin-top: 164px;
  }
  .u-pc-mgt-165 {
    margin-top: 165px;
  }
  .u-pc-mgt-166 {
    margin-top: 166px;
  }
  .u-pc-mgt-167 {
    margin-top: 167px;
  }
  .u-pc-mgt-168 {
    margin-top: 168px;
  }
  .u-pc-mgt-169 {
    margin-top: 169px;
  }
  .u-pc-mgt-170 {
    margin-top: 170px;
  }
  .u-pc-mgt-171 {
    margin-top: 171px;
  }
  .u-pc-mgt-172 {
    margin-top: 172px;
  }
  .u-pc-mgt-173 {
    margin-top: 173px;
  }
  .u-pc-mgt-174 {
    margin-top: 174px;
  }
  .u-pc-mgt-175 {
    margin-top: 175px;
  }
  .u-pc-mgt-176 {
    margin-top: 176px;
  }
  .u-pc-mgt-177 {
    margin-top: 177px;
  }
  .u-pc-mgt-178 {
    margin-top: 178px;
  }
  .u-pc-mgt-179 {
    margin-top: 179px;
  }
  .u-pc-mgt-180 {
    margin-top: 180px;
  }
  .u-pc-mgt-181 {
    margin-top: 181px;
  }
  .u-pc-mgt-182 {
    margin-top: 182px;
  }
  .u-pc-mgt-183 {
    margin-top: 183px;
  }
  .u-pc-mgt-184 {
    margin-top: 184px;
  }
  .u-pc-mgt-185 {
    margin-top: 185px;
  }
  .u-pc-mgt-186 {
    margin-top: 186px;
  }
  .u-pc-mgt-187 {
    margin-top: 187px;
  }
  .u-pc-mgt-188 {
    margin-top: 188px;
  }
  .u-pc-mgt-189 {
    margin-top: 189px;
  }
  .u-pc-mgt-190 {
    margin-top: 190px;
  }
  .u-pc-mgt-191 {
    margin-top: 191px;
  }
  .u-pc-mgt-192 {
    margin-top: 192px;
  }
  .u-pc-mgt-193 {
    margin-top: 193px;
  }
  .u-pc-mgt-194 {
    margin-top: 194px;
  }
  .u-pc-mgt-195 {
    margin-top: 195px;
  }
  .u-pc-mgt-196 {
    margin-top: 196px;
  }
  .u-pc-mgt-197 {
    margin-top: 197px;
  }
  .u-pc-mgt-198 {
    margin-top: 198px;
  }
  .u-pc-mgt-199 {
    margin-top: 199px;
  }
  .u-pc-mgt-200 {
    margin-top: 200px;
  }
  .u-pc-mgb-0 {
    margin-bottom: 0px;
  }
  .u-pc-mgb-1 {
    margin-bottom: 1px;
  }
  .u-pc-mgb-2 {
    margin-bottom: 2px;
  }
  .u-pc-mgb-3 {
    margin-bottom: 3px;
  }
  .u-pc-mgb-4 {
    margin-bottom: 4px;
  }
  .u-pc-mgb-5 {
    margin-bottom: 5px;
  }
  .u-pc-mgb-6 {
    margin-bottom: 6px;
  }
  .u-pc-mgb-7 {
    margin-bottom: 7px;
  }
  .u-pc-mgb-8 {
    margin-bottom: 8px;
  }
  .u-pc-mgb-9 {
    margin-bottom: 9px;
  }
  .u-pc-mgb-10 {
    margin-bottom: 10px;
  }
  .u-pc-mgb-11 {
    margin-bottom: 11px;
  }
  .u-pc-mgb-12 {
    margin-bottom: 12px;
  }
  .u-pc-mgb-13 {
    margin-bottom: 13px;
  }
  .u-pc-mgb-14 {
    margin-bottom: 14px;
  }
  .u-pc-mgb-15 {
    margin-bottom: 15px;
  }
  .u-pc-mgb-16 {
    margin-bottom: 16px;
  }
  .u-pc-mgb-17 {
    margin-bottom: 17px;
  }
  .u-pc-mgb-18 {
    margin-bottom: 18px;
  }
  .u-pc-mgb-19 {
    margin-bottom: 19px;
  }
  .u-pc-mgb-20 {
    margin-bottom: 20px;
  }
  .u-pc-mgb-21 {
    margin-bottom: 21px;
  }
  .u-pc-mgb-22 {
    margin-bottom: 22px;
  }
  .u-pc-mgb-23 {
    margin-bottom: 23px;
  }
  .u-pc-mgb-24 {
    margin-bottom: 24px;
  }
  .u-pc-mgb-25 {
    margin-bottom: 25px;
  }
  .u-pc-mgb-26 {
    margin-bottom: 26px;
  }
  .u-pc-mgb-27 {
    margin-bottom: 27px;
  }
  .u-pc-mgb-28 {
    margin-bottom: 28px;
  }
  .u-pc-mgb-29 {
    margin-bottom: 29px;
  }
  .u-pc-mgb-30 {
    margin-bottom: 30px;
  }
  .u-pc-mgb-31 {
    margin-bottom: 31px;
  }
  .u-pc-mgb-32 {
    margin-bottom: 32px;
  }
  .u-pc-mgb-33 {
    margin-bottom: 33px;
  }
  .u-pc-mgb-34 {
    margin-bottom: 34px;
  }
  .u-pc-mgb-35 {
    margin-bottom: 35px;
  }
  .u-pc-mgb-36 {
    margin-bottom: 36px;
  }
  .u-pc-mgb-37 {
    margin-bottom: 37px;
  }
  .u-pc-mgb-38 {
    margin-bottom: 38px;
  }
  .u-pc-mgb-39 {
    margin-bottom: 39px;
  }
  .u-pc-mgb-40 {
    margin-bottom: 40px;
  }
  .u-pc-mgb-41 {
    margin-bottom: 41px;
  }
  .u-pc-mgb-42 {
    margin-bottom: 42px;
  }
  .u-pc-mgb-43 {
    margin-bottom: 43px;
  }
  .u-pc-mgb-44 {
    margin-bottom: 44px;
  }
  .u-pc-mgb-45 {
    margin-bottom: 45px;
  }
  .u-pc-mgb-46 {
    margin-bottom: 46px;
  }
  .u-pc-mgb-47 {
    margin-bottom: 47px;
  }
  .u-pc-mgb-48 {
    margin-bottom: 48px;
  }
  .u-pc-mgb-49 {
    margin-bottom: 49px;
  }
  .u-pc-mgb-50 {
    margin-bottom: 50px;
  }
  .u-pc-mgb-51 {
    margin-bottom: 51px;
  }
  .u-pc-mgb-52 {
    margin-bottom: 52px;
  }
  .u-pc-mgb-53 {
    margin-bottom: 53px;
  }
  .u-pc-mgb-54 {
    margin-bottom: 54px;
  }
  .u-pc-mgb-55 {
    margin-bottom: 55px;
  }
  .u-pc-mgb-56 {
    margin-bottom: 56px;
  }
  .u-pc-mgb-57 {
    margin-bottom: 57px;
  }
  .u-pc-mgb-58 {
    margin-bottom: 58px;
  }
  .u-pc-mgb-59 {
    margin-bottom: 59px;
  }
  .u-pc-mgb-60 {
    margin-bottom: 60px;
  }
  .u-pc-mgb-61 {
    margin-bottom: 61px;
  }
  .u-pc-mgb-62 {
    margin-bottom: 62px;
  }
  .u-pc-mgb-63 {
    margin-bottom: 63px;
  }
  .u-pc-mgb-64 {
    margin-bottom: 64px;
  }
  .u-pc-mgb-65 {
    margin-bottom: 65px;
  }
  .u-pc-mgb-66 {
    margin-bottom: 66px;
  }
  .u-pc-mgb-67 {
    margin-bottom: 67px;
  }
  .u-pc-mgb-68 {
    margin-bottom: 68px;
  }
  .u-pc-mgb-69 {
    margin-bottom: 69px;
  }
  .u-pc-mgb-70 {
    margin-bottom: 70px;
  }
  .u-pc-mgb-71 {
    margin-bottom: 71px;
  }
  .u-pc-mgb-72 {
    margin-bottom: 72px;
  }
  .u-pc-mgb-73 {
    margin-bottom: 73px;
  }
  .u-pc-mgb-74 {
    margin-bottom: 74px;
  }
  .u-pc-mgb-75 {
    margin-bottom: 75px;
  }
  .u-pc-mgb-76 {
    margin-bottom: 76px;
  }
  .u-pc-mgb-77 {
    margin-bottom: 77px;
  }
  .u-pc-mgb-78 {
    margin-bottom: 78px;
  }
  .u-pc-mgb-79 {
    margin-bottom: 79px;
  }
  .u-pc-mgb-80 {
    margin-bottom: 80px;
  }
  .u-pc-mgb-81 {
    margin-bottom: 81px;
  }
  .u-pc-mgb-82 {
    margin-bottom: 82px;
  }
  .u-pc-mgb-83 {
    margin-bottom: 83px;
  }
  .u-pc-mgb-84 {
    margin-bottom: 84px;
  }
  .u-pc-mgb-85 {
    margin-bottom: 85px;
  }
  .u-pc-mgb-86 {
    margin-bottom: 86px;
  }
  .u-pc-mgb-87 {
    margin-bottom: 87px;
  }
  .u-pc-mgb-88 {
    margin-bottom: 88px;
  }
  .u-pc-mgb-89 {
    margin-bottom: 89px;
  }
  .u-pc-mgb-90 {
    margin-bottom: 90px;
  }
  .u-pc-mgb-91 {
    margin-bottom: 91px;
  }
  .u-pc-mgb-92 {
    margin-bottom: 92px;
  }
  .u-pc-mgb-93 {
    margin-bottom: 93px;
  }
  .u-pc-mgb-94 {
    margin-bottom: 94px;
  }
  .u-pc-mgb-95 {
    margin-bottom: 95px;
  }
  .u-pc-mgb-96 {
    margin-bottom: 96px;
  }
  .u-pc-mgb-97 {
    margin-bottom: 97px;
  }
  .u-pc-mgb-98 {
    margin-bottom: 98px;
  }
  .u-pc-mgb-99 {
    margin-bottom: 99px;
  }
  .u-pc-mgb-100 {
    margin-bottom: 100px;
  }
  .u-pc-mgb-101 {
    margin-bottom: 101px;
  }
  .u-pc-mgb-102 {
    margin-bottom: 102px;
  }
  .u-pc-mgb-103 {
    margin-bottom: 103px;
  }
  .u-pc-mgb-104 {
    margin-bottom: 104px;
  }
  .u-pc-mgb-105 {
    margin-bottom: 105px;
  }
  .u-pc-mgb-106 {
    margin-bottom: 106px;
  }
  .u-pc-mgb-107 {
    margin-bottom: 107px;
  }
  .u-pc-mgb-108 {
    margin-bottom: 108px;
  }
  .u-pc-mgb-109 {
    margin-bottom: 109px;
  }
  .u-pc-mgb-110 {
    margin-bottom: 110px;
  }
  .u-pc-mgb-111 {
    margin-bottom: 111px;
  }
  .u-pc-mgb-112 {
    margin-bottom: 112px;
  }
  .u-pc-mgb-113 {
    margin-bottom: 113px;
  }
  .u-pc-mgb-114 {
    margin-bottom: 114px;
  }
  .u-pc-mgb-115 {
    margin-bottom: 115px;
  }
  .u-pc-mgb-116 {
    margin-bottom: 116px;
  }
  .u-pc-mgb-117 {
    margin-bottom: 117px;
  }
  .u-pc-mgb-118 {
    margin-bottom: 118px;
  }
  .u-pc-mgb-119 {
    margin-bottom: 119px;
  }
  .u-pc-mgb-120 {
    margin-bottom: 120px;
  }
  .u-pc-mgb-121 {
    margin-bottom: 121px;
  }
  .u-pc-mgb-122 {
    margin-bottom: 122px;
  }
  .u-pc-mgb-123 {
    margin-bottom: 123px;
  }
  .u-pc-mgb-124 {
    margin-bottom: 124px;
  }
  .u-pc-mgb-125 {
    margin-bottom: 125px;
  }
  .u-pc-mgb-126 {
    margin-bottom: 126px;
  }
  .u-pc-mgb-127 {
    margin-bottom: 127px;
  }
  .u-pc-mgb-128 {
    margin-bottom: 128px;
  }
  .u-pc-mgb-129 {
    margin-bottom: 129px;
  }
  .u-pc-mgb-130 {
    margin-bottom: 130px;
  }
  .u-pc-mgb-131 {
    margin-bottom: 131px;
  }
  .u-pc-mgb-132 {
    margin-bottom: 132px;
  }
  .u-pc-mgb-133 {
    margin-bottom: 133px;
  }
  .u-pc-mgb-134 {
    margin-bottom: 134px;
  }
  .u-pc-mgb-135 {
    margin-bottom: 135px;
  }
  .u-pc-mgb-136 {
    margin-bottom: 136px;
  }
  .u-pc-mgb-137 {
    margin-bottom: 137px;
  }
  .u-pc-mgb-138 {
    margin-bottom: 138px;
  }
  .u-pc-mgb-139 {
    margin-bottom: 139px;
  }
  .u-pc-mgb-140 {
    margin-bottom: 140px;
  }
  .u-pc-mgb-141 {
    margin-bottom: 141px;
  }
  .u-pc-mgb-142 {
    margin-bottom: 142px;
  }
  .u-pc-mgb-143 {
    margin-bottom: 143px;
  }
  .u-pc-mgb-144 {
    margin-bottom: 144px;
  }
  .u-pc-mgb-145 {
    margin-bottom: 145px;
  }
  .u-pc-mgb-146 {
    margin-bottom: 146px;
  }
  .u-pc-mgb-147 {
    margin-bottom: 147px;
  }
  .u-pc-mgb-148 {
    margin-bottom: 148px;
  }
  .u-pc-mgb-149 {
    margin-bottom: 149px;
  }
  .u-pc-mgb-150 {
    margin-bottom: 150px;
  }
  .u-pc-mgb-151 {
    margin-bottom: 151px;
  }
  .u-pc-mgb-152 {
    margin-bottom: 152px;
  }
  .u-pc-mgb-153 {
    margin-bottom: 153px;
  }
  .u-pc-mgb-154 {
    margin-bottom: 154px;
  }
  .u-pc-mgb-155 {
    margin-bottom: 155px;
  }
  .u-pc-mgb-156 {
    margin-bottom: 156px;
  }
  .u-pc-mgb-157 {
    margin-bottom: 157px;
  }
  .u-pc-mgb-158 {
    margin-bottom: 158px;
  }
  .u-pc-mgb-159 {
    margin-bottom: 159px;
  }
  .u-pc-mgb-160 {
    margin-bottom: 160px;
  }
  .u-pc-mgb-161 {
    margin-bottom: 161px;
  }
  .u-pc-mgb-162 {
    margin-bottom: 162px;
  }
  .u-pc-mgb-163 {
    margin-bottom: 163px;
  }
  .u-pc-mgb-164 {
    margin-bottom: 164px;
  }
  .u-pc-mgb-165 {
    margin-bottom: 165px;
  }
  .u-pc-mgb-166 {
    margin-bottom: 166px;
  }
  .u-pc-mgb-167 {
    margin-bottom: 167px;
  }
  .u-pc-mgb-168 {
    margin-bottom: 168px;
  }
  .u-pc-mgb-169 {
    margin-bottom: 169px;
  }
  .u-pc-mgb-170 {
    margin-bottom: 170px;
  }
  .u-pc-mgb-171 {
    margin-bottom: 171px;
  }
  .u-pc-mgb-172 {
    margin-bottom: 172px;
  }
  .u-pc-mgb-173 {
    margin-bottom: 173px;
  }
  .u-pc-mgb-174 {
    margin-bottom: 174px;
  }
  .u-pc-mgb-175 {
    margin-bottom: 175px;
  }
  .u-pc-mgb-176 {
    margin-bottom: 176px;
  }
  .u-pc-mgb-177 {
    margin-bottom: 177px;
  }
  .u-pc-mgb-178 {
    margin-bottom: 178px;
  }
  .u-pc-mgb-179 {
    margin-bottom: 179px;
  }
  .u-pc-mgb-180 {
    margin-bottom: 180px;
  }
  .u-pc-mgb-181 {
    margin-bottom: 181px;
  }
  .u-pc-mgb-182 {
    margin-bottom: 182px;
  }
  .u-pc-mgb-183 {
    margin-bottom: 183px;
  }
  .u-pc-mgb-184 {
    margin-bottom: 184px;
  }
  .u-pc-mgb-185 {
    margin-bottom: 185px;
  }
  .u-pc-mgb-186 {
    margin-bottom: 186px;
  }
  .u-pc-mgb-187 {
    margin-bottom: 187px;
  }
  .u-pc-mgb-188 {
    margin-bottom: 188px;
  }
  .u-pc-mgb-189 {
    margin-bottom: 189px;
  }
  .u-pc-mgb-190 {
    margin-bottom: 190px;
  }
  .u-pc-mgb-191 {
    margin-bottom: 191px;
  }
  .u-pc-mgb-192 {
    margin-bottom: 192px;
  }
  .u-pc-mgb-193 {
    margin-bottom: 193px;
  }
  .u-pc-mgb-194 {
    margin-bottom: 194px;
  }
  .u-pc-mgb-195 {
    margin-bottom: 195px;
  }
  .u-pc-mgb-196 {
    margin-bottom: 196px;
  }
  .u-pc-mgb-197 {
    margin-bottom: 197px;
  }
  .u-pc-mgb-198 {
    margin-bottom: 198px;
  }
  .u-pc-mgb-199 {
    margin-bottom: 199px;
  }
  .u-pc-mgb-200 {
    margin-bottom: 200px;
  }
  .u-pc-mgr-0 {
    margin-right: 0px;
  }
  .u-pc-mgr-1 {
    margin-right: 1px;
  }
  .u-pc-mgr-2 {
    margin-right: 2px;
  }
  .u-pc-mgr-3 {
    margin-right: 3px;
  }
  .u-pc-mgr-4 {
    margin-right: 4px;
  }
  .u-pc-mgr-5 {
    margin-right: 5px;
  }
  .u-pc-mgr-6 {
    margin-right: 6px;
  }
  .u-pc-mgr-7 {
    margin-right: 7px;
  }
  .u-pc-mgr-8 {
    margin-right: 8px;
  }
  .u-pc-mgr-9 {
    margin-right: 9px;
  }
  .u-pc-mgr-10 {
    margin-right: 10px;
  }
  .u-pc-mgr-11 {
    margin-right: 11px;
  }
  .u-pc-mgr-12 {
    margin-right: 12px;
  }
  .u-pc-mgr-13 {
    margin-right: 13px;
  }
  .u-pc-mgr-14 {
    margin-right: 14px;
  }
  .u-pc-mgr-15 {
    margin-right: 15px;
  }
  .u-pc-mgr-16 {
    margin-right: 16px;
  }
  .u-pc-mgr-17 {
    margin-right: 17px;
  }
  .u-pc-mgr-18 {
    margin-right: 18px;
  }
  .u-pc-mgr-19 {
    margin-right: 19px;
  }
  .u-pc-mgr-20 {
    margin-right: 20px;
  }
  .u-pc-mgr-21 {
    margin-right: 21px;
  }
  .u-pc-mgr-22 {
    margin-right: 22px;
  }
  .u-pc-mgr-23 {
    margin-right: 23px;
  }
  .u-pc-mgr-24 {
    margin-right: 24px;
  }
  .u-pc-mgr-25 {
    margin-right: 25px;
  }
  .u-pc-mgr-26 {
    margin-right: 26px;
  }
  .u-pc-mgr-27 {
    margin-right: 27px;
  }
  .u-pc-mgr-28 {
    margin-right: 28px;
  }
  .u-pc-mgr-29 {
    margin-right: 29px;
  }
  .u-pc-mgr-30 {
    margin-right: 30px;
  }
  .u-pc-mgr-31 {
    margin-right: 31px;
  }
  .u-pc-mgr-32 {
    margin-right: 32px;
  }
  .u-pc-mgr-33 {
    margin-right: 33px;
  }
  .u-pc-mgr-34 {
    margin-right: 34px;
  }
  .u-pc-mgr-35 {
    margin-right: 35px;
  }
  .u-pc-mgr-36 {
    margin-right: 36px;
  }
  .u-pc-mgr-37 {
    margin-right: 37px;
  }
  .u-pc-mgr-38 {
    margin-right: 38px;
  }
  .u-pc-mgr-39 {
    margin-right: 39px;
  }
  .u-pc-mgr-40 {
    margin-right: 40px;
  }
  .u-pc-mgr-41 {
    margin-right: 41px;
  }
  .u-pc-mgr-42 {
    margin-right: 42px;
  }
  .u-pc-mgr-43 {
    margin-right: 43px;
  }
  .u-pc-mgr-44 {
    margin-right: 44px;
  }
  .u-pc-mgr-45 {
    margin-right: 45px;
  }
  .u-pc-mgr-46 {
    margin-right: 46px;
  }
  .u-pc-mgr-47 {
    margin-right: 47px;
  }
  .u-pc-mgr-48 {
    margin-right: 48px;
  }
  .u-pc-mgr-49 {
    margin-right: 49px;
  }
  .u-pc-mgr-50 {
    margin-right: 50px;
  }
  .u-pc-mgr-51 {
    margin-right: 51px;
  }
  .u-pc-mgr-52 {
    margin-right: 52px;
  }
  .u-pc-mgr-53 {
    margin-right: 53px;
  }
  .u-pc-mgr-54 {
    margin-right: 54px;
  }
  .u-pc-mgr-55 {
    margin-right: 55px;
  }
  .u-pc-mgr-56 {
    margin-right: 56px;
  }
  .u-pc-mgr-57 {
    margin-right: 57px;
  }
  .u-pc-mgr-58 {
    margin-right: 58px;
  }
  .u-pc-mgr-59 {
    margin-right: 59px;
  }
  .u-pc-mgr-60 {
    margin-right: 60px;
  }
  .u-pc-mgr-61 {
    margin-right: 61px;
  }
  .u-pc-mgr-62 {
    margin-right: 62px;
  }
  .u-pc-mgr-63 {
    margin-right: 63px;
  }
  .u-pc-mgr-64 {
    margin-right: 64px;
  }
  .u-pc-mgr-65 {
    margin-right: 65px;
  }
  .u-pc-mgr-66 {
    margin-right: 66px;
  }
  .u-pc-mgr-67 {
    margin-right: 67px;
  }
  .u-pc-mgr-68 {
    margin-right: 68px;
  }
  .u-pc-mgr-69 {
    margin-right: 69px;
  }
  .u-pc-mgr-70 {
    margin-right: 70px;
  }
  .u-pc-mgr-71 {
    margin-right: 71px;
  }
  .u-pc-mgr-72 {
    margin-right: 72px;
  }
  .u-pc-mgr-73 {
    margin-right: 73px;
  }
  .u-pc-mgr-74 {
    margin-right: 74px;
  }
  .u-pc-mgr-75 {
    margin-right: 75px;
  }
  .u-pc-mgr-76 {
    margin-right: 76px;
  }
  .u-pc-mgr-77 {
    margin-right: 77px;
  }
  .u-pc-mgr-78 {
    margin-right: 78px;
  }
  .u-pc-mgr-79 {
    margin-right: 79px;
  }
  .u-pc-mgr-80 {
    margin-right: 80px;
  }
  .u-pc-mgr-81 {
    margin-right: 81px;
  }
  .u-pc-mgr-82 {
    margin-right: 82px;
  }
  .u-pc-mgr-83 {
    margin-right: 83px;
  }
  .u-pc-mgr-84 {
    margin-right: 84px;
  }
  .u-pc-mgr-85 {
    margin-right: 85px;
  }
  .u-pc-mgr-86 {
    margin-right: 86px;
  }
  .u-pc-mgr-87 {
    margin-right: 87px;
  }
  .u-pc-mgr-88 {
    margin-right: 88px;
  }
  .u-pc-mgr-89 {
    margin-right: 89px;
  }
  .u-pc-mgr-90 {
    margin-right: 90px;
  }
  .u-pc-mgr-91 {
    margin-right: 91px;
  }
  .u-pc-mgr-92 {
    margin-right: 92px;
  }
  .u-pc-mgr-93 {
    margin-right: 93px;
  }
  .u-pc-mgr-94 {
    margin-right: 94px;
  }
  .u-pc-mgr-95 {
    margin-right: 95px;
  }
  .u-pc-mgr-96 {
    margin-right: 96px;
  }
  .u-pc-mgr-97 {
    margin-right: 97px;
  }
  .u-pc-mgr-98 {
    margin-right: 98px;
  }
  .u-pc-mgr-99 {
    margin-right: 99px;
  }
  .u-pc-mgr-100 {
    margin-right: 100px;
  }
  .u-pc-mgr-101 {
    margin-right: 101px;
  }
  .u-pc-mgr-102 {
    margin-right: 102px;
  }
  .u-pc-mgr-103 {
    margin-right: 103px;
  }
  .u-pc-mgr-104 {
    margin-right: 104px;
  }
  .u-pc-mgr-105 {
    margin-right: 105px;
  }
  .u-pc-mgr-106 {
    margin-right: 106px;
  }
  .u-pc-mgr-107 {
    margin-right: 107px;
  }
  .u-pc-mgr-108 {
    margin-right: 108px;
  }
  .u-pc-mgr-109 {
    margin-right: 109px;
  }
  .u-pc-mgr-110 {
    margin-right: 110px;
  }
  .u-pc-mgr-111 {
    margin-right: 111px;
  }
  .u-pc-mgr-112 {
    margin-right: 112px;
  }
  .u-pc-mgr-113 {
    margin-right: 113px;
  }
  .u-pc-mgr-114 {
    margin-right: 114px;
  }
  .u-pc-mgr-115 {
    margin-right: 115px;
  }
  .u-pc-mgr-116 {
    margin-right: 116px;
  }
  .u-pc-mgr-117 {
    margin-right: 117px;
  }
  .u-pc-mgr-118 {
    margin-right: 118px;
  }
  .u-pc-mgr-119 {
    margin-right: 119px;
  }
  .u-pc-mgr-120 {
    margin-right: 120px;
  }
  .u-pc-mgr-121 {
    margin-right: 121px;
  }
  .u-pc-mgr-122 {
    margin-right: 122px;
  }
  .u-pc-mgr-123 {
    margin-right: 123px;
  }
  .u-pc-mgr-124 {
    margin-right: 124px;
  }
  .u-pc-mgr-125 {
    margin-right: 125px;
  }
  .u-pc-mgr-126 {
    margin-right: 126px;
  }
  .u-pc-mgr-127 {
    margin-right: 127px;
  }
  .u-pc-mgr-128 {
    margin-right: 128px;
  }
  .u-pc-mgr-129 {
    margin-right: 129px;
  }
  .u-pc-mgr-130 {
    margin-right: 130px;
  }
  .u-pc-mgr-131 {
    margin-right: 131px;
  }
  .u-pc-mgr-132 {
    margin-right: 132px;
  }
  .u-pc-mgr-133 {
    margin-right: 133px;
  }
  .u-pc-mgr-134 {
    margin-right: 134px;
  }
  .u-pc-mgr-135 {
    margin-right: 135px;
  }
  .u-pc-mgr-136 {
    margin-right: 136px;
  }
  .u-pc-mgr-137 {
    margin-right: 137px;
  }
  .u-pc-mgr-138 {
    margin-right: 138px;
  }
  .u-pc-mgr-139 {
    margin-right: 139px;
  }
  .u-pc-mgr-140 {
    margin-right: 140px;
  }
  .u-pc-mgr-141 {
    margin-right: 141px;
  }
  .u-pc-mgr-142 {
    margin-right: 142px;
  }
  .u-pc-mgr-143 {
    margin-right: 143px;
  }
  .u-pc-mgr-144 {
    margin-right: 144px;
  }
  .u-pc-mgr-145 {
    margin-right: 145px;
  }
  .u-pc-mgr-146 {
    margin-right: 146px;
  }
  .u-pc-mgr-147 {
    margin-right: 147px;
  }
  .u-pc-mgr-148 {
    margin-right: 148px;
  }
  .u-pc-mgr-149 {
    margin-right: 149px;
  }
  .u-pc-mgr-150 {
    margin-right: 150px;
  }
  .u-pc-mgr-151 {
    margin-right: 151px;
  }
  .u-pc-mgr-152 {
    margin-right: 152px;
  }
  .u-pc-mgr-153 {
    margin-right: 153px;
  }
  .u-pc-mgr-154 {
    margin-right: 154px;
  }
  .u-pc-mgr-155 {
    margin-right: 155px;
  }
  .u-pc-mgr-156 {
    margin-right: 156px;
  }
  .u-pc-mgr-157 {
    margin-right: 157px;
  }
  .u-pc-mgr-158 {
    margin-right: 158px;
  }
  .u-pc-mgr-159 {
    margin-right: 159px;
  }
  .u-pc-mgr-160 {
    margin-right: 160px;
  }
  .u-pc-mgr-161 {
    margin-right: 161px;
  }
  .u-pc-mgr-162 {
    margin-right: 162px;
  }
  .u-pc-mgr-163 {
    margin-right: 163px;
  }
  .u-pc-mgr-164 {
    margin-right: 164px;
  }
  .u-pc-mgr-165 {
    margin-right: 165px;
  }
  .u-pc-mgr-166 {
    margin-right: 166px;
  }
  .u-pc-mgr-167 {
    margin-right: 167px;
  }
  .u-pc-mgr-168 {
    margin-right: 168px;
  }
  .u-pc-mgr-169 {
    margin-right: 169px;
  }
  .u-pc-mgr-170 {
    margin-right: 170px;
  }
  .u-pc-mgr-171 {
    margin-right: 171px;
  }
  .u-pc-mgr-172 {
    margin-right: 172px;
  }
  .u-pc-mgr-173 {
    margin-right: 173px;
  }
  .u-pc-mgr-174 {
    margin-right: 174px;
  }
  .u-pc-mgr-175 {
    margin-right: 175px;
  }
  .u-pc-mgr-176 {
    margin-right: 176px;
  }
  .u-pc-mgr-177 {
    margin-right: 177px;
  }
  .u-pc-mgr-178 {
    margin-right: 178px;
  }
  .u-pc-mgr-179 {
    margin-right: 179px;
  }
  .u-pc-mgr-180 {
    margin-right: 180px;
  }
  .u-pc-mgr-181 {
    margin-right: 181px;
  }
  .u-pc-mgr-182 {
    margin-right: 182px;
  }
  .u-pc-mgr-183 {
    margin-right: 183px;
  }
  .u-pc-mgr-184 {
    margin-right: 184px;
  }
  .u-pc-mgr-185 {
    margin-right: 185px;
  }
  .u-pc-mgr-186 {
    margin-right: 186px;
  }
  .u-pc-mgr-187 {
    margin-right: 187px;
  }
  .u-pc-mgr-188 {
    margin-right: 188px;
  }
  .u-pc-mgr-189 {
    margin-right: 189px;
  }
  .u-pc-mgr-190 {
    margin-right: 190px;
  }
  .u-pc-mgr-191 {
    margin-right: 191px;
  }
  .u-pc-mgr-192 {
    margin-right: 192px;
  }
  .u-pc-mgr-193 {
    margin-right: 193px;
  }
  .u-pc-mgr-194 {
    margin-right: 194px;
  }
  .u-pc-mgr-195 {
    margin-right: 195px;
  }
  .u-pc-mgr-196 {
    margin-right: 196px;
  }
  .u-pc-mgr-197 {
    margin-right: 197px;
  }
  .u-pc-mgr-198 {
    margin-right: 198px;
  }
  .u-pc-mgr-199 {
    margin-right: 199px;
  }
  .u-pc-mgr-200 {
    margin-right: 200px;
  }
  .u-pc-mgl-0 {
    margin-left: 0px;
  }
  .u-pc-mgl-1 {
    margin-left: 1px;
  }
  .u-pc-mgl-2 {
    margin-left: 2px;
  }
  .u-pc-mgl-3 {
    margin-left: 3px;
  }
  .u-pc-mgl-4 {
    margin-left: 4px;
  }
  .u-pc-mgl-5 {
    margin-left: 5px;
  }
  .u-pc-mgl-6 {
    margin-left: 6px;
  }
  .u-pc-mgl-7 {
    margin-left: 7px;
  }
  .u-pc-mgl-8 {
    margin-left: 8px;
  }
  .u-pc-mgl-9 {
    margin-left: 9px;
  }
  .u-pc-mgl-10 {
    margin-left: 10px;
  }
  .u-pc-mgl-11 {
    margin-left: 11px;
  }
  .u-pc-mgl-12 {
    margin-left: 12px;
  }
  .u-pc-mgl-13 {
    margin-left: 13px;
  }
  .u-pc-mgl-14 {
    margin-left: 14px;
  }
  .u-pc-mgl-15 {
    margin-left: 15px;
  }
  .u-pc-mgl-16 {
    margin-left: 16px;
  }
  .u-pc-mgl-17 {
    margin-left: 17px;
  }
  .u-pc-mgl-18 {
    margin-left: 18px;
  }
  .u-pc-mgl-19 {
    margin-left: 19px;
  }
  .u-pc-mgl-20 {
    margin-left: 20px;
  }
  .u-pc-mgl-21 {
    margin-left: 21px;
  }
  .u-pc-mgl-22 {
    margin-left: 22px;
  }
  .u-pc-mgl-23 {
    margin-left: 23px;
  }
  .u-pc-mgl-24 {
    margin-left: 24px;
  }
  .u-pc-mgl-25 {
    margin-left: 25px;
  }
  .u-pc-mgl-26 {
    margin-left: 26px;
  }
  .u-pc-mgl-27 {
    margin-left: 27px;
  }
  .u-pc-mgl-28 {
    margin-left: 28px;
  }
  .u-pc-mgl-29 {
    margin-left: 29px;
  }
  .u-pc-mgl-30 {
    margin-left: 30px;
  }
  .u-pc-mgl-31 {
    margin-left: 31px;
  }
  .u-pc-mgl-32 {
    margin-left: 32px;
  }
  .u-pc-mgl-33 {
    margin-left: 33px;
  }
  .u-pc-mgl-34 {
    margin-left: 34px;
  }
  .u-pc-mgl-35 {
    margin-left: 35px;
  }
  .u-pc-mgl-36 {
    margin-left: 36px;
  }
  .u-pc-mgl-37 {
    margin-left: 37px;
  }
  .u-pc-mgl-38 {
    margin-left: 38px;
  }
  .u-pc-mgl-39 {
    margin-left: 39px;
  }
  .u-pc-mgl-40 {
    margin-left: 40px;
  }
  .u-pc-mgl-41 {
    margin-left: 41px;
  }
  .u-pc-mgl-42 {
    margin-left: 42px;
  }
  .u-pc-mgl-43 {
    margin-left: 43px;
  }
  .u-pc-mgl-44 {
    margin-left: 44px;
  }
  .u-pc-mgl-45 {
    margin-left: 45px;
  }
  .u-pc-mgl-46 {
    margin-left: 46px;
  }
  .u-pc-mgl-47 {
    margin-left: 47px;
  }
  .u-pc-mgl-48 {
    margin-left: 48px;
  }
  .u-pc-mgl-49 {
    margin-left: 49px;
  }
  .u-pc-mgl-50 {
    margin-left: 50px;
  }
  .u-pc-mgl-51 {
    margin-left: 51px;
  }
  .u-pc-mgl-52 {
    margin-left: 52px;
  }
  .u-pc-mgl-53 {
    margin-left: 53px;
  }
  .u-pc-mgl-54 {
    margin-left: 54px;
  }
  .u-pc-mgl-55 {
    margin-left: 55px;
  }
  .u-pc-mgl-56 {
    margin-left: 56px;
  }
  .u-pc-mgl-57 {
    margin-left: 57px;
  }
  .u-pc-mgl-58 {
    margin-left: 58px;
  }
  .u-pc-mgl-59 {
    margin-left: 59px;
  }
  .u-pc-mgl-60 {
    margin-left: 60px;
  }
  .u-pc-mgl-61 {
    margin-left: 61px;
  }
  .u-pc-mgl-62 {
    margin-left: 62px;
  }
  .u-pc-mgl-63 {
    margin-left: 63px;
  }
  .u-pc-mgl-64 {
    margin-left: 64px;
  }
  .u-pc-mgl-65 {
    margin-left: 65px;
  }
  .u-pc-mgl-66 {
    margin-left: 66px;
  }
  .u-pc-mgl-67 {
    margin-left: 67px;
  }
  .u-pc-mgl-68 {
    margin-left: 68px;
  }
  .u-pc-mgl-69 {
    margin-left: 69px;
  }
  .u-pc-mgl-70 {
    margin-left: 70px;
  }
  .u-pc-mgl-71 {
    margin-left: 71px;
  }
  .u-pc-mgl-72 {
    margin-left: 72px;
  }
  .u-pc-mgl-73 {
    margin-left: 73px;
  }
  .u-pc-mgl-74 {
    margin-left: 74px;
  }
  .u-pc-mgl-75 {
    margin-left: 75px;
  }
  .u-pc-mgl-76 {
    margin-left: 76px;
  }
  .u-pc-mgl-77 {
    margin-left: 77px;
  }
  .u-pc-mgl-78 {
    margin-left: 78px;
  }
  .u-pc-mgl-79 {
    margin-left: 79px;
  }
  .u-pc-mgl-80 {
    margin-left: 80px;
  }
  .u-pc-mgl-81 {
    margin-left: 81px;
  }
  .u-pc-mgl-82 {
    margin-left: 82px;
  }
  .u-pc-mgl-83 {
    margin-left: 83px;
  }
  .u-pc-mgl-84 {
    margin-left: 84px;
  }
  .u-pc-mgl-85 {
    margin-left: 85px;
  }
  .u-pc-mgl-86 {
    margin-left: 86px;
  }
  .u-pc-mgl-87 {
    margin-left: 87px;
  }
  .u-pc-mgl-88 {
    margin-left: 88px;
  }
  .u-pc-mgl-89 {
    margin-left: 89px;
  }
  .u-pc-mgl-90 {
    margin-left: 90px;
  }
  .u-pc-mgl-91 {
    margin-left: 91px;
  }
  .u-pc-mgl-92 {
    margin-left: 92px;
  }
  .u-pc-mgl-93 {
    margin-left: 93px;
  }
  .u-pc-mgl-94 {
    margin-left: 94px;
  }
  .u-pc-mgl-95 {
    margin-left: 95px;
  }
  .u-pc-mgl-96 {
    margin-left: 96px;
  }
  .u-pc-mgl-97 {
    margin-left: 97px;
  }
  .u-pc-mgl-98 {
    margin-left: 98px;
  }
  .u-pc-mgl-99 {
    margin-left: 99px;
  }
  .u-pc-mgl-100 {
    margin-left: 100px;
  }
  .u-pc-mgl-101 {
    margin-left: 101px;
  }
  .u-pc-mgl-102 {
    margin-left: 102px;
  }
  .u-pc-mgl-103 {
    margin-left: 103px;
  }
  .u-pc-mgl-104 {
    margin-left: 104px;
  }
  .u-pc-mgl-105 {
    margin-left: 105px;
  }
  .u-pc-mgl-106 {
    margin-left: 106px;
  }
  .u-pc-mgl-107 {
    margin-left: 107px;
  }
  .u-pc-mgl-108 {
    margin-left: 108px;
  }
  .u-pc-mgl-109 {
    margin-left: 109px;
  }
  .u-pc-mgl-110 {
    margin-left: 110px;
  }
  .u-pc-mgl-111 {
    margin-left: 111px;
  }
  .u-pc-mgl-112 {
    margin-left: 112px;
  }
  .u-pc-mgl-113 {
    margin-left: 113px;
  }
  .u-pc-mgl-114 {
    margin-left: 114px;
  }
  .u-pc-mgl-115 {
    margin-left: 115px;
  }
  .u-pc-mgl-116 {
    margin-left: 116px;
  }
  .u-pc-mgl-117 {
    margin-left: 117px;
  }
  .u-pc-mgl-118 {
    margin-left: 118px;
  }
  .u-pc-mgl-119 {
    margin-left: 119px;
  }
  .u-pc-mgl-120 {
    margin-left: 120px;
  }
  .u-pc-mgl-121 {
    margin-left: 121px;
  }
  .u-pc-mgl-122 {
    margin-left: 122px;
  }
  .u-pc-mgl-123 {
    margin-left: 123px;
  }
  .u-pc-mgl-124 {
    margin-left: 124px;
  }
  .u-pc-mgl-125 {
    margin-left: 125px;
  }
  .u-pc-mgl-126 {
    margin-left: 126px;
  }
  .u-pc-mgl-127 {
    margin-left: 127px;
  }
  .u-pc-mgl-128 {
    margin-left: 128px;
  }
  .u-pc-mgl-129 {
    margin-left: 129px;
  }
  .u-pc-mgl-130 {
    margin-left: 130px;
  }
  .u-pc-mgl-131 {
    margin-left: 131px;
  }
  .u-pc-mgl-132 {
    margin-left: 132px;
  }
  .u-pc-mgl-133 {
    margin-left: 133px;
  }
  .u-pc-mgl-134 {
    margin-left: 134px;
  }
  .u-pc-mgl-135 {
    margin-left: 135px;
  }
  .u-pc-mgl-136 {
    margin-left: 136px;
  }
  .u-pc-mgl-137 {
    margin-left: 137px;
  }
  .u-pc-mgl-138 {
    margin-left: 138px;
  }
  .u-pc-mgl-139 {
    margin-left: 139px;
  }
  .u-pc-mgl-140 {
    margin-left: 140px;
  }
  .u-pc-mgl-141 {
    margin-left: 141px;
  }
  .u-pc-mgl-142 {
    margin-left: 142px;
  }
  .u-pc-mgl-143 {
    margin-left: 143px;
  }
  .u-pc-mgl-144 {
    margin-left: 144px;
  }
  .u-pc-mgl-145 {
    margin-left: 145px;
  }
  .u-pc-mgl-146 {
    margin-left: 146px;
  }
  .u-pc-mgl-147 {
    margin-left: 147px;
  }
  .u-pc-mgl-148 {
    margin-left: 148px;
  }
  .u-pc-mgl-149 {
    margin-left: 149px;
  }
  .u-pc-mgl-150 {
    margin-left: 150px;
  }
  .u-pc-mgl-151 {
    margin-left: 151px;
  }
  .u-pc-mgl-152 {
    margin-left: 152px;
  }
  .u-pc-mgl-153 {
    margin-left: 153px;
  }
  .u-pc-mgl-154 {
    margin-left: 154px;
  }
  .u-pc-mgl-155 {
    margin-left: 155px;
  }
  .u-pc-mgl-156 {
    margin-left: 156px;
  }
  .u-pc-mgl-157 {
    margin-left: 157px;
  }
  .u-pc-mgl-158 {
    margin-left: 158px;
  }
  .u-pc-mgl-159 {
    margin-left: 159px;
  }
  .u-pc-mgl-160 {
    margin-left: 160px;
  }
  .u-pc-mgl-161 {
    margin-left: 161px;
  }
  .u-pc-mgl-162 {
    margin-left: 162px;
  }
  .u-pc-mgl-163 {
    margin-left: 163px;
  }
  .u-pc-mgl-164 {
    margin-left: 164px;
  }
  .u-pc-mgl-165 {
    margin-left: 165px;
  }
  .u-pc-mgl-166 {
    margin-left: 166px;
  }
  .u-pc-mgl-167 {
    margin-left: 167px;
  }
  .u-pc-mgl-168 {
    margin-left: 168px;
  }
  .u-pc-mgl-169 {
    margin-left: 169px;
  }
  .u-pc-mgl-170 {
    margin-left: 170px;
  }
  .u-pc-mgl-171 {
    margin-left: 171px;
  }
  .u-pc-mgl-172 {
    margin-left: 172px;
  }
  .u-pc-mgl-173 {
    margin-left: 173px;
  }
  .u-pc-mgl-174 {
    margin-left: 174px;
  }
  .u-pc-mgl-175 {
    margin-left: 175px;
  }
  .u-pc-mgl-176 {
    margin-left: 176px;
  }
  .u-pc-mgl-177 {
    margin-left: 177px;
  }
  .u-pc-mgl-178 {
    margin-left: 178px;
  }
  .u-pc-mgl-179 {
    margin-left: 179px;
  }
  .u-pc-mgl-180 {
    margin-left: 180px;
  }
  .u-pc-mgl-181 {
    margin-left: 181px;
  }
  .u-pc-mgl-182 {
    margin-left: 182px;
  }
  .u-pc-mgl-183 {
    margin-left: 183px;
  }
  .u-pc-mgl-184 {
    margin-left: 184px;
  }
  .u-pc-mgl-185 {
    margin-left: 185px;
  }
  .u-pc-mgl-186 {
    margin-left: 186px;
  }
  .u-pc-mgl-187 {
    margin-left: 187px;
  }
  .u-pc-mgl-188 {
    margin-left: 188px;
  }
  .u-pc-mgl-189 {
    margin-left: 189px;
  }
  .u-pc-mgl-190 {
    margin-left: 190px;
  }
  .u-pc-mgl-191 {
    margin-left: 191px;
  }
  .u-pc-mgl-192 {
    margin-left: 192px;
  }
  .u-pc-mgl-193 {
    margin-left: 193px;
  }
  .u-pc-mgl-194 {
    margin-left: 194px;
  }
  .u-pc-mgl-195 {
    margin-left: 195px;
  }
  .u-pc-mgl-196 {
    margin-left: 196px;
  }
  .u-pc-mgl-197 {
    margin-left: 197px;
  }
  .u-pc-mgl-198 {
    margin-left: 198px;
  }
  .u-pc-mgl-199 {
    margin-left: 199px;
  }
  .u-pc-mgl-200 {
    margin-left: 200px;
  }
}
.u-sp-pdt-0 {
  padding-top: 0px;
}

.u-sp-pdt-1 {
  padding-top: 1px;
}

.u-sp-pdt-2 {
  padding-top: 2px;
}

.u-sp-pdt-3 {
  padding-top: 3px;
}

.u-sp-pdt-4 {
  padding-top: 4px;
}

.u-sp-pdt-5 {
  padding-top: 5px;
}

.u-sp-pdt-6 {
  padding-top: 6px;
}

.u-sp-pdt-7 {
  padding-top: 7px;
}

.u-sp-pdt-8 {
  padding-top: 8px;
}

.u-sp-pdt-9 {
  padding-top: 9px;
}

.u-sp-pdt-10 {
  padding-top: 10px;
}

.u-sp-pdt-11 {
  padding-top: 11px;
}

.u-sp-pdt-12 {
  padding-top: 12px;
}

.u-sp-pdt-13 {
  padding-top: 13px;
}

.u-sp-pdt-14 {
  padding-top: 14px;
}

.u-sp-pdt-15 {
  padding-top: 15px;
}

.u-sp-pdt-16 {
  padding-top: 16px;
}

.u-sp-pdt-17 {
  padding-top: 17px;
}

.u-sp-pdt-18 {
  padding-top: 18px;
}

.u-sp-pdt-19 {
  padding-top: 19px;
}

.u-sp-pdt-20 {
  padding-top: 20px;
}

.u-sp-pdt-21 {
  padding-top: 21px;
}

.u-sp-pdt-22 {
  padding-top: 22px;
}

.u-sp-pdt-23 {
  padding-top: 23px;
}

.u-sp-pdt-24 {
  padding-top: 24px;
}

.u-sp-pdt-25 {
  padding-top: 25px;
}

.u-sp-pdt-26 {
  padding-top: 26px;
}

.u-sp-pdt-27 {
  padding-top: 27px;
}

.u-sp-pdt-28 {
  padding-top: 28px;
}

.u-sp-pdt-29 {
  padding-top: 29px;
}

.u-sp-pdt-30 {
  padding-top: 30px;
}

.u-sp-pdt-31 {
  padding-top: 31px;
}

.u-sp-pdt-32 {
  padding-top: 32px;
}

.u-sp-pdt-33 {
  padding-top: 33px;
}

.u-sp-pdt-34 {
  padding-top: 34px;
}

.u-sp-pdt-35 {
  padding-top: 35px;
}

.u-sp-pdt-36 {
  padding-top: 36px;
}

.u-sp-pdt-37 {
  padding-top: 37px;
}

.u-sp-pdt-38 {
  padding-top: 38px;
}

.u-sp-pdt-39 {
  padding-top: 39px;
}

.u-sp-pdt-40 {
  padding-top: 40px;
}

.u-sp-pdt-41 {
  padding-top: 41px;
}

.u-sp-pdt-42 {
  padding-top: 42px;
}

.u-sp-pdt-43 {
  padding-top: 43px;
}

.u-sp-pdt-44 {
  padding-top: 44px;
}

.u-sp-pdt-45 {
  padding-top: 45px;
}

.u-sp-pdt-46 {
  padding-top: 46px;
}

.u-sp-pdt-47 {
  padding-top: 47px;
}

.u-sp-pdt-48 {
  padding-top: 48px;
}

.u-sp-pdt-49 {
  padding-top: 49px;
}

.u-sp-pdt-50 {
  padding-top: 50px;
}

.u-sp-pdt-51 {
  padding-top: 51px;
}

.u-sp-pdt-52 {
  padding-top: 52px;
}

.u-sp-pdt-53 {
  padding-top: 53px;
}

.u-sp-pdt-54 {
  padding-top: 54px;
}

.u-sp-pdt-55 {
  padding-top: 55px;
}

.u-sp-pdt-56 {
  padding-top: 56px;
}

.u-sp-pdt-57 {
  padding-top: 57px;
}

.u-sp-pdt-58 {
  padding-top: 58px;
}

.u-sp-pdt-59 {
  padding-top: 59px;
}

.u-sp-pdt-60 {
  padding-top: 60px;
}

.u-sp-pdt-61 {
  padding-top: 61px;
}

.u-sp-pdt-62 {
  padding-top: 62px;
}

.u-sp-pdt-63 {
  padding-top: 63px;
}

.u-sp-pdt-64 {
  padding-top: 64px;
}

.u-sp-pdt-65 {
  padding-top: 65px;
}

.u-sp-pdt-66 {
  padding-top: 66px;
}

.u-sp-pdt-67 {
  padding-top: 67px;
}

.u-sp-pdt-68 {
  padding-top: 68px;
}

.u-sp-pdt-69 {
  padding-top: 69px;
}

.u-sp-pdt-70 {
  padding-top: 70px;
}

.u-sp-pdt-71 {
  padding-top: 71px;
}

.u-sp-pdt-72 {
  padding-top: 72px;
}

.u-sp-pdt-73 {
  padding-top: 73px;
}

.u-sp-pdt-74 {
  padding-top: 74px;
}

.u-sp-pdt-75 {
  padding-top: 75px;
}

.u-sp-pdt-76 {
  padding-top: 76px;
}

.u-sp-pdt-77 {
  padding-top: 77px;
}

.u-sp-pdt-78 {
  padding-top: 78px;
}

.u-sp-pdt-79 {
  padding-top: 79px;
}

.u-sp-pdt-80 {
  padding-top: 80px;
}

.u-sp-pdt-81 {
  padding-top: 81px;
}

.u-sp-pdt-82 {
  padding-top: 82px;
}

.u-sp-pdt-83 {
  padding-top: 83px;
}

.u-sp-pdt-84 {
  padding-top: 84px;
}

.u-sp-pdt-85 {
  padding-top: 85px;
}

.u-sp-pdt-86 {
  padding-top: 86px;
}

.u-sp-pdt-87 {
  padding-top: 87px;
}

.u-sp-pdt-88 {
  padding-top: 88px;
}

.u-sp-pdt-89 {
  padding-top: 89px;
}

.u-sp-pdt-90 {
  padding-top: 90px;
}

.u-sp-pdt-91 {
  padding-top: 91px;
}

.u-sp-pdt-92 {
  padding-top: 92px;
}

.u-sp-pdt-93 {
  padding-top: 93px;
}

.u-sp-pdt-94 {
  padding-top: 94px;
}

.u-sp-pdt-95 {
  padding-top: 95px;
}

.u-sp-pdt-96 {
  padding-top: 96px;
}

.u-sp-pdt-97 {
  padding-top: 97px;
}

.u-sp-pdt-98 {
  padding-top: 98px;
}

.u-sp-pdt-99 {
  padding-top: 99px;
}

.u-sp-pdt-100 {
  padding-top: 100px;
}

.u-sp-pdt-101 {
  padding-top: 101px;
}

.u-sp-pdt-102 {
  padding-top: 102px;
}

.u-sp-pdt-103 {
  padding-top: 103px;
}

.u-sp-pdt-104 {
  padding-top: 104px;
}

.u-sp-pdt-105 {
  padding-top: 105px;
}

.u-sp-pdt-106 {
  padding-top: 106px;
}

.u-sp-pdt-107 {
  padding-top: 107px;
}

.u-sp-pdt-108 {
  padding-top: 108px;
}

.u-sp-pdt-109 {
  padding-top: 109px;
}

.u-sp-pdt-110 {
  padding-top: 110px;
}

.u-sp-pdt-111 {
  padding-top: 111px;
}

.u-sp-pdt-112 {
  padding-top: 112px;
}

.u-sp-pdt-113 {
  padding-top: 113px;
}

.u-sp-pdt-114 {
  padding-top: 114px;
}

.u-sp-pdt-115 {
  padding-top: 115px;
}

.u-sp-pdt-116 {
  padding-top: 116px;
}

.u-sp-pdt-117 {
  padding-top: 117px;
}

.u-sp-pdt-118 {
  padding-top: 118px;
}

.u-sp-pdt-119 {
  padding-top: 119px;
}

.u-sp-pdt-120 {
  padding-top: 120px;
}

.u-sp-pdt-121 {
  padding-top: 121px;
}

.u-sp-pdt-122 {
  padding-top: 122px;
}

.u-sp-pdt-123 {
  padding-top: 123px;
}

.u-sp-pdt-124 {
  padding-top: 124px;
}

.u-sp-pdt-125 {
  padding-top: 125px;
}

.u-sp-pdt-126 {
  padding-top: 126px;
}

.u-sp-pdt-127 {
  padding-top: 127px;
}

.u-sp-pdt-128 {
  padding-top: 128px;
}

.u-sp-pdt-129 {
  padding-top: 129px;
}

.u-sp-pdt-130 {
  padding-top: 130px;
}

.u-sp-pdt-131 {
  padding-top: 131px;
}

.u-sp-pdt-132 {
  padding-top: 132px;
}

.u-sp-pdt-133 {
  padding-top: 133px;
}

.u-sp-pdt-134 {
  padding-top: 134px;
}

.u-sp-pdt-135 {
  padding-top: 135px;
}

.u-sp-pdt-136 {
  padding-top: 136px;
}

.u-sp-pdt-137 {
  padding-top: 137px;
}

.u-sp-pdt-138 {
  padding-top: 138px;
}

.u-sp-pdt-139 {
  padding-top: 139px;
}

.u-sp-pdt-140 {
  padding-top: 140px;
}

.u-sp-pdt-141 {
  padding-top: 141px;
}

.u-sp-pdt-142 {
  padding-top: 142px;
}

.u-sp-pdt-143 {
  padding-top: 143px;
}

.u-sp-pdt-144 {
  padding-top: 144px;
}

.u-sp-pdt-145 {
  padding-top: 145px;
}

.u-sp-pdt-146 {
  padding-top: 146px;
}

.u-sp-pdt-147 {
  padding-top: 147px;
}

.u-sp-pdt-148 {
  padding-top: 148px;
}

.u-sp-pdt-149 {
  padding-top: 149px;
}

.u-sp-pdt-150 {
  padding-top: 150px;
}

.u-sp-pdt-151 {
  padding-top: 151px;
}

.u-sp-pdt-152 {
  padding-top: 152px;
}

.u-sp-pdt-153 {
  padding-top: 153px;
}

.u-sp-pdt-154 {
  padding-top: 154px;
}

.u-sp-pdt-155 {
  padding-top: 155px;
}

.u-sp-pdt-156 {
  padding-top: 156px;
}

.u-sp-pdt-157 {
  padding-top: 157px;
}

.u-sp-pdt-158 {
  padding-top: 158px;
}

.u-sp-pdt-159 {
  padding-top: 159px;
}

.u-sp-pdt-160 {
  padding-top: 160px;
}

.u-sp-pdt-161 {
  padding-top: 161px;
}

.u-sp-pdt-162 {
  padding-top: 162px;
}

.u-sp-pdt-163 {
  padding-top: 163px;
}

.u-sp-pdt-164 {
  padding-top: 164px;
}

.u-sp-pdt-165 {
  padding-top: 165px;
}

.u-sp-pdt-166 {
  padding-top: 166px;
}

.u-sp-pdt-167 {
  padding-top: 167px;
}

.u-sp-pdt-168 {
  padding-top: 168px;
}

.u-sp-pdt-169 {
  padding-top: 169px;
}

.u-sp-pdt-170 {
  padding-top: 170px;
}

.u-sp-pdt-171 {
  padding-top: 171px;
}

.u-sp-pdt-172 {
  padding-top: 172px;
}

.u-sp-pdt-173 {
  padding-top: 173px;
}

.u-sp-pdt-174 {
  padding-top: 174px;
}

.u-sp-pdt-175 {
  padding-top: 175px;
}

.u-sp-pdt-176 {
  padding-top: 176px;
}

.u-sp-pdt-177 {
  padding-top: 177px;
}

.u-sp-pdt-178 {
  padding-top: 178px;
}

.u-sp-pdt-179 {
  padding-top: 179px;
}

.u-sp-pdt-180 {
  padding-top: 180px;
}

.u-sp-pdt-181 {
  padding-top: 181px;
}

.u-sp-pdt-182 {
  padding-top: 182px;
}

.u-sp-pdt-183 {
  padding-top: 183px;
}

.u-sp-pdt-184 {
  padding-top: 184px;
}

.u-sp-pdt-185 {
  padding-top: 185px;
}

.u-sp-pdt-186 {
  padding-top: 186px;
}

.u-sp-pdt-187 {
  padding-top: 187px;
}

.u-sp-pdt-188 {
  padding-top: 188px;
}

.u-sp-pdt-189 {
  padding-top: 189px;
}

.u-sp-pdt-190 {
  padding-top: 190px;
}

.u-sp-pdt-191 {
  padding-top: 191px;
}

.u-sp-pdt-192 {
  padding-top: 192px;
}

.u-sp-pdt-193 {
  padding-top: 193px;
}

.u-sp-pdt-194 {
  padding-top: 194px;
}

.u-sp-pdt-195 {
  padding-top: 195px;
}

.u-sp-pdt-196 {
  padding-top: 196px;
}

.u-sp-pdt-197 {
  padding-top: 197px;
}

.u-sp-pdt-198 {
  padding-top: 198px;
}

.u-sp-pdt-199 {
  padding-top: 199px;
}

.u-sp-pdt-200 {
  padding-top: 200px;
}

.u-sp-pdb-0 {
  padding-bottom: 0px;
}

.u-sp-pdb-1 {
  padding-bottom: 1px;
}

.u-sp-pdb-2 {
  padding-bottom: 2px;
}

.u-sp-pdb-3 {
  padding-bottom: 3px;
}

.u-sp-pdb-4 {
  padding-bottom: 4px;
}

.u-sp-pdb-5 {
  padding-bottom: 5px;
}

.u-sp-pdb-6 {
  padding-bottom: 6px;
}

.u-sp-pdb-7 {
  padding-bottom: 7px;
}

.u-sp-pdb-8 {
  padding-bottom: 8px;
}

.u-sp-pdb-9 {
  padding-bottom: 9px;
}

.u-sp-pdb-10 {
  padding-bottom: 10px;
}

.u-sp-pdb-11 {
  padding-bottom: 11px;
}

.u-sp-pdb-12 {
  padding-bottom: 12px;
}

.u-sp-pdb-13 {
  padding-bottom: 13px;
}

.u-sp-pdb-14 {
  padding-bottom: 14px;
}

.u-sp-pdb-15 {
  padding-bottom: 15px;
}

.u-sp-pdb-16 {
  padding-bottom: 16px;
}

.u-sp-pdb-17 {
  padding-bottom: 17px;
}

.u-sp-pdb-18 {
  padding-bottom: 18px;
}

.u-sp-pdb-19 {
  padding-bottom: 19px;
}

.u-sp-pdb-20 {
  padding-bottom: 20px;
}

.u-sp-pdb-21 {
  padding-bottom: 21px;
}

.u-sp-pdb-22 {
  padding-bottom: 22px;
}

.u-sp-pdb-23 {
  padding-bottom: 23px;
}

.u-sp-pdb-24 {
  padding-bottom: 24px;
}

.u-sp-pdb-25 {
  padding-bottom: 25px;
}

.u-sp-pdb-26 {
  padding-bottom: 26px;
}

.u-sp-pdb-27 {
  padding-bottom: 27px;
}

.u-sp-pdb-28 {
  padding-bottom: 28px;
}

.u-sp-pdb-29 {
  padding-bottom: 29px;
}

.u-sp-pdb-30 {
  padding-bottom: 30px;
}

.u-sp-pdb-31 {
  padding-bottom: 31px;
}

.u-sp-pdb-32 {
  padding-bottom: 32px;
}

.u-sp-pdb-33 {
  padding-bottom: 33px;
}

.u-sp-pdb-34 {
  padding-bottom: 34px;
}

.u-sp-pdb-35 {
  padding-bottom: 35px;
}

.u-sp-pdb-36 {
  padding-bottom: 36px;
}

.u-sp-pdb-37 {
  padding-bottom: 37px;
}

.u-sp-pdb-38 {
  padding-bottom: 38px;
}

.u-sp-pdb-39 {
  padding-bottom: 39px;
}

.u-sp-pdb-40 {
  padding-bottom: 40px;
}

.u-sp-pdb-41 {
  padding-bottom: 41px;
}

.u-sp-pdb-42 {
  padding-bottom: 42px;
}

.u-sp-pdb-43 {
  padding-bottom: 43px;
}

.u-sp-pdb-44 {
  padding-bottom: 44px;
}

.u-sp-pdb-45 {
  padding-bottom: 45px;
}

.u-sp-pdb-46 {
  padding-bottom: 46px;
}

.u-sp-pdb-47 {
  padding-bottom: 47px;
}

.u-sp-pdb-48 {
  padding-bottom: 48px;
}

.u-sp-pdb-49 {
  padding-bottom: 49px;
}

.u-sp-pdb-50 {
  padding-bottom: 50px;
}

.u-sp-pdb-51 {
  padding-bottom: 51px;
}

.u-sp-pdb-52 {
  padding-bottom: 52px;
}

.u-sp-pdb-53 {
  padding-bottom: 53px;
}

.u-sp-pdb-54 {
  padding-bottom: 54px;
}

.u-sp-pdb-55 {
  padding-bottom: 55px;
}

.u-sp-pdb-56 {
  padding-bottom: 56px;
}

.u-sp-pdb-57 {
  padding-bottom: 57px;
}

.u-sp-pdb-58 {
  padding-bottom: 58px;
}

.u-sp-pdb-59 {
  padding-bottom: 59px;
}

.u-sp-pdb-60 {
  padding-bottom: 60px;
}

.u-sp-pdb-61 {
  padding-bottom: 61px;
}

.u-sp-pdb-62 {
  padding-bottom: 62px;
}

.u-sp-pdb-63 {
  padding-bottom: 63px;
}

.u-sp-pdb-64 {
  padding-bottom: 64px;
}

.u-sp-pdb-65 {
  padding-bottom: 65px;
}

.u-sp-pdb-66 {
  padding-bottom: 66px;
}

.u-sp-pdb-67 {
  padding-bottom: 67px;
}

.u-sp-pdb-68 {
  padding-bottom: 68px;
}

.u-sp-pdb-69 {
  padding-bottom: 69px;
}

.u-sp-pdb-70 {
  padding-bottom: 70px;
}

.u-sp-pdb-71 {
  padding-bottom: 71px;
}

.u-sp-pdb-72 {
  padding-bottom: 72px;
}

.u-sp-pdb-73 {
  padding-bottom: 73px;
}

.u-sp-pdb-74 {
  padding-bottom: 74px;
}

.u-sp-pdb-75 {
  padding-bottom: 75px;
}

.u-sp-pdb-76 {
  padding-bottom: 76px;
}

.u-sp-pdb-77 {
  padding-bottom: 77px;
}

.u-sp-pdb-78 {
  padding-bottom: 78px;
}

.u-sp-pdb-79 {
  padding-bottom: 79px;
}

.u-sp-pdb-80 {
  padding-bottom: 80px;
}

.u-sp-pdb-81 {
  padding-bottom: 81px;
}

.u-sp-pdb-82 {
  padding-bottom: 82px;
}

.u-sp-pdb-83 {
  padding-bottom: 83px;
}

.u-sp-pdb-84 {
  padding-bottom: 84px;
}

.u-sp-pdb-85 {
  padding-bottom: 85px;
}

.u-sp-pdb-86 {
  padding-bottom: 86px;
}

.u-sp-pdb-87 {
  padding-bottom: 87px;
}

.u-sp-pdb-88 {
  padding-bottom: 88px;
}

.u-sp-pdb-89 {
  padding-bottom: 89px;
}

.u-sp-pdb-90 {
  padding-bottom: 90px;
}

.u-sp-pdb-91 {
  padding-bottom: 91px;
}

.u-sp-pdb-92 {
  padding-bottom: 92px;
}

.u-sp-pdb-93 {
  padding-bottom: 93px;
}

.u-sp-pdb-94 {
  padding-bottom: 94px;
}

.u-sp-pdb-95 {
  padding-bottom: 95px;
}

.u-sp-pdb-96 {
  padding-bottom: 96px;
}

.u-sp-pdb-97 {
  padding-bottom: 97px;
}

.u-sp-pdb-98 {
  padding-bottom: 98px;
}

.u-sp-pdb-99 {
  padding-bottom: 99px;
}

.u-sp-pdb-100 {
  padding-bottom: 100px;
}

.u-sp-pdb-101 {
  padding-bottom: 101px;
}

.u-sp-pdb-102 {
  padding-bottom: 102px;
}

.u-sp-pdb-103 {
  padding-bottom: 103px;
}

.u-sp-pdb-104 {
  padding-bottom: 104px;
}

.u-sp-pdb-105 {
  padding-bottom: 105px;
}

.u-sp-pdb-106 {
  padding-bottom: 106px;
}

.u-sp-pdb-107 {
  padding-bottom: 107px;
}

.u-sp-pdb-108 {
  padding-bottom: 108px;
}

.u-sp-pdb-109 {
  padding-bottom: 109px;
}

.u-sp-pdb-110 {
  padding-bottom: 110px;
}

.u-sp-pdb-111 {
  padding-bottom: 111px;
}

.u-sp-pdb-112 {
  padding-bottom: 112px;
}

.u-sp-pdb-113 {
  padding-bottom: 113px;
}

.u-sp-pdb-114 {
  padding-bottom: 114px;
}

.u-sp-pdb-115 {
  padding-bottom: 115px;
}

.u-sp-pdb-116 {
  padding-bottom: 116px;
}

.u-sp-pdb-117 {
  padding-bottom: 117px;
}

.u-sp-pdb-118 {
  padding-bottom: 118px;
}

.u-sp-pdb-119 {
  padding-bottom: 119px;
}

.u-sp-pdb-120 {
  padding-bottom: 120px;
}

.u-sp-pdb-121 {
  padding-bottom: 121px;
}

.u-sp-pdb-122 {
  padding-bottom: 122px;
}

.u-sp-pdb-123 {
  padding-bottom: 123px;
}

.u-sp-pdb-124 {
  padding-bottom: 124px;
}

.u-sp-pdb-125 {
  padding-bottom: 125px;
}

.u-sp-pdb-126 {
  padding-bottom: 126px;
}

.u-sp-pdb-127 {
  padding-bottom: 127px;
}

.u-sp-pdb-128 {
  padding-bottom: 128px;
}

.u-sp-pdb-129 {
  padding-bottom: 129px;
}

.u-sp-pdb-130 {
  padding-bottom: 130px;
}

.u-sp-pdb-131 {
  padding-bottom: 131px;
}

.u-sp-pdb-132 {
  padding-bottom: 132px;
}

.u-sp-pdb-133 {
  padding-bottom: 133px;
}

.u-sp-pdb-134 {
  padding-bottom: 134px;
}

.u-sp-pdb-135 {
  padding-bottom: 135px;
}

.u-sp-pdb-136 {
  padding-bottom: 136px;
}

.u-sp-pdb-137 {
  padding-bottom: 137px;
}

.u-sp-pdb-138 {
  padding-bottom: 138px;
}

.u-sp-pdb-139 {
  padding-bottom: 139px;
}

.u-sp-pdb-140 {
  padding-bottom: 140px;
}

.u-sp-pdb-141 {
  padding-bottom: 141px;
}

.u-sp-pdb-142 {
  padding-bottom: 142px;
}

.u-sp-pdb-143 {
  padding-bottom: 143px;
}

.u-sp-pdb-144 {
  padding-bottom: 144px;
}

.u-sp-pdb-145 {
  padding-bottom: 145px;
}

.u-sp-pdb-146 {
  padding-bottom: 146px;
}

.u-sp-pdb-147 {
  padding-bottom: 147px;
}

.u-sp-pdb-148 {
  padding-bottom: 148px;
}

.u-sp-pdb-149 {
  padding-bottom: 149px;
}

.u-sp-pdb-150 {
  padding-bottom: 150px;
}

.u-sp-pdb-151 {
  padding-bottom: 151px;
}

.u-sp-pdb-152 {
  padding-bottom: 152px;
}

.u-sp-pdb-153 {
  padding-bottom: 153px;
}

.u-sp-pdb-154 {
  padding-bottom: 154px;
}

.u-sp-pdb-155 {
  padding-bottom: 155px;
}

.u-sp-pdb-156 {
  padding-bottom: 156px;
}

.u-sp-pdb-157 {
  padding-bottom: 157px;
}

.u-sp-pdb-158 {
  padding-bottom: 158px;
}

.u-sp-pdb-159 {
  padding-bottom: 159px;
}

.u-sp-pdb-160 {
  padding-bottom: 160px;
}

.u-sp-pdb-161 {
  padding-bottom: 161px;
}

.u-sp-pdb-162 {
  padding-bottom: 162px;
}

.u-sp-pdb-163 {
  padding-bottom: 163px;
}

.u-sp-pdb-164 {
  padding-bottom: 164px;
}

.u-sp-pdb-165 {
  padding-bottom: 165px;
}

.u-sp-pdb-166 {
  padding-bottom: 166px;
}

.u-sp-pdb-167 {
  padding-bottom: 167px;
}

.u-sp-pdb-168 {
  padding-bottom: 168px;
}

.u-sp-pdb-169 {
  padding-bottom: 169px;
}

.u-sp-pdb-170 {
  padding-bottom: 170px;
}

.u-sp-pdb-171 {
  padding-bottom: 171px;
}

.u-sp-pdb-172 {
  padding-bottom: 172px;
}

.u-sp-pdb-173 {
  padding-bottom: 173px;
}

.u-sp-pdb-174 {
  padding-bottom: 174px;
}

.u-sp-pdb-175 {
  padding-bottom: 175px;
}

.u-sp-pdb-176 {
  padding-bottom: 176px;
}

.u-sp-pdb-177 {
  padding-bottom: 177px;
}

.u-sp-pdb-178 {
  padding-bottom: 178px;
}

.u-sp-pdb-179 {
  padding-bottom: 179px;
}

.u-sp-pdb-180 {
  padding-bottom: 180px;
}

.u-sp-pdb-181 {
  padding-bottom: 181px;
}

.u-sp-pdb-182 {
  padding-bottom: 182px;
}

.u-sp-pdb-183 {
  padding-bottom: 183px;
}

.u-sp-pdb-184 {
  padding-bottom: 184px;
}

.u-sp-pdb-185 {
  padding-bottom: 185px;
}

.u-sp-pdb-186 {
  padding-bottom: 186px;
}

.u-sp-pdb-187 {
  padding-bottom: 187px;
}

.u-sp-pdb-188 {
  padding-bottom: 188px;
}

.u-sp-pdb-189 {
  padding-bottom: 189px;
}

.u-sp-pdb-190 {
  padding-bottom: 190px;
}

.u-sp-pdb-191 {
  padding-bottom: 191px;
}

.u-sp-pdb-192 {
  padding-bottom: 192px;
}

.u-sp-pdb-193 {
  padding-bottom: 193px;
}

.u-sp-pdb-194 {
  padding-bottom: 194px;
}

.u-sp-pdb-195 {
  padding-bottom: 195px;
}

.u-sp-pdb-196 {
  padding-bottom: 196px;
}

.u-sp-pdb-197 {
  padding-bottom: 197px;
}

.u-sp-pdb-198 {
  padding-bottom: 198px;
}

.u-sp-pdb-199 {
  padding-bottom: 199px;
}

.u-sp-pdb-200 {
  padding-bottom: 200px;
}

.u-sp-pdr-0 {
  padding-right: 0px;
}

.u-sp-pdr-1 {
  padding-right: 1px;
}

.u-sp-pdr-2 {
  padding-right: 2px;
}

.u-sp-pdr-3 {
  padding-right: 3px;
}

.u-sp-pdr-4 {
  padding-right: 4px;
}

.u-sp-pdr-5 {
  padding-right: 5px;
}

.u-sp-pdr-6 {
  padding-right: 6px;
}

.u-sp-pdr-7 {
  padding-right: 7px;
}

.u-sp-pdr-8 {
  padding-right: 8px;
}

.u-sp-pdr-9 {
  padding-right: 9px;
}

.u-sp-pdr-10 {
  padding-right: 10px;
}

.u-sp-pdr-11 {
  padding-right: 11px;
}

.u-sp-pdr-12 {
  padding-right: 12px;
}

.u-sp-pdr-13 {
  padding-right: 13px;
}

.u-sp-pdr-14 {
  padding-right: 14px;
}

.u-sp-pdr-15 {
  padding-right: 15px;
}

.u-sp-pdr-16 {
  padding-right: 16px;
}

.u-sp-pdr-17 {
  padding-right: 17px;
}

.u-sp-pdr-18 {
  padding-right: 18px;
}

.u-sp-pdr-19 {
  padding-right: 19px;
}

.u-sp-pdr-20 {
  padding-right: 20px;
}

.u-sp-pdr-21 {
  padding-right: 21px;
}

.u-sp-pdr-22 {
  padding-right: 22px;
}

.u-sp-pdr-23 {
  padding-right: 23px;
}

.u-sp-pdr-24 {
  padding-right: 24px;
}

.u-sp-pdr-25 {
  padding-right: 25px;
}

.u-sp-pdr-26 {
  padding-right: 26px;
}

.u-sp-pdr-27 {
  padding-right: 27px;
}

.u-sp-pdr-28 {
  padding-right: 28px;
}

.u-sp-pdr-29 {
  padding-right: 29px;
}

.u-sp-pdr-30 {
  padding-right: 30px;
}

.u-sp-pdr-31 {
  padding-right: 31px;
}

.u-sp-pdr-32 {
  padding-right: 32px;
}

.u-sp-pdr-33 {
  padding-right: 33px;
}

.u-sp-pdr-34 {
  padding-right: 34px;
}

.u-sp-pdr-35 {
  padding-right: 35px;
}

.u-sp-pdr-36 {
  padding-right: 36px;
}

.u-sp-pdr-37 {
  padding-right: 37px;
}

.u-sp-pdr-38 {
  padding-right: 38px;
}

.u-sp-pdr-39 {
  padding-right: 39px;
}

.u-sp-pdr-40 {
  padding-right: 40px;
}

.u-sp-pdr-41 {
  padding-right: 41px;
}

.u-sp-pdr-42 {
  padding-right: 42px;
}

.u-sp-pdr-43 {
  padding-right: 43px;
}

.u-sp-pdr-44 {
  padding-right: 44px;
}

.u-sp-pdr-45 {
  padding-right: 45px;
}

.u-sp-pdr-46 {
  padding-right: 46px;
}

.u-sp-pdr-47 {
  padding-right: 47px;
}

.u-sp-pdr-48 {
  padding-right: 48px;
}

.u-sp-pdr-49 {
  padding-right: 49px;
}

.u-sp-pdr-50 {
  padding-right: 50px;
}

.u-sp-pdr-51 {
  padding-right: 51px;
}

.u-sp-pdr-52 {
  padding-right: 52px;
}

.u-sp-pdr-53 {
  padding-right: 53px;
}

.u-sp-pdr-54 {
  padding-right: 54px;
}

.u-sp-pdr-55 {
  padding-right: 55px;
}

.u-sp-pdr-56 {
  padding-right: 56px;
}

.u-sp-pdr-57 {
  padding-right: 57px;
}

.u-sp-pdr-58 {
  padding-right: 58px;
}

.u-sp-pdr-59 {
  padding-right: 59px;
}

.u-sp-pdr-60 {
  padding-right: 60px;
}

.u-sp-pdr-61 {
  padding-right: 61px;
}

.u-sp-pdr-62 {
  padding-right: 62px;
}

.u-sp-pdr-63 {
  padding-right: 63px;
}

.u-sp-pdr-64 {
  padding-right: 64px;
}

.u-sp-pdr-65 {
  padding-right: 65px;
}

.u-sp-pdr-66 {
  padding-right: 66px;
}

.u-sp-pdr-67 {
  padding-right: 67px;
}

.u-sp-pdr-68 {
  padding-right: 68px;
}

.u-sp-pdr-69 {
  padding-right: 69px;
}

.u-sp-pdr-70 {
  padding-right: 70px;
}

.u-sp-pdr-71 {
  padding-right: 71px;
}

.u-sp-pdr-72 {
  padding-right: 72px;
}

.u-sp-pdr-73 {
  padding-right: 73px;
}

.u-sp-pdr-74 {
  padding-right: 74px;
}

.u-sp-pdr-75 {
  padding-right: 75px;
}

.u-sp-pdr-76 {
  padding-right: 76px;
}

.u-sp-pdr-77 {
  padding-right: 77px;
}

.u-sp-pdr-78 {
  padding-right: 78px;
}

.u-sp-pdr-79 {
  padding-right: 79px;
}

.u-sp-pdr-80 {
  padding-right: 80px;
}

.u-sp-pdr-81 {
  padding-right: 81px;
}

.u-sp-pdr-82 {
  padding-right: 82px;
}

.u-sp-pdr-83 {
  padding-right: 83px;
}

.u-sp-pdr-84 {
  padding-right: 84px;
}

.u-sp-pdr-85 {
  padding-right: 85px;
}

.u-sp-pdr-86 {
  padding-right: 86px;
}

.u-sp-pdr-87 {
  padding-right: 87px;
}

.u-sp-pdr-88 {
  padding-right: 88px;
}

.u-sp-pdr-89 {
  padding-right: 89px;
}

.u-sp-pdr-90 {
  padding-right: 90px;
}

.u-sp-pdr-91 {
  padding-right: 91px;
}

.u-sp-pdr-92 {
  padding-right: 92px;
}

.u-sp-pdr-93 {
  padding-right: 93px;
}

.u-sp-pdr-94 {
  padding-right: 94px;
}

.u-sp-pdr-95 {
  padding-right: 95px;
}

.u-sp-pdr-96 {
  padding-right: 96px;
}

.u-sp-pdr-97 {
  padding-right: 97px;
}

.u-sp-pdr-98 {
  padding-right: 98px;
}

.u-sp-pdr-99 {
  padding-right: 99px;
}

.u-sp-pdr-100 {
  padding-right: 100px;
}

.u-sp-pdr-101 {
  padding-right: 101px;
}

.u-sp-pdr-102 {
  padding-right: 102px;
}

.u-sp-pdr-103 {
  padding-right: 103px;
}

.u-sp-pdr-104 {
  padding-right: 104px;
}

.u-sp-pdr-105 {
  padding-right: 105px;
}

.u-sp-pdr-106 {
  padding-right: 106px;
}

.u-sp-pdr-107 {
  padding-right: 107px;
}

.u-sp-pdr-108 {
  padding-right: 108px;
}

.u-sp-pdr-109 {
  padding-right: 109px;
}

.u-sp-pdr-110 {
  padding-right: 110px;
}

.u-sp-pdr-111 {
  padding-right: 111px;
}

.u-sp-pdr-112 {
  padding-right: 112px;
}

.u-sp-pdr-113 {
  padding-right: 113px;
}

.u-sp-pdr-114 {
  padding-right: 114px;
}

.u-sp-pdr-115 {
  padding-right: 115px;
}

.u-sp-pdr-116 {
  padding-right: 116px;
}

.u-sp-pdr-117 {
  padding-right: 117px;
}

.u-sp-pdr-118 {
  padding-right: 118px;
}

.u-sp-pdr-119 {
  padding-right: 119px;
}

.u-sp-pdr-120 {
  padding-right: 120px;
}

.u-sp-pdr-121 {
  padding-right: 121px;
}

.u-sp-pdr-122 {
  padding-right: 122px;
}

.u-sp-pdr-123 {
  padding-right: 123px;
}

.u-sp-pdr-124 {
  padding-right: 124px;
}

.u-sp-pdr-125 {
  padding-right: 125px;
}

.u-sp-pdr-126 {
  padding-right: 126px;
}

.u-sp-pdr-127 {
  padding-right: 127px;
}

.u-sp-pdr-128 {
  padding-right: 128px;
}

.u-sp-pdr-129 {
  padding-right: 129px;
}

.u-sp-pdr-130 {
  padding-right: 130px;
}

.u-sp-pdr-131 {
  padding-right: 131px;
}

.u-sp-pdr-132 {
  padding-right: 132px;
}

.u-sp-pdr-133 {
  padding-right: 133px;
}

.u-sp-pdr-134 {
  padding-right: 134px;
}

.u-sp-pdr-135 {
  padding-right: 135px;
}

.u-sp-pdr-136 {
  padding-right: 136px;
}

.u-sp-pdr-137 {
  padding-right: 137px;
}

.u-sp-pdr-138 {
  padding-right: 138px;
}

.u-sp-pdr-139 {
  padding-right: 139px;
}

.u-sp-pdr-140 {
  padding-right: 140px;
}

.u-sp-pdr-141 {
  padding-right: 141px;
}

.u-sp-pdr-142 {
  padding-right: 142px;
}

.u-sp-pdr-143 {
  padding-right: 143px;
}

.u-sp-pdr-144 {
  padding-right: 144px;
}

.u-sp-pdr-145 {
  padding-right: 145px;
}

.u-sp-pdr-146 {
  padding-right: 146px;
}

.u-sp-pdr-147 {
  padding-right: 147px;
}

.u-sp-pdr-148 {
  padding-right: 148px;
}

.u-sp-pdr-149 {
  padding-right: 149px;
}

.u-sp-pdr-150 {
  padding-right: 150px;
}

.u-sp-pdr-151 {
  padding-right: 151px;
}

.u-sp-pdr-152 {
  padding-right: 152px;
}

.u-sp-pdr-153 {
  padding-right: 153px;
}

.u-sp-pdr-154 {
  padding-right: 154px;
}

.u-sp-pdr-155 {
  padding-right: 155px;
}

.u-sp-pdr-156 {
  padding-right: 156px;
}

.u-sp-pdr-157 {
  padding-right: 157px;
}

.u-sp-pdr-158 {
  padding-right: 158px;
}

.u-sp-pdr-159 {
  padding-right: 159px;
}

.u-sp-pdr-160 {
  padding-right: 160px;
}

.u-sp-pdr-161 {
  padding-right: 161px;
}

.u-sp-pdr-162 {
  padding-right: 162px;
}

.u-sp-pdr-163 {
  padding-right: 163px;
}

.u-sp-pdr-164 {
  padding-right: 164px;
}

.u-sp-pdr-165 {
  padding-right: 165px;
}

.u-sp-pdr-166 {
  padding-right: 166px;
}

.u-sp-pdr-167 {
  padding-right: 167px;
}

.u-sp-pdr-168 {
  padding-right: 168px;
}

.u-sp-pdr-169 {
  padding-right: 169px;
}

.u-sp-pdr-170 {
  padding-right: 170px;
}

.u-sp-pdr-171 {
  padding-right: 171px;
}

.u-sp-pdr-172 {
  padding-right: 172px;
}

.u-sp-pdr-173 {
  padding-right: 173px;
}

.u-sp-pdr-174 {
  padding-right: 174px;
}

.u-sp-pdr-175 {
  padding-right: 175px;
}

.u-sp-pdr-176 {
  padding-right: 176px;
}

.u-sp-pdr-177 {
  padding-right: 177px;
}

.u-sp-pdr-178 {
  padding-right: 178px;
}

.u-sp-pdr-179 {
  padding-right: 179px;
}

.u-sp-pdr-180 {
  padding-right: 180px;
}

.u-sp-pdr-181 {
  padding-right: 181px;
}

.u-sp-pdr-182 {
  padding-right: 182px;
}

.u-sp-pdr-183 {
  padding-right: 183px;
}

.u-sp-pdr-184 {
  padding-right: 184px;
}

.u-sp-pdr-185 {
  padding-right: 185px;
}

.u-sp-pdr-186 {
  padding-right: 186px;
}

.u-sp-pdr-187 {
  padding-right: 187px;
}

.u-sp-pdr-188 {
  padding-right: 188px;
}

.u-sp-pdr-189 {
  padding-right: 189px;
}

.u-sp-pdr-190 {
  padding-right: 190px;
}

.u-sp-pdr-191 {
  padding-right: 191px;
}

.u-sp-pdr-192 {
  padding-right: 192px;
}

.u-sp-pdr-193 {
  padding-right: 193px;
}

.u-sp-pdr-194 {
  padding-right: 194px;
}

.u-sp-pdr-195 {
  padding-right: 195px;
}

.u-sp-pdr-196 {
  padding-right: 196px;
}

.u-sp-pdr-197 {
  padding-right: 197px;
}

.u-sp-pdr-198 {
  padding-right: 198px;
}

.u-sp-pdr-199 {
  padding-right: 199px;
}

.u-sp-pdr-200 {
  padding-right: 200px;
}

.u-sp-pdl-0 {
  padding-left: 0px;
}

.u-sp-pdl-1 {
  padding-left: 1px;
}

.u-sp-pdl-2 {
  padding-left: 2px;
}

.u-sp-pdl-3 {
  padding-left: 3px;
}

.u-sp-pdl-4 {
  padding-left: 4px;
}

.u-sp-pdl-5 {
  padding-left: 5px;
}

.u-sp-pdl-6 {
  padding-left: 6px;
}

.u-sp-pdl-7 {
  padding-left: 7px;
}

.u-sp-pdl-8 {
  padding-left: 8px;
}

.u-sp-pdl-9 {
  padding-left: 9px;
}

.u-sp-pdl-10 {
  padding-left: 10px;
}

.u-sp-pdl-11 {
  padding-left: 11px;
}

.u-sp-pdl-12 {
  padding-left: 12px;
}

.u-sp-pdl-13 {
  padding-left: 13px;
}

.u-sp-pdl-14 {
  padding-left: 14px;
}

.u-sp-pdl-15 {
  padding-left: 15px;
}

.u-sp-pdl-16 {
  padding-left: 16px;
}

.u-sp-pdl-17 {
  padding-left: 17px;
}

.u-sp-pdl-18 {
  padding-left: 18px;
}

.u-sp-pdl-19 {
  padding-left: 19px;
}

.u-sp-pdl-20 {
  padding-left: 20px;
}

.u-sp-pdl-21 {
  padding-left: 21px;
}

.u-sp-pdl-22 {
  padding-left: 22px;
}

.u-sp-pdl-23 {
  padding-left: 23px;
}

.u-sp-pdl-24 {
  padding-left: 24px;
}

.u-sp-pdl-25 {
  padding-left: 25px;
}

.u-sp-pdl-26 {
  padding-left: 26px;
}

.u-sp-pdl-27 {
  padding-left: 27px;
}

.u-sp-pdl-28 {
  padding-left: 28px;
}

.u-sp-pdl-29 {
  padding-left: 29px;
}

.u-sp-pdl-30 {
  padding-left: 30px;
}

.u-sp-pdl-31 {
  padding-left: 31px;
}

.u-sp-pdl-32 {
  padding-left: 32px;
}

.u-sp-pdl-33 {
  padding-left: 33px;
}

.u-sp-pdl-34 {
  padding-left: 34px;
}

.u-sp-pdl-35 {
  padding-left: 35px;
}

.u-sp-pdl-36 {
  padding-left: 36px;
}

.u-sp-pdl-37 {
  padding-left: 37px;
}

.u-sp-pdl-38 {
  padding-left: 38px;
}

.u-sp-pdl-39 {
  padding-left: 39px;
}

.u-sp-pdl-40 {
  padding-left: 40px;
}

.u-sp-pdl-41 {
  padding-left: 41px;
}

.u-sp-pdl-42 {
  padding-left: 42px;
}

.u-sp-pdl-43 {
  padding-left: 43px;
}

.u-sp-pdl-44 {
  padding-left: 44px;
}

.u-sp-pdl-45 {
  padding-left: 45px;
}

.u-sp-pdl-46 {
  padding-left: 46px;
}

.u-sp-pdl-47 {
  padding-left: 47px;
}

.u-sp-pdl-48 {
  padding-left: 48px;
}

.u-sp-pdl-49 {
  padding-left: 49px;
}

.u-sp-pdl-50 {
  padding-left: 50px;
}

.u-sp-pdl-51 {
  padding-left: 51px;
}

.u-sp-pdl-52 {
  padding-left: 52px;
}

.u-sp-pdl-53 {
  padding-left: 53px;
}

.u-sp-pdl-54 {
  padding-left: 54px;
}

.u-sp-pdl-55 {
  padding-left: 55px;
}

.u-sp-pdl-56 {
  padding-left: 56px;
}

.u-sp-pdl-57 {
  padding-left: 57px;
}

.u-sp-pdl-58 {
  padding-left: 58px;
}

.u-sp-pdl-59 {
  padding-left: 59px;
}

.u-sp-pdl-60 {
  padding-left: 60px;
}

.u-sp-pdl-61 {
  padding-left: 61px;
}

.u-sp-pdl-62 {
  padding-left: 62px;
}

.u-sp-pdl-63 {
  padding-left: 63px;
}

.u-sp-pdl-64 {
  padding-left: 64px;
}

.u-sp-pdl-65 {
  padding-left: 65px;
}

.u-sp-pdl-66 {
  padding-left: 66px;
}

.u-sp-pdl-67 {
  padding-left: 67px;
}

.u-sp-pdl-68 {
  padding-left: 68px;
}

.u-sp-pdl-69 {
  padding-left: 69px;
}

.u-sp-pdl-70 {
  padding-left: 70px;
}

.u-sp-pdl-71 {
  padding-left: 71px;
}

.u-sp-pdl-72 {
  padding-left: 72px;
}

.u-sp-pdl-73 {
  padding-left: 73px;
}

.u-sp-pdl-74 {
  padding-left: 74px;
}

.u-sp-pdl-75 {
  padding-left: 75px;
}

.u-sp-pdl-76 {
  padding-left: 76px;
}

.u-sp-pdl-77 {
  padding-left: 77px;
}

.u-sp-pdl-78 {
  padding-left: 78px;
}

.u-sp-pdl-79 {
  padding-left: 79px;
}

.u-sp-pdl-80 {
  padding-left: 80px;
}

.u-sp-pdl-81 {
  padding-left: 81px;
}

.u-sp-pdl-82 {
  padding-left: 82px;
}

.u-sp-pdl-83 {
  padding-left: 83px;
}

.u-sp-pdl-84 {
  padding-left: 84px;
}

.u-sp-pdl-85 {
  padding-left: 85px;
}

.u-sp-pdl-86 {
  padding-left: 86px;
}

.u-sp-pdl-87 {
  padding-left: 87px;
}

.u-sp-pdl-88 {
  padding-left: 88px;
}

.u-sp-pdl-89 {
  padding-left: 89px;
}

.u-sp-pdl-90 {
  padding-left: 90px;
}

.u-sp-pdl-91 {
  padding-left: 91px;
}

.u-sp-pdl-92 {
  padding-left: 92px;
}

.u-sp-pdl-93 {
  padding-left: 93px;
}

.u-sp-pdl-94 {
  padding-left: 94px;
}

.u-sp-pdl-95 {
  padding-left: 95px;
}

.u-sp-pdl-96 {
  padding-left: 96px;
}

.u-sp-pdl-97 {
  padding-left: 97px;
}

.u-sp-pdl-98 {
  padding-left: 98px;
}

.u-sp-pdl-99 {
  padding-left: 99px;
}

.u-sp-pdl-100 {
  padding-left: 100px;
}

.u-sp-pdl-101 {
  padding-left: 101px;
}

.u-sp-pdl-102 {
  padding-left: 102px;
}

.u-sp-pdl-103 {
  padding-left: 103px;
}

.u-sp-pdl-104 {
  padding-left: 104px;
}

.u-sp-pdl-105 {
  padding-left: 105px;
}

.u-sp-pdl-106 {
  padding-left: 106px;
}

.u-sp-pdl-107 {
  padding-left: 107px;
}

.u-sp-pdl-108 {
  padding-left: 108px;
}

.u-sp-pdl-109 {
  padding-left: 109px;
}

.u-sp-pdl-110 {
  padding-left: 110px;
}

.u-sp-pdl-111 {
  padding-left: 111px;
}

.u-sp-pdl-112 {
  padding-left: 112px;
}

.u-sp-pdl-113 {
  padding-left: 113px;
}

.u-sp-pdl-114 {
  padding-left: 114px;
}

.u-sp-pdl-115 {
  padding-left: 115px;
}

.u-sp-pdl-116 {
  padding-left: 116px;
}

.u-sp-pdl-117 {
  padding-left: 117px;
}

.u-sp-pdl-118 {
  padding-left: 118px;
}

.u-sp-pdl-119 {
  padding-left: 119px;
}

.u-sp-pdl-120 {
  padding-left: 120px;
}

.u-sp-pdl-121 {
  padding-left: 121px;
}

.u-sp-pdl-122 {
  padding-left: 122px;
}

.u-sp-pdl-123 {
  padding-left: 123px;
}

.u-sp-pdl-124 {
  padding-left: 124px;
}

.u-sp-pdl-125 {
  padding-left: 125px;
}

.u-sp-pdl-126 {
  padding-left: 126px;
}

.u-sp-pdl-127 {
  padding-left: 127px;
}

.u-sp-pdl-128 {
  padding-left: 128px;
}

.u-sp-pdl-129 {
  padding-left: 129px;
}

.u-sp-pdl-130 {
  padding-left: 130px;
}

.u-sp-pdl-131 {
  padding-left: 131px;
}

.u-sp-pdl-132 {
  padding-left: 132px;
}

.u-sp-pdl-133 {
  padding-left: 133px;
}

.u-sp-pdl-134 {
  padding-left: 134px;
}

.u-sp-pdl-135 {
  padding-left: 135px;
}

.u-sp-pdl-136 {
  padding-left: 136px;
}

.u-sp-pdl-137 {
  padding-left: 137px;
}

.u-sp-pdl-138 {
  padding-left: 138px;
}

.u-sp-pdl-139 {
  padding-left: 139px;
}

.u-sp-pdl-140 {
  padding-left: 140px;
}

.u-sp-pdl-141 {
  padding-left: 141px;
}

.u-sp-pdl-142 {
  padding-left: 142px;
}

.u-sp-pdl-143 {
  padding-left: 143px;
}

.u-sp-pdl-144 {
  padding-left: 144px;
}

.u-sp-pdl-145 {
  padding-left: 145px;
}

.u-sp-pdl-146 {
  padding-left: 146px;
}

.u-sp-pdl-147 {
  padding-left: 147px;
}

.u-sp-pdl-148 {
  padding-left: 148px;
}

.u-sp-pdl-149 {
  padding-left: 149px;
}

.u-sp-pdl-150 {
  padding-left: 150px;
}

.u-sp-pdl-151 {
  padding-left: 151px;
}

.u-sp-pdl-152 {
  padding-left: 152px;
}

.u-sp-pdl-153 {
  padding-left: 153px;
}

.u-sp-pdl-154 {
  padding-left: 154px;
}

.u-sp-pdl-155 {
  padding-left: 155px;
}

.u-sp-pdl-156 {
  padding-left: 156px;
}

.u-sp-pdl-157 {
  padding-left: 157px;
}

.u-sp-pdl-158 {
  padding-left: 158px;
}

.u-sp-pdl-159 {
  padding-left: 159px;
}

.u-sp-pdl-160 {
  padding-left: 160px;
}

.u-sp-pdl-161 {
  padding-left: 161px;
}

.u-sp-pdl-162 {
  padding-left: 162px;
}

.u-sp-pdl-163 {
  padding-left: 163px;
}

.u-sp-pdl-164 {
  padding-left: 164px;
}

.u-sp-pdl-165 {
  padding-left: 165px;
}

.u-sp-pdl-166 {
  padding-left: 166px;
}

.u-sp-pdl-167 {
  padding-left: 167px;
}

.u-sp-pdl-168 {
  padding-left: 168px;
}

.u-sp-pdl-169 {
  padding-left: 169px;
}

.u-sp-pdl-170 {
  padding-left: 170px;
}

.u-sp-pdl-171 {
  padding-left: 171px;
}

.u-sp-pdl-172 {
  padding-left: 172px;
}

.u-sp-pdl-173 {
  padding-left: 173px;
}

.u-sp-pdl-174 {
  padding-left: 174px;
}

.u-sp-pdl-175 {
  padding-left: 175px;
}

.u-sp-pdl-176 {
  padding-left: 176px;
}

.u-sp-pdl-177 {
  padding-left: 177px;
}

.u-sp-pdl-178 {
  padding-left: 178px;
}

.u-sp-pdl-179 {
  padding-left: 179px;
}

.u-sp-pdl-180 {
  padding-left: 180px;
}

.u-sp-pdl-181 {
  padding-left: 181px;
}

.u-sp-pdl-182 {
  padding-left: 182px;
}

.u-sp-pdl-183 {
  padding-left: 183px;
}

.u-sp-pdl-184 {
  padding-left: 184px;
}

.u-sp-pdl-185 {
  padding-left: 185px;
}

.u-sp-pdl-186 {
  padding-left: 186px;
}

.u-sp-pdl-187 {
  padding-left: 187px;
}

.u-sp-pdl-188 {
  padding-left: 188px;
}

.u-sp-pdl-189 {
  padding-left: 189px;
}

.u-sp-pdl-190 {
  padding-left: 190px;
}

.u-sp-pdl-191 {
  padding-left: 191px;
}

.u-sp-pdl-192 {
  padding-left: 192px;
}

.u-sp-pdl-193 {
  padding-left: 193px;
}

.u-sp-pdl-194 {
  padding-left: 194px;
}

.u-sp-pdl-195 {
  padding-left: 195px;
}

.u-sp-pdl-196 {
  padding-left: 196px;
}

.u-sp-pdl-197 {
  padding-left: 197px;
}

.u-sp-pdl-198 {
  padding-left: 198px;
}

.u-sp-pdl-199 {
  padding-left: 199px;
}

.u-sp-pdl-200 {
  padding-left: 200px;
}

@media screen and (min-width: 568px) {
  .u-pc-pdt-0 {
    padding-top: 0px;
  }
  .u-pc-pdt-1 {
    padding-top: 1px;
  }
  .u-pc-pdt-2 {
    padding-top: 2px;
  }
  .u-pc-pdt-3 {
    padding-top: 3px;
  }
  .u-pc-pdt-4 {
    padding-top: 4px;
  }
  .u-pc-pdt-5 {
    padding-top: 5px;
  }
  .u-pc-pdt-6 {
    padding-top: 6px;
  }
  .u-pc-pdt-7 {
    padding-top: 7px;
  }
  .u-pc-pdt-8 {
    padding-top: 8px;
  }
  .u-pc-pdt-9 {
    padding-top: 9px;
  }
  .u-pc-pdt-10 {
    padding-top: 10px;
  }
  .u-pc-pdt-11 {
    padding-top: 11px;
  }
  .u-pc-pdt-12 {
    padding-top: 12px;
  }
  .u-pc-pdt-13 {
    padding-top: 13px;
  }
  .u-pc-pdt-14 {
    padding-top: 14px;
  }
  .u-pc-pdt-15 {
    padding-top: 15px;
  }
  .u-pc-pdt-16 {
    padding-top: 16px;
  }
  .u-pc-pdt-17 {
    padding-top: 17px;
  }
  .u-pc-pdt-18 {
    padding-top: 18px;
  }
  .u-pc-pdt-19 {
    padding-top: 19px;
  }
  .u-pc-pdt-20 {
    padding-top: 20px;
  }
  .u-pc-pdt-21 {
    padding-top: 21px;
  }
  .u-pc-pdt-22 {
    padding-top: 22px;
  }
  .u-pc-pdt-23 {
    padding-top: 23px;
  }
  .u-pc-pdt-24 {
    padding-top: 24px;
  }
  .u-pc-pdt-25 {
    padding-top: 25px;
  }
  .u-pc-pdt-26 {
    padding-top: 26px;
  }
  .u-pc-pdt-27 {
    padding-top: 27px;
  }
  .u-pc-pdt-28 {
    padding-top: 28px;
  }
  .u-pc-pdt-29 {
    padding-top: 29px;
  }
  .u-pc-pdt-30 {
    padding-top: 30px;
  }
  .u-pc-pdt-31 {
    padding-top: 31px;
  }
  .u-pc-pdt-32 {
    padding-top: 32px;
  }
  .u-pc-pdt-33 {
    padding-top: 33px;
  }
  .u-pc-pdt-34 {
    padding-top: 34px;
  }
  .u-pc-pdt-35 {
    padding-top: 35px;
  }
  .u-pc-pdt-36 {
    padding-top: 36px;
  }
  .u-pc-pdt-37 {
    padding-top: 37px;
  }
  .u-pc-pdt-38 {
    padding-top: 38px;
  }
  .u-pc-pdt-39 {
    padding-top: 39px;
  }
  .u-pc-pdt-40 {
    padding-top: 40px;
  }
  .u-pc-pdt-41 {
    padding-top: 41px;
  }
  .u-pc-pdt-42 {
    padding-top: 42px;
  }
  .u-pc-pdt-43 {
    padding-top: 43px;
  }
  .u-pc-pdt-44 {
    padding-top: 44px;
  }
  .u-pc-pdt-45 {
    padding-top: 45px;
  }
  .u-pc-pdt-46 {
    padding-top: 46px;
  }
  .u-pc-pdt-47 {
    padding-top: 47px;
  }
  .u-pc-pdt-48 {
    padding-top: 48px;
  }
  .u-pc-pdt-49 {
    padding-top: 49px;
  }
  .u-pc-pdt-50 {
    padding-top: 50px;
  }
  .u-pc-pdt-51 {
    padding-top: 51px;
  }
  .u-pc-pdt-52 {
    padding-top: 52px;
  }
  .u-pc-pdt-53 {
    padding-top: 53px;
  }
  .u-pc-pdt-54 {
    padding-top: 54px;
  }
  .u-pc-pdt-55 {
    padding-top: 55px;
  }
  .u-pc-pdt-56 {
    padding-top: 56px;
  }
  .u-pc-pdt-57 {
    padding-top: 57px;
  }
  .u-pc-pdt-58 {
    padding-top: 58px;
  }
  .u-pc-pdt-59 {
    padding-top: 59px;
  }
  .u-pc-pdt-60 {
    padding-top: 60px;
  }
  .u-pc-pdt-61 {
    padding-top: 61px;
  }
  .u-pc-pdt-62 {
    padding-top: 62px;
  }
  .u-pc-pdt-63 {
    padding-top: 63px;
  }
  .u-pc-pdt-64 {
    padding-top: 64px;
  }
  .u-pc-pdt-65 {
    padding-top: 65px;
  }
  .u-pc-pdt-66 {
    padding-top: 66px;
  }
  .u-pc-pdt-67 {
    padding-top: 67px;
  }
  .u-pc-pdt-68 {
    padding-top: 68px;
  }
  .u-pc-pdt-69 {
    padding-top: 69px;
  }
  .u-pc-pdt-70 {
    padding-top: 70px;
  }
  .u-pc-pdt-71 {
    padding-top: 71px;
  }
  .u-pc-pdt-72 {
    padding-top: 72px;
  }
  .u-pc-pdt-73 {
    padding-top: 73px;
  }
  .u-pc-pdt-74 {
    padding-top: 74px;
  }
  .u-pc-pdt-75 {
    padding-top: 75px;
  }
  .u-pc-pdt-76 {
    padding-top: 76px;
  }
  .u-pc-pdt-77 {
    padding-top: 77px;
  }
  .u-pc-pdt-78 {
    padding-top: 78px;
  }
  .u-pc-pdt-79 {
    padding-top: 79px;
  }
  .u-pc-pdt-80 {
    padding-top: 80px;
  }
  .u-pc-pdt-81 {
    padding-top: 81px;
  }
  .u-pc-pdt-82 {
    padding-top: 82px;
  }
  .u-pc-pdt-83 {
    padding-top: 83px;
  }
  .u-pc-pdt-84 {
    padding-top: 84px;
  }
  .u-pc-pdt-85 {
    padding-top: 85px;
  }
  .u-pc-pdt-86 {
    padding-top: 86px;
  }
  .u-pc-pdt-87 {
    padding-top: 87px;
  }
  .u-pc-pdt-88 {
    padding-top: 88px;
  }
  .u-pc-pdt-89 {
    padding-top: 89px;
  }
  .u-pc-pdt-90 {
    padding-top: 90px;
  }
  .u-pc-pdt-91 {
    padding-top: 91px;
  }
  .u-pc-pdt-92 {
    padding-top: 92px;
  }
  .u-pc-pdt-93 {
    padding-top: 93px;
  }
  .u-pc-pdt-94 {
    padding-top: 94px;
  }
  .u-pc-pdt-95 {
    padding-top: 95px;
  }
  .u-pc-pdt-96 {
    padding-top: 96px;
  }
  .u-pc-pdt-97 {
    padding-top: 97px;
  }
  .u-pc-pdt-98 {
    padding-top: 98px;
  }
  .u-pc-pdt-99 {
    padding-top: 99px;
  }
  .u-pc-pdt-100 {
    padding-top: 100px;
  }
  .u-pc-pdt-101 {
    padding-top: 101px;
  }
  .u-pc-pdt-102 {
    padding-top: 102px;
  }
  .u-pc-pdt-103 {
    padding-top: 103px;
  }
  .u-pc-pdt-104 {
    padding-top: 104px;
  }
  .u-pc-pdt-105 {
    padding-top: 105px;
  }
  .u-pc-pdt-106 {
    padding-top: 106px;
  }
  .u-pc-pdt-107 {
    padding-top: 107px;
  }
  .u-pc-pdt-108 {
    padding-top: 108px;
  }
  .u-pc-pdt-109 {
    padding-top: 109px;
  }
  .u-pc-pdt-110 {
    padding-top: 110px;
  }
  .u-pc-pdt-111 {
    padding-top: 111px;
  }
  .u-pc-pdt-112 {
    padding-top: 112px;
  }
  .u-pc-pdt-113 {
    padding-top: 113px;
  }
  .u-pc-pdt-114 {
    padding-top: 114px;
  }
  .u-pc-pdt-115 {
    padding-top: 115px;
  }
  .u-pc-pdt-116 {
    padding-top: 116px;
  }
  .u-pc-pdt-117 {
    padding-top: 117px;
  }
  .u-pc-pdt-118 {
    padding-top: 118px;
  }
  .u-pc-pdt-119 {
    padding-top: 119px;
  }
  .u-pc-pdt-120 {
    padding-top: 120px;
  }
  .u-pc-pdt-121 {
    padding-top: 121px;
  }
  .u-pc-pdt-122 {
    padding-top: 122px;
  }
  .u-pc-pdt-123 {
    padding-top: 123px;
  }
  .u-pc-pdt-124 {
    padding-top: 124px;
  }
  .u-pc-pdt-125 {
    padding-top: 125px;
  }
  .u-pc-pdt-126 {
    padding-top: 126px;
  }
  .u-pc-pdt-127 {
    padding-top: 127px;
  }
  .u-pc-pdt-128 {
    padding-top: 128px;
  }
  .u-pc-pdt-129 {
    padding-top: 129px;
  }
  .u-pc-pdt-130 {
    padding-top: 130px;
  }
  .u-pc-pdt-131 {
    padding-top: 131px;
  }
  .u-pc-pdt-132 {
    padding-top: 132px;
  }
  .u-pc-pdt-133 {
    padding-top: 133px;
  }
  .u-pc-pdt-134 {
    padding-top: 134px;
  }
  .u-pc-pdt-135 {
    padding-top: 135px;
  }
  .u-pc-pdt-136 {
    padding-top: 136px;
  }
  .u-pc-pdt-137 {
    padding-top: 137px;
  }
  .u-pc-pdt-138 {
    padding-top: 138px;
  }
  .u-pc-pdt-139 {
    padding-top: 139px;
  }
  .u-pc-pdt-140 {
    padding-top: 140px;
  }
  .u-pc-pdt-141 {
    padding-top: 141px;
  }
  .u-pc-pdt-142 {
    padding-top: 142px;
  }
  .u-pc-pdt-143 {
    padding-top: 143px;
  }
  .u-pc-pdt-144 {
    padding-top: 144px;
  }
  .u-pc-pdt-145 {
    padding-top: 145px;
  }
  .u-pc-pdt-146 {
    padding-top: 146px;
  }
  .u-pc-pdt-147 {
    padding-top: 147px;
  }
  .u-pc-pdt-148 {
    padding-top: 148px;
  }
  .u-pc-pdt-149 {
    padding-top: 149px;
  }
  .u-pc-pdt-150 {
    padding-top: 150px;
  }
  .u-pc-pdt-151 {
    padding-top: 151px;
  }
  .u-pc-pdt-152 {
    padding-top: 152px;
  }
  .u-pc-pdt-153 {
    padding-top: 153px;
  }
  .u-pc-pdt-154 {
    padding-top: 154px;
  }
  .u-pc-pdt-155 {
    padding-top: 155px;
  }
  .u-pc-pdt-156 {
    padding-top: 156px;
  }
  .u-pc-pdt-157 {
    padding-top: 157px;
  }
  .u-pc-pdt-158 {
    padding-top: 158px;
  }
  .u-pc-pdt-159 {
    padding-top: 159px;
  }
  .u-pc-pdt-160 {
    padding-top: 160px;
  }
  .u-pc-pdt-161 {
    padding-top: 161px;
  }
  .u-pc-pdt-162 {
    padding-top: 162px;
  }
  .u-pc-pdt-163 {
    padding-top: 163px;
  }
  .u-pc-pdt-164 {
    padding-top: 164px;
  }
  .u-pc-pdt-165 {
    padding-top: 165px;
  }
  .u-pc-pdt-166 {
    padding-top: 166px;
  }
  .u-pc-pdt-167 {
    padding-top: 167px;
  }
  .u-pc-pdt-168 {
    padding-top: 168px;
  }
  .u-pc-pdt-169 {
    padding-top: 169px;
  }
  .u-pc-pdt-170 {
    padding-top: 170px;
  }
  .u-pc-pdt-171 {
    padding-top: 171px;
  }
  .u-pc-pdt-172 {
    padding-top: 172px;
  }
  .u-pc-pdt-173 {
    padding-top: 173px;
  }
  .u-pc-pdt-174 {
    padding-top: 174px;
  }
  .u-pc-pdt-175 {
    padding-top: 175px;
  }
  .u-pc-pdt-176 {
    padding-top: 176px;
  }
  .u-pc-pdt-177 {
    padding-top: 177px;
  }
  .u-pc-pdt-178 {
    padding-top: 178px;
  }
  .u-pc-pdt-179 {
    padding-top: 179px;
  }
  .u-pc-pdt-180 {
    padding-top: 180px;
  }
  .u-pc-pdt-181 {
    padding-top: 181px;
  }
  .u-pc-pdt-182 {
    padding-top: 182px;
  }
  .u-pc-pdt-183 {
    padding-top: 183px;
  }
  .u-pc-pdt-184 {
    padding-top: 184px;
  }
  .u-pc-pdt-185 {
    padding-top: 185px;
  }
  .u-pc-pdt-186 {
    padding-top: 186px;
  }
  .u-pc-pdt-187 {
    padding-top: 187px;
  }
  .u-pc-pdt-188 {
    padding-top: 188px;
  }
  .u-pc-pdt-189 {
    padding-top: 189px;
  }
  .u-pc-pdt-190 {
    padding-top: 190px;
  }
  .u-pc-pdt-191 {
    padding-top: 191px;
  }
  .u-pc-pdt-192 {
    padding-top: 192px;
  }
  .u-pc-pdt-193 {
    padding-top: 193px;
  }
  .u-pc-pdt-194 {
    padding-top: 194px;
  }
  .u-pc-pdt-195 {
    padding-top: 195px;
  }
  .u-pc-pdt-196 {
    padding-top: 196px;
  }
  .u-pc-pdt-197 {
    padding-top: 197px;
  }
  .u-pc-pdt-198 {
    padding-top: 198px;
  }
  .u-pc-pdt-199 {
    padding-top: 199px;
  }
  .u-pc-pdt-200 {
    padding-top: 200px;
  }
  .u-pc-pdb-0 {
    padding-bottom: 0px;
  }
  .u-pc-pdb-1 {
    padding-bottom: 1px;
  }
  .u-pc-pdb-2 {
    padding-bottom: 2px;
  }
  .u-pc-pdb-3 {
    padding-bottom: 3px;
  }
  .u-pc-pdb-4 {
    padding-bottom: 4px;
  }
  .u-pc-pdb-5 {
    padding-bottom: 5px;
  }
  .u-pc-pdb-6 {
    padding-bottom: 6px;
  }
  .u-pc-pdb-7 {
    padding-bottom: 7px;
  }
  .u-pc-pdb-8 {
    padding-bottom: 8px;
  }
  .u-pc-pdb-9 {
    padding-bottom: 9px;
  }
  .u-pc-pdb-10 {
    padding-bottom: 10px;
  }
  .u-pc-pdb-11 {
    padding-bottom: 11px;
  }
  .u-pc-pdb-12 {
    padding-bottom: 12px;
  }
  .u-pc-pdb-13 {
    padding-bottom: 13px;
  }
  .u-pc-pdb-14 {
    padding-bottom: 14px;
  }
  .u-pc-pdb-15 {
    padding-bottom: 15px;
  }
  .u-pc-pdb-16 {
    padding-bottom: 16px;
  }
  .u-pc-pdb-17 {
    padding-bottom: 17px;
  }
  .u-pc-pdb-18 {
    padding-bottom: 18px;
  }
  .u-pc-pdb-19 {
    padding-bottom: 19px;
  }
  .u-pc-pdb-20 {
    padding-bottom: 20px;
  }
  .u-pc-pdb-21 {
    padding-bottom: 21px;
  }
  .u-pc-pdb-22 {
    padding-bottom: 22px;
  }
  .u-pc-pdb-23 {
    padding-bottom: 23px;
  }
  .u-pc-pdb-24 {
    padding-bottom: 24px;
  }
  .u-pc-pdb-25 {
    padding-bottom: 25px;
  }
  .u-pc-pdb-26 {
    padding-bottom: 26px;
  }
  .u-pc-pdb-27 {
    padding-bottom: 27px;
  }
  .u-pc-pdb-28 {
    padding-bottom: 28px;
  }
  .u-pc-pdb-29 {
    padding-bottom: 29px;
  }
  .u-pc-pdb-30 {
    padding-bottom: 30px;
  }
  .u-pc-pdb-31 {
    padding-bottom: 31px;
  }
  .u-pc-pdb-32 {
    padding-bottom: 32px;
  }
  .u-pc-pdb-33 {
    padding-bottom: 33px;
  }
  .u-pc-pdb-34 {
    padding-bottom: 34px;
  }
  .u-pc-pdb-35 {
    padding-bottom: 35px;
  }
  .u-pc-pdb-36 {
    padding-bottom: 36px;
  }
  .u-pc-pdb-37 {
    padding-bottom: 37px;
  }
  .u-pc-pdb-38 {
    padding-bottom: 38px;
  }
  .u-pc-pdb-39 {
    padding-bottom: 39px;
  }
  .u-pc-pdb-40 {
    padding-bottom: 40px;
  }
  .u-pc-pdb-41 {
    padding-bottom: 41px;
  }
  .u-pc-pdb-42 {
    padding-bottom: 42px;
  }
  .u-pc-pdb-43 {
    padding-bottom: 43px;
  }
  .u-pc-pdb-44 {
    padding-bottom: 44px;
  }
  .u-pc-pdb-45 {
    padding-bottom: 45px;
  }
  .u-pc-pdb-46 {
    padding-bottom: 46px;
  }
  .u-pc-pdb-47 {
    padding-bottom: 47px;
  }
  .u-pc-pdb-48 {
    padding-bottom: 48px;
  }
  .u-pc-pdb-49 {
    padding-bottom: 49px;
  }
  .u-pc-pdb-50 {
    padding-bottom: 50px;
  }
  .u-pc-pdb-51 {
    padding-bottom: 51px;
  }
  .u-pc-pdb-52 {
    padding-bottom: 52px;
  }
  .u-pc-pdb-53 {
    padding-bottom: 53px;
  }
  .u-pc-pdb-54 {
    padding-bottom: 54px;
  }
  .u-pc-pdb-55 {
    padding-bottom: 55px;
  }
  .u-pc-pdb-56 {
    padding-bottom: 56px;
  }
  .u-pc-pdb-57 {
    padding-bottom: 57px;
  }
  .u-pc-pdb-58 {
    padding-bottom: 58px;
  }
  .u-pc-pdb-59 {
    padding-bottom: 59px;
  }
  .u-pc-pdb-60 {
    padding-bottom: 60px;
  }
  .u-pc-pdb-61 {
    padding-bottom: 61px;
  }
  .u-pc-pdb-62 {
    padding-bottom: 62px;
  }
  .u-pc-pdb-63 {
    padding-bottom: 63px;
  }
  .u-pc-pdb-64 {
    padding-bottom: 64px;
  }
  .u-pc-pdb-65 {
    padding-bottom: 65px;
  }
  .u-pc-pdb-66 {
    padding-bottom: 66px;
  }
  .u-pc-pdb-67 {
    padding-bottom: 67px;
  }
  .u-pc-pdb-68 {
    padding-bottom: 68px;
  }
  .u-pc-pdb-69 {
    padding-bottom: 69px;
  }
  .u-pc-pdb-70 {
    padding-bottom: 70px;
  }
  .u-pc-pdb-71 {
    padding-bottom: 71px;
  }
  .u-pc-pdb-72 {
    padding-bottom: 72px;
  }
  .u-pc-pdb-73 {
    padding-bottom: 73px;
  }
  .u-pc-pdb-74 {
    padding-bottom: 74px;
  }
  .u-pc-pdb-75 {
    padding-bottom: 75px;
  }
  .u-pc-pdb-76 {
    padding-bottom: 76px;
  }
  .u-pc-pdb-77 {
    padding-bottom: 77px;
  }
  .u-pc-pdb-78 {
    padding-bottom: 78px;
  }
  .u-pc-pdb-79 {
    padding-bottom: 79px;
  }
  .u-pc-pdb-80 {
    padding-bottom: 80px;
  }
  .u-pc-pdb-81 {
    padding-bottom: 81px;
  }
  .u-pc-pdb-82 {
    padding-bottom: 82px;
  }
  .u-pc-pdb-83 {
    padding-bottom: 83px;
  }
  .u-pc-pdb-84 {
    padding-bottom: 84px;
  }
  .u-pc-pdb-85 {
    padding-bottom: 85px;
  }
  .u-pc-pdb-86 {
    padding-bottom: 86px;
  }
  .u-pc-pdb-87 {
    padding-bottom: 87px;
  }
  .u-pc-pdb-88 {
    padding-bottom: 88px;
  }
  .u-pc-pdb-89 {
    padding-bottom: 89px;
  }
  .u-pc-pdb-90 {
    padding-bottom: 90px;
  }
  .u-pc-pdb-91 {
    padding-bottom: 91px;
  }
  .u-pc-pdb-92 {
    padding-bottom: 92px;
  }
  .u-pc-pdb-93 {
    padding-bottom: 93px;
  }
  .u-pc-pdb-94 {
    padding-bottom: 94px;
  }
  .u-pc-pdb-95 {
    padding-bottom: 95px;
  }
  .u-pc-pdb-96 {
    padding-bottom: 96px;
  }
  .u-pc-pdb-97 {
    padding-bottom: 97px;
  }
  .u-pc-pdb-98 {
    padding-bottom: 98px;
  }
  .u-pc-pdb-99 {
    padding-bottom: 99px;
  }
  .u-pc-pdb-100 {
    padding-bottom: 100px;
  }
  .u-pc-pdb-101 {
    padding-bottom: 101px;
  }
  .u-pc-pdb-102 {
    padding-bottom: 102px;
  }
  .u-pc-pdb-103 {
    padding-bottom: 103px;
  }
  .u-pc-pdb-104 {
    padding-bottom: 104px;
  }
  .u-pc-pdb-105 {
    padding-bottom: 105px;
  }
  .u-pc-pdb-106 {
    padding-bottom: 106px;
  }
  .u-pc-pdb-107 {
    padding-bottom: 107px;
  }
  .u-pc-pdb-108 {
    padding-bottom: 108px;
  }
  .u-pc-pdb-109 {
    padding-bottom: 109px;
  }
  .u-pc-pdb-110 {
    padding-bottom: 110px;
  }
  .u-pc-pdb-111 {
    padding-bottom: 111px;
  }
  .u-pc-pdb-112 {
    padding-bottom: 112px;
  }
  .u-pc-pdb-113 {
    padding-bottom: 113px;
  }
  .u-pc-pdb-114 {
    padding-bottom: 114px;
  }
  .u-pc-pdb-115 {
    padding-bottom: 115px;
  }
  .u-pc-pdb-116 {
    padding-bottom: 116px;
  }
  .u-pc-pdb-117 {
    padding-bottom: 117px;
  }
  .u-pc-pdb-118 {
    padding-bottom: 118px;
  }
  .u-pc-pdb-119 {
    padding-bottom: 119px;
  }
  .u-pc-pdb-120 {
    padding-bottom: 120px;
  }
  .u-pc-pdb-121 {
    padding-bottom: 121px;
  }
  .u-pc-pdb-122 {
    padding-bottom: 122px;
  }
  .u-pc-pdb-123 {
    padding-bottom: 123px;
  }
  .u-pc-pdb-124 {
    padding-bottom: 124px;
  }
  .u-pc-pdb-125 {
    padding-bottom: 125px;
  }
  .u-pc-pdb-126 {
    padding-bottom: 126px;
  }
  .u-pc-pdb-127 {
    padding-bottom: 127px;
  }
  .u-pc-pdb-128 {
    padding-bottom: 128px;
  }
  .u-pc-pdb-129 {
    padding-bottom: 129px;
  }
  .u-pc-pdb-130 {
    padding-bottom: 130px;
  }
  .u-pc-pdb-131 {
    padding-bottom: 131px;
  }
  .u-pc-pdb-132 {
    padding-bottom: 132px;
  }
  .u-pc-pdb-133 {
    padding-bottom: 133px;
  }
  .u-pc-pdb-134 {
    padding-bottom: 134px;
  }
  .u-pc-pdb-135 {
    padding-bottom: 135px;
  }
  .u-pc-pdb-136 {
    padding-bottom: 136px;
  }
  .u-pc-pdb-137 {
    padding-bottom: 137px;
  }
  .u-pc-pdb-138 {
    padding-bottom: 138px;
  }
  .u-pc-pdb-139 {
    padding-bottom: 139px;
  }
  .u-pc-pdb-140 {
    padding-bottom: 140px;
  }
  .u-pc-pdb-141 {
    padding-bottom: 141px;
  }
  .u-pc-pdb-142 {
    padding-bottom: 142px;
  }
  .u-pc-pdb-143 {
    padding-bottom: 143px;
  }
  .u-pc-pdb-144 {
    padding-bottom: 144px;
  }
  .u-pc-pdb-145 {
    padding-bottom: 145px;
  }
  .u-pc-pdb-146 {
    padding-bottom: 146px;
  }
  .u-pc-pdb-147 {
    padding-bottom: 147px;
  }
  .u-pc-pdb-148 {
    padding-bottom: 148px;
  }
  .u-pc-pdb-149 {
    padding-bottom: 149px;
  }
  .u-pc-pdb-150 {
    padding-bottom: 150px;
  }
  .u-pc-pdb-151 {
    padding-bottom: 151px;
  }
  .u-pc-pdb-152 {
    padding-bottom: 152px;
  }
  .u-pc-pdb-153 {
    padding-bottom: 153px;
  }
  .u-pc-pdb-154 {
    padding-bottom: 154px;
  }
  .u-pc-pdb-155 {
    padding-bottom: 155px;
  }
  .u-pc-pdb-156 {
    padding-bottom: 156px;
  }
  .u-pc-pdb-157 {
    padding-bottom: 157px;
  }
  .u-pc-pdb-158 {
    padding-bottom: 158px;
  }
  .u-pc-pdb-159 {
    padding-bottom: 159px;
  }
  .u-pc-pdb-160 {
    padding-bottom: 160px;
  }
  .u-pc-pdb-161 {
    padding-bottom: 161px;
  }
  .u-pc-pdb-162 {
    padding-bottom: 162px;
  }
  .u-pc-pdb-163 {
    padding-bottom: 163px;
  }
  .u-pc-pdb-164 {
    padding-bottom: 164px;
  }
  .u-pc-pdb-165 {
    padding-bottom: 165px;
  }
  .u-pc-pdb-166 {
    padding-bottom: 166px;
  }
  .u-pc-pdb-167 {
    padding-bottom: 167px;
  }
  .u-pc-pdb-168 {
    padding-bottom: 168px;
  }
  .u-pc-pdb-169 {
    padding-bottom: 169px;
  }
  .u-pc-pdb-170 {
    padding-bottom: 170px;
  }
  .u-pc-pdb-171 {
    padding-bottom: 171px;
  }
  .u-pc-pdb-172 {
    padding-bottom: 172px;
  }
  .u-pc-pdb-173 {
    padding-bottom: 173px;
  }
  .u-pc-pdb-174 {
    padding-bottom: 174px;
  }
  .u-pc-pdb-175 {
    padding-bottom: 175px;
  }
  .u-pc-pdb-176 {
    padding-bottom: 176px;
  }
  .u-pc-pdb-177 {
    padding-bottom: 177px;
  }
  .u-pc-pdb-178 {
    padding-bottom: 178px;
  }
  .u-pc-pdb-179 {
    padding-bottom: 179px;
  }
  .u-pc-pdb-180 {
    padding-bottom: 180px;
  }
  .u-pc-pdb-181 {
    padding-bottom: 181px;
  }
  .u-pc-pdb-182 {
    padding-bottom: 182px;
  }
  .u-pc-pdb-183 {
    padding-bottom: 183px;
  }
  .u-pc-pdb-184 {
    padding-bottom: 184px;
  }
  .u-pc-pdb-185 {
    padding-bottom: 185px;
  }
  .u-pc-pdb-186 {
    padding-bottom: 186px;
  }
  .u-pc-pdb-187 {
    padding-bottom: 187px;
  }
  .u-pc-pdb-188 {
    padding-bottom: 188px;
  }
  .u-pc-pdb-189 {
    padding-bottom: 189px;
  }
  .u-pc-pdb-190 {
    padding-bottom: 190px;
  }
  .u-pc-pdb-191 {
    padding-bottom: 191px;
  }
  .u-pc-pdb-192 {
    padding-bottom: 192px;
  }
  .u-pc-pdb-193 {
    padding-bottom: 193px;
  }
  .u-pc-pdb-194 {
    padding-bottom: 194px;
  }
  .u-pc-pdb-195 {
    padding-bottom: 195px;
  }
  .u-pc-pdb-196 {
    padding-bottom: 196px;
  }
  .u-pc-pdb-197 {
    padding-bottom: 197px;
  }
  .u-pc-pdb-198 {
    padding-bottom: 198px;
  }
  .u-pc-pdb-199 {
    padding-bottom: 199px;
  }
  .u-pc-pdb-200 {
    padding-bottom: 200px;
  }
  .u-pc-pdr-0 {
    padding-right: 0px;
  }
  .u-pc-pdr-1 {
    padding-right: 1px;
  }
  .u-pc-pdr-2 {
    padding-right: 2px;
  }
  .u-pc-pdr-3 {
    padding-right: 3px;
  }
  .u-pc-pdr-4 {
    padding-right: 4px;
  }
  .u-pc-pdr-5 {
    padding-right: 5px;
  }
  .u-pc-pdr-6 {
    padding-right: 6px;
  }
  .u-pc-pdr-7 {
    padding-right: 7px;
  }
  .u-pc-pdr-8 {
    padding-right: 8px;
  }
  .u-pc-pdr-9 {
    padding-right: 9px;
  }
  .u-pc-pdr-10 {
    padding-right: 10px;
  }
  .u-pc-pdr-11 {
    padding-right: 11px;
  }
  .u-pc-pdr-12 {
    padding-right: 12px;
  }
  .u-pc-pdr-13 {
    padding-right: 13px;
  }
  .u-pc-pdr-14 {
    padding-right: 14px;
  }
  .u-pc-pdr-15 {
    padding-right: 15px;
  }
  .u-pc-pdr-16 {
    padding-right: 16px;
  }
  .u-pc-pdr-17 {
    padding-right: 17px;
  }
  .u-pc-pdr-18 {
    padding-right: 18px;
  }
  .u-pc-pdr-19 {
    padding-right: 19px;
  }
  .u-pc-pdr-20 {
    padding-right: 20px;
  }
  .u-pc-pdr-21 {
    padding-right: 21px;
  }
  .u-pc-pdr-22 {
    padding-right: 22px;
  }
  .u-pc-pdr-23 {
    padding-right: 23px;
  }
  .u-pc-pdr-24 {
    padding-right: 24px;
  }
  .u-pc-pdr-25 {
    padding-right: 25px;
  }
  .u-pc-pdr-26 {
    padding-right: 26px;
  }
  .u-pc-pdr-27 {
    padding-right: 27px;
  }
  .u-pc-pdr-28 {
    padding-right: 28px;
  }
  .u-pc-pdr-29 {
    padding-right: 29px;
  }
  .u-pc-pdr-30 {
    padding-right: 30px;
  }
  .u-pc-pdr-31 {
    padding-right: 31px;
  }
  .u-pc-pdr-32 {
    padding-right: 32px;
  }
  .u-pc-pdr-33 {
    padding-right: 33px;
  }
  .u-pc-pdr-34 {
    padding-right: 34px;
  }
  .u-pc-pdr-35 {
    padding-right: 35px;
  }
  .u-pc-pdr-36 {
    padding-right: 36px;
  }
  .u-pc-pdr-37 {
    padding-right: 37px;
  }
  .u-pc-pdr-38 {
    padding-right: 38px;
  }
  .u-pc-pdr-39 {
    padding-right: 39px;
  }
  .u-pc-pdr-40 {
    padding-right: 40px;
  }
  .u-pc-pdr-41 {
    padding-right: 41px;
  }
  .u-pc-pdr-42 {
    padding-right: 42px;
  }
  .u-pc-pdr-43 {
    padding-right: 43px;
  }
  .u-pc-pdr-44 {
    padding-right: 44px;
  }
  .u-pc-pdr-45 {
    padding-right: 45px;
  }
  .u-pc-pdr-46 {
    padding-right: 46px;
  }
  .u-pc-pdr-47 {
    padding-right: 47px;
  }
  .u-pc-pdr-48 {
    padding-right: 48px;
  }
  .u-pc-pdr-49 {
    padding-right: 49px;
  }
  .u-pc-pdr-50 {
    padding-right: 50px;
  }
  .u-pc-pdr-51 {
    padding-right: 51px;
  }
  .u-pc-pdr-52 {
    padding-right: 52px;
  }
  .u-pc-pdr-53 {
    padding-right: 53px;
  }
  .u-pc-pdr-54 {
    padding-right: 54px;
  }
  .u-pc-pdr-55 {
    padding-right: 55px;
  }
  .u-pc-pdr-56 {
    padding-right: 56px;
  }
  .u-pc-pdr-57 {
    padding-right: 57px;
  }
  .u-pc-pdr-58 {
    padding-right: 58px;
  }
  .u-pc-pdr-59 {
    padding-right: 59px;
  }
  .u-pc-pdr-60 {
    padding-right: 60px;
  }
  .u-pc-pdr-61 {
    padding-right: 61px;
  }
  .u-pc-pdr-62 {
    padding-right: 62px;
  }
  .u-pc-pdr-63 {
    padding-right: 63px;
  }
  .u-pc-pdr-64 {
    padding-right: 64px;
  }
  .u-pc-pdr-65 {
    padding-right: 65px;
  }
  .u-pc-pdr-66 {
    padding-right: 66px;
  }
  .u-pc-pdr-67 {
    padding-right: 67px;
  }
  .u-pc-pdr-68 {
    padding-right: 68px;
  }
  .u-pc-pdr-69 {
    padding-right: 69px;
  }
  .u-pc-pdr-70 {
    padding-right: 70px;
  }
  .u-pc-pdr-71 {
    padding-right: 71px;
  }
  .u-pc-pdr-72 {
    padding-right: 72px;
  }
  .u-pc-pdr-73 {
    padding-right: 73px;
  }
  .u-pc-pdr-74 {
    padding-right: 74px;
  }
  .u-pc-pdr-75 {
    padding-right: 75px;
  }
  .u-pc-pdr-76 {
    padding-right: 76px;
  }
  .u-pc-pdr-77 {
    padding-right: 77px;
  }
  .u-pc-pdr-78 {
    padding-right: 78px;
  }
  .u-pc-pdr-79 {
    padding-right: 79px;
  }
  .u-pc-pdr-80 {
    padding-right: 80px;
  }
  .u-pc-pdr-81 {
    padding-right: 81px;
  }
  .u-pc-pdr-82 {
    padding-right: 82px;
  }
  .u-pc-pdr-83 {
    padding-right: 83px;
  }
  .u-pc-pdr-84 {
    padding-right: 84px;
  }
  .u-pc-pdr-85 {
    padding-right: 85px;
  }
  .u-pc-pdr-86 {
    padding-right: 86px;
  }
  .u-pc-pdr-87 {
    padding-right: 87px;
  }
  .u-pc-pdr-88 {
    padding-right: 88px;
  }
  .u-pc-pdr-89 {
    padding-right: 89px;
  }
  .u-pc-pdr-90 {
    padding-right: 90px;
  }
  .u-pc-pdr-91 {
    padding-right: 91px;
  }
  .u-pc-pdr-92 {
    padding-right: 92px;
  }
  .u-pc-pdr-93 {
    padding-right: 93px;
  }
  .u-pc-pdr-94 {
    padding-right: 94px;
  }
  .u-pc-pdr-95 {
    padding-right: 95px;
  }
  .u-pc-pdr-96 {
    padding-right: 96px;
  }
  .u-pc-pdr-97 {
    padding-right: 97px;
  }
  .u-pc-pdr-98 {
    padding-right: 98px;
  }
  .u-pc-pdr-99 {
    padding-right: 99px;
  }
  .u-pc-pdr-100 {
    padding-right: 100px;
  }
  .u-pc-pdr-101 {
    padding-right: 101px;
  }
  .u-pc-pdr-102 {
    padding-right: 102px;
  }
  .u-pc-pdr-103 {
    padding-right: 103px;
  }
  .u-pc-pdr-104 {
    padding-right: 104px;
  }
  .u-pc-pdr-105 {
    padding-right: 105px;
  }
  .u-pc-pdr-106 {
    padding-right: 106px;
  }
  .u-pc-pdr-107 {
    padding-right: 107px;
  }
  .u-pc-pdr-108 {
    padding-right: 108px;
  }
  .u-pc-pdr-109 {
    padding-right: 109px;
  }
  .u-pc-pdr-110 {
    padding-right: 110px;
  }
  .u-pc-pdr-111 {
    padding-right: 111px;
  }
  .u-pc-pdr-112 {
    padding-right: 112px;
  }
  .u-pc-pdr-113 {
    padding-right: 113px;
  }
  .u-pc-pdr-114 {
    padding-right: 114px;
  }
  .u-pc-pdr-115 {
    padding-right: 115px;
  }
  .u-pc-pdr-116 {
    padding-right: 116px;
  }
  .u-pc-pdr-117 {
    padding-right: 117px;
  }
  .u-pc-pdr-118 {
    padding-right: 118px;
  }
  .u-pc-pdr-119 {
    padding-right: 119px;
  }
  .u-pc-pdr-120 {
    padding-right: 120px;
  }
  .u-pc-pdr-121 {
    padding-right: 121px;
  }
  .u-pc-pdr-122 {
    padding-right: 122px;
  }
  .u-pc-pdr-123 {
    padding-right: 123px;
  }
  .u-pc-pdr-124 {
    padding-right: 124px;
  }
  .u-pc-pdr-125 {
    padding-right: 125px;
  }
  .u-pc-pdr-126 {
    padding-right: 126px;
  }
  .u-pc-pdr-127 {
    padding-right: 127px;
  }
  .u-pc-pdr-128 {
    padding-right: 128px;
  }
  .u-pc-pdr-129 {
    padding-right: 129px;
  }
  .u-pc-pdr-130 {
    padding-right: 130px;
  }
  .u-pc-pdr-131 {
    padding-right: 131px;
  }
  .u-pc-pdr-132 {
    padding-right: 132px;
  }
  .u-pc-pdr-133 {
    padding-right: 133px;
  }
  .u-pc-pdr-134 {
    padding-right: 134px;
  }
  .u-pc-pdr-135 {
    padding-right: 135px;
  }
  .u-pc-pdr-136 {
    padding-right: 136px;
  }
  .u-pc-pdr-137 {
    padding-right: 137px;
  }
  .u-pc-pdr-138 {
    padding-right: 138px;
  }
  .u-pc-pdr-139 {
    padding-right: 139px;
  }
  .u-pc-pdr-140 {
    padding-right: 140px;
  }
  .u-pc-pdr-141 {
    padding-right: 141px;
  }
  .u-pc-pdr-142 {
    padding-right: 142px;
  }
  .u-pc-pdr-143 {
    padding-right: 143px;
  }
  .u-pc-pdr-144 {
    padding-right: 144px;
  }
  .u-pc-pdr-145 {
    padding-right: 145px;
  }
  .u-pc-pdr-146 {
    padding-right: 146px;
  }
  .u-pc-pdr-147 {
    padding-right: 147px;
  }
  .u-pc-pdr-148 {
    padding-right: 148px;
  }
  .u-pc-pdr-149 {
    padding-right: 149px;
  }
  .u-pc-pdr-150 {
    padding-right: 150px;
  }
  .u-pc-pdr-151 {
    padding-right: 151px;
  }
  .u-pc-pdr-152 {
    padding-right: 152px;
  }
  .u-pc-pdr-153 {
    padding-right: 153px;
  }
  .u-pc-pdr-154 {
    padding-right: 154px;
  }
  .u-pc-pdr-155 {
    padding-right: 155px;
  }
  .u-pc-pdr-156 {
    padding-right: 156px;
  }
  .u-pc-pdr-157 {
    padding-right: 157px;
  }
  .u-pc-pdr-158 {
    padding-right: 158px;
  }
  .u-pc-pdr-159 {
    padding-right: 159px;
  }
  .u-pc-pdr-160 {
    padding-right: 160px;
  }
  .u-pc-pdr-161 {
    padding-right: 161px;
  }
  .u-pc-pdr-162 {
    padding-right: 162px;
  }
  .u-pc-pdr-163 {
    padding-right: 163px;
  }
  .u-pc-pdr-164 {
    padding-right: 164px;
  }
  .u-pc-pdr-165 {
    padding-right: 165px;
  }
  .u-pc-pdr-166 {
    padding-right: 166px;
  }
  .u-pc-pdr-167 {
    padding-right: 167px;
  }
  .u-pc-pdr-168 {
    padding-right: 168px;
  }
  .u-pc-pdr-169 {
    padding-right: 169px;
  }
  .u-pc-pdr-170 {
    padding-right: 170px;
  }
  .u-pc-pdr-171 {
    padding-right: 171px;
  }
  .u-pc-pdr-172 {
    padding-right: 172px;
  }
  .u-pc-pdr-173 {
    padding-right: 173px;
  }
  .u-pc-pdr-174 {
    padding-right: 174px;
  }
  .u-pc-pdr-175 {
    padding-right: 175px;
  }
  .u-pc-pdr-176 {
    padding-right: 176px;
  }
  .u-pc-pdr-177 {
    padding-right: 177px;
  }
  .u-pc-pdr-178 {
    padding-right: 178px;
  }
  .u-pc-pdr-179 {
    padding-right: 179px;
  }
  .u-pc-pdr-180 {
    padding-right: 180px;
  }
  .u-pc-pdr-181 {
    padding-right: 181px;
  }
  .u-pc-pdr-182 {
    padding-right: 182px;
  }
  .u-pc-pdr-183 {
    padding-right: 183px;
  }
  .u-pc-pdr-184 {
    padding-right: 184px;
  }
  .u-pc-pdr-185 {
    padding-right: 185px;
  }
  .u-pc-pdr-186 {
    padding-right: 186px;
  }
  .u-pc-pdr-187 {
    padding-right: 187px;
  }
  .u-pc-pdr-188 {
    padding-right: 188px;
  }
  .u-pc-pdr-189 {
    padding-right: 189px;
  }
  .u-pc-pdr-190 {
    padding-right: 190px;
  }
  .u-pc-pdr-191 {
    padding-right: 191px;
  }
  .u-pc-pdr-192 {
    padding-right: 192px;
  }
  .u-pc-pdr-193 {
    padding-right: 193px;
  }
  .u-pc-pdr-194 {
    padding-right: 194px;
  }
  .u-pc-pdr-195 {
    padding-right: 195px;
  }
  .u-pc-pdr-196 {
    padding-right: 196px;
  }
  .u-pc-pdr-197 {
    padding-right: 197px;
  }
  .u-pc-pdr-198 {
    padding-right: 198px;
  }
  .u-pc-pdr-199 {
    padding-right: 199px;
  }
  .u-pc-pdr-200 {
    padding-right: 200px;
  }
  .u-pc-pdl-0 {
    padding-left: 0px;
  }
  .u-pc-pdl-1 {
    padding-left: 1px;
  }
  .u-pc-pdl-2 {
    padding-left: 2px;
  }
  .u-pc-pdl-3 {
    padding-left: 3px;
  }
  .u-pc-pdl-4 {
    padding-left: 4px;
  }
  .u-pc-pdl-5 {
    padding-left: 5px;
  }
  .u-pc-pdl-6 {
    padding-left: 6px;
  }
  .u-pc-pdl-7 {
    padding-left: 7px;
  }
  .u-pc-pdl-8 {
    padding-left: 8px;
  }
  .u-pc-pdl-9 {
    padding-left: 9px;
  }
  .u-pc-pdl-10 {
    padding-left: 10px;
  }
  .u-pc-pdl-11 {
    padding-left: 11px;
  }
  .u-pc-pdl-12 {
    padding-left: 12px;
  }
  .u-pc-pdl-13 {
    padding-left: 13px;
  }
  .u-pc-pdl-14 {
    padding-left: 14px;
  }
  .u-pc-pdl-15 {
    padding-left: 15px;
  }
  .u-pc-pdl-16 {
    padding-left: 16px;
  }
  .u-pc-pdl-17 {
    padding-left: 17px;
  }
  .u-pc-pdl-18 {
    padding-left: 18px;
  }
  .u-pc-pdl-19 {
    padding-left: 19px;
  }
  .u-pc-pdl-20 {
    padding-left: 20px;
  }
  .u-pc-pdl-21 {
    padding-left: 21px;
  }
  .u-pc-pdl-22 {
    padding-left: 22px;
  }
  .u-pc-pdl-23 {
    padding-left: 23px;
  }
  .u-pc-pdl-24 {
    padding-left: 24px;
  }
  .u-pc-pdl-25 {
    padding-left: 25px;
  }
  .u-pc-pdl-26 {
    padding-left: 26px;
  }
  .u-pc-pdl-27 {
    padding-left: 27px;
  }
  .u-pc-pdl-28 {
    padding-left: 28px;
  }
  .u-pc-pdl-29 {
    padding-left: 29px;
  }
  .u-pc-pdl-30 {
    padding-left: 30px;
  }
  .u-pc-pdl-31 {
    padding-left: 31px;
  }
  .u-pc-pdl-32 {
    padding-left: 32px;
  }
  .u-pc-pdl-33 {
    padding-left: 33px;
  }
  .u-pc-pdl-34 {
    padding-left: 34px;
  }
  .u-pc-pdl-35 {
    padding-left: 35px;
  }
  .u-pc-pdl-36 {
    padding-left: 36px;
  }
  .u-pc-pdl-37 {
    padding-left: 37px;
  }
  .u-pc-pdl-38 {
    padding-left: 38px;
  }
  .u-pc-pdl-39 {
    padding-left: 39px;
  }
  .u-pc-pdl-40 {
    padding-left: 40px;
  }
  .u-pc-pdl-41 {
    padding-left: 41px;
  }
  .u-pc-pdl-42 {
    padding-left: 42px;
  }
  .u-pc-pdl-43 {
    padding-left: 43px;
  }
  .u-pc-pdl-44 {
    padding-left: 44px;
  }
  .u-pc-pdl-45 {
    padding-left: 45px;
  }
  .u-pc-pdl-46 {
    padding-left: 46px;
  }
  .u-pc-pdl-47 {
    padding-left: 47px;
  }
  .u-pc-pdl-48 {
    padding-left: 48px;
  }
  .u-pc-pdl-49 {
    padding-left: 49px;
  }
  .u-pc-pdl-50 {
    padding-left: 50px;
  }
  .u-pc-pdl-51 {
    padding-left: 51px;
  }
  .u-pc-pdl-52 {
    padding-left: 52px;
  }
  .u-pc-pdl-53 {
    padding-left: 53px;
  }
  .u-pc-pdl-54 {
    padding-left: 54px;
  }
  .u-pc-pdl-55 {
    padding-left: 55px;
  }
  .u-pc-pdl-56 {
    padding-left: 56px;
  }
  .u-pc-pdl-57 {
    padding-left: 57px;
  }
  .u-pc-pdl-58 {
    padding-left: 58px;
  }
  .u-pc-pdl-59 {
    padding-left: 59px;
  }
  .u-pc-pdl-60 {
    padding-left: 60px;
  }
  .u-pc-pdl-61 {
    padding-left: 61px;
  }
  .u-pc-pdl-62 {
    padding-left: 62px;
  }
  .u-pc-pdl-63 {
    padding-left: 63px;
  }
  .u-pc-pdl-64 {
    padding-left: 64px;
  }
  .u-pc-pdl-65 {
    padding-left: 65px;
  }
  .u-pc-pdl-66 {
    padding-left: 66px;
  }
  .u-pc-pdl-67 {
    padding-left: 67px;
  }
  .u-pc-pdl-68 {
    padding-left: 68px;
  }
  .u-pc-pdl-69 {
    padding-left: 69px;
  }
  .u-pc-pdl-70 {
    padding-left: 70px;
  }
  .u-pc-pdl-71 {
    padding-left: 71px;
  }
  .u-pc-pdl-72 {
    padding-left: 72px;
  }
  .u-pc-pdl-73 {
    padding-left: 73px;
  }
  .u-pc-pdl-74 {
    padding-left: 74px;
  }
  .u-pc-pdl-75 {
    padding-left: 75px;
  }
  .u-pc-pdl-76 {
    padding-left: 76px;
  }
  .u-pc-pdl-77 {
    padding-left: 77px;
  }
  .u-pc-pdl-78 {
    padding-left: 78px;
  }
  .u-pc-pdl-79 {
    padding-left: 79px;
  }
  .u-pc-pdl-80 {
    padding-left: 80px;
  }
  .u-pc-pdl-81 {
    padding-left: 81px;
  }
  .u-pc-pdl-82 {
    padding-left: 82px;
  }
  .u-pc-pdl-83 {
    padding-left: 83px;
  }
  .u-pc-pdl-84 {
    padding-left: 84px;
  }
  .u-pc-pdl-85 {
    padding-left: 85px;
  }
  .u-pc-pdl-86 {
    padding-left: 86px;
  }
  .u-pc-pdl-87 {
    padding-left: 87px;
  }
  .u-pc-pdl-88 {
    padding-left: 88px;
  }
  .u-pc-pdl-89 {
    padding-left: 89px;
  }
  .u-pc-pdl-90 {
    padding-left: 90px;
  }
  .u-pc-pdl-91 {
    padding-left: 91px;
  }
  .u-pc-pdl-92 {
    padding-left: 92px;
  }
  .u-pc-pdl-93 {
    padding-left: 93px;
  }
  .u-pc-pdl-94 {
    padding-left: 94px;
  }
  .u-pc-pdl-95 {
    padding-left: 95px;
  }
  .u-pc-pdl-96 {
    padding-left: 96px;
  }
  .u-pc-pdl-97 {
    padding-left: 97px;
  }
  .u-pc-pdl-98 {
    padding-left: 98px;
  }
  .u-pc-pdl-99 {
    padding-left: 99px;
  }
  .u-pc-pdl-100 {
    padding-left: 100px;
  }
  .u-pc-pdl-101 {
    padding-left: 101px;
  }
  .u-pc-pdl-102 {
    padding-left: 102px;
  }
  .u-pc-pdl-103 {
    padding-left: 103px;
  }
  .u-pc-pdl-104 {
    padding-left: 104px;
  }
  .u-pc-pdl-105 {
    padding-left: 105px;
  }
  .u-pc-pdl-106 {
    padding-left: 106px;
  }
  .u-pc-pdl-107 {
    padding-left: 107px;
  }
  .u-pc-pdl-108 {
    padding-left: 108px;
  }
  .u-pc-pdl-109 {
    padding-left: 109px;
  }
  .u-pc-pdl-110 {
    padding-left: 110px;
  }
  .u-pc-pdl-111 {
    padding-left: 111px;
  }
  .u-pc-pdl-112 {
    padding-left: 112px;
  }
  .u-pc-pdl-113 {
    padding-left: 113px;
  }
  .u-pc-pdl-114 {
    padding-left: 114px;
  }
  .u-pc-pdl-115 {
    padding-left: 115px;
  }
  .u-pc-pdl-116 {
    padding-left: 116px;
  }
  .u-pc-pdl-117 {
    padding-left: 117px;
  }
  .u-pc-pdl-118 {
    padding-left: 118px;
  }
  .u-pc-pdl-119 {
    padding-left: 119px;
  }
  .u-pc-pdl-120 {
    padding-left: 120px;
  }
  .u-pc-pdl-121 {
    padding-left: 121px;
  }
  .u-pc-pdl-122 {
    padding-left: 122px;
  }
  .u-pc-pdl-123 {
    padding-left: 123px;
  }
  .u-pc-pdl-124 {
    padding-left: 124px;
  }
  .u-pc-pdl-125 {
    padding-left: 125px;
  }
  .u-pc-pdl-126 {
    padding-left: 126px;
  }
  .u-pc-pdl-127 {
    padding-left: 127px;
  }
  .u-pc-pdl-128 {
    padding-left: 128px;
  }
  .u-pc-pdl-129 {
    padding-left: 129px;
  }
  .u-pc-pdl-130 {
    padding-left: 130px;
  }
  .u-pc-pdl-131 {
    padding-left: 131px;
  }
  .u-pc-pdl-132 {
    padding-left: 132px;
  }
  .u-pc-pdl-133 {
    padding-left: 133px;
  }
  .u-pc-pdl-134 {
    padding-left: 134px;
  }
  .u-pc-pdl-135 {
    padding-left: 135px;
  }
  .u-pc-pdl-136 {
    padding-left: 136px;
  }
  .u-pc-pdl-137 {
    padding-left: 137px;
  }
  .u-pc-pdl-138 {
    padding-left: 138px;
  }
  .u-pc-pdl-139 {
    padding-left: 139px;
  }
  .u-pc-pdl-140 {
    padding-left: 140px;
  }
  .u-pc-pdl-141 {
    padding-left: 141px;
  }
  .u-pc-pdl-142 {
    padding-left: 142px;
  }
  .u-pc-pdl-143 {
    padding-left: 143px;
  }
  .u-pc-pdl-144 {
    padding-left: 144px;
  }
  .u-pc-pdl-145 {
    padding-left: 145px;
  }
  .u-pc-pdl-146 {
    padding-left: 146px;
  }
  .u-pc-pdl-147 {
    padding-left: 147px;
  }
  .u-pc-pdl-148 {
    padding-left: 148px;
  }
  .u-pc-pdl-149 {
    padding-left: 149px;
  }
  .u-pc-pdl-150 {
    padding-left: 150px;
  }
  .u-pc-pdl-151 {
    padding-left: 151px;
  }
  .u-pc-pdl-152 {
    padding-left: 152px;
  }
  .u-pc-pdl-153 {
    padding-left: 153px;
  }
  .u-pc-pdl-154 {
    padding-left: 154px;
  }
  .u-pc-pdl-155 {
    padding-left: 155px;
  }
  .u-pc-pdl-156 {
    padding-left: 156px;
  }
  .u-pc-pdl-157 {
    padding-left: 157px;
  }
  .u-pc-pdl-158 {
    padding-left: 158px;
  }
  .u-pc-pdl-159 {
    padding-left: 159px;
  }
  .u-pc-pdl-160 {
    padding-left: 160px;
  }
  .u-pc-pdl-161 {
    padding-left: 161px;
  }
  .u-pc-pdl-162 {
    padding-left: 162px;
  }
  .u-pc-pdl-163 {
    padding-left: 163px;
  }
  .u-pc-pdl-164 {
    padding-left: 164px;
  }
  .u-pc-pdl-165 {
    padding-left: 165px;
  }
  .u-pc-pdl-166 {
    padding-left: 166px;
  }
  .u-pc-pdl-167 {
    padding-left: 167px;
  }
  .u-pc-pdl-168 {
    padding-left: 168px;
  }
  .u-pc-pdl-169 {
    padding-left: 169px;
  }
  .u-pc-pdl-170 {
    padding-left: 170px;
  }
  .u-pc-pdl-171 {
    padding-left: 171px;
  }
  .u-pc-pdl-172 {
    padding-left: 172px;
  }
  .u-pc-pdl-173 {
    padding-left: 173px;
  }
  .u-pc-pdl-174 {
    padding-left: 174px;
  }
  .u-pc-pdl-175 {
    padding-left: 175px;
  }
  .u-pc-pdl-176 {
    padding-left: 176px;
  }
  .u-pc-pdl-177 {
    padding-left: 177px;
  }
  .u-pc-pdl-178 {
    padding-left: 178px;
  }
  .u-pc-pdl-179 {
    padding-left: 179px;
  }
  .u-pc-pdl-180 {
    padding-left: 180px;
  }
  .u-pc-pdl-181 {
    padding-left: 181px;
  }
  .u-pc-pdl-182 {
    padding-left: 182px;
  }
  .u-pc-pdl-183 {
    padding-left: 183px;
  }
  .u-pc-pdl-184 {
    padding-left: 184px;
  }
  .u-pc-pdl-185 {
    padding-left: 185px;
  }
  .u-pc-pdl-186 {
    padding-left: 186px;
  }
  .u-pc-pdl-187 {
    padding-left: 187px;
  }
  .u-pc-pdl-188 {
    padding-left: 188px;
  }
  .u-pc-pdl-189 {
    padding-left: 189px;
  }
  .u-pc-pdl-190 {
    padding-left: 190px;
  }
  .u-pc-pdl-191 {
    padding-left: 191px;
  }
  .u-pc-pdl-192 {
    padding-left: 192px;
  }
  .u-pc-pdl-193 {
    padding-left: 193px;
  }
  .u-pc-pdl-194 {
    padding-left: 194px;
  }
  .u-pc-pdl-195 {
    padding-left: 195px;
  }
  .u-pc-pdl-196 {
    padding-left: 196px;
  }
  .u-pc-pdl-197 {
    padding-left: 197px;
  }
  .u-pc-pdl-198 {
    padding-left: 198px;
  }
  .u-pc-pdl-199 {
    padding-left: 199px;
  }
  .u-pc-pdl-200 {
    padding-left: 200px;
  }
}
/* ---------------------------------------------------
  JavaScript
--------------------------------------------------- */
/**
 * アコーディオン
 */
.js-acc > .js-acc-toggle {
  cursor: pointer;
}
.js-acc > .js-acc-submenu {
  display: none;
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) height;
}
.js-acc > .js-acc-submenu.is-acc-open {
  display: block;
}

/**
 * タブ
 */
.js-tab .js-tab-item {
  cursor: pointer;
}
.js-tab .js-tab-content {
  display: none;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) display;
}
.js-tab .js-tab-content.is-active {
  display: block;
}

.js-dress-acc .js-dress-acc-btn {
  cursor: pointer;
}
.js-dress-acc .js-dress-acc-list {
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) height;
}

.js-hall-acc .js-hall-acc-btn {
  cursor: pointer;
}
.js-hall-acc .js-hall-acc-hidden {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-duration: grid-template-rows margin;
}
.js-hall-acc .js-hall-acc-hidden.is-acc-open {
  grid-template-rows: 1fr;
  margin-bottom: 18px;
}
@media screen and (min-width: 1024px) {
  .js-hall-acc .js-hall-acc-hidden.is-acc-open {
    margin-bottom: 30px;
  }
}

/**
 * ポップアップ
 */
.js-popup .js-popup-toggle {
  cursor: pointer;
}

.js-popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-property: opacity visibility;
  will-change: auto;
  z-index: 9989;
}
.js-popup-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
/*# sourceMappingURL=map/style.css.map */