@charset "UTF-8";

/*
Theme Name: Twenty First City
Description: Twenty First City
Version: 1.0
Author: Twenty First City
Author URI: https://www.twentyfirstcity.com/
*/

/*
Foundation
==================================*/
/* =============================================================
    _reset
============================================================= */
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
S html,
body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
input, select {
  vertical-align: middle;
}

/* =============================================================
    _settings
============================================================= */
/* ------------------------
    breakpoint
------------------------ */
/* ------------------------
    color
------------------------ */
/* color base
------------------- */
/* color base
================= */
/* ------------------------
    font
------------------------ */
/* =============================================================
    _base
============================================================= */
html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-size: 1.6em;
  font-family: Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  background-color: #ffffff;
}
@media screen and (max-width:767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

#wrap {
  overflow: hidden;
}

a {
  position: relative;
  text-decoration: none;
  color: #222222;
}
a:hover {
  color: #222222;
}

/*
Layout
==================================*/
/* =============================================================
    _header
============================================================= */
/* ------------------------
    l-header
 ------------------------ */
.l-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: #000000;
  z-index: 999;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  height: 80px;
  margin: auto;
  align-items: center;
}
.l-header__inner h1 {
  width: 50%;
  margin-left: 10px;
}
.l-header__inner nav {
  width: 50%;
  margin-right: 10px;
}
.l-header__inner-list {
  display: flex;
  justify-content: flex-end;
}
.l-header__inner-list li {
  margin-left: 4em;
}
.l-header__inner-list li a {
  color: #ffffff;
  letter-spacing: 0.15rem;
}
.l-header__inner-list li a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 0;
  background-color: #222222;
  transition: all 0.3s ease;
}
.l-header__inner-list li.current a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}
.l-header__inner-list li a:hover {
  color: #ffffff;
}
.l-header__inner-list li a:hover::before {
  width: 100%;
  height: 1px;
  background-color: #ffffff !important;
}

/* スマホメニュー表示
------------------- */
@media screen and (max-width:767px) {
  .l-header h1 > a img {
    width: 250px;
    margin-left: 1em;
  }
  .l-header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75vh;
    background-color: #000000;
    transform: translateY(-100vh);
    transition: all 0.3s;
    z-index: 99;
  }
  .l-header nav.active {
    transform: translateY(0);
  }
  .l-header__inner-list {
    flex-direction: column;
    transform: translateY(100px);
  }
  .l-header__inner-list li {
    margin-left: 2em;
    margin-bottom: 20px;
  }
}

/* ナビメニューボタン
------------------- */
.l-nav-button, .l-top__nav-button {
  display: none;
}
@media screen and (max-width:767px) {
  .l-nav-button, .l-top__nav-button.loaded {
    display: block;
    position: fixed;
    top: 2em;
    right: 15px;
    width: 25px;
    height: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
  }
  .l-nav-button span, .l-top__nav-button span {
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: all 0.3s;
  }
  .l-nav-button span:nth-of-type(1), .l-top__nav-button span:nth-of-type(1) {
    top: 0;
  }
  .l-nav-button span:nth-of-type(2), .l-top__nav-button span:nth-of-type(2) {
    bottom: 0;
  }
  .l-nav-button.active span:nth-of-type(1), .l-top__nav-button.active span:nth-of-type(1) {
    transform: translate3d(0, 9.5px, 0) rotate(-45deg);
  }
  .l-nav-button.active span:nth-of-type(2), .l-top__nav-button.active span:nth-of-type(2) {
    transform: translate3d(0, -9.5px, 0) rotate(45deg);
  }
}

/* =============================================================
    _footer
============================================================= */
/* ------------------------
    l-footer
 ------------------------ */
.l-footer {
  position: sticky;
  bottom: 0;
  width: 100%;
}
.l-footer__cp {
  width: 90%;
  margin: auto;
  color: #cccccc;
  font-weight: 100;
  vertical-align: middle;
}
.l-footer__cp-about {
    width: 90%;
    margin: auto;
    color: #cccccc;
    font-weight: 100;
    vertical-align: middle;
  }
.l-footer__cp-about::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 90%;
    height: 1px;
    background-color: #cccccc;
    margin: auto;
}

.l-contact__footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0);
}
.l-contact__footer-cp {
  width: 90%;
  margin: auto;
  color: #ffffff;
  font-weight: 100;
  vertical-align: middle;
}
.l-contact__footer-cp::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 90%;
  height: 1px;
  background-color: #ffffff;
  margin: auto;
}

/* =============================================================
    _main
============================================================= */
/* ------------------------
    l-main
 ------------------------ */
.l-main {
  position: relative;
}

/*
Object
==================================*/
/* =============================================================
    _component
============================================================= */
/* ------------------------
    top only
 ------------------------ */
