@charset "UTF-8";
/* CSS Document */
/* Body Html Fonts
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,900&display=swap");
html {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 17px;
  background-color: #FFF;
}

@media screen and (max-width: 700px) {
  html {
    font-size: 16px;
  }
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000000;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.06em;
}

body.fixed {
  position: fixed;
}

body a {
  color: #2a90cd;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

body a:hover {
  text-decoration: underline;
}

body a img {
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  backface-visibility: hidden;
}

body a img:hover {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

body img, body picture {
  max-width: 100%;
  height: auto;
}

body br.sp {
  display: none;
}

@media screen and (max-width: 700px) {
  body br.pc {
    display: none;
  }
  body br.sp {
    display: inline;
  }
}

body .wrap {
  width: 1000px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

body ::selection {
  background: rgba(42, 144, 205, 0.2);
  /* Safari */
}

body ::-moz-selection {
  background: rgba(42, 144, 205, 0.2);
  /* Firefox */
}

/* header
------------------------------------------------------------*/
header {
  width: 100%;
  z-index: 10;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 80px;
  background: #fff;
  padding-left: 50px;
  padding-right: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: calc(100vh - 80px);
}

header .head-logo {
  line-height: 0;
}

header .head-btn {
  margin-left:auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: -5px;
}

header .head-btn > * {
  margin-left: 5px;
  margin-right: 5px;
}

header .head-menu {
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  top: 0;
  height: 60px;
  width: 60px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 2;
  cursor: pointer;
}

header .head-menu span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background-color: #000000;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .head-menu span:last-child {
  margin-bottom: 0;
}

header .head-menu span.top {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -o-transform: translateY(-8px);
  transform: translateY(-8px);
}

header .head-menu span.middle {
  margin-top: -2px;
  left: 0;
  position: relative;
}

header .head-menu span.bottom {
  margin-top: -2px;
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -o-transform: translateY(8px);
  transform: translateY(8px);
}

header .head-hidden {
  pointer-events: none;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  width: 300px;
  height: 100%;
  right: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}

header .head-hidden .inside {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transform: translateX(30px);
  -moz-transform: translateX(30px);
  -ms-transform: translateX(30px);
  -o-transform: translateX(30px);
  transform: translateX(30px);
}

header .head-hidden .menu {
  position: absolute;
  right: 0;
  text-outline: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  top: 0;
  height: 60px;
  width: 60px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 2;
  cursor: pointer;
}

header .head-hidden .menu span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background-color: #FFF;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .head-hidden .menu span:last-child {
  margin-bottom: 0;
}

header .head-hidden .menu span.top {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -o-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

header .head-hidden .menu span.middle {
  margin-top: -2px;
  left: 0;
  position: relative;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  left: 20px;
}

header .head-hidden .menu span.bottom {
  margin-top: -2px;
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -o-transform: translateY(8px);
  transform: translateY(8px);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

header .head-hidden .logo {
  line-height: 0;
  margin-bottom: 30px;
}

header .head-hidden nav {
  margin-bottom: 30px;
}

header .head-hidden nav ul li:not(:last-child) {
  margin-bottom: 20px;
}

header .head-hidden nav ul li a {
  color: #FFF;
  text-align: center;
}

header .head-hidden nav ul li a span {
  display: block;
}

header .head-hidden nav ul li a span:nth-child(1) {
  font-size: 14px;
  font-size: 0.8235294118rem;
  font-weight: bold;
}

header .head-hidden nav ul li a span:nth-child(2) {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-size: 0.7647058824rem;
  font-weight: bold;
}

header .head-hidden div > a:not(:last-child) {
  margin-bottom: 15px;
}

header.active .head-menu .middle {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  left: 20px;
}

header.active .head-menu .top {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

header.active .head-menu .bottom {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

header.active .head-hidden {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

header.active .head-hidden .inside {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 700px) {
  header {
    padding-left: 10px;
    padding-right: 0;
    height: 60px;
    margin-top: calc(100vh - 60px);
  }
  header .head-logo {
    width: 110px;
  }
}

@media screen and (max-width: 700px) and (max-width: 360px) {
  header .head-logo {
    width: 90px;
  }
}

@media screen and (max-width: 700px) {
  header .head-menu {
  margin-left: 0px;
  }
  header .head-btn {
    margin-right: -5px;
  }
  header .head-btn a {
    width: auto;
    height: 35px;
    margin-left: 0;
    font-size: 11px;
  }
  header .head-hidden {
    width: 250px;
  }
  header .head-hidden nav {
    margin-bottom: 30px;
  }
  header .head-hidden nav ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  header .head-hidden nav ul li a {
    color: #FFF;
    text-align: center;
  }
  header .head-hidden nav ul li a span {
    display: block;
  }
  header .head-hidden nav ul li a span:nth-child(1) {
    font-size: 13px;
    font-size: 0.7647058824rem;
    font-weight: bold;
  }
  header .head-hidden nav ul li a span:nth-child(2) {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-size: 0.7058823529rem;
    font-weight: bold;
  }
  header .head-hidden .btn {
    height: 40px;
  }
}

/* footer
------------------------------------------------------------*/
footer {
  background-color: #fff;
  padding: 40px 30px 14px;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.5;
  position: relative;
}

footer #gototop {
  position: absolute;
  right: 1em;
  bottom: 1em;
  width: 13px;
}

footer > * {
  width: 1100px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

footer .foot-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 65px;
  padding-right: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

footer .foot-top .logo {
  line-height: 0;
  margin-right: 60px;
}

footer .foot-top .logo img {
  width: 174px;
}

footer .foot-top .text {
  letter-spacing: normal;
  font-size: 13px;
  font-size: 0.7647058824rem;
  margin-right: 15px;
}

footer .foot-top .text a {
  color: #000000;
  text-decoration: underline;
}

footer .foot-top .text a:hover {
  text-decoration: none;
}

footer .foot-top .contact {
  padding: 1.5em 0 3em;
  margin-left: auto;
}

footer .foot-top .contact a {
  background-color: #e62983;
  background-image: -webkit-linear-gradient(right, #ff66af, #ff037b);
  background-image: linear-gradient(to left, #ff66af, #ff037b);
  width: 230px;
}

footer .foot-nav nav {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
  footer .foot-nav nav {
    width: 100%;
  }
}

footer .foot-nav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer .foot-nav nav ul:not(:last-child) {
  margin-bottom: 30px;
}

footer .foot-nav nav ul li {
  font-size: 14px;
  font-size: 0.8235294118rem;
  font-weight: bold;
  margin-right: 46px;
}

footer .foot-nav nav ul li a {
  letter-spacing: 0.05em;
  color: #000;
}

footer .foot-nav .follow {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 50px;
  padding-right: 30px;
  text-align: right;
}

footer .foot-nav .follow span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-size: 0.5882352941rem;
  font-weight: bold;
  letter-spacing: normal;
}

footer .foot-nav .follow a {
  line-height: 0;
  margin-left: 20px;
}

footer .foot-nav .follow a img {
  width: 10px;
}

footer .foot-copy {
  display: block;
  text-align: right;
  margin-top: 25px;
  color: #afaeae;
  font-size: 10px;
  font-size: 0.5882352941rem;
  letter-spacing: 0.06em;
  padding-right: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 700px) {
  footer {
    padding: 20px 20px 10px;
  }
  footer #gototop {
    bottom: auto;
    top: 0;
  }
  footer .foot-top {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 10px;
    padding-right: 0;
  }
  footer .foot-top > * {
    margin-bottom: 10px;
  }
  footer .foot-top .logo {
    margin: 0 auto 45px;
    width: 163px;
  }
  footer .foot-top .text {
    font-size: 13px;
    margin-right: 0;
    width: 100%;
    -webkit-box-original-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    letter-spacing: normal;
  }
  footer .foot-top .contact {
    margin: 0 auto;
    -webkit-box-original-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    padding: 1em 0 30px;
  }
  footer .foot-top .contact a {
    width: 16.5em;
    font-size: 13px;
    height: 3.6em;
  }
  footer .foot-nav nav {
    width: 100%;
  }
  footer .foot-nav nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .foot-nav nav ul:not(:last-child) {
    margin-bottom: 10px;
  }
  footer .foot-nav nav ul:first-of-type li:first-of-type {
    width: 100%;
    margin-right: 0;
  }
  footer .foot-nav nav ul li {
    font-size: 13px;
    margin-right: 35px;
    margin-bottom: 10px;
  }
  footer .foot-nav nav ul li a {
    color: #000000;
  }
  footer .foot-nav .follow {
    margin-left: auto;
    margin-top: 24px;
    padding-right: 0;
  }
  footer .foot-nav .follow a {
    margin-left: 10px;
  }
  footer .foot-nav .follow a img {
    width: 10px;
    height: auto;
  }
  footer .foot-copy {
    text-align: center;
    margin-top: 5px;
    font-size: 11px;
    font-weight: bold;
    padding-right: 0;
    letter-spacing: -0.01em;
  }
}

/* mainimg
------------------------------------------------------------*/
#mainimg {
  height: calc(100vh - 80px);
  position: relative;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #000;
   transition: 1000ms linear;
}

#mainimg .item-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
}

#mainimg .item-bg .slick-list {
  height: 100%;
}

#mainimg .item-bg .slick-track {
  height: 100%;
}

#mainimg .item-bg .slick-track li {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

#mainimg .item-bg .slick-track li span {
  width: calc(100% + 100px);
  margin-left: -50px;
  height: 50%;
  background: no-repeat center / cover;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 1.2s;
  -moz-transition-delay: 1.2s;
  -ms-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

#mainimg .item-bg .slick-track li span:nth-child(1) {
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
}

#mainimg .item-bg .slick-track li span:nth-child(2) {
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
}

#mainimg .item-bg .slick-track li.slick-active span {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
}

#mainimg .item-line {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 50%;
  text-align: center;
  line-height: 0;
  margin-bottom: -2px;
}

@keyframes inside {
    0% {
        transform: translateX(-1500px);
    }
    100% {
        transform: translateX(0px);
    }
}



#mainimg .item-line .inside {
  width: 1000px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
    animation-name: inside;
    animation-duration: 2s;
    animation-timing-function: ease;
}






#mainimg .item-line .inside img {
  position: absolute;
  right: 0;
  top: -111px;
}

#mainimg .item-line:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  bottom: 0;
  background: #fff;
}

#mainimg .item-hd {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
}

#mainimg .item-hd > p {
  position: relative;
}

#mainimg .item-hd > p:not(:last-child) {
  margin-bottom: 2.2%;
}

#mainimg .item-hd > p:nth-child(1) span:nth-child(2), #mainimg .item-hd > p:nth-child(2) span:nth-child(2) {
  margin-top: -15px;
}

#mainimg .item-hd > p:nth-child(3) span img {
  height: 105px;
}

#mainimg .item-hd > p span img {
  height: 125px;
}

#mainimg .item-hd > p span:nth-child(1) {
  line-height: 0;
}

#mainimg .item-hd > p span:nth-child(2) {
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 13px;
  font-size: 0.7647058824rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.8);
  padding: 3px 10px;
  line-height: 1.2;
}

#mainimg .item-hd > p[data-emergence=visible] {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -ms-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  -ms-animation-duration: 0.8s;
  -o-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

#mainimg .item-hd > p[data-emergence=visible]:nth-child(1) {
  -webkit-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
  -ms-animation-delay: 1.4s;
  -o-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

#mainimg .item-hd > p[data-emergence=visible]:nth-child(2) {
  -webkit-animation-delay: 1.8s;
  -moz-animation-delay: 1.8s;
  -ms-animation-delay: 1.8s;
  -o-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

#mainimg .item-hd > p[data-emergence=visible]:nth-child(3) {
  -webkit-animation-delay: 2.2s;
  -moz-animation-delay: 2.2s;
  -ms-animation-delay: 2.2s;
  -o-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

@media screen and (max-width: 1100px) {
  #mainimg .item-hd > p:nth-child(3) span img {
    height: auto;
  }
  #mainimg .item-hd > p span img {
    height: auto;
  }
}

#mainimg .item-img {
  position: absolute;
  line-height: 0;
  right: 5%;
  bottom: 20px;
}

#mainimg .item-img[data-emergence=visible] {
  -webkit-animation-delay: 2.9s;
  -moz-animation-delay: 2.9s;
  -ms-animation-delay: 2.9s;
  -o-animation-delay: 2.9s;
  animation-delay: 2.9s;
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
  #mainimg .item-hd {
    padding-bottom: 70px;
  }
  #mainimg .item-hd > p:not(:last-child) {
    margin-bottom: 2%;
  }
  #mainimg .item-hd > p:nth-child(1) img {
    width: 67%;
  }
  #mainimg .item-hd > p:nth-child(2) img {
    width: 96%;
  }
  #mainimg .item-hd > p:nth-child(3) img {
    width: 66%;
  }
  #mainimg .item-hd > p span:nth-child(2) {
    left: 20px;
  }
}

@media screen and (max-width: 700px) {
  #mainimg {
    height: calc(100vh - 60px);
  }
  #mainimg .item-line .inside {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  #mainimg .item-line .inside img {
    right: 20px;
    width: 70px;
    top: -52px;
  }
  #mainimg .item-hd {
    padding-bottom: 50px;
    height: auto;
    padding-top: 14%;
  }
  #mainimg .item-hd > p {
    width: 350px;
  }
}

@media screen and (max-width: 700px) and (max-width: 370px) {
  #mainimg .item-hd > p {
    width: 300px;
  }
}

@media screen and (max-width: 700px) {
  #mainimg .item-hd > p:not(:last-child) {
    margin-bottom: 2%;
  }
  #mainimg .item-hd > p:nth-child(1) img {
    width: 70%;
  }
  #mainimg .item-hd > p:nth-child(2) img {
    width: 100%;
  }
  #mainimg .item-hd > p:nth-child(3) img {
    width: 69%;
  }
  #mainimg .item-hd > p span:nth-child(2) {
    margin-top: -5px;
    left: 10px;
    padding: 0px 2px;
    font-size: 10px;
    font-size: 0.5882352941rem;
    line-height: 1.3;
  }
  #mainimg .item-hd > p:nth-child(1) span:nth-child(2), #mainimg .item-hd > p:nth-child(2) span:nth-child(2) {
    margin-top: -10px;
  }
  #mainimg .item-img {
    padding-bottom: 13px;
    bottom: 45px;
    width: 100%;
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/* main
------------------------------------------------------------*/
main {
  display: block;
  margin-top: -50px;
  padding-top: 50px;
  background-color: #fff;
}

main .content {
  width: 1000px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

main > section {
  padding: 70px 30px;
  position: relative;
  background-color: #fff;
}

main .line-title {
  position: relative;
  height: 6px;
}

main .line-title:not(:last-child) {
  margin-bottom: 50px;
}

main .line-title:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #f2f2f2;
}

main .line-title span {
  position: absolute;
  line-height: 0;
  right: 0;
  bottom: 100%;
  margin-bottom: -6px;
  display: -moz-inline-box;
  display: inline-block;
}

main #mission {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 10px;
  overflow: hidden;
}

main #mission .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

main #mission .bg span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center / cover;
}

main #mission .bg span.parallax {
  height: 110%;
}

main #mission section {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

main #mission section:nth-of-type(1) {
  height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

main #mission section:nth-of-type(1) .content {
  position: relative;
}

main #mission section:nth-of-type(1) .content:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 150px;
  height: 111px;
  margin-top: -109px;
  right: 0;
  background: url(../img/mission/line.svg) no-repeat center bottom;
}

main #mission section:nth-of-type(1) .content h2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 1em;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #FFF;
  font-size: 60px;
  font-size: 3.5294117647rem;
  font-weight: bold;
}

main #mission section:nth-of-type(1) .content .text {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #FFF;
  font-size: 20px;
  font-size: 1.1764705882rem;
}

main #mission section:nth-of-type(1) .content .text h3 {
  font-size: 42px;
  font-size: 2.4705882353rem;
  font-weight: bold;
}

main #mission section:nth-of-type(2) {
  padding-top: 40px;
  z-index: 2;
}

main #mission section:nth-of-type(2) h2 {
  font-size: 46px;
  font-size: 2.7058823529rem;
  font-weight: bold;
  display: -moz-inline-box;
  display: inline-block;
  text-align: center;
  line-height: 1.2;
  position: relative;
}

main #mission section:nth-of-type(2) h2:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 225px 0 225px;
  border-color: #FFF transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

main #mission section:nth-of-type(2) h2 span {
  display: block;
  font-size: 28px;
  font-size: 1.6470588235rem;
  color: #e52883;
}

main #mission section:nth-of-type(3) {
  height: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

main #mission section:nth-of-type(3) .bg span {
  background-position: right center;
}

main #mission section:nth-of-type(3) .text {
  position: relative;
  font-size: 24px;
  font-size: 1.4117647059rem;
}

main #mission section:nth-of-type(3) .text strong {
  font-size: 42px;
  font-size: 2.4705882353rem;
  font-weight: bold;
}

main #award .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

main #award .bg span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 110%;
  background: url(../img/award/bg.jpg) no-repeat center/cover;
}

main #award .content {
  position: relative;
}

main #award .heading-lv01 {
  color: #FFF;
}

main #award ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
}

main #award ul li {
  width: calc(25% - 10px);
  margin-right: 10px;
}

main #award ul li[data-emergence=visible] {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -ms-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

main #award ul li[data-emergence=visible]:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

main #award ul li[data-emergence=visible]:nth-child(2) {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

main #award ul li[data-emergence=visible]:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

main #award ul li[data-emergence=visible]:nth-child(4) {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -ms-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

main #award ul .item-img {
  text-align: center;
  margin-bottom: 15px;
}

main #award ul .item-text {
  color: #FFF;
  font-size: 16px;
  font-size: 0.9411764706rem;
  padding-left: 15px;
  padding-right: 15px;
}

main #media {
  padding-bottom: 30px;
}

main #media ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  @align (center);
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-bottom: -10px;
}

main #media ul:not(:last-child) {
  margin-bottom: 30px;
}

main #media ul li {
  width: calc(20% - 20px);
  margin-right: 20px;
  margin-bottom: 10px;
  text-align: center;
  line-height: 0;
}

main #media ul li[data-emergence=visible] {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

main #media ul li[data-emergence=visible]:nth-child(4n-3) {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

main #media ul li[data-emergence=visible]:nth-child(4n-2) {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

main #media ul li[data-emergence=visible]:nth-child(4n-1) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -ms-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

main #media ul li[data-emergence=visible]:nth-child(4n) {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -ms-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

main #media p {
  font-size: 17px;
  font-size: 1rem;
}

main #media p:not(:last-child) {
  margin-bottom: 10px;
}

main #service {
  overflow: hidden;
}

main #service .img {
  width: 700px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  margin-bottom: 50px;
}

main #service .img span {
  display: block;
  font-size: 16px;
  font-size: 0.9411764706rem;
  color: #222222;
}

main #service h3 {
  color: #222222;
  margin-bottom: 60px;
  text-align: center;
}

main #service h3 span {
  font-weight: normal;
  font-size: 60px;
  font-size: 3.5294117647rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  display: block;
  margin-left: auto;
  margin-right: auto;
  display: -moz-inline-box;
  display: inline-block;
  text-align: start;
  text-align: justify;
}

main #service ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-right: -70px;
}

main #service ul li {
  width: calc(33.3333% - 70px);
  margin-right: 70px;
  position: relative;
  padding-top: 30px;
}

main #service ul li[data-emergence=visible] {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -ms-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

main #service ul li[data-emergence=visible]:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

main #service ul li[data-emergence=visible]:nth-child(2) {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

main #service ul li[data-emergence=visible]:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

main #service ul li:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 2px;
  background-color: #232f3e;
}

main #service ul h4 {
  font-size: 24px;
  font-size: 1.4117647059rem;
  font-weight: bold;
  color: #232f3e;
  line-height: 1.5;
  margin-bottom: 10px;
}

main #service ul p {
  font-size: 16px;
  font-size: 0.9411764706rem;
}

main #service ul p:not(:last-child) {
  margin-bottom: 10px;
}

main #service .perfomance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 100px;
}

main #service .perfomance .item-text {
  width: 10px;
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  margin-right: 40px;
}