.c-header {
  position: relative;
  height: 100vh;
}
.c-header #logo {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.c-header #logo.loaded {
  display: block;
}
.c-header #logo.loaded.slide {
  animation-name: slideUp;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 1.8s;
}
@media screen and (max-width:767px) {
  .c-header #logo img {
    width: 250px;
  }
}
.c-header #top-nav {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.c-header #top-nav ul {
  display: flex;
  justify-content: space-between;
}
.c-header #top-nav ul li {
  margin-left: 60px;
}
.c-header #top-nav ul li:nth-of-type(3) {
  margin-right: 60px;
}
@media screen and (max-width:767px) {
  .c-header #top-nav ul li:nth-of-type(3) {
    margin-right: 0;
  }
}
.c-header #top-nav ul li a {
  position: relative;
  font-size: 140%;
  color: #ffffff;
}
.c-header #top-nav ul li a::before {
  content: "";
  position: absolute;
  bottom: -20%;
  width: 0;
  height: 0;
  background-color: #ffffff;
  transition: all 0.4s;
}
.c-header #top-nav ul li a:hover::before {
  width: 100%;
  height: 1px;
}
@media screen and (max-width:767px) {
  .c-header #top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75vh;
    background-color: #000000;
    transform: translateY(-100vh) translateX(0);
    transition: all 0.3s;
    z-index: 99;
  }
  .c-header #top-nav.active {
    transform: translateY(0);
  }
  .c-header #top-nav ul {
    flex-direction: column;
    transform: translateY(100px);
  }
  .c-header #top-nav ul li {
    margin-left: 2em;
    margin-bottom: 20px;
  }
}

/* slideUp animation
------------------- */
@keyframes slideUp {
  from {
    top: 50%;
  }
  to {
    top: 12%;
  }
}
@media screen and (max-width:767px) {
  @keyframes slideUp {
    from {
      top: 50%;
    }
    to {
      top: 2.8em;
      left: 36%;
    }
  }
}
.c-fadeout-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  z-index: 2;
}

.c-video {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -2;
}
.c-video__area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*width: 177.77777778vh;*/
  /*height: 56.25vw;*/
  min-height: 100%;
  min-width: 100%;
  z-index: -2;
}

/* ------------------------
    works page
 ------------------------ */
.c-category {
  display: block;
  position: fixed;
  width: 100%;
  margin: auto;
  z-index: 10;
  padding-top: 90px;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width:1280px) {
  .c-category {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width:767px) {
  .c-category {
    font-size: 110%;
  }
}
.c-category__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid #cccccc;
}
.c-category__list li {
  margin-right: 4em;
}
.c-category__list li a {
  color: #222222;
  transition: all 0.3s ease;
}
.c-category__list li a:hover {
  color: #aaaaaa;
}

.c-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width:1280px) {
  .c-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-container article {
  position: relative;
  margin-top: -150px;
  padding-top: 150px;
}
.c-container article:nth-of-type(1) {
  z-index: 3;
}
.c-container article:nth-of-type(2) {
  z-index: 2;
}
.c-container article:nth-of-type(3) {
  z-index: 1;
}
.c-container article::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
}
.c-container article:last-child::after {
  content: none;
}
.c-container__flex {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width:767px) {
  .c-container__flex {
    flex-direction: column-reverse;
  }
}
.c-container__flex-items {
  width: 50%;
}
.c-container__flex-items img {
  width: 100%;
}
@media screen and (max-width:767px) {
  .c-container__flex-items {
    width: 100%;
  }
}
.c-container__title {
  font-size: 180%;
  transition: all 0.5s ease;
  cursor: pointer;
}
@media screen and (min-width:768px) {
  .c-container__title:hover {
    font-size: 200%;
  }
}
.c-container__thumb {
  transition: all 0.5s ease;
}
.c-container__thumb:hover {
  opacity: 0.8;
  cursor: pointer;
}

.c-accordion {
  display: block;
  transition: all 0.5s ease;
}
.c-accordion__cts {
  display: none;
}
@media screen and (min-width:768px) {
  .c-accordion:hover .c-accordion-btn {
    font-size: 200%;
  }
}

.c-description {
  display: flex;
  width: 100%;
}
.c-description-year {
  color: #999999;
  font-weight: bold;
  margin-right: 1.5em;
}
.c-description-cts dt {
  color: #999999;
  font-weight: bold;
}

/* ------------------------
    about page
 ------------------------ */
.c-about {
  position: relative;
  max-width: 1200px;
  height: calc(100vh - 90px);
  margin: auto;
}
.c-about__cts {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
}
.c-about__cts-items {
  width: 50%;
}
.c-about__cts-items img {
  width: 7rem;
}
.c-about__cts-txt {
  font-size: 120%;
  padding-top: 1.2em;
  margin-right: 1em;
}

.c-intro {
  background-color: #f2f2f2;
  height: 70vh;
  margin: auto;
}
.c-intro__cts {
  max-width: 1200px;
  height: 100%;
  margin: auto;
}
.c-intro__flex {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
  margin: auto;
}
@media screen and (max-width:767px) {
  .c-intro__flex {
    flex-direction: column;
  }
}
.c-intro__flex-img {
  width: 40%;
  margin-right: -70px;
}
@media screen and (max-width:767px) {
  .c-intro__flex-img {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .c-intro__flex-img img {
    width: 46%;
  }
}
.c-intro__flex-txt {
  font-size: 120%;
  width: 60%;
}
@media screen and (max-width:767px) {
  .c-intro__flex-txt {
    width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width:767px) {
  .c-intro {
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.c-catch {
  position: relative;
  margin: auto;
  width: 100vw;
  z-index: 1;
}
.c-catch__cts {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}
.c-catch__cts-txt {
  font-size: 120%;
}
@media screen and (max-width:767px) {
  .c-catch__cts-txt {
    font-size: 100%;
  }
}
.c-catch__cts-img {
  width: 80%;
}
.c-catch__cts-img .move_img {
  width: 100%;
  transform: translate(120px, 60px) rotate(-30deg);
}
@media screen and (max-width:767px) {
  .c-catch__cts-img .move_img {
    width: 130%;
    transform: translate(20px, 50px) rotate(-30deg);
  }
}
@media screen and (max-width:767px) {
  .c-catch {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.c-prof {
  position: relative;
  height: 80vh;
  background-color: #f2f2f2;
  z-index: 2;
}
.c-prof__cts {
  max-width: 1200px;
  margin: auto;
}
.c-prof__title {
  position: relative;
  font-size: 150%;
}
.c-prof__title::before {
  content: "";
  position: absolute;
  bottom: -2%;
  width: 100%;
  height: 1px;
  background-color: #222222;
}
.c-prof__flex {
  display: flex;
}
@media screen and (max-width:767px) {
  .c-prof__flex {
    display: block;
  }
}
.c-prof__flex-desc {
  width: 70%;
}
@media screen and (max-width:767px) {
  .c-prof__flex-desc {
    width: 100%;
  }
}
.c-prof__flex-desc dl {
  display: flex;
  margin-bottom: 50px;
}
.c-prof__flex-desc dl dt {
  width: 20%;
}
@media screen and (max-width:767px) {
  .c-prof__flex-desc dl dt {
    width: 25%;
  }
}
.c-prof__flex-desc dl dd {
  width: 80%;
}
@media screen and (max-width:767px) {
  .c-prof__flex-desc dl dd {
    width: 75%;
  }
}
.c-prof__flex-port {
  width: 30%;
}
@media screen and (max-width:767px) {
  .c-prof__flex-port {
    display: none;
  }
}
.c-prof__flex-port img {
  width: 80%;
}
@media screen and (max-width:767px) {
  .c-prof {
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ------------------------
    contact page
------------------------ */
#contact {
  background: url(images/contact/bg_img.jpg), no-repeat;
  background-size: cover;
}

.c-contact {
  max-width: 1200px;
  margin: auto;
}
.c-contact__hero {
  width: 100%;
  height: calc(100vh - 90px);
  margin: auto;
}
.c-contact__hero-cts {
  display: block;
  position: relative;
  top: calc(100vh - 80%);
  margin: auto;
}
@media screen and (max-width:767px) {
  .c-contact__hero-cts {
    top: calc(100vh - 90%);
  }
}
@media screen and (max-width:1280px) {
  .c-contact {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-contact__title {
  position: relative;
  font-size: 150%;
  color: #ffffff;
}
.c-contact__title::before {
  content: "";
  position: absolute;
  bottom: -2%;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}

.c-svg {
  width: 300px;
  height: auto;
  margin: auto;
}
.c-svg__icon {
  width: 100%;
}
/*@media screen and (max-width:767px) {
  .c-svg {
    width: 220px;
  }
}*/

.c-scroll-line {
  position: relative;
  width: 1px;
  height: 100px;
  background-color: #ffffff;
  margin-left: auto;
  margin-right: 1em;
}
.c-scroll-line::before {
  content: "";
  position: absolute;
  top: 1px;
  right: -4px;
  width: 9px;
  height: 9px;
  background-color: #ffffff;
  animation: lineScroll 2.5s infinite;
}

/* スクロールアニメーション
------------------- */
@keyframes lineScroll {
  0% {
    top: 0px;
  }
  50% {
    top: 40;
  }
  100% {
    top: 90px;
  }
}
.c-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  margin: auto;
}
.c-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  /*cursor: url(../../../images/common/cursor_g2.png), auto !important;*/
}

/* ------------------------
    privacy page
------------------------ */
.c-priv {
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width:767px) {
  .c-priv {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-priv__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
.c-priv__head h1 {
  font-size: 270%;
}
.c-priv__head p {
  position: relative;
}
.c-priv__head p::before {
  content: "";
  position: absolute;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background-color: #222222;
}
.c-priv__head p a {
  transition: all 0.3s ease;
}
.c-priv__head p a:hover {
  opacity: 0.6;
}
.c-priv-title {
  font-size: 180%;
  font-weight: 500;
}
.c-priv-sub {
  font-size: 140%;
  font-weight: 500;
}
.c-priv-list > li {
  position: relative;
  padding-left: 1.5em;
}
.c-priv-list > li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 1000px;
  background-color: #222222;
}
@media screen and (max-width:767px) {
  .c-priv-list > li::before {
    top: 10px;
  }
}

/* =============================================================
    _utility
============================================================= */
/* ------------------------
    text align
 ------------------------ */
.u-center {
  text-align: center;
}

.u-left {
  text-align: left;
}

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

/* ------------------------
    margin
 ------------------------ */
/* top
------------------- */
.u-mt00 {
  margin-top: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-mt205 {
  margin-top: 205px !important;
}

.u-mt210 {
  margin-top: 210px !important;
}

.u-mt215 {
  margin-top: 215px !important;
}

.u-mt220 {
  margin-top: 220px !important;
}

.u-mt225 {
  margin-top: 225px !important;
}

.u-mt230 {
  margin-top: 230px !important;
}

.u-mt235 {
  margin-top: 235px !important;
}

.u-mt240 {
  margin-top: 240px !important;
}

.u-mt245 {
  margin-top: 245px !important;
}

.u-mt250 {
  margin-top: 250px !important;
}

@media screen and (max-width:767px) {
  .u-sm-mt00 {
    margin-top: 0px !important;
  }
  .u-sm-mt05 {
    margin-top: 5px !important;
  }
  .u-sm-mt10 {
    margin-top: 10px !important;
  }
  .u-sm-mt15 {
    margin-top: 15px !important;
  }
  .u-sm-mt20 {
    margin-top: 20px !important;
  }
  .u-sm-mt25 {
    margin-top: 25px !important;
  }
  .u-sm-mt30 {
    margin-top: 30px !important;
  }
  .u-sm-mt35 {
    margin-top: 35px !important;
  }
  .u-sm-mt40 {
    margin-top: 40px !important;
  }
  .u-sm-mt45 {
    margin-top: 45px !important;
  }
  .u-sm-mt50 {
    margin-top: 50px !important;
  }
  .u-sm-mt55 {
    margin-top: 55px !important;
  }
  .u-sm-mt60 {
    margin-top: 60px !important;
  }
  .u-sm-mt65 {
    margin-top: 65px !important;
  }
  .u-sm-mt70 {
    margin-top: 70px !important;
  }
  .u-sm-mt75 {
    margin-top: 75px !important;
  }
  .u-sm-mt80 {
    margin-top: 80px !important;
  }
  .u-sm-mt85 {
    margin-top: 85px !important;
  }
  .u-sm-mt90 {
    margin-top: 90px !important;
  }
  .u-sm-mt95 {
    margin-top: 95px !important;
  }
  .u-sm-mt100 {
    margin-top: 100px !important;
  }
  .u-sm-mt105 {
    margin-top: 105px !important;
  }
  .u-sm-mt110 {
    margin-top: 110px !important;
  }
  .u-sm-mt115 {
    margin-top: 115px !important;
  }
  .u-sm-mt120 {
    margin-top: 120px !important;
  }
  .u-sm-mt125 {
    margin-top: 125px !important;
  }
  .u-sm-mt130 {
    margin-top: 130px !important;
  }
  .u-sm-mt135 {
    margin-top: 135px !important;
  }
  .u-sm-mt140 {
    margin-top: 140px !important;
  }
  .u-sm-mt145 {
    margin-top: 145px !important;
  }
  .u-sm-mt150 {
    margin-top: 150px !important;
  }
  .u-sm-mt155 {
    margin-top: 155px !important;
  }
  .u-sm-mt160 {
    margin-top: 160px !important;
  }
  .u-sm-mt165 {
    margin-top: 165px !important;
  }
  .u-sm-mt170 {
    margin-top: 170px !important;
  }
  .u-sm-mt175 {
    margin-top: 175px !important;
  }
  .u-sm-mt180 {
    margin-top: 180px !important;
  }
  .u-sm-mt185 {
    margin-top: 185px !important;
  }
  .u-sm-mt190 {
    margin-top: 190px !important;
  }
  .u-sm-mt195 {
    margin-top: 195px !important;
  }
  .u-sm-mt200 {
    margin-top: 200px !important;
  }
  .u-sm-mt205 {
    margin-top: 205px !important;
  }
  .u-sm-mt210 {
    margin-top: 210px !important;
  }
  .u-sm-mt215 {
    margin-top: 215px !important;
  }
  .u-sm-mt220 {
    margin-top: 220px !important;
  }
  .u-sm-mt225 {
    margin-top: 225px !important;
  }
  .u-sm-mt230 {
    margin-top: 230px !important;
  }
  .u-sm-mt235 {
    margin-top: 235px !important;
  }
  .u-sm-mt240 {
    margin-top: 240px !important;
  }
  .u-sm-mt245 {
    margin-top: 245px !important;
  }
  .u-sm-mt250 {
    margin-top: 250px !important;
  }
}
/* bottom
------------------- */
.u-mb00 {
  margin-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-mb205 {
  margin-bottom: 205px !important;
}

.u-mb210 {
  margin-bottom: 210px !important;
}

.u-mb215 {
  margin-bottom: 215px !important;
}

.u-mb220 {
  margin-bottom: 220px !important;
}

.u-mb225 {
  margin-bottom: 225px !important;
}

.u-mb230 {
  margin-bottom: 230px !important;
}

.u-mb235 {
  margin-bottom: 235px !important;
}

.u-mb240 {
  margin-bottom: 240px !important;
}

.u-mb245 {
  margin-bottom: 245px !important;
}

.u-mb250 {
  margin-bottom: 250px !important;
}

@media screen and (max-width:767px) {
  .u-sm-mb00 {
    margin-bottom: 0px !important;
  }
  .u-sm-mb05 {
    margin-bottom: 5px !important;
  }
  .u-sm-mb10 {
    margin-bottom: 10px !important;
  }
  .u-sm-mb15 {
    margin-bottom: 15px !important;
  }
  .u-sm-mb20 {
    margin-bottom: 20px !important;
  }
  .u-sm-mb25 {
    margin-bottom: 25px !important;
  }
  .u-sm-mb30 {
    margin-bottom: 30px !important;
  }
  .u-sm-mb35 {
    margin-bottom: 35px !important;
  }
  .u-sm-mb40 {
    margin-bottom: 40px !important;
  }
  .u-sm-mb45 {
    margin-bottom: 45px !important;
  }
  .u-sm-mb50 {
    margin-bottom: 50px !important;
  }
  .u-sm-mb55 {
    margin-bottom: 55px !important;
  }
  .u-sm-mb60 {
    margin-bottom: 60px !important;
  }
  .u-sm-mb65 {
    margin-bottom: 65px !important;
  }
  .u-sm-mb70 {
    margin-bottom: 70px !important;
  }
  .u-sm-mb75 {
    margin-bottom: 75px !important;
  }
  .u-sm-mb80 {
    margin-bottom: 80px !important;
  }
  .u-sm-mb85 {
    margin-bottom: 85px !important;
  }
  .u-sm-mb90 {
    margin-bottom: 90px !important;
  }
  .u-sm-mb95 {
    margin-bottom: 95px !important;
  }
  .u-sm-mb100 {
    margin-bottom: 100px !important;
  }
  .u-sm-mb105 {
    margin-bottom: 105px !important;
  }
  .u-sm-mb110 {
    margin-bottom: 110px !important;
  }
  .u-sm-mb115 {
    margin-bottom: 115px !important;
  }
  .u-sm-mb120 {
    margin-bottom: 120px !important;
  }
  .u-sm-mb125 {
    margin-bottom: 125px !important;
  }
  .u-sm-mb130 {
    margin-bottom: 130px !important;
  }
  .u-sm-mb135 {
    margin-bottom: 135px !important;
  }
  .u-sm-mb140 {
    margin-bottom: 140px !important;
  }
  .u-sm-mb145 {
    margin-bottom: 145px !important;
  }
  .u-sm-mb150 {
    margin-bottom: 150px !important;
  }
  .u-sm-mb155 {
    margin-bottom: 155px !important;
  }
  .u-sm-mb160 {
    margin-bottom: 160px !important;
  }
  .u-sm-mb165 {
    margin-bottom: 165px !important;
  }
  .u-sm-mb170 {
    margin-bottom: 170px !important;
  }
  .u-sm-mb175 {
    margin-bottom: 175px !important;
  }
  .u-sm-mb180 {
    margin-bottom: 180px !important;
  }
  .u-sm-mb185 {
    margin-bottom: 185px !important;
  }
  .u-sm-mb190 {
    margin-bottom: 190px !important;
  }
  .u-sm-mb195 {
    margin-bottom: 195px !important;
  }
  .u-sm-mb200 {
    margin-bottom: 200px !important;
  }
  .u-sm-mb205 {
    margin-bottom: 205px !important;
  }
  .u-sm-mb210 {
    margin-bottom: 210px !important;
  }
  .u-sm-mb215 {
    margin-bottom: 215px !important;
  }
  .u-sm-mb220 {
    margin-bottom: 220px !important;
  }
  .u-sm-mb225 {
    margin-bottom: 225px !important;
  }
  .u-sm-mb230 {
    margin-bottom: 230px !important;
  }
  .u-sm-mb235 {
    margin-bottom: 235px !important;
  }
  .u-sm-mb240 {
    margin-bottom: 240px !important;
  }
  .u-sm-mb245 {
    margin-bottom: 245px !important;
  }
  .u-sm-mb250 {
    margin-bottom: 250px !important;
  }
}
/* left
------------------- */
.u-ml00 {
  margin-left: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-ml85 {
  margin-left: 85px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-ml105 {
  margin-left: 105px !important;
}

.u-ml110 {
  margin-left: 110px !important;
}

.u-ml115 {
  margin-left: 115px !important;
}

.u-ml120 {
  margin-left: 120px !important;
}

.u-ml125 {
  margin-left: 125px !important;
}

.u-ml130 {
  margin-left: 130px !important;
}

.u-ml135 {
  margin-left: 135px !important;
}

.u-ml140 {
  margin-left: 140px !important;
}

.u-ml145 {
  margin-left: 145px !important;
}

.u-ml150 {
  margin-left: 150px !important;
}

.u-ml155 {
  margin-left: 155px !important;
}

.u-ml160 {
  margin-left: 160px !important;
}

.u-ml165 {
  margin-left: 165px !important;
}

.u-ml170 {
  margin-left: 170px !important;
}

.u-ml175 {
  margin-left: 175px !important;
}

.u-ml180 {
  margin-left: 180px !important;
}

.u-ml185 {
  margin-left: 185px !important;
}

.u-ml190 {
  margin-left: 190px !important;
}

.u-ml195 {
  margin-left: 195px !important;
}

.u-ml200 {
  margin-left: 200px !important;
}

.u-ml205 {
  margin-left: 205px !important;
}

.u-ml210 {
  margin-left: 210px !important;
}

.u-ml215 {
  margin-left: 215px !important;
}

.u-ml220 {
  margin-left: 220px !important;
}

.u-ml225 {
  margin-left: 225px !important;
}

.u-ml230 {
  margin-left: 230px !important;
}

.u-ml235 {
  margin-left: 235px !important;
}

.u-ml240 {
  margin-left: 240px !important;
}

.u-ml245 {
  margin-left: 245px !important;
}

.u-ml250 {
  margin-left: 250px !important;
}

@media screen and (max-width:767px) {
  .u-sm-ml00 {
    margin-left: 0px !important;
  }
  .u-sm-ml05 {
    margin-left: 5px !important;
  }
  .u-sm-ml10 {
    margin-left: 10px !important;
  }
  .u-sm-ml15 {
    margin-left: 15px !important;
  }
  .u-sm-ml20 {
    margin-left: 20px !important;
  }
  .u-sm-ml25 {
    margin-left: 25px !important;
  }
  .u-sm-ml30 {
    margin-left: 30px !important;
  }
  .u-sm-ml35 {
    margin-left: 35px !important;
  }
  .u-sm-ml40 {
    margin-left: 40px !important;
  }
  .u-sm-ml45 {
    margin-left: 45px !important;
  }
  .u-sm-ml50 {
    margin-left: 50px !important;
  }
  .u-sm-ml55 {
    margin-left: 55px !important;
  }
  .u-sm-ml60 {
    margin-left: 60px !important;
  }
  .u-sm-ml65 {
    margin-left: 65px !important;
  }
  .u-sm-ml70 {
    margin-left: 70px !important;
  }
  .u-sm-ml75 {
    margin-left: 75px !important;
  }
  .u-sm-ml80 {
    margin-left: 80px !important;
  }
  .u-sm-ml85 {
    margin-left: 85px !important;
  }
  .u-sm-ml90 {
    margin-left: 90px !important;
  }
  .u-sm-ml95 {
    margin-left: 95px !important;
  }
  .u-sm-ml100 {
    margin-left: 100px !important;
  }
  .u-sm-ml105 {
    margin-left: 105px !important;
  }
  .u-sm-ml110 {
    margin-left: 110px !important;
  }
  .u-sm-ml115 {
    margin-left: 115px !important;
  }
  .u-sm-ml120 {
    margin-left: 120px !important;
  }
  .u-sm-ml125 {
    margin-left: 125px !important;
  }
  .u-sm-ml130 {
    margin-left: 130px !important;
  }
  .u-sm-ml135 {
    margin-left: 135px !important;
  }
  .u-sm-ml140 {
    margin-left: 140px !important;
  }
  .u-sm-ml145 {
    margin-left: 145px !important;
  }
  .u-sm-ml150 {
    margin-left: 150px !important;
  }
  .u-sm-ml155 {
    margin-left: 155px !important;
  }
  .u-sm-ml160 {
    margin-left: 160px !important;
  }
  .u-sm-ml165 {
    margin-left: 165px !important;
  }
  .u-sm-ml170 {
    margin-left: 170px !important;
  }
  .u-sm-ml175 {
    margin-left: 175px !important;
  }
  .u-sm-ml180 {
    margin-left: 180px !important;
  }
  .u-sm-ml185 {
    margin-left: 185px !important;
  }
  .u-sm-ml190 {
    margin-left: 190px !important;
  }
  .u-sm-ml195 {
    margin-left: 195px !important;
  }
  .u-sm-ml200 {
    margin-left: 200px !important;
  }
  .u-sm-ml205 {
    margin-left: 205px !important;
  }
  .u-sm-ml210 {
    margin-left: 210px !important;
  }
  .u-sm-ml215 {
    margin-left: 215px !important;
  }
  .u-sm-ml220 {
    margin-left: 220px !important;
  }
  .u-sm-ml225 {
    margin-left: 225px !important;
  }
  .u-sm-ml230 {
    margin-left: 230px !important;
  }
  .u-sm-ml235 {
    margin-left: 235px !important;
  }
  .u-sm-ml240 {
    margin-left: 240px !important;
  }
  .u-sm-ml245 {
    margin-left: 245px !important;
  }
  .u-sm-ml250 {
    margin-left: 250px !important;
  }
}
/* right
------------------- */
.u-mr00 {
  margin-right: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-mr85 {
  margin-right: 85px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mr105 {
  margin-right: 105px !important;
}

.u-mr110 {
  margin-right: 110px !important;
}

.u-mr115 {
  margin-right: 115px !important;
}

.u-mr120 {
  margin-right: 120px !important;
}

.u-mr125 {
  margin-right: 125px !important;
}

.u-mr130 {
  margin-right: 130px !important;
}

.u-mr135 {
  margin-right: 135px !important;
}

.u-mr140 {
  margin-right: 140px !important;
}

.u-mr145 {
  margin-right: 145px !important;
}

.u-mr150 {
  margin-right: 150px !important;
}

.u-mr155 {
  margin-right: 155px !important;
}

.u-mr160 {
  margin-right: 160px !important;
}

.u-mr165 {
  margin-right: 165px !important;
}

.u-mr170 {
  margin-right: 170px !important;
}

.u-mr175 {
  margin-right: 175px !important;
}

.u-mr180 {
  margin-right: 180px !important;
}

.u-mr185 {
  margin-right: 185px !important;
}

.u-mr190 {
  margin-right: 190px !important;
}

.u-mr195 {
  margin-right: 195px !important;
}

.u-mr200 {
  margin-right: 200px !important;
}

.u-mr205 {
  margin-right: 205px !important;
}

.u-mr210 {
  margin-right: 210px !important;
}

.u-mr215 {
  margin-right: 215px !important;
}

.u-mr220 {
  margin-right: 220px !important;
}

.u-mr225 {
  margin-right: 225px !important;
}

.u-mr230 {
  margin-right: 230px !important;
}

.u-mr235 {
  margin-right: 235px !important;
}

.u-mr240 {
  margin-right: 240px !important;
}

.u-mr245 {
  margin-right: 245px !important;
}

.u-mr250 {
  margin-right: 250px !important;
}

@media screen and (max-width:767px) {
  .u-sm-mr00 {
    margin-right: 0px !important;
  }
  .u-sm-mr05 {
    margin-right: 5px !important;
  }
  .u-sm-mr10 {
    margin-right: 10px !important;
  }
  .u-sm-mr15 {
    margin-right: 15px !important;
  }
  .u-sm-mr20 {
    margin-right: 20px !important;
  }
  .u-sm-mr25 {
    margin-right: 25px !important;
  }
  .u-sm-mr30 {
    margin-right: 30px !important;
  }
  .u-sm-mr35 {
    margin-right: 35px !important;
  }
  .u-sm-mr40 {
    margin-right: 40px !important;
  }
  .u-sm-mr45 {
    margin-right: 45px !important;
  }
  .u-sm-mr50 {
    margin-right: 50px !important;
  }
  .u-sm-mr55 {
    margin-right: 55px !important;
  }
  .u-sm-mr60 {
    margin-right: 60px !important;
  }
  .u-sm-mr65 {
    margin-right: 65px !important;
  }
  .u-sm-mr70 {
    margin-right: 70px !important;
  }
  .u-sm-mr75 {
    margin-right: 75px !important;
  }
  .u-sm-mr80 {
    margin-right: 80px !important;
  }
  .u-sm-mr85 {
    margin-right: 85px !important;
  }
  .u-sm-mr90 {
    margin-right: 90px !important;
  }
  .u-sm-mr95 {
    margin-right: 95px !important;
  }
  .u-sm-mr100 {
    margin-right: 100px !important;
  }
  .u-sm-mr105 {
    margin-right: 105px !important;
  }
  .u-sm-mr110 {
    margin-right: 110px !important;
  }
  .u-sm-mr115 {
    margin-right: 115px !important;
  }
  .u-sm-mr120 {
    margin-right: 120px !important;
  }
  .u-sm-mr125 {
    margin-right: 125px !important;
  }
  .u-sm-mr130 {
    margin-right: 130px !important;
  }
  .u-sm-mr135 {
    margin-right: 135px !important;
  }
  .u-sm-mr140 {
    margin-right: 140px !important;
  }
  .u-sm-mr145 {
    margin-right: 145px !important;
  }
  .u-sm-mr150 {
    margin-right: 150px !important;
  }
  .u-sm-mr155 {
    margin-right: 155px !important;
  }
  .u-sm-mr160 {
    margin-right: 160px !important;
  }
  .u-sm-mr165 {
    margin-right: 165px !important;
  }
  .u-sm-mr170 {
    margin-right: 170px !important;
  }
  .u-sm-mr175 {
    margin-right: 175px !important;
  }
  .u-sm-mr180 {
    margin-right: 180px !important;
  }
  .u-sm-mr185 {
    margin-right: 185px !important;
  }
  .u-sm-mr190 {
    margin-right: 190px !important;
  }
  .u-sm-mr195 {
    margin-right: 195px !important;
  }
  .u-sm-mr200 {
    margin-right: 200px !important;
  }
  .u-sm-mr205 {
    margin-right: 205px !important;
  }
  .u-sm-mr210 {
    margin-right: 210px !important;
  }
  .u-sm-mr215 {
    margin-right: 215px !important;
  }
  .u-sm-mr220 {
    margin-right: 220px !important;
  }
  .u-sm-mr225 {
    margin-right: 225px !important;
  }
  .u-sm-mr230 {
    margin-right: 230px !important;
  }
  .u-sm-mr235 {
    margin-right: 235px !important;
  }
  .u-sm-mr240 {
    margin-right: 240px !important;
  }
  .u-sm-mr245 {
    margin-right: 245px !important;
  }
  .u-sm-mr250 {
    margin-right: 250px !important;
  }
}
/* ------------------------
    padding
------------------------ */
/* top
------------------- */
.u-pt00 {
  padding-top: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width:767px) {
  .u-sm-pt00 {
    padding-top: 0px !important;
  }
  .u-sm-pt05 {
    padding-top: 5px !important;
  }
  .u-sm-pt10 {
    padding-top: 10px !important;
  }
  .u-sm-pt15 {
    padding-top: 15px !important;
  }
  .u-sm-pt20 {
    padding-top: 20px !important;
  }
  .u-sm-pt25 {
    padding-top: 25px !important;
  }
  .u-sm-pt30 {
    padding-top: 30px !important;
  }
  .u-sm-pt35 {
    padding-top: 35px !important;
  }
  .u-sm-pt40 {
    padding-top: 40px !important;
  }
  .u-sm-pt45 {
    padding-top: 45px !important;
  }
  .u-sm-pt50 {
    padding-top: 50px !important;
  }
}
/* bottom
------------------- */
.u-pb00 {
  padding-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width:767px) {
  .u-sm-pb00 {
    padding-bottom: 0px !important;
  }
  .u-sm-pb05 {
    padding-bottom: 5px !important;
  }
  .u-sm-pb10 {
    padding-bottom: 10px !important;
  }
  .u-sm-pb15 {
    padding-bottom: 15px !important;
  }
  .u-sm-pb20 {
    padding-bottom: 20px !important;
  }
  .u-sm-pb25 {
    padding-bottom: 25px !important;
  }
  .u-sm-pb30 {
    padding-bottom: 30px !important;
  }
  .u-sm-pb35 {
    padding-bottom: 35px !important;
  }
  .u-sm-pb40 {
    padding-bottom: 40px !important;
  }
  .u-sm-pb45 {
    padding-bottom: 45px !important;
  }
  .u-sm-pb50 {
    padding-bottom: 50px !important;
  }
}
/* left
------------------- */
.u-pl00 {
  padding-left: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width:767px) {
  .u-sm-pl00 {
    padding-left: 0px !important;
  }
  .u-sm-pl05 {
    padding-left: 5px !important;
  }
  .u-sm-pl10 {
    padding-left: 10px !important;
  }
  .u-sm-pl15 {
    padding-left: 15px !important;
  }
  .u-sm-pl20 {
    padding-left: 20px !important;
  }
  .u-sm-pl25 {
    padding-left: 25px !important;
  }
  .u-sm-pl30 {
    padding-left: 30px !important;
  }
  .u-sm-pl35 {
    padding-left: 35px !important;
  }
  .u-sm-pl40 {
    padding-left: 40px !important;
  }
  .u-sm-pl45 {
    padding-left: 45px !important;
  }
  .u-sm-pl50 {
    padding-left: 50px !important;
  }
}
/* right
------------------- */
.u-pr00 {
  padding-right: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width:767px) {
  .u-sm-pr00 {
    padding-right: 0px !important;
  }
  .u-sm-pr05 {
    padding-right: 5px !important;
  }
  .u-sm-pr10 {
    padding-right: 10px !important;
  }
  .u-sm-pr15 {
    padding-right: 15px !important;
  }
  .u-sm-pr20 {
    padding-right: 20px !important;
  }
  .u-sm-pr25 {
    padding-right: 25px !important;
  }
  .u-sm-pr30 {
    padding-right: 30px !important;
  }
  .u-sm-pr35 {
    padding-right: 35px !important;
  }
  .u-sm-pr40 {
    padding-right: 40px !important;
  }
  .u-sm-pr45 {
    padding-right: 45px !important;
  }
  .u-sm-pr50 {
    padding-right: 50px !important;
  }
}
/* ------------------------
    font
 ------------------------ */
/* weight
------------------- */
.u-fw100 {
  font-weight: 100;
}

.u-fw200 {
  font-weight: 200;
}

.u-fw300 {
  font-weight: 300;
}

.u-fw400 {
  font-weight: 400;
}

.u-fw500 {
  font-weight: 500;
}

.u-fw600 {
  font-weight: 600;
}

.u-fw700 {
  font-weight: 700;
}

.u-fw800 {
  font-weight: 800;
}

/* size
------------------- */
.u-fs10 {
  font-size: 10px;
}

.u-fs11 {
  font-size: 11px;
}

.u-fs12 {
  font-size: 12px;
}

.u-fs13 {
  font-size: 13px;
}

.u-fs14 {
  font-size: 14px;
}

.u-fs15 {
  font-size: 15px;
}

.u-fs16 {
  font-size: 16px;
}

.u-fs17 {
  font-size: 17px;
}

.u-fs18 {
  font-size: 18px;
}

.u-fs19 {
  font-size: 19px;
}

.u-fs20 {
  font-size: 20px;
}

.u-fs21 {
  font-size: 21px;
}

.u-fs22 {
  font-size: 22px;
}

.u-fs23 {
  font-size: 23px;
}

.u-fs24 {
  font-size: 24px;
}

.u-fs25 {
  font-size: 25px;
}

.u-fs26 {
  font-size: 26px;
}

.u-fs27 {
  font-size: 27px;
}

@media screen and (max-width:767px) {
  .u-sm-fs00 {
    font-size: 0rem;
  }
  .u-sm-fs1 {
    font-size: 0.1rem;
  }
  .u-sm-fs2 {
    font-size: 0.2rem;
  }
  .u-sm-fs3 {
    font-size: 0.3rem;
  }
  .u-sm-fs4 {
    font-size: 0.4rem;
  }
  .u-sm-fs5 {
    font-size: 0.5rem;
  }
  .u-sm-fs6 {
    font-size: 0.6rem;
  }
  .u-sm-fs7 {
    font-size: 0.7rem;
  }
  .u-sm-fs8 {
    font-size: 0.8rem;
  }
  .u-sm-fs9 {
    font-size: 0.9rem;
  }
  .u-sm-fs10 {
    font-size: 1rem;
  }
  .u-sm-fs11 {
    font-size: 1.1rem;
  }
  .u-sm-fs12 {
    font-size: 1.2rem;
  }
  .u-sm-fs13 {
    font-size: 1.3rem;
  }
  .u-sm-fs14 {
    font-size: 1.4rem;
  }
  .u-sm-fs15 {
    font-size: 1.5rem;
  }
  .u-sm-fs16 {
    font-size: 1.6rem;
  }
}
/* family
------------------- */
.u-fo-go {
  font-family: Helvetica, sans-serif;
}

.u-fo-min {
  font-family: "Shippori Mincho B1", serif;
}

.u-fo-ave {
  font-family: avenir, serif;
}

/* 縦書き
------------------- */
.u-vertical {
  writing-mode: vertical-rl;
}

/* ------------------------
    common
 ------------------------ */
/* color
------------------- */
.u-clr-white {
  color: #ffffff;
}

.u-btn-white {
  position: relative;
  color: #ffffff;
}
.u-btn-white::before {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 0;
  height: 0;
  background-color: #ffffff;
  transition: all 0.3s;
}
.u-btn-white:hover {
  color: #ffffff;
}
.u-btn-white:hover::before {
  width: 100%;
  height: 1px;
}

/* bg color
------------------- */
.u-bg-gray {
  background-color: #f2f2f2;
}

/* 非表示指定
------------------- */
@media screen and (min-width:768px) {
  .u-pc-none {
    display: none;
  }
}
@media screen and (max-width:767px) {
  .u-sm-none {
    display: none;
  }
}
/* 表示順アニメーション
---------------------*/
.u-view-up {
  opacity: 0;
}
.u-view-up.on {
  opacity: 1;
  animation: view-slideUp 1.2s ease both;
}

@keyframes view-slideUp {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.u-view-in {
  opacity: 0;
}
.u-view-in.on {
  opacity: 1;
  animation: view-slideIn 1.3s ease both;
}

@keyframes view-slideIn {
  0% {
    opacity: 0;
    transform: translate(45px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.u-view-in-delay {
    opacity: 0;
}
.u-view-in-delay.on {
    opacity: 1;
    animation: view-slideIn-d 2s ease-in-out;
}
@keyframes view-slideIn-d {
    0% {
      opacity: 0;
      transform: translate(45px, 0);
    }
    25% {
        opacity: 0;
        transform: translate(30px, 0);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0);
    }
  }

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