main #service .perfomance .item-text h4 {
  font-size: 36px;
  font-size: 2.1176470588rem;
  font-weight: normal;
  color: #222222;
  margin-bottom: 20px;
  line-height: 1.6;
}

main #service .perfomance .item-text p {
  font-size: 17px;
  font-size: 1rem;
}

main #service .perfomance .item-text p:not(:last-child) {
  margin-bottom: 15px;
}

main #service .perfomance .item-img {
  margin-right: -55px;
  line-height: 0;
}

main #service-02 {
  background: url(../img/service/bg.jpg) no-repeat center/cover;
  /*background-position: center!important;*/
}

main #service-02 h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 31px;
  font-size: 1.8235294118rem;
}

main #service-02 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

main #service-02 ul li {
  line-height: 0;
  background: #fff;
}

main #service-02 ul li[data-emergence=visible]:nth-child(3n-2) {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

main #service-02 ul li[data-emergence=visible]:nth-child(3n-1) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -ms-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

main #service-02 ul li[data-emergence=visible]:nth-child(3n) {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -ms-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

main #service-02 section:nth-child(1) {
  margin-bottom: 34%;
}

main #service-02 section:nth-child(1) h2 {
  color: #FFF;
}

main #service-02 section:nth-child(1) ul {
  margin-right: -4px;
  margin-bottom: -4px;
}

main #service-02 section:nth-child(1) ul li {
  width: calc(25% - 4px);
  margin-right: 4px;
  margin-bottom: 4px;
}

main #service-02 section:nth-child(2) ul {
  margin-right: -25px;
  margin-bottom: -25px;
}

main #service-02 section:nth-child(2) ul li {
  width: calc(33.3333% - 25px);
  margin-right: 25px;
  margin-bottom: 25px;
}

main #achievement {
  padding-bottom: 30px;
}

main #achievement ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  @align (center);
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -19px;
  margin-bottom: -10px;
}

main #achievement ul:not(:last-child) {
  margin-bottom: 30px;
}

main #achievement ul li {
  width: calc( (100% / 6) - 19px);
  margin-right: 19px;
  margin-bottom: 10px;
  text-align: center;
  line-height: 0;
}

main #achievement ul li[data-emergence=visible] {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

main #achievement ul li[data-emergence=visible]:nth-child(4n-3) {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

main #achievement ul li[data-emergence=visible]:nth-child(4n-2) {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

main #achievement ul li[data-emergence=visible]:nth-child(4n-1) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -ms-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

main #achievement ul li[data-emergence=visible]:nth-child(4n) {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -ms-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

main #plan {
  padding-bottom: 40px;
}

main #plan .line-title {
  margin-bottom: 0;
}

main #plan section:not(:last-child) {
  margin-bottom: 60px;
}

main #plan .title {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #000000;
}

main #plan .title .bg {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  overflow: hidden;
  background: #F9F8F3;
}

main #plan .title .bg span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 110%;
  background: url(../img/plan/bg.jpg) no-repeat center/cover;
}

main #plan .title > * {
  position: relative;
}

main #plan .title h2 {
  font-size: 42px;
  font-size: 2.4705882353rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}

main #plan .title h2 span:nth-of-type(1) {
  color: #232f3e;
}

main #plan .title h2 span:nth-of-type(2) {
  color: #003366;
}

main #plan .title h3 {
  font-size: 26px;
  font-size: 1.5294117647rem;
  font-weight: bold;
}

main #plan .title p {
  font-size: 20px;
  font-size: 1.1764705882rem;
}

main #plan #sec-plan ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 60px;
}

main #plan #sec-plan ul li {
  line-height: 0;
  margin-left: 12px;
  margin-right: 12px;
}

main #plan #sec-plan > div {
  line-height: 0;
  text-align: center;
}

main #plan #sec-plan > div:not(:last-child) {
  margin-bottom: 60px;
}

main #plan #sec-plan > div + p {
  margin-top: -45px;
  font-size: 16px;
  font-size: 0.9411764706rem;
}

main #plan #sec-support h2 {
  margin-bottom: 20px;
}

main #plan #sec-support .support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

main #plan #sec-support .support > div {
  width: 320px;
}

main #plan #sec-support .support > div.img {
  line-height: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

main #plan #sec-support .support > div:nth-child(3) h3 {
  color: #003366;
}

main #plan #sec-support .support h3 {
  text-align: center;
  font-size: 24px;
  font-size: 1.4117647059rem;
  font-weight: bold;
  padding-bottom: 10px;
  color: #232f3e;
  border-bottom: 1px solid #232f3e;
  margin-bottom: 10px;
}

main #plan #sec-support .support ul li {
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #232f3e;
}

main #plan #sec-support .support ul .item-img {
  line-height: 0;
}

main #plan #sec-support .support ul .item-text {
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  width: 10px;
  text-align: center;
  font-size: 18px;
  font-size: 1.0588235294rem;
}

main #support section:not(:last-child) {
  margin-bottom: 50px;
}

main #support .slides {
  width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: 0;
  padding-bottom: 20px;
}

main #support .slides .slick-list li {
  margin-left: 50px;
  margin-right: 50px;
}

main #support .slides .slick-arrow {
  width: 136px;
  height: 256px;
  z-index: 2;
}

main #support .slides .slick-arrow:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(../img/arrow-slide.png) no-repeat center/contain;
}

main #support .slides .slick-prev {
  left: 50%;
  margin-left: -600px;
}

main #support .slides .slick-prev:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

main #support .slides .slick-next {
  right: 50%;
  margin-right: -600px;
}

main #support .slides .slick-dots {
  bottom: 0;
}

main #support .slides .slick-dots li {
  width: 8px;
  height: 8px;
}

main #support .slides .slick-dots li button {
  background-color: #f6f6f6;
}

main #support .slides .slick-dots li.slick-active {
  width: 12px;
  height: 12px;
}

main #support .slides .slick-dots li.slick-active button {
  background-color: #e52883;
}

main #support .title {
  text-align: center;
  font-size: 20px;
  font-size: 1.1764705882rem;
  color: #222222;
}

main #support .title h3 {
  font-size: 42px;
  font-size: 2.4705882353rem;
  font-weight: bold;
  line-height: 1.6;
}

main #support .title:not(:last-child) {
  margin-bottom: 40px;
}

main #support .tbl:not(:last-child) {
  margin-bottom: 60px;
}

main #support .tbl p {
  margin-top: 20px;
  color: 464646;
  font-size: 15px;
  font-size: 0.8823529412rem;
}

main #contact {
  padding-bottom: 100px;
}

main #contact .item-tel {
  text-align: center;
  font-size: 24px;
  font-size: 1.4117647059rem;
  font-weight: bold;
  color: #222222;
  margin-bottom: 30px;
}

main #contact .item-tel a {
  color: #e52883;
  font-size: 34px;
  font-size: 2rem;
  padding-left: 35px;
  position: relative;
  display: -moz-inline-box;
  display: inline-block;
}

main #contact .item-tel a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 55px;
  background: url(../img/contact/tel.svg) no-repeat center center;
  background-size: 32px auto;
}

main #contact .item-tel .tel {
  display: block;
}

main #contact .item-text {
  text-align: center;
  font-size: 16px;
  font-size: 0.9411764706rem;
  font-weight: bold;
  margin-bottom: 30px;
}

main #contact .item-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: -30px;
}

main #contact .item-form:not(:last-child) {
  margin-bottom: 10px;
}

main #contact .item-form > * {
  margin-bottom: 30px;
}

main #contact .item-form dt {
  width: 220px;
  font-size: 16px;
  font-size: 0.9411764706rem;
  font-weight: bold;
}

main #contact .item-form dt span {
  color: #e52883;
}

main #contact .item-form dd {
  font-size: 16px;
  font-size: 0.9411764706rem;
  width: calc(100% - 220px);
}

main #contact .item-form-text {
  text-align: right;
  font-size: 15px;
  font-size: 0.8823529412rem;
  font-weight: bold;
  margin-top: -15px;
  margin-bottom: 40px;
  color: #e52883;
}

main #contact .item-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 -35px;
}

@media screen and (max-width: 700px) {
  main #contact .item-btn {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

main #contact .item-btn button {
  width: 735px;
  max-width: 100%;
  height: 55px;
  background: #FFF;
  font-size: 16px;
  font-size: 0.9411764706rem;
  font-weight: bold;
  border: 2px solid #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 35px 10px;
  padding: 0 30px;
}

main #contact .item-btn button span {
  position: relative;
  display: block;
  z-index: 10;
  color: #000;
}

main #contact .item-btn button span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 50px;
  background: url(../img/contact/arrow-btn.svg) no-repeat center;
  background-size: 50px auto;
}

@media screen and (min-width: 701px) {
  main #contact .item-btn button:hover {
    color: #FFF;
  }

  main #contact .item-btn button:hover span {
    color: #FFF;
  }

  main #contact .item-btn button:hover span:after {
    background-image: url(../img/contact/arrow-btn_white.svg);
  }

  main #contact .item-btn button:hover:after {
    border-left-color: #FFF;
  }

  main #contact .item-btn button:hover:before {
    width: 100%;
  }
}

main #contact .item-btn button:before, main #contact .item-btn button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

main #contact .item-btn button:after {
  right: 0px;
  width: 55px;
  border-left: 2px solid #000000;
}

main #contact .item-btn button:before {
  right: auto;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #000000;
}

main #contact .item-btn button.w350 {
  width: 315px;
  max-width: 100%;
}

main #contact .item-btn button.back:before {
  left: auto;
  right: 0;
}

main #contact .item-btn button.back:after {
  right: auto;
  left: 55px;
}

main #contact .item-btn button.back span:after {
  right: 0;
  left: 0px;
  background-image: url(../img/contact/arrow-btn-back.svg);
}

@media screen and (min-width: 701px) {
  main #contact .item-btn button.back:hover span:after {
    background-image: url(../img/contact/arrow-btn-back-white.svg);
  }
}

.confirm_thanks #mainimg {
  display: none;
}

.confirm_thanks header {
  margin-top: 0;
}

.confirm_thanks #contact .item-tel {
  display: none;
}

.confirm_thanks #contact .mw_wp_form.mw_wp_form_complete .item-tel, .confirm_thanks #contact .mw_wp_form.mw_wp_form_confirm .item-tel {
  display: block;
}

.confirm_thanks #contact .mw_wp_form.mw_wp_form_confirm .item-tel {
  margin-bottom: 50px;
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
  /* main
------------------------------------------------------------*/
  main #service .perfomance .item-img {
    max-width: 60%;
  }
  main #service-02 {
    background-color: #00b0f0;
    background-position: center top 100px;
    background-size: auto 100%;
  }
  main #service-02 section:nth-child(1) {
    margin-bottom: 34%;
  }
  main #service-02 section:nth-child(1) ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  main #service-02 section:nth-child(1) ul li {
    width: calc(33.3333% - 4px);
  }
  main #service-02 section:nth-child(2) ul {
    margin-right: -15px;
    margin-bottom: -15px;
  }
  main #service-02 section:nth-child(2) ul li {
    width: calc(33.3333% - 15px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  main #achievement {
    padding-bottom: 30px;
  }
  main #achievement ul li {
    width: calc( (100% / 5) - 19px);
  }
  main #plan #plan > div {
    margin-left: -20px;
    margin-right: -20px;
  }
  main #plan #sec-support h2 {
    margin-bottom: 20px;
  }
  main #plan #sec-support .support ul .item-img {
    max-width: 60%;
    margin-right: 10px;
  }
  main #support .slides .slick-list li {
    margin-left: 30px;
    margin-right: 30px;
  }
  main #support .slides .slick-arrow {
    width: 100px;
    height: 150px;
  }
  main #support .slides .slick-prev {
    left: 10px;
    margin-left: 0;
  }
  main #support .slides .slick-next {
    right: 10px;
    margin-right: 0;
  }
  main #support .tbl {
    margin-left: -20px;
    margin-right: -20px;
  }
  main #support .tbl p {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*sp*/
@media screen and (max-width: 700px) {
  /* main
------------------------------------------------------------*/
  main > section {
    padding: 55px 20px;
  }
  main .line-title {
    height: 3px;
  }
  main .line-title span {
    margin-bottom: -3px;
  }
  main .line-title span img {
    width: 70px;
  }
  main #mission .heading-lv01 {
    padding-left: 20px;
    padding-right: 20px;
  }
  main #mission section {
    padding-left: 20px;
    padding-right: 20px;
  }
  main #mission section:nth-of-type(1) {
    height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  main #mission section:nth-of-type(1) .content {
    position: relative;
  }
  main #mission section:nth-of-type(1) .content:after {
    width: 70px;
    background-size: contain;
    margin-top: -167px;
  }
  main #mission section:nth-of-type(1) .content h2 {
    font-size: 29px;
    font-size: 1.7058823529rem;
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 10px;
  }
  main #mission section:nth-of-type(1) .content .text {
    position: relative;
    height: auto;
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    font-size: 16px;
    font-size: 0.9411764706rem;
    max-width: 100%;
  }
  main #mission section:nth-of-type(1) .content .text h3 {
    font-size: 24px;
    font-size: 1.4117647059rem;
  }
  main #mission section:nth-of-type(2) {
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
  }
  main #mission section:nth-of-type(2) h2 {
    font-size: 26px;
    font-size: 1.5294117647rem;
  }
  main #mission section:nth-of-type(2) h2:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 100px 0 100px;
    border-color: #FFF transparent transparent transparent;
  }
  main #mission section:nth-of-type(2) h2 span {
    font-size: 22px;
    font-size: 1.2941176471rem;
  }
  main #mission section:nth-of-type(3) {
    height: 320px;
  }
  main #mission section:nth-of-type(3) .bg {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=70);
    opacity: 0.7;
  }
  main #mission section:nth-of-type(3) .bg span {
    background-position: right -30px top;
  }
  main #mission section:nth-of-type(3) .text {
    font-size: 17px;
    font-size: 1rem;
    font-weight: bold;
  }
  main #mission section:nth-of-type(3) .text strong {
    font-size: 30px;
    font-size: 1.7647058824rem;
  }
  main #award .heading-lv01 span img {
    height: 68px;
  }
  main #award ul {
    margin-bottom: -20px;
  }
  main #award ul li {
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 20px;
  }
  main #award ul .item-img {
    margin-bottom: 10px;
  }
  main #award ul .item-text {
    font-size: 12.3px;
    font-size: 0.7235294118rem;
    padding-left: 0px;
    padding-right: 0px;
  }
  main #media {
    padding-bottom: 20px;
  }
  main #media ul {
    margin-right: -15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  main #media ul:not(:last-child) {
    margin-bottom: 30px;
  }
  main #media ul li {
    width: calc(25% - 15px);
    padding-bottom: 20px;
    margin-right: 15px;
  }
}

@media screen and (max-width: 700px) and (max-width: 400px) {
  main #media ul li {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 700px) {
  main #media p {
    font-size: 16px;
    font-size: 0.9411764706rem;
  }
  main #service .img {
    margin-bottom: 30px;
  }
  main #service .img span {
    font-size: 14px;
    font-size: 0.8235294118rem;
  }
  main #service h3 {
    margin-bottom: 30px;
  }
  main #service h3 span {
    font-size: 38px;
    font-size: 2.2352941176rem;
  }
  main #service ul {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: -20px;
    margin-bottom: -30px;
  }
  main #service ul li {
    width: calc(50% - 20px);
    margin-right: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-top: 20px;
  }
}

@media screen and (max-width: 700px) and (max-width: 400px) {
  main #service ul li {
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 700px) {
  main #service ul h4 {
    font-size: 18px;
    font-size: 1.0588235294rem;
  }
  main #service ul p {
    font-size: 15px;
    font-size: 0.8823529412rem;
  }
  main #service .perfomance {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 50px;
  }
  main #service .perfomance .item-text {
    width: auto;
    margin-right: 0px;
  }
  main #service .perfomance .item-text h4 {
    font-size: 26px;
    font-size: 1.5294117647rem;
    margin-bottom: 10px;
  }
  main #service .perfomance .item-text p {
    font-size: 16px;
    font-size: 0.9411764706rem;
  }
  main #service .perfomance .item-text .item-img {
    padding-bottom: 20px;
  }
  main #service .perfomance .item-img {
    margin-right: -20px;
    margin-left: -20px;
    margin-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  main #service-02 {
    background-position: center 68%;
    background-size: 140% auto;
    position: relative;
  }
  main #service-02:before, main #service-02:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 45%;
  }
  main #service-02:before {
    background-color: #00b0f0;
    top: 0;
  }
  main #service-02:after {
    background-color: #ffbbe8;
    height: 25%;
    bottom: 0;
  }
}

@media screen and (max-width: 700px) and (min-width: 501px) {
  main #service-02 {
    background-position: center 42%;
  }
}

@media screen and (max-width: 700px) {
  main #service-02 .content {
    position: relative;
    z-index: 2;
  }
  main #service-02 h2 {
    margin-bottom: 14px;
    font-size: 21px;
    font-size: 1.2352941176rem;
    line-height: 1.3;
  }
  main #service-02 ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  main #service-02 section:nth-child(1) {
    margin-bottom: 44%;
  }
  main #service-02 section:nth-child(1) h2 {
    color: #FFF;
  }
  main #service-02 section:nth-child(1) ul li {
    width: calc(33.3333% - 4px);
  }
}

@media screen and (max-width: 700px) and (max-width: 500px) {
  main #service-02 section:nth-child(1) ul li {
    width: calc(50% - 4px);
  }
}

@media screen and (max-width: 700px) {
  main #service-02 section:nth-child(2) ul {
    margin-right: -10px;
    margin-bottom: -10px;
  }
  main #service-02 section:nth-child(2) ul li {
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  main #achievement {
    padding-bottom: 20px;
  }
  main #achievement ul {
    margin-right: -5px;
    margin-bottom: -5px;
  }
  main #achievement ul li {
    width: calc( (100% / 4) - 5px);
    margin-right: 5px;
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 700px) and (max-width: 500px) {
  main #achievement ul li {
    width: calc( (100% / 3) - 5px);
  }
}

@media screen and (max-width: 700px) {
  main #plan {
    padding-bottom: 0;
  }
  main #plan section:not(:last-child) {
    margin-bottom: 40px;
  }
  main #plan .title {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  main #plan .title .bg span {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=30);
    opacity: 0.3;
    background-position: right -100px center;
  }
  main #plan .title > * {
    position: relative;
  }
  main #plan .title h2 {
    font-size: 21px;
    font-size: 1.2352941176rem;
    letter-spacing: normal;
  }
  main #plan .title h3 {
    font-size: 19px;
    font-size: 1.1176470588rem;
  }
  main #plan .title p {
    font-size: 10px;
  }
  main #plan #sec-plan ul {
    margin-bottom: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
  main #plan #sec-plan ul li {
    margin: 0 5px 10px;
  }
  main #plan #sec-plan > div {
    margin-left: -15px;
    margin-right: -15px;
  }
  main #plan #sec-plan > div:not(:last-child) {
    margin-bottom: 30px;
  }
  main #plan #sec-plan > div + p {
    margin-top: -15px;
    font-size: 15px;
    font-size: 0.8823529412rem;
  }
  main #plan #sec-support h2 {
    margin-bottom: 20px;
  }
  main #plan #sec-support .support > div {
    width: 100%;
  }
  main #plan #sec-support .support > div:not(:last-child) {
    margin-bottom: 35px;
  }
  main #plan #sec-support .support h3 {
    line-height: 1.5;
    font-size: 15.5px;
    font-size: 0.9117647059rem;
    margin-bottom: 0;
  }
  main #plan #sec-support .support ul li {
    height: auto;
    min-height: 70px;
    padding-top: 4px;
    padding-bottom: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  main #plan #sec-support .support ul .item-img {
    width: 25%;
    text-align: center;
    margin-right: 5px;
  }
  main #plan #sec-support .support ul .item-img img {
    height: auto;
    width: 60px;
  }
  main #plan #sec-support .support ul .item-text {
    font-size: 13px;
    font-size: 0.7647058824rem;
    line-height: 1.5;
  }
  main #support {
    padding-bottom: 20px;
  }
  main #support section:not(:last-child) {
    margin-bottom: 35px;
  }
  main #support .slides .slick-list li {
    margin-left: 10px;
    margin-right: 10px;
  }
  main #support .slides .slick-arrow {
    width: 30px;
    height: 100px;
  }
  main #support .slides .slick-prev {
    left: 5px;
    margin-left: 0;
  }
  main #support .slides .slick-next {
    right: 5px;
    margin-right: 0;
  }
  main #support .title {
    font-size: 16px;
    font-size: 0.9411764706rem;
  }
  main #support .title h3 {
    font-size: 20px;
    font-size: 1.1764705882rem;
  }
  main #support .title:not(:last-child) {
    margin-bottom: 30px;
  }
  main #support .tbl {
    margin-left: -15px;
    margin-right: -15px;
  }
  main #support .tbl:not(:last-child) {
    margin-bottom: 30px;
  }
  main #support .tbl p {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 13px;
    font-size: 0.7647058824rem;
  }
  main #contact {
    padding-bottom: 60px;
  }
  main #contact .item-tel {
    font-size: 14px;
    font-size: 0.8235294118rem;
    margin-bottom: 30px;
  }
  main #contact .item-tel a {
    font-size: 27px;
    font-size: 1.5882352941rem;
    position: relative;
    letter-spacing: normal;
    padding-left: 28px;
  }
  main #contact .item-tel a:before {
    width: 25px;
    height: 45px;
    background-size: 25px auto;
  }
  main #contact .item-text {
    font-size: 15px;
    font-size: 0.8823529412rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  main #contact .item-form {
    margin-bottom: -20px;
  }
  main #contact .item-form > * {
    margin-bottom: 20px;
  }
  main #contact .item-form dt {
    width: 100%;
    font-size: 15px;
    font-size: 0.8823529412rem;
    margin-bottom: 5px;
  }
  main #contact .item-form dd {
    font-size: 15px;
    font-size: 0.8823529412rem;
    width: 100%;
  }
  main #contact .item-form-text {
    font-size: 13px;
    font-size: 0.7647058824rem;
    font-weight: bold;
  }
  main #contact .item-btn {
    margin-left: 0;
    margin-right: 0;
  }
  main #contact .item-btn button {
    background: #FFF;
    padding-right: 30px;
    margin-left: 0;
    margin-right: 0;
  }
  main #contact .item-btn button.w350 {
    width: 100%;
    max-width: 100%;
  }
}

/* padding & margin */
.pd {
  padding: 30px;
}

.mg {
  margin: 30px;
}

.nomb {
  margin-bottom: 0 !important;
}

.nomt {
  margin-top: 0 !important;
}

.nopt {
  padding-top: 0 !important;
}

.nopb {
  padding-bottom: 0 !important;
}

.pt {
  padding-top: 30px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pt110 {
  padding-top: 110px;
}

.pt120 {
  padding-top: 120px;
}

.pt130 {
  padding-top: 130px;
}

.pt140 {
  padding-top: 140px;
}

.pt150 {
  padding-top: 150px;
}

.pt160 {
  padding-top: 160px;
}

.pt170 {
  padding-top: 170px;
}

.pt180 {
  padding-top: 180px;
}

.pt190 {
  padding-top: 190px;
}

.pt200 {
  padding-top: 200px;
}

.pb {
  padding-bottom: 30px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb100 {
  padding-bottom: 100px;
}

.pb110 {
  padding-bottom: 110px;
}

.pb120 {
  padding-bottom: 120px;
}

.pb130 {
  padding-bottom: 130px;
}

.pb140 {
  padding-bottom: 140px;
}

.pb150 {
  padding-bottom: 150px;
}

.pb160 {
  padding-bottom: 160px;
}

.pb170 {
  padding-bottom: 170px;
}

.pb180 {
  padding-bottom: 180px;
}

.pb190 {
  padding-bottom: 190px;
}

.pb200 {
  padding-bottom: 200px;
}

.mt {
  margin-top: 30px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mt110 {
  margin-top: 110px;
}

.mt120 {
  margin-top: 120px;
}

.mt130 {
  margin-top: 130px;
}

.mt140 {
  margin-top: 140px;
}

.mt150 {
  margin-top: 150px;
}

.mt160 {
  margin-top: 160px;
}

.mt170 {
  margin-top: 170px;
}

.mt180 {
  margin-top: 180px;
}

.mt190 {
  margin-top: 190px;
}

.mt200 {
  margin-top: 200px;
}

.mb {
  margin-bottom: 30px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb160 {
  margin-bottom: 160px;
}

.mb170 {
  margin-bottom: 170px;
}

.mb180 {
  margin-bottom: 180px;
}

.mb190 {
  margin-bottom: 190px;
}

.mb200 {
  margin-bottom: 200px;
}

.pl {
  padding-left: 30px;
}

.pl-a {
  padding-left: auto;
}

.pl5 {
  padding-left: 5px;
}

.pl10 {
  padding-left: 10px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl25 {
  padding-left: 25px;
}

.pr {
  padding-right: 30px;
}

.pr-a {
  padding-right: auto;
}

.pr5 {
  padding-right: 5px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr20 {
  padding-right: 20px;
}

.pr25 {
  padding-right: 25px;
}

.ml {
  margin-left: 30px;
}

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

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.mr {
  margin-right: 30px;
}

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

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

@media screen and (max-width: 700px) {
  .pd {
    padding: 20px;
  }
  .mg {
    margin: 20px;
  }
  .pt {
    padding-top: 20px;
  }
  .pt5 {
    padding-top: 3px;
  }
  .pt10 {
    padding-top: 6px;
  }
  .pt15 {
    padding-top: 9px;
  }
  .pt20 {
    padding-top: 12px;
  }
  .pt25 {
    padding-top: 15px;
  }
  .pt30 {
    padding-top: 18px;
  }
  .pt35 {
    padding-top: 21px;
  }
  .pt40 {
    padding-top: 24px;
  }
  .pt45 {
    padding-top: 27px;
  }
  .pt50 {
    padding-top: 30px;
  }
  .pt60 {
    padding-top: 36px;
  }
  .pt70 {
    padding-top: 42px;
  }
  .pt80 {
    padding-top: 48px;
  }
  .pt90 {
    padding-top: 54px;
  }
  .pt100 {
    padding-top: 60px;
  }
  .pt110 {
    padding-top: 66px;
  }
  .pt120 {
    padding-top: 72px;
  }
  .pt130 {
    padding-top: 78px;
  }
  .pt140 {
    padding-top: 84px;
  }
  .pt150 {
    padding-top: 90px;
  }
  .pt160 {
    padding-top: 96px;
  }
  .pt170 {
    padding-top: 102px;
  }
  .pt180 {
    padding-top: 108px;
  }
  .pt190 {
    padding-top: 114px;
  }
  .pt200 {
    padding-top: 120px;
  }
  .pb {
    padding-bottom: 20px;
  }
  .pb5 {
    padding-bottom: 3px;
  }
  .pb10 {
    padding-bottom: 6px;
  }
  .pb15 {
    padding-bottom: 9px;
  }
  .pb20 {
    padding-bottom: 12px;
  }
  .pb25 {
    padding-bottom: 15px;
  }
  .pb30 {
    padding-bottom: 18px;
  }
  .pb35 {
    padding-bottom: 21px;
  }
  .pb40 {
    padding-bottom: 24px;
  }
  .pb45 {
    padding-bottom: 27px;
  }
  .pb50 {
    padding-bottom: 30px;
  }
  .pb55 {
    padding-bottom: 33px;
  }
  .pb60 {
    padding-bottom: 36px;
  }
  .pb65 {
    padding-bottom: 39px;
  }
  .pb70 {
    padding-bottom: 42px;
  }
  .pb75 {
    padding-bottom: 45px;
  }
  .pb80 {
    padding-bottom: 48px;
  }
  .pb85 {
    padding-bottom: 51px;
  }
  .pb90 {
    padding-bottom: 54px;
  }
  .pb95 {
    padding-bottom: 57px;
  }
  .pb100 {
    padding-bottom: 60px;
  }
  .pb60 {
    padding-bottom: 36px;
  }
  .pb70 {
    padding-bottom: 42px;
  }
  .pb80 {
    padding-bottom: 48px;
  }
  .pb90 {
    padding-bottom: 54px;
  }
  .pb100 {
    padding-bottom: 60px;
  }
  .mt {
    margin-top: 20px;
  }
  .mt5 {
    margin-top: 3px;
  }
  .mt10 {
    margin-top: 6px;
  }
  .mt15 {
    margin-top: 9px;
  }
  .mt20 {
    margin-top: 12px;
  }
  .mt25 {
    margin-top: 15px;
  }
  .mt30 {
    margin-top: 18px;
  }
  .mt35 {
    margin-top: 21px;
  }
  .mt40 {
    margin-top: 24px;
  }
  .mt45 {
    margin-top: 27px;
  }
  .mt50 {
    margin-top: 30px;
  }
  .mt55 {
    margin-top: 33px;
  }
  .mt60 {
    margin-top: 36px;
  }
  .mt65 {
    margin-top: 39px;
  }
  .mt70 {
    margin-top: 42px;
  }
  .mt75 {
    margin-top: 45px;
  }
  .mt80 {
    margin-top: 48px;
  }
  .mt85 {
    margin-top: 51px;
  }
  .mt90 {
    margin-top: 54px;
  }
  .mt95 {
    margin-top: 57px;
  }
  .mt100 {
    margin-top: 60px;
  }
  .mt60 {
    margin-top: 36px;
  }
  .mt70 {
    margin-top: 42px;
  }
  .mt80 {
    margin-top: 48px;
  }
  .mt90 {
    margin-top: 54px;
  }
  .mt100 {
    margin-top: 60px;
  }
  .mb {
    margin-bottom: 20px;
  }
  .mb5 {
    margin-bottom: 3px;
  }
  .mb10 {
    margin-bottom: 6px;
  }
  .mb15 {
    margin-bottom: 9px;
  }
  .mb20 {
    margin-bottom: 12px;
  }
  .mb25 {
    margin-bottom: 15px;
  }
  .mb30 {
    margin-bottom: 18px;
  }
  .mb35 {
    margin-bottom: 21px;
  }
  .mb40 {
    margin-bottom: 24px;
  }
  .mb45 {
    margin-bottom: 27px;
  }
  .mb50 {
    margin-bottom: 30px;
  }
  .mb55 {
    margin-bottom: 33px;
  }
  .mb60 {
    margin-bottom: 36px;
  }
  .mb65 {
    margin-bottom: 39px;
  }
  .mb70 {
    margin-bottom: 42px;
  }
  .mb75 {
    margin-bottom: 45px;
  }
  .mb80 {
    margin-bottom: 48px;
  }
  .mb85 {
    margin-bottom: 51px;
  }
  .mb90 {
    margin-bottom: 54px;
  }
  .mb95 {
    margin-bottom: 57px;
  }
  .mb100 {
    margin-bottom: 60px;
  }
  .mb60 {
    margin-bottom: 36px;
  }
  .mb70 {
    margin-bottom: 42px;
  }
  .mb80 {
    margin-bottom: 48px;
  }
  .mb90 {
    margin-bottom: 54px;
  }
  .mb100 {
    margin-bottom: 60px;
  }
  .pl {
    padding-left: 20px;
  }
  .pl5 {
    padding-left: 3px;
  }
  .pl10 {
    padding-left: 6px;
  }
  .pl15 {
    padding-left: 9px;
  }
  .pl20 {
    padding-left: 12px;
  }
  .pl25 {
    padding-left: 15px;
  }
  .pr {
    padding-right: 20px;
  }
  .pr5 {
    padding-right: 3px;
  }
  .pr10 {
    padding-right: 6px;
  }
  .pr15 {
    padding-right: 9px;
  }
  .pr20 {
    padding-right: 12px;
  }
  .pr25 {
    padding-right: 15px;
  }
  .ml {
    margin-left: 20px;
  }
  .ml5 {
    margin-left: 3px;
  }
  .ml10 {
    margin-left: 6px;
  }
  .ml15 {
    margin-left: 9px;
  }
  .ml20 {
    margin-left: 12px;
  }
  .ml25 {
    margin-left: 15px;
  }
  .mr {
    margin-right: 20px;
  }
  .mr5 {
    margin-right: 3px;
  }
  .mr10 {
    margin-right: 6px;
  }
  .mr15 {
    margin-right: 9px;
  }
  .mr20 {
    margin-right: 12px;
  }
  .mr25 {
    margin-right: 15px;
  }
}

/* padding & margin */
/* btn */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  max-width: 100%;
  height: 48px;
  padding-left: 15px;
  padding-right: 15px;
  background: #e52883;
  border: none;
  color: #FFF;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  font-size: 14px;
  font-size: 0.8235294118rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  top: 0;
  line-height: 1.2;
  background-image: -moz-linear-gradient(0deg, #ff1484 0%, #ff5fac 100%);
  background-image: -webkit-linear-gradient(0deg, #ff1484 0%, #ff5fac 100%);
  background-image: -ms-linear-gradient(0deg, #ff1484 0%, #ff5fac 100%);
}

.btn:hover {
  text-decoration: none;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.btn:disabled {
  pointer-events: none;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.btn.orange {
  background-image: -moz-linear-gradient(0deg, #d86a03 0%, #ff7c00 100%);
  background-image: -webkit-linear-gradient(0deg, #d86a03 0%, #ff7c00 100%);
  background-image: -ms-linear-gradient(0deg, #d86a03 0%, #ff7c00 100%);
}

.btn.sml {
  height: 35px;
  font-size: 14px;
  font-size: 0.8235294118rem;
}

@media screen and (max-width: 700px) {
  .btn.sml.w200 {
    width: 16.5em;
    height: 3.43em;
  }
}

.btn.lg {
  height: 70px;
  font-size: 18px;
  font-size: 1.0588235294rem;
}

.btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 -10px -15px;
}

.btn-block.left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.btn-block.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.btn-block.f-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.btn-block > * {
  margin: 0 10px 15px;
}

.btn-block > *.w5p {
  width: calc(5% - 20px);
}

.btn-block > *.w10p {
  width: calc(10% - 20px);
}

.btn-block > *.w15p {
  width: calc(15% - 20px);
}

.btn-block > *.w20p {
  width: calc(20% - 20px);
}

.btn-block > *.w25p {
  width: calc(25% - 20px);
}

.btn-block > *.w30p {
  width: calc(30% - 20px);
}

.btn-block > *.w35p {
  width: calc(35% - 20px);
}

.btn-block > *.w40p {
  width: calc(40% - 20px);
}

.btn-block > *.w45p {
  width: calc(45% - 20px);
}

.btn-block > *.w50p {
  width: calc(50% - 20px);
}

.btn-block > *.w55p {
  width: calc(55% - 20px);
}

.btn-block > *.w60p {
  width: calc(60% - 20px);
}

.btn-block > *.w65p {
  width: calc(65% - 20px);
}

.btn-block > *.w70p {
  width: calc(70% - 20px);
}

.btn-block > *.w75p {
  width: calc(75% - 20px);
}

.btn-block > *.w80p {
  width: calc(80% - 20px);
}

.btn-block > *.w85p {
  width: calc(85% - 20px);
}

.btn-block > *.w90p {
  width: calc(90% - 20px);
}

.btn-block > *.w95p {
  width: calc(95% - 20px);
}

.btn-block > *.w100p {
  width: calc(100% - 20px);
}

@media screen and (max-width: 700px) {
  .btn-block {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px -10px;
  }
  .btn-block > * {
    margin: 0 5px 10px;
  }
  .btn-block > *.w5p {
    width: calc(5% - 10px);
  }
  .btn-block > *.w5p-sp {
    width: calc(5% - 10px);
  }
  .btn-block > *.w10p {
    width: calc(10% - 10px);
  }
  .btn-block > *.w10p-sp {
    width: calc(10% - 10px);
  }
  .btn-block > *.w15p {
    width: calc(15% - 10px);
  }
  .btn-block > *.w15p-sp {
    width: calc(15% - 10px);
  }
  .btn-block > *.w20p {
    width: calc(20% - 10px);
  }
  .btn-block > *.w20p-sp {
    width: calc(20% - 10px);
  }
  .btn-block > *.w25p {
    width: calc(25% - 10px);
  }
  .btn-block > *.w25p-sp {
    width: calc(25% - 10px);
  }
  .btn-block > *.w30p {
    width: calc(30% - 10px);
  }
  .btn-block > *.w30p-sp {
    width: calc(30% - 10px);
  }
  .btn-block > *.w35p {
    width: calc(35% - 10px);
  }
  .btn-block > *.w35p-sp {
    width: calc(35% - 10px);
  }
  .btn-block > *.w40p {
    width: calc(40% - 10px);
  }
  .btn-block > *.w40p-sp {
    width: calc(40% - 10px);
  }
  .btn-block > *.w45p {
    width: calc(45% - 10px);
  }
  .btn-block > *.w45p-sp {
    width: calc(45% - 10px);
  }
  .btn-block > *.w50p {
    width: calc(50% - 10px);
  }
  .btn-block > *.w50p-sp {
    width: calc(50% - 10px);
  }
  .btn-block > *.w55p {
    width: calc(55% - 10px);
  }
  .btn-block > *.w55p-sp {
    width: calc(55% - 10px);
  }
  .btn-block > *.w60p {
    width: calc(60% - 10px);
  }
  .btn-block > *.w60p-sp {
    width: calc(60% - 10px);
  }
  .btn-block > *.w65p {
    width: calc(65% - 10px);
  }
  .btn-block > *.w65p-sp {
    width: calc(65% - 10px);
  }
  .btn-block > *.w70p {
    width: calc(70% - 10px);
  }
  .btn-block > *.w70p-sp {
    width: calc(70% - 10px);
  }
  .btn-block > *.w75p {
    width: calc(75% - 10px);
  }
  .btn-block > *.w75p-sp {
    width: calc(75% - 10px);
  }
  .btn-block > *.w80p {
    width: calc(80% - 10px);
  }
  .btn-block > *.w80p-sp {
    width: calc(80% - 10px);
  }
  .btn-block > *.w85p {
    width: calc(85% - 10px);
  }
  .btn-block > *.w85p-sp {
    width: calc(85% - 10px);
  }
  .btn-block > *.w90p {
    width: calc(90% - 10px);
  }
  .btn-block > *.w90p-sp {
    width: calc(90% - 10px);
  }
  .btn-block > *.w95p {
    width: calc(95% - 10px);
  }
  .btn-block > *.w95p-sp {
    width: calc(95% - 10px);
  }
  .btn-block > *.w100p {
    width: calc(100% - 10px);
  }
  .btn-block > *.w100p-sp {
    width: calc(100% - 10px);
  }
}

input.btn {
  display: -moz-inline-box;
  display: inline-block;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* btn */
/* form */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"], input[type="search"] {
  -webkit-appearance: none;
  height: 45px;
  line-height: 45px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #f1f1f1;
  background: #f2f2f2;
  font-size: 14px;
  font-size: 0.8235294118rem;
  position: relative;
  padding-left: 10px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="search"]:focus {
  background-color: #FFF;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -ms-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -o-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
}

input[type="text"].lg, input[type="email"].lg, input[type="tel"].lg, input[type="password"].lg, input[type="number"].lg, input[type="search"].lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.0588235294rem;
}

input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="tel"]::placeholder, input[type="password"]::placeholder, input[type="number"]::placeholder, input[type="search"]::placeholder {
  color: #999999;
}

textarea {
  -webkit-appearance: none;
  height: 160px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  resize: vertical;
  border: 1px solid #f1f1f1;
  background: #f2f2f2;
  font-size: 14px;
  font-size: 0.8235294118rem;
  padding: 10px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

textarea:focus {
  background-color: #FFF;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -ms-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -o-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
}

textarea.h100 {
  height: 100px;
}

textarea::placeholder {
  color: #999999;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + .checkbox:after {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + .radio:after {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
}

label.checkbox {
  padding-left: 30px;
  min-height: 20px;
  cursor: pointer;
  margin: 0;
  display: -moz-inline-box;
  display: inline-block;
  font-weight: normal;
  position: relative;
}

label.checkbox.single {
  width: 20px;
  padding-left: 0;
}

label.checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: -moz-inline-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #FFF;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.05);
  -o-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

label.checkbox:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 8px;
  display: block;
  width: 5px;
  height: 10px;
  border-right: 2px solid #e52883;
  border-bottom: 2px solid #e52883;
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  z-index: 1;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

label.radio {
  padding-left: 30px;
  min-height: 24px;
  cursor: pointer;
  margin: 0;
  display: -moz-inline-box;
  display: inline-block;
  font-weight: normal;
  position: relative;
}

label.radio.single {
  width: 20px;
  padding-left: 0;
}

label.radio:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  display: -moz-inline-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #f1f1f1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #FFF;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
}

label.radio:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #000000;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.check-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-bottom: -10px;
}

.check-radios > * {
  width: calc(50% - 10px);
  margin: 0 10px 10px 0;
}

@media screen and (max-width: 500px) {
  .check-radios > * {
    width: calc(100% - 10px);
  }
}

label.select {
  position: relative;
  display: block;
  background-color: #FFF;
  max-width: 100%;
}

label.select:after {
  position: absolute;
  content: "";
  display: block;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #f1f1f1 transparent transparent transparent;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  pointer-events: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 40px;
  width: 100%;
  line-height: 40px;
  max-width: 100%;
  padding: 0 40px 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #f1f1f1;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-size: 0.8235294118rem;
  font-weight: normal;
  position: relative;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

select option {
  padding: 8px;
  border: none;
}

select.lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.0588235294rem;
}

select::-ms-expand {
  display: none;
}

/* form */
/* table */
table {
  width: 100%;
  background-color: #FFF;
}

table th, table td {
  padding: 15px;
  border: 1px solid #f1f1f1;
  vertical-align: middle;
}

table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

table thead th {
  background-color: #f1f1f1;
  color: #FFF;
}

/* table */
/* text */
.heading, .heading-lv01, .heading-lv02, .heading-lv03 {
  line-height: 1.4;
}

.heading:not(:last-child), .heading-lv01:not(:last-child), .heading-lv02:not(:last-child), .heading-lv03:not(:last-child) {
  margin-bottom: 50px;
}

@media screen and (max-width: 700px) {
  .heading:not(:last-child), .heading-lv01:not(:last-child), .heading-lv02:not(:last-child), .heading-lv03:not(:last-child) {
    margin-bottom: 35px;
  }
}

.heading-lv01 {
  font-size: 24px;
  font-size: 1.4117647059rem;
  font-weight: bold;
  font-weight: normal;
  color: #999999;
}

.heading-lv01 span {
  display: block;
  text-align: center;
}

.heading-lv01 span.line2 img {
  height: 81px;
}

.heading-lv01 span img {
  height: 34px;
  width: auto;
}

.heading-lv01 span img.h43 {
  height: 43px;
}

@media screen and (max-width: 700px) {
  .heading-lv01 {
    font-size: 16px;
    font-size: 0.9411764706rem;
  }
  .heading-lv01 span img {
    height: 30px;
    width: auto;
  }
  .heading-lv01 span img.h43 {
    height: 35px;
  }
}

.heading-lv02 {
  text-align: center;
  font-size: 40px;
  font-size: 2.3529411765rem;
  color: #232f3e;
}

@media screen and (max-width: 700px) {
  .heading-lv02 {
    font-size: 22px;
    font-size: 1.2941176471rem;
  }
}

.heading-lv03 {
  font-size: 17px;
  font-size: 1rem;
}

.fs11 {
  font-size: 11px;
  font-size: 0.6470588235rem;
}

.fs12 {
  font-size: 12px;
  font-size: 0.7058823529rem;
}

.fs13 {
  font-size: 13px;
  font-size: 0.7647058824rem;
}

.fs14 {
  font-size: 14px;
  font-size: 0.8235294118rem;
}

.fs15 {
  font-size: 15px;
  font-size: 0.8823529412rem;
}

.fs16 {
  font-size: 16px;
  font-size: 0.9411764706rem;
}

.fs17 {
  font-size: 17px;
  font-size: 1rem;
}

.fs18 {
  font-size: 18px;
  font-size: 1.0588235294rem;
}

.fs19 {
  font-size: 19px;
  font-size: 1.1176470588rem;
}

.fs20 {
  font-size: 20px;
  font-size: 1.1764705882rem;
}

.fs21 {
  font-size: 21px;
  font-size: 1.2352941176rem;
}

.fs22 {
  font-size: 22px;
  font-size: 1.2941176471rem;
}

.fs23 {
  font-size: 23px;
  font-size: 1.3529411765rem;
}

.fs24 {
  font-size: 24px;
  font-size: 1.4117647059rem;
}

.fs25 {
  font-size: 25px;
  font-size: 1.4705882353rem;
}

.fs26 {
  font-size: 26px;
  font-size: 1.5294117647rem;
}

.fs27 {
  font-size: 27px;
  font-size: 1.5882352941rem;
}

.fs28 {
  font-size: 28px;
  font-size: 1.6470588235rem;
}

.fs29 {
  font-size: 29px;
  font-size: 1.7058823529rem;
}

.fs30 {
  font-size: 30px;
  font-size: 1.7647058824rem;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.red {
  color: #ff0000;
}

.bold {
  font-weight: bold;
}

/* text */
/* etc */
.lh0 {
  line-height: 0;
}

.w10 {
  width: 10px;
}

.w20 {
  width: 20px;
}

.w30 {
  width: 30px;
}

.w40 {
  width: 40px;
}

.w50 {
  width: 50px;
}

.w60 {
  width: 60px;
}

.w70 {
  width: 70px;
}

.w80 {
  width: 80px;
}

.w90 {
  width: 90px;
}

.w100 {
  width: 100px;
}

.w110 {
  width: 110px;
}

.w120 {
  width: 120px;
}

.w130 {
  width: 130px;
}

.w140 {
  width: 140px;
}

.w150 {
  width: 150px;
}

.w160 {
  width: 160px;
}

.w170 {
  width: 170px;
}

.w180 {
  width: 180px;
}

.w190 {
  width: 190px;
}

.w200 {
  width: 200px;
}

.w210 {
  width: 210px;
}

.w220 {
  width: 220px;
}

.w230 {
  width: 230px;
}

.w240 {
  width: 240px;
}

.w250 {
  width: 250px;
}

.w260 {
  width: 260px;
}

.w270 {
  width: 270px;
}

.w280 {
  width: 280px;
}

.w290 {
  width: 290px;
}

.w300 {
  width: 300px;
}

.w310 {
  width: 310px;
}

.w320 {
  width: 320px;
}

.w330 {
  width: 330px;
}

.w340 {
  width: 340px;
}

.w350 {
  width: 350px;
}

.w360 {
  width: 360px;
}

.w370 {
  width: 370px;
}

.w380 {
  width: 380px;
}

.w390 {
  width: 390px;
}

.w400 {
  width: 400px;
}

.w410 {
  width: 410px;
}

.w420 {
  width: 420px;
}

.w430 {
  width: 430px;
}

.w440 {
  width: 440px;
}

.w450 {
  width: 450px;
}

.w460 {
  width: 460px;
}

.w470 {
  width: 470px;
}

.w480 {
  width: 480px;
}

.w490 {
  width: 490px;
}

.w500 {
  width: 500px;
}

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

.w250 {
  width: 250px;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w400 {
  width: 400px;
}

.w450 {
  width: 450px;
}

.w500 {
  width: 500px;
}

.w5p {
  width: 5%;
}

.w10p {
  width: 10%;
}

.w15p {
  width: 15%;
}

.w20p {
  width: 20%;
}

.w25p {
  width: 25%;
}

.w30p {
  width: 30%;
}

.w35p {
  width: 35%;
}

.w40p {
  width: 40%;
}

.w45p {
  width: 45%;
}

.w50p {
  width: 50%;
}

.w55p {
  width: 55%;
}

.w60p {
  width: 60%;
}

.w65p {
  width: 65%;
}

.w70p {
  width: 70%;
}

.w75p {
  width: 75%;
}

.w80p {
  width: 80%;
}

.w85p {
  width: 85%;
}

.w90p {
  width: 90%;
}

.w95p {
  width: 95%;
}

.w100p {
  width: 100%;
}

@media screen and (max-width: 700px) {
  .w10-sp {
    width: 10px;
  }
}

@media screen and (max-width: 700px) {
  .w20-sp {
    width: 20px;
  }
}

@media screen and (max-width: 700px) {
  .w30-sp {
    width: 30px;
  }
}

@media screen and (max-width: 700px) {
  .w40-sp {
    width: 40px;
  }
}

@media screen and (max-width: 700px) {
  .w50-sp {
    width: 50px;
  }
}

@media screen and (max-width: 700px) {
  .w60-sp {
    width: 60px;
  }
}

@media screen and (max-width: 700px) {
  .w70-sp {
    width: 70px;
  }
}

@media screen and (max-width: 700px) {
  .w80-sp {
    width: 80px;
  }
}

@media screen and (max-width: 700px) {
  .w90-sp {
    width: 90px;
  }
}

@media screen and (max-width: 700px) {
  .w100-sp {
    width: 100px;
  }
}

@media screen and (max-width: 700px) {
  .w110-sp {
    width: 110px;
  }
}

@media screen and (max-width: 700px) {
  .w120-sp {
    width: 120px;
  }
}

@media screen and (max-width: 700px) {
  .w130-sp {
    width: 130px;
  }
}

@media screen and (max-width: 700px) {
  .w140-sp {
    width: 140px;
  }
}

@media screen and (max-width: 700px) {
  .w150-sp {
    width: 150px;
  }
}

@media screen and (max-width: 700px) {
  .w160-sp {
    width: 160px;
  }
}

@media screen and (max-width: 700px) {
  .w170-sp {
    width: 170px;
  }
}

@media screen and (max-width: 700px) {
  .w180-sp {
    width: 180px;
  }
}

@media screen and (max-width: 700px) {
  .w190-sp {
    width: 190px;
  }
}

@media screen and (max-width: 700px) {
  .w200-sp {
    width: 200px;
  }
}

@media screen and (max-width: 700px) {
  .w210-sp {
    width: 210px;
  }
}

@media screen and (max-width: 700px) {
  .w220-sp {
    width: 220px;
  }
}

@media screen and (max-width: 700px) {
  .w230-sp {
    width: 230px;
  }
}

@media screen and (max-width: 700px) {
  .w240-sp {
    width: 240px;
  }
}

@media screen and (max-width: 700px) {
  .w250-sp {
    width: 250px;
  }
}

@media screen and (max-width: 700px) {
  .w260-sp {
    width: 260px;
  }
}

@media screen and (max-width: 700px) {
  .w270-sp {
    width: 270px;
  }
}

@media screen and (max-width: 700px) {
  .w280-sp {
    width: 280px;
  }
}

@media screen and (max-width: 700px) {
  .w290-sp {
    width: 290px;
  }
}

@media screen and (max-width: 700px) {
  .w300-sp {
    width: 300px;
  }
}

@media screen and (max-width: 700px) {
  .w310-sp {
    width: 310px;
  }
}

@media screen and (max-width: 700px) {
  .w320-sp {
    width: 320px;
  }
}

@media screen and (max-width: 700px) {
  .w330-sp {
    width: 330px;
  }
}

@media screen and (max-width: 700px) {
  .w340-sp {
    width: 340px;
  }
}

@media screen and (max-width: 700px) {
  .w350-sp {
    width: 350px;
  }
}

@media screen and (max-width: 700px) {
  .w360-sp {
    width: 360px;
  }
}

@media screen and (max-width: 700px) {
  .w370-sp {
    width: 370px;
  }
}

@media screen and (max-width: 700px) {
  .w380-sp {
    width: 380px;
  }
}

@media screen and (max-width: 700px) {
  .w390-sp {
    width: 390px;
  }
}

@media screen and (max-width: 700px) {
  .w400-sp {
    width: 400px;
  }
}

@media screen and (max-width: 700px) {
  .w410-sp {
    width: 410px;
  }
}

@media screen and (max-width: 700px) {
  .w420-sp {
    width: 420px;
  }
}

@media screen and (max-width: 700px) {
  .w430-sp {
    width: 430px;
  }
}

@media screen and (max-width: 700px) {
  .w440-sp {
    width: 440px;
  }
}

@media screen and (max-width: 700px) {
  .w450-sp {
    width: 450px;
  }
}

@media screen and (max-width: 700px) {
  .w460-sp {
    width: 460px;
  }
}

@media screen and (max-width: 700px) {
  .w470-sp {
    width: 470px;
  }
}

@media screen and (max-width: 700px) {
  .w480-sp {
    width: 480px;
  }
}

@media screen and (max-width: 700px) {
  .w490-sp {
    width: 490px;
  }
}

@media screen and (max-width: 700px) {
  .w500-sp {
    width: 500px;
  }
}

@media screen and (max-width: 700px) {
  .w150-sp {
    width: 150px;
  }
}

@media screen and (max-width: 700px) {
  .w200-sp {
    width: 200px;
  }
}

@media screen and (max-width: 700px) {
  .w250-sp {
    width: 250px;
  }
}

@media screen and (max-width: 700px) {
  .w300-sp {
    width: 300px;
  }
}

@media screen and (max-width: 700px) {
  .w350-sp {
    width: 350px;
  }
}

@media screen and (max-width: 700px) {
  .w400-sp {
    width: 400px;
  }
}

@media screen and (max-width: 700px) {
  .w450-sp {
    width: 450px;
  }
}

@media screen and (max-width: 700px) {
  .w500-sp {
    width: 500px;
  }
}

@media screen and (max-width: 700px) {
  .w5p-sp {
    width: 5%;
  }
}

@media screen and (max-width: 700px) {
  .w10p-sp {
    width: 10%;
  }
}

@media screen and (max-width: 700px) {
  .w15p-sp {
    width: 15%;
  }
}

@media screen and (max-width: 700px) {
  .w20p-sp {
    width: 20%;
  }
}

@media screen and (max-width: 700px) {
  .w25p-sp {
    width: 25%;
  }
}

@media screen and (max-width: 700px) {
  .w30p-sp {
    width: 30%;
  }
}

@media screen and (max-width: 700px) {
  .w35p-sp {
    width: 35%;
  }
}

@media screen and (max-width: 700px) {
  .w40p-sp {
    width: 40%;
  }
}

@media screen and (max-width: 700px) {
  .w45p-sp {
    width: 45%;
  }
}

@media screen and (max-width: 700px) {
  .w50p-sp {
    width: 50%;
  }
}

@media screen and (max-width: 700px) {
  .w55p-sp {
    width: 55%;
  }
}

@media screen and (max-width: 700px) {
  .w60p-sp {
    width: 60%;
  }
}

@media screen and (max-width: 700px) {
  .w65p-sp {
    width: 65%;
  }
}

@media screen and (max-width: 700px) {
  .w70p-sp {
    width: 70%;
  }
}

@media screen and (max-width: 700px) {
  .w75p-sp {
    width: 75%;
  }
}

@media screen and (max-width: 700px) {
  .w80p-sp {
    width: 80%;
  }
}

@media screen and (max-width: 700px) {
  .w85p-sp {
    width: 85%;
  }
}

@media screen and (max-width: 700px) {
  .w90p-sp {
    width: 90%;
  }
}

@media screen and (max-width: 700px) {
  .w95p-sp {
    width: 95%;
  }
}

@media screen and (max-width: 700px) {
  .w100p-sp {
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  br.pc {
    display: none;
  }
}

br.tablet {
  display: none;
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
  br.tablet {
    display: inline;
  }
}

br.sp {
  display: none;
}

@media screen and (max-width: 700px) {
  br.sp {
    display: inline;
  }
}

@media screen and (max-width: 700px) {
  img.pc {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  img.sp {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .hidden-sp {
    display: none;
  }
}

/* etc */
.post ul:not(:last-child) {
  margin-bottom: 30px;
}

.post ul li {
  list-style-type: none;
  text-indent: -1em;
  padding-left: 1em;
}

.post ul li:before {
  content: "\0030fb";
  margin-right: 0.5em;
}

.post ol {
  padding-left: 1.5em;
}

.post ol:not(:last-child) {
  margin-bottom: 30px;
}

.post ol li {
  list-style-type: decimal;
}

.post ol li:not(:last-child) {
  margin-bottom: 10px;
}

.post ol li:last-child {
  padding-bottom: 0;
}

.post strong {
  font-weight: bold;
}

.post em {
  font-style: italic;
}

.post del {
  text-decoration: line-through;
  color: #999999;
}

.post blockquote {
  display: block;
  padding: 15px;
  background-color: #f2f2f2;
  clear: both;
}

.post blockquote:not(:last-child) {
  margin-bottom: 30px;
}

.post .h, .post h1, .post h2, .post h3, .post h4, .post h5 {
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.post .h:not(:first-child), .post h1:not(:first-child), .post h2:not(:first-child), .post h3:not(:first-child), .post h4:not(:first-child), .post h5:not(:first-child) {
  margin-top: 30px;
}

.post .h:not(:last-child), .post h1:not(:last-child), .post h2:not(:last-child), .post h3:not(:last-child), .post h4:not(:last-child), .post h5:not(:last-child) {
  margin-bottom: 15px;
}

.post h1 {
  font-size: 27px;
  font-size: 1.5882352941rem;
  font-weight: bold;
}

.post h2 {
  font-size: 24px;
  font-size: 1.4117647059rem;
  font-weight: bold;
}

.post h3 {
  font-size: 21px;
  font-size: 1.2352941176rem;
  font-weight: bold;
}

.post h4 {
  font-size: 19px;
  font-size: 1.1176470588rem;
  font-weight: bold;
}

.post h5 {
  font-size: 17px;
  font-size: 1rem;
  font-weight: bold;
}

.post iframe {
  max-width: 100%;
}

.post .aligncenter {
  text-align: center;
  display: block;
  margin: 30px auto 0;
}

.post .alignright {
  text-align: right;
  float: right;
  display: block;
  margin: 0 0 10px 15px;
}

.post .alignleft {
  text-align: left;
  float: left;
  margin: 0 15px 10px 0;
}

.post .wp-caption {
  max-width: 100%;
}

.post .wp-caption-text {
  color: #999999;
}

.post .wp-caption:not(:last-child) {
  margin-bottom: 30px;
}

.post p:not(:last-child) {
  margin-bottom: 15px;
}

.post table:not(:last-child) {
  margin-bottom: 30px;
}

.post table td p:not(:last-child) {
  margin-bottom: 10px;
}

.post cite {
  border: 1px solid #f1f1f1;
  margin-top: 15px;
  padding: 10px;
  display: -moz-inline-box;
  display: inline-block;
}

.post cite:before, .post cite:after {
  content: "\00201d";
}

.post small {
  font-size: 12px;
  font-size: 0.7058823529rem;
}

.post .video-container {
  max-width: 640px;
  margin: 30px auto 0;
}

.post .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.post .video iframe, .post .video object, .post .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 700px) {
  .post .alignright {
    max-width: 160px;
    height: auto;
    margin: 0 0 10px 10px;
  }
  .post .alignleft {
    max-width: 160px;
    height: auto;
    margin: 0 10px 10px 0;
  }
}

.post:after {
  clear: both;
  display: block;
  content: '';
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

*[data-emergence], *.eg {
  -webkit-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  -ms-animation-duration: 0.6s;
  -o-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
}

*[data-emergence=visible] {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -ms-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@supports (clip-path: polygon(0 0, 0 0, 0 0)) {
  *[data-anm="skew"] {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    -webkit-transition: 1s all ease-out;
    -moz-transition: 1s all ease-out;
    -ms-transition: 1s all ease-out;
    -o-transition: 1s all ease-out;
    transition: 1s all ease-out;
  }
  *[data-anm="skew"][data-emergence=visible] {
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -ms-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-clip-path: polygon(0 0, 220% 0, 0 220%, 0 0);
    clip-path: polygon(0 0, 220% 0, 0 220%, 0 0);
  }
}

/* floating */
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(30%);
  }
  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(30%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftLg {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftLg {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftLg {
  -webkit-animation-name: fadeInLeftLg;
  animation-name: fadeInLeftLg;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightLg {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightLg {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightLg {
  -webkit-animation-name: fadeInRightLg;
  animation-name: fadeInRightLg;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes flipIn {
  0% {
    opacity: 0;
    -webkit-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}

@keyframes flipIn {
  0% {
    opacity: 0;
    -webkit-transform: perspective(2000px) rotateY(90deg);
    -ms-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}

.flipIn {
  -webkit-animation-name: flipIn;
  animation-name: flipIn;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
