@charset "UTF-8";
html {
  font-family: 'Roboto', 'Verdana', 'Noto Sans JP', '游ゴシック', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', "メイリオ", Meiryo, Osaka, sans-serif;
  font-display: swap;
  font-size: 14px;
  background-color: #FFF;
}

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

body {
  -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;
  display: -moz-inline-box;
  display: inline-block;
  width: 100%;
  overflow-x: hidden;
  height: 100%;
  position: relative;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  color: #2f2f2f;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.15em;
  /* @include mqMax(800px){
    &:before{
      @include transition;
      @include coverBG(true,100%,100%,0,0);
      background-color: #fff;
    }
    &.fixed{
      position: fixed;
      width: 100%;
      left:0;
      top:0;
      z-index: 10;
      &:before{
        background-color: blue;
      }
    }
  } */
}

body a {
  color: #00a73c;
  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 {
  max-width: 100%;
  height: auto;
}

body img.sp {
  display: none;
}

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

body br.sp {
  display: none;
}

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

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

body ::selection {
  background: rgba(29, 80, 151, 0.2);
  /* Safari */
}

body ::-moz-selection {
  background: rgba(29, 80, 151, 0.2);
  /* Firefox */
}

/* header
------------------------------------------------------------*/
.sp-bg {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  background-color: rgba(29, 80, 151, 0.8);
  -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;
  z-index: 12;
}

.sp-bg.active {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
}

header {
  z-index: 10;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  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;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  height: 70px;
}

header.top .logo {
  position: relative;
}

header.top .logo:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/logo2.png) no-repeat center center;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 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;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  header.top .logo:before {
    background-image: url(../img/common/logo2@2x.png);
    background-size: auto 38px;
  }
}

header.top .logo a {
  display: block;
  z-index: 10;
  position: relative;
}

header.next {
  background-color: #fff;
}

@media screen and (max-width: 900px) {
  header.next {
    background-color: transparent;
  }
}

header.next nav ul li a {
  color: #2e3b4e;
}

header.next nav ul li a:hover {
  color: #1d5097;
}

header .h-r {
  padding-bottom: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-bottom: 20px;
  padding-left: 35px;
  -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: 1150px) {
  header .h-r {
    padding-bottom: 20px;
  }
}

header .h-r .logo {
  margin-right: 20px;
  line-height: 0;
}

header .h-r nav .btn {
  display: none;
}

header.fixed {
  position: fixed;
  background-color: #fff;
}

header.fixed.top .logo {
  position: relative;
}

header.fixed.top .logo:before {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}

header.fixed.top .logo img {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
}

header.fixed.top nav ul li a {
  color: #2e3b4e;
}

header.fixed.top nav ul li a:hover {
  color: #1d5097;
}

@media screen and (max-width: 960px) {
  header {
    padding: 15px 20px 0;
  }
  header.fixed {
    position: fixed;
    background-color: #fff;
  }
  header.fixed .logo:before {
    background-size: 110px auto !important;
  }
  header .logo {
    margin-right: 26px;
  }
  header .h-r {
    width: 100%;
    padding-top: 0px;
    padding-left: 0;
    padding-bottom: 15px;
  }
  header .h-r .logo {
    width: 110px;
    margin-right: 0px;
    padding-left: 0px;
  }
  header .h-r nav {
    display: none;
  }
  header .h-r nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  /* header .h-r nav ul li:not(:last-child) {
    margin-right: 40px;
  } */
  header .h-r nav ul li a {
    color: #FFF;
    font-size: 14px;
    font-size: 1rem;
    font-weight: bold;
    -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 .h-r nav ul li a:hover {
    color: #1d5097;
    text-decoration: none;
  }
  header .btn {
    display: none;
  }
}

.sp-menu {
  display: none;
}

.sp-menu .btn {
  display: none;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
nav ul li {
  position: relative;
}
nav ul li a {
  color: #FFF;
  font-size: 14px;
  font-size: 1rem;
  font-weight: bold;
  -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.8s ease;
  padding: 0 20px 16px;
}
@media screen and (max-width: 1174px) {
  nav ul li a {
    padding: 0 14px 16px;
  }
}
@media screen and (max-width: 1100px) {
  nav ul li a {
    padding: 0 8px 16px;
  }
}
@media screen and (max-width: 1130px) {
  nav ul li a {
    font-size: 0.9rem;
    padding: 0 8px 16px;
  }
}
nav > ul > li > a:hover {
  color: #1d5097;
  text-decoration: none;
}
nav > ul > li:hover > .subMenu {
  height: 80px;
  opacity: 1;
}
nav > ul > li > .subMenu {
  opacity: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 0;
  padding: 0 20px;
  background: rgba(0,0,0,0.7);
  transition: all .2s ease-in;
}
nav > ul > li > .subMenu:hover {
  opacity: 1;
}
nav ul li .subMenu li {
  display: block;
}
nav ul li .subMenu li a {
  color: #fff!important;
  text-decoration: none;
  padding: 0 20px;
}
nav ul li .subMenu li a:before {
  -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;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 45%;
  width: 10px;
  height: 15px;
  background: url(../img/next/service/arrow-l.png) no-repeat center center;
  margin-top: -6px;
}
nav ul li .subMenu li a:hover:before {
  left: 5px;
}
@media screen and (max-width: 767px) {
  .subMenu {
    display: none!important;
  }
}
@media screen and (max-width: 960px) {
  header.fixed {
    position: fixed;
    background-color: #fff;
  }
  .menu, .sp-menu {
    display: none;
  }
  nav {
    display: none;
  }
  .sp-menu {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
    visibility: hidden;
    display: block;
    position: fixed;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    -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;
  }
  .sp-menu.active {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=100);
    opacity: 1;
    z-index: 12;
    visibility: visible;
    background-color: rgba(29, 80, 151, 0.8);
  }
  .sp-menu nav {
    padding-top: 60px;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  .sp-menu nav ul {
    padding-bottom: 30px;
    width: 100%;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sp-menu nav ul li {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .sp-menu nav ul li:not(:last-child) {
    margin-right: 0;
  }
  .sp-menu nav ul li a {
    padding: 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;
    font-size: 16px;
    font-size: 1.1428571429rem;
    display: block;
  }
  .sp-menu nav ul li a:hover {
    color: #FFF;
  }
  .sp-menu nav .btn {
    display: block;
    width: 100%;
  }
  .sp-menu nav .btn a {
    width: 100%;
    padding: 15px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    font-size: 1.1428571429rem;
  }
  .menu {
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 30px;
    z-index: 100;
    -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;
  }
  .menu span {
    display: block;
    width: 100%;
    height: 100%;
  }
  .menu span:after {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/common/menu-sp-blue.png) no-repeat center center;
    background-size: 40px auto;
    visibility: visible;
  }
  .menu.fixed:after {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
  }
  .menu.fixed span:after {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=100);
    opacity: 1;
  }
  .menu:after, .menu:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .menu:after {
    -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;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=100);
    opacity: 1;
    background: url(../img/common/menu-sp.png) no-repeat center center;
    background-size: 40px auto;
    visibility: visible;
  }
  .menu:before {
    -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;
    visibility: hidden;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
    background: url(../img/common/menu-close.png) no-repeat center center;
    background-size: 28px auto;
  }
  .menu.active {
    position: fixed;
    right: 20px;
    top: 20px;
  }
  .menu.active.fixed span:after {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
  }
  .menu.active:after {
    visibility: hidden;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
  }
  .menu.active:before {
    visibility: visible;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=100);
    opacity: 1;
  }
}

@media screen and (max-width: 900px) and (max-width: 750px) {
  .menu {
    margin-top: -3px;
  }
  .menu span:after {
    background-size: 32px auto;
  }
  .menu:after {
    background-size: 32px auto;
  }
  .menu:before {
    background-size: 24px auto;
  }
}

/* footer
------------------------------------------------------------*/
footer {
  background-color: #f2f2f2;
  /*margin-bottom: -4px;*/
  padding-top: 10px;
  padding-bottom: 10px;
}

footer .inner {
  /*width: 980px;*/
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 10px;
}

footer .f-l {
  margin: 0 0 50px;
}

footer .f-l .logo {
  width: 111px;
  line-height: 0;
  margin: 0 auto 20px;
}

footer .f-l .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: flex-end;

}

footer .f-l .sns-list li {
  line-height: 0;
}

footer .f-l .sns-list li:not(:last-child) {
  margin-right: 35px;
}

footer .f-r {
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;*/
  font-size: 14px;
  font-size: 0.8571428571rem;
  /*-webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;*/
}

footer .f-r ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
footer .f-r ul li:not(:last-child) {
  margin-right: 60px;
}
footer .f-r ul li a {
  display: inline-block;
  padding-bottom: 10px;
  color: #2e3b4e;
  font-size: 16px;
  font-weight: bold;
}
footer .f-r ul .underPage {
  display: block;
}
footer .f-r ul .underPage li {
  font-size: 10px;
  margin: 0 0 0 0;
}
footer .f-r ul .underPage li a {
  font-size: 13px;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
footer .copyright {
  text-align: center;
}


@media screen and (min-width: 751px) and (max-width: 980px) {
  footer .inner {
    padding: 45px 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;
  }
  footer .f-l .logo {
    width: 100px;
  }
  footer .f-l .sns-list li:not(:last-child) {
    margin-right: 20px;
  }
  footer .f-r ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-right: 25px;
  }
  footer .f-r ul li:not(:last-child) {
    margin-right: 15px;
  }
  footer .f-r ul li a {
    color: #2e3b4e;
  }
}

@media screen and (max-width: 750px) {
  footer .inner {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    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;
    padding: 30px 10px 0px;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .f-l {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .f-l .logo {
    width: 100%;
    margin-right: 0px;
    text-align: center;
  }
  footer .f-l .sns-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  footer .f-l .sns-list li {
    line-height: 0;
    margin: 0 10px;
  }
  footer .f-l .sns-list li:not(:last-child) {
    margin-right: 10px;
  }
  footer .f-r {
    width: 100%;
    font-size: 12px;
    font-size: 0.8571428571rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .f-r ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-right: 0px;
  }
  footer .f-r ul li:not(:last-child) {
    margin-right: 15px;
  }
  footer .f-r ul li a {
    color: #2e3b4e;
  }
  footer .f-r ul .underPage li {
    margin: 0;
  }
  footer .f-r ul .underPage li a {
    padding: 0 0 10px 0;
  }
  footer .f-r .copyright {
    text-align: center;
    padding: 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;
    width: 100%;
  }
}

/* mainimg
------------------------------------------------------------*/
#mainimg.top {
  padding: 0px 0px 100px;
}

#mainimg.top .inner {
  height: 100vh;
  overflow: hidden;
  position: relative;
  padding: 280px 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;
  color: #FFF;
  text-align: center;
}

#mainimg.top .inner .bg {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center center / cover;
}

#mainimg.top .inner .bg:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-attachment: fixed;
  left: 0px;
  top: 0px;
}
.no-webp #mainimg.top .inner .bg:after {
  background: url(../img/top/mainimg.jpg) no-repeat top center;
}
.webp #mainimg.top .inner .bg:after {
  background: url(../img/top/mainimg.webp) no-repeat top center;
}

#mainimg.top .inner .catch {
  padding-bottom: 30px;
  z-index: 3;
  position: relative;
}

#mainimg.top .inner .sub-txt {
  font-size: 16px;
  font-size: 1.1428571429rem;
  z-index: 3;
  position: relative;
}

@media screen and (min-width: 751px) and (max-width: 980px) {
  #mainimg.top {
    padding: 0px 0px 100px;
  }
}

@media screen and (max-width: 750px) {
  #mainimg.top {
    padding: 0;
  }
  #mainimg.top .inner {
    height: auto;
    padding: 100px 20px 85px;
  }
  #mainimg.top .inner .bg:after {
    background-attachment: scroll;
  }
  #mainimg.top .inner .catch {
    padding-bottom: 30px;
    z-index: 3;
    position: relative;
  }
  #mainimg.top .inner .sub-txt {
    font-size: 14px;
    font-size: 1rem;
  }
}

#mainimg.next {
  padding-top: 80px;
  height: 360px;
  background: no-repeat center center;
  background-size: cover;
  background-image: url(../img/next/service/mainimg.jpg);
  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;
}
.page-company #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}
.single-service #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}
.post-type-archive-service #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}
.post-type-archive-work #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}
.single-work #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}
.page-voice #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}
.post-type-archive-recruit #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}
.page-about #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}
.page-faq #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}
.page-contact #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}
.post-type-archive-post #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}
.page-privacy #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}
.page-sitemap #mainimg.next {
  background-image: url(../img/next/service/mainimg.jpg);
}

#mainimg.next .catch {
  text-align: center;
  color: #FFF;
  /*font-family: 'Montserrat', sans-serif;*/
  font-display: swap;
  font-size: 62px;
  font-size: 4.4285714286rem;
  font-weight: 900;
  letter-spacing: 0.3em;
}

#mainimg.next .catch.nf {
  letter-spacing: 0em;
}

#mainimg.next .catch span {
  /*font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-display: swap;
  display: block;
  font-size: 32px;
  font-size: 2.2857142857rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 750px) {
  #mainimg.next {
    padding-top: 40px;
    height: 280px;
    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.next .catch {
    text-align: center;
    color: #FFF;
    font-size: 35px;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.2em;
  }
  #mainimg.next .catch img {
    height: 30px;
    width: auto;
  }
  #mainimg.next .catch span {
    word-break: break-all;
    font-size: 20px;
    font-size: 1.4285714286rem;
  }
}

/* main
------------------------------------------------------------*/
main .inner {
  width: 980px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

main .inner-big {
  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 .content {
  width: 980px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

main section.bg-gray {
  background-color: #f2f2f2;
}

main .works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -27px -50px;
  padding-bottom: 75px;
}

main .works-list > li {
  margin: 0 27px 50px;
  width: 290px;
}

main .works-list > li .hover-img {
  padding-bottom: 0px;
  margin-bottom: 18px;
  line-height: 0;
  -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 .works-list > li .hover-img a {
  position: relative;
  overflow: hidden;
  display: block;
}

main .works-list > li .hover-img a .bg {
  width: 100%;
  text-align: center;
}

main .works-list > li .hover-img a .bg img {
  -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 .works-list > li .hover-img a:hover .bg img {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  -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 .works-list > li .name {
  color: #2e3b4e;
  font-weight: bold;
  padding-bottom: 5px;
}

main .works-list > li .name a {
  color: #2e3b4e;
}

main .works-list > li .txt {
  padding-bottom: 6px;
}

main .works-list > li .item-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

main .works-list > li .item-date .date {
  width: 100%;
  font-weight: bold;
  letter-spacing: normal;
  color: #666;
  margin-right: 0px;
}

main .works-list > li .item-date ul {
  letter-spacing: -0.4em;
}

main .works-list > li .item-date ul li {
  letter-spacing: normal;
  display: -moz-inline-box;
  display: inline-block;
  margin-bottom: 7px;
}

main .works-list > li .item-date ul li:not(:last-child) {
  margin-right: 7px;
}

main .works-list > li .item-date ul li a {
  font-size: 12px;
  display: -moz-inline-box;
  display: inline-block;
  color: #666;
  padding: 4px 6px;
  line-height: 1.2;
  background-color: #fff;
  letter-spacing: normal;
  -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 .works-list > li .item-date ul li a:hover {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}

main .works-list.works > li .hover-img {
  border: solid 1px #e0e0e0;
}

main .works-list.works > li .txt-box {
  padding-bottom: 10px;
}

main .news-box {
  width: 660px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

main .news-list {
  display: -moz-inline-box;
  display: inline-block;
  margin-bottom: 50px;
}

main .news-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

main .news-list li:not(:last-child) {
  padding-bottom: 23px;
}

main .news-list li .date {
  line-height: 1.2;
  color: #2e3b4e;
  font-weight: bold;
  letter-spacing: normal;
  margin-right: 30px;
}

main .news-list li .txt {
  line-height: 1.2;
  font-weight: bold;
}

main .news-list li .txt a {
  font-size: 16px;
  font-size: 1.1428571429rem;
  color: #2e3b4e;
  width: 100%;
}

main .breadcrumb {
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 20px;
  line-height: 1.5;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 16px 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;
  border-bottom: solid 1px #e7e7e7;
}

main .breadcrumb li {
  display: inline;
  letter-spacing: normal;
  font-size: 12px;
  font-size: 0.8571428571rem;
}

main .breadcrumb li:first-child {
  display: -moz-inline-box;
  display: inline-block;
}

main .breadcrumb li:first-child a {
  display: block;
  width: 13px;
  height: 13px;
  background: url(../img/common/icon-home.svg) no-repeat center center;
}

main .breadcrumb li a {
  margin-right: 27px;
  display: inline;
  position: relative;
  line-height: 1.2;
  word-break: break-all;
  color: #2e3b4e;
}

main .breadcrumb li a:after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  right: -20px;
  top: 50%;
  margin-top: -3px;
  background: url(../img/common/arrow-bread.svg) no-repeat left center;
}

main .breadcrumb li strong {
  color: #2e3b4e;
}

main .cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: solid 1px #e7e7e7;
  margin-bottom: 60px;
}

main .cat-list li {
  margin-right: 55px;
  margin-bottom: 20px;
}

main .cat-list li.current a {
  color: #1d5097;
}

main .cat-list li.current a:before {
  background-image: url(../img/next/service/arrow-l.png);
}

@media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  main .cat-list li.current a:before {
    background-image: url(../img/next/service/arrow-l@2x.png);
    background-size: 10px auto;
  }
}

main .cat-list li a {
  color: #999999;
  padding-left: 25px;
  position: relative;
  font-size: 16px;
  font-size: 1.1428571429rem;
  font-weight: bold;
  display: -moz-inline-box;
  display: inline-block;
  line-height: 1.5;
}

main .cat-list li a:before {
  -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;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 15px;
  background: url(../img/common/arrow-l-gray.png) no-repeat center center;
  margin-top: -6px;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  main .cat-list li a:before {
    background-image: url(../img/common/arrow-l-gray@2x.png);
    background-size: 10px auto;
  }
}

main .cat-list li a:hover {
  -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;
  text-decoration: none;
  color: #1d5097;
}

main .cat-list li a:hover:before {
  background-image: url(../img/next/service/arrow-l.png);
  left: 5px;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  main .cat-list li a:hover:before {
    background-image: url(../img/next/service/arrow-l@2x.png);
    background-size: 10px auto;
  }
}

main .point-lsit li {
  position: relative;
  padding-bottom: 5px;
  padding-left: 1em;
}

main .point-lsit li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  content: '・';
}

main #bnr-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0;
}

main #bnr-contact .item-bnr {
  width: 50%;
}

main #bnr-contact .item-bnr p {
  line-height: 0;
}

main #bnr-contact .item-bnr p a {
  display: block;
}

main #bnr-contact .item-bnr p img {
  width: 100%;
}

main #bnr-contact .item-contact {
  width: 50%;
  background: url(../img/common/bg-contact.jpg) no-repeat center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 20px 80px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

main #bnr-contact .item-contact > div {
  width: 100%;
}

main #bnr-contact .item-contact .contact-btn {
  line-height: 0;
  width: 100%;
  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;
  margin-bottom: 40px;
}

main #bnr-contact .item-contact .contact-btn.pc {
  display: block;
}

main #bnr-contact .item-contact .contact-btn.sp {
  display: none;
}

main #bnr-contact .item-contact .contact-btn a {
  border: solid 1px #FFF;
  display: block;
  padding: 30px;
  -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 #bnr-contact .item-contact .contact-btn a:hover {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

main #bnr-contact .item-contact .tel {
  text-align: center;
}

main .page-top {
  text-align: center;
}

main .page-top a {
  line-height: 0;
  padding: 20px 0;
  display: block;
  text-align: center;
  background-color: #e7e7e7;
}

main #sitemap .title {
  font-size: 18px;
  font-size: 1.2857142857rem;
  font-weight: bold;
  color: #1d5097;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: solid 1px #1d5097;
}

main #sitemap .title a {
  color: #1d5097;
  -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 #sitemap .title a:hover {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}

main #sitemap ul li ul {
  padding-left: 20px;
  padding-bottom: 20px;
}

main #sitemap ul li ul li {
  font-size: 16px;
  font-size: 1.1428571429rem;
  padding-bottom: 10px;
}

main #sitemap ul li ul li a {
  color: #2f2f2f;
  -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 #sitemap ul li ul li a:hover {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}

@media screen and (min-width: 751px) and (max-width: 980px) {
  /* main
------------------------------------------------------------*/
  main .inner {
    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 .works-list {
    margin: 0 -1% -50px;
    padding-bottom: 75px;
  }
  main .works-list > li {
    margin: 0 1% 50px;
    width: 31.333%;
  }
}

/*sp*/
@media screen and (max-width: 750px) {
  /* main
------------------------------------------------------------*/
  main .inner {
    padding: 0 10px;
    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;
  }
  main .news-list li:not(:last-child) {
    padding-bottom: 15px;
  }
  main .news-list li .date {
    margin-right: 20px;
  }
  main .news-list li .txt {
    width: 100%;
    -ms-flex: 1 0 auto;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    text-align: left;
    line-height: 1.2;
    padding-left: 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;
  }
  main .news-list li .txt a {
    font-size: 14px;
    font-size: 1rem;
    word-break: break-all;
  }
  main .works-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0% -40px;
    padding-bottom: 45px;
  }
  main .works-list > li {
    margin: 0 auto 40px;
    width: 100%;
    max-width: 288px;
  }
  main .works-list > li .hover-img {
    margin-bottom: 10px;
  }
  main .works-list > li .hover-img a .bg {
    width: 100%;
  }
  main .works-list > li .name {
    padding-bottom: 5px;
  }
  main .works-list > li .txt {
    padding-bottom: 6px;
  }
  main .works-list.works {
    margin: 0 0% -40px;
  }
  main .works-list.works > li {
    width: 100%;
    max-width: 290px;
    margin: 0 auto 40px;
  }
  main .cat-list {
    margin-right: -10px;
    margin-bottom: 30px;
  }
  main .cat-list li {
    margin-right: 25px;
    margin-bottom: 10px;
  }
  main .cat-list li a {
    font-size: 14px;
    font-size: 1rem;
    font-weight: bold;
  }
  main .breadcrumb {
    padding: 7px 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;
  }
  main #bnr-contact {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  main #bnr-contact .item-bnr {
    width: 100%;
  }
  main #bnr-contact .item-bnr p {
    line-height: 0;
  }
  main #bnr-contact .item-bnr p img {
    width: 100%;
  }
  main #bnr-contact .item-contact {
    width: 100%;
    padding: 40px 20px;
  }
  main #bnr-contact .item-contact > div {
    width: 100%;
  }
  main #bnr-contact .item-contact .contact-btn {
    line-height: 0;
    width: 100%;
    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;
    margin-bottom: 30px;
  }
  main #bnr-contact .item-contact .contact-btn.pc {
    display: none;
  }
  main #bnr-contact .item-contact .contact-btn.sp {
    display: block;
  }
  main #bnr-contact .item-contact .contact-btn a {
    padding: 0;
    border: none;
  }
  main #bnr-contact .item-contact .contact-btn .sp-tel {
    display: block;
    width: 100%;
    padding-bottom: 14px;
  }
  main #bnr-contact .item-contact .tel {
    text-align: center;
    width: 260px;
    margin: 0 auto;
  }
  main .page-top a {
    padding: 15px 0;
  }
  main .page-top a img {
    width: 20px;
    height: auto;
  }
}

/* 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: 750px) {
  .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 */
/* 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

.w250 {
  width: 250px;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w400 {
  width: 400px;
}

.w450 {
  width: 450px;
}

.w500 {
  width: 500px;
}

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

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

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

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

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

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

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

@media screen and (max-width: 750px) {
  .w500-sp {
    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: 750px) {
  .w5p-sp {
    width: 5%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

br.sp {
  display: none;
}

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

br.tablet {
  display: none;
}

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

/* etc */
/* btn */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.btn a, .btn input {
  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: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 200px;
  font-size: 14px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  -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;
  border: none;
  color: #2e3b4e;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  top: 0;
  /*font-family: 'Montserrat', sans-serif;*/
  font-display: swap;
  border-left: solid 3px #1d5097;
  border-top: solid 3px #1d5097;
  border-right: solid 3px #00a73c;
  border-bottom: solid 3px #00a73c;
  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;
}

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

@media screen and (max-width: 750px) {
  .btn a, .btn input {
    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;
    height: 40px;
  }
}

.btn a.gray, .btn input.gray {
  background-color: #f2f2f2;
  border-color: #999999 #b3b3b3 #b3b3b3 #999999;
  color: #999999;
}

.btn a.lg, .btn input.lg {
  width: 380px;
}

@media screen and (max-width: 750px) {
  .btn a.lg, .btn input.lg {
    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;
  }
  .btn a.lg a, .btn input.lg a {
    width: 100%;
  }
}

.btn a.small-more, .btn input.small-more {
  width: 100%;
  height: 35px;
  font-size: 12px;
  font-size: 0.8571428571rem;
}

.btn a.small-more a, .btn input.small-more a {
  font-weight: normal;
}

.btn a.small, .btn input.small {
  font-size: 14px;
  font-size: 1rem;
  width: 180px;
  height: 35px;
  border-left: solid 2px #1d5097;
  border-top: solid 2px #1d5097;
  border-right: solid 2px #00a73c;
  border-bottom: solid 2px #00a73c;
}

.btn a.green, .btn input.green {
  border: solid 3px #00a73c;
  height: 70px;
  width: 280px;
  color: #FFF;
  font-size: 20px;
  font-size: 1.4285714286rem;
  font-weight: bold;
  background: url(../img/common/arrow-r.png) no-repeat right 10px center;
  background-color: #00a73c;
}

.btn a.green:hover, .btn input.green:hover {
  background-position: right 5px center;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}

@media screen and (max-width: 750px) {
  .btn a.green, .btn input.green {
    height: 50px;
  }
}

.btn a.lg2, .btn input.lg2 {
  width: 480px;
  -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: 750px) {
  .btn a.lg2, .btn input.lg2 {
    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;
  }
  .btn a.lg2 a, .btn input.lg2 a {
    width: 100%;
  }
}

@media screen and (min-width: 751px) and (max-width: 980px) {
  .btn a.green, .btn input.green {
    height: 60px;
    width: 220px;
    color: #FFF;
    font-size: 18px;
    font-size: 1.2857142857rem;
    font-weight: bold;
  }
  .btn a.green:hover, .btn input.green:hover {
    background-position: right 5px center;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=100);
    opacity: 1;
  }
}

.btn input {
  display: -moz-inline-box;
  display: inline-block;
}

.btn.tac a, .btn.tac input, .btn.tac span {
  margin-left: auto;
  margin-right: auto;
}

.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;
}

@media screen and (max-width: 750px) {
  .btn-block > * {
    width: 100%;
    padding: 0 10px;
  }
}

/* btn */
/* form */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="url"] {
  -webkit-appearance: none;
  height: 40px;
  line-height: 40px;
  -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 #b3b3b3;
  font-size: 14px;
  font-size: 1rem;
  position: relative;
  padding-left: 10px;
  background: #FFF;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="password"]:focus, input[type="url"]: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="url"].lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.2857142857rem;
}

textarea {
  -webkit-appearance: none;
  height: 200px;
  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 #b3b3b3;
  background: #FFF;
  font-size: 14px;
  font-size: 1rem;
  padding: 10px;
}

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;
}

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;
}

a.checkbox {
  position: relative;
  padding-left: 25px;
  line-height: 1;
  color: #2e3b4e;
  font-weight: bold;
  -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;
}

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

a.checkbox.current:after {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  -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;
  margin-top: -8px;
}

a.checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  display: -moz-inline-box;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #FFF;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

a.checkbox:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  margin-top: -10px;
  display: block;
  width: 5px;
  height: 8px;
  border-right: 3px solid #1d5097;
  border-bottom: 3px solid #1d5097;
  -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 {
  line-height: 1.2;
}

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

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

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

label.checkbox:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  margin-top: -10px;
  display: block;
  width: 6px;
  height: 10px;
  border-right: 3px solid #1d5097;
  border-bottom: 3px solid #1d5097;
  -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: 50%;
  margin-top: -12px;
  display: -moz-inline-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #b3b3b3;
  -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: 50%;
  margin-top: -8px;
  left: 4px;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #b3b3b3;
  -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: -15px;
  margin-bottom: -5px;
}

.check-radios li {
  margin: 0 15px 5px 0;
}

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: #1d5097 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 #b3b3b3;
  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: 1rem;
  font-weight: normal;
  position: relative;
  background-color: #FFF;
}

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

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

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

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

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

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

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

table.tbl-detail a {
  color: #2f2f2f;
}

table.tbl-detail th, table.tbl-detail td {
  word-break: break-all;
  padding: 0;
  border: none;
  background-color: #f2f2f2;
  vertical-align: top;
  padding-bottom: 10px;
}

table.tbl-detail th {
  width: 140px;
  font-weight: normal;
  padding-right: 5px;
}

table.tbl-detail td div {
  position: relative;
  padding-left: 10px;
}
@media screen and (max-width: 750px) {
  table.tbl-detail th,
  table.tbl-detail td {
    display: block;
    width: auto;
  }
  table.tbl-detail th {
    padding: 0;
    font-weight: bold;
  }
  table.tbl-detail td {
    padding-bottom: 20px;
  }
  table.tbl-detail td div {
    padding-left: 0;
  }
}

table.tbl1 th, table.tbl1 td {
  padding: 17px 0;
  border: none;
  border-bottom: solid 1px #ccc;
  font-size: 16px;
  font-size: 1.1428571429rem;
}
table.tbl1 th {
  width: 165px;
  background-color: transparent;
  color: #1d5097;
}
table.tbl1 td {
  color: #2e3b4e;
}
table.tbl1 td a {
  color: #2e3b4e;
}
@media screen and (max-width: 750px) {
  table.tbl1 th,
  table.tbl1 td {
    padding: 15px 0 0;
    border: none;
    border-bottom: solid 1px #ccc;
    font-size: 14px;
    font-size: 1rem;
    display: block;
  }
  table.tbl1 th {
    display: block;
    width: 100%;
    border-bottom: none;
    padding-bottom: 0px;
  }
  table.tbl1 td {
    padding-top: 3px;
    padding-bottom: 15px;
  }
}

/* table */
/* text */
.heading {
  margin-bottom: 20px;
}

.heading-lv01 {
  line-height: 1;
  text-align: center;
  padding-bottom: 75px;
  /*font-family: 'Montserrat', sans-serif;*/
  font-display: swap;
  color: #2e3b4e;
  font-size: 42px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.heading-lv01.lg {
  font-size: 62px;
  font-size: 4.4285714286rem;
}

@media screen and (max-width: 750px) {
  .heading-lv01.lg {
    font-size: 40px;
    font-size: 2.8571428571rem;
  }
}

.heading-lv01.s-pb {
  padding-bottom: 45px;
}

.heading-lv01.s-pb2 {
  padding-bottom: 25px;
}

.heading-lv01.s-pb60 {
  padding-bottom: 60px;
}

.heading-lv01 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-display: swap;
  letter-spacing: 0.2em;
  padding-top: 13px;
  display: block;
  font-size: 32px;
  font-size: 2.2857142857rem;
  line-height: 1.2;
  color: #2e3b4e;
}

.heading-lv01 span.sub {
  letter-spacing: 0.1em;
  font-weight: bold;
}

@media screen and (min-width: 751px) and (max-width: 980px) {
  .heading-lv01 {
    padding-bottom: 45px;
  }
  .heading-lv01 img {
    height: 35px;
    width: auto;
  }
  .heading-lv01 span {
    font-size: 26px;
    font-size: 1.8571428571rem;
  }
}

@media screen and (max-width: 750px) {
  .heading-lv01 {
    padding-bottom: 35px;
  }
  .heading-lv01 img {
    height: 28px;
    width: auto;
  }
  .heading-lv01 span {
    font-size: 23px;
    font-size: 1.6428571429rem;
  }
  .heading-lv01.s-pb {
    padding-bottom: 25px;
  }
  .heading-lv01.s-pb60 {
    padding-bottom: 30px;
  }
}

.heading-lv02 {
  font-size: 32px;
  font-size: 2.2857142857rem;
  padding-bottom: 24px;
  /*font-family: 'Montserrat', sans-serif;*/
  font-display: swap;
  font-weight: 600;
  line-height: 1.3;
  color: #1d5097;
}

.heading-lv02 span {
  display: block;
  font-size: 16px;
  font-size: 1.1428571429rem;
}

@media screen and (min-width: 751px) and (max-width: 980px) {
  .heading-lv02 {
    font-size: 28px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 750px) {
  .heading-lv02 {
    font-size: 26px;
    font-size: 1.8571428571rem;
  }
  .heading-lv02 span {
    display: block;
    font-size: 14px;
    font-size: 1rem;
  }
}

.heading-lv03 {
  font-size: 24px;
  font-size: 1.7142857143rem;
  font-weight: bold;
  padding-bottom: 30px;
  text-align: center;
}
.heading-lv03 a {
  font-size: 12px;
}

.heading-lv03.t-blue {
  color: #2e3b4e;
}

.heading-lv03.pb {
  padding-bottom: 60px;
}

@media screen and (max-width: 750px) {
  .heading-lv03 {
    font-size: 22px;
    font-size: 1.5714285714rem;
    font-weight: bold;
  }
  .heading-lv03.pb {
    padding-bottom: 30px;
  }
}

.heading-lv04 {
  text-align: center;
  font-size: 24px;
  font-size: 1.7142857143rem;
  font-weight: bold;
  padding-bottom: 15px;
  color: #1d5097;
}

@media screen and (max-width: 750px) {
  .heading-lv04 {
    font-size: 21px;
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 10px;
  }
}

.heading-lv05 {
  font-size: 38px;
  font-size: 2.7142857143rem;
  font-weight: bold;
  padding-bottom: 70px;
  color: #1d5097;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .heading-lv05 {
    font-size: 21px;
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 10px;
  }
}

.heading-lv06 {
  font-size: 20px;
  font-size: 1.4285714286rem;
  font-weight: bold;
  color: #1d5097;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.heading-lv06:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: auto;
  width: 280px;
  height: 5px;
  bottom: 0;
  background-color: #1d5097;
}

@media screen and (max-width: 750px) {
  .heading-lv06 {
    font-size: 18px;
    font-size: 1.2857142857rem;
    font-weight: bold;
  }
  .heading-lv06:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: auto;
    width: 120px;
    height: 5px;
  }
}

.heading-lv07 {
  font-size: 20px;
  font-size: 1.4285714286rem;
  font-weight: bold;
  color: #2f2f2f;
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: solid 3px #f5f5f5;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .heading-lv07 {
    padding-bottom: 10px;
    font-size: 18px;
    font-size: 1.2857142857rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
}

.heading-lv08 {
  font-size: 20px;
  font-size: 1.4285714286rem;
  font-weight: bold;
  color: #1d5097;
  line-height: 1.5;
  padding: 7px 0;
  border-bottom: solid 2px #1d5097;
  border-top: solid 2px #1d5097;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .heading-lv08 {
    font-size: 18px;
    font-size: 1.2857142857rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
}

.heading-block {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 75px;
}

.heading-block .heading-lv01 {
  padding-bottom: 20px;
}

.heading-block .txt {
  font-size: 18px;
  font-size: 1.2857142857rem;
}

@media screen and (min-width: 751px) and (max-width: 980px) {
  .heading-block {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 750px) {
  .heading-block {
    padding-bottom: 40px;
  }
  .heading-block .txt {
    font-size: 16px;
    font-size: 1.1428571429rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.red {
  color: #ef4a36;
}

.link a {
  color: #1d5097;
}

.link a:before {
  content: "→";
  color: #1d5097;
}

/* text */
.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;
  padding-bottom: 5px;
}

.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: #e0e0e0;
}

.post blockquote {
  display: block;
  padding: 20px;
  -webkit-border-radius: 6px 6px 6px 6px;
  -moz-border-radius: 6px 6px 6px 6px;
  -ms-border-radius: 6px 6px 6px 6px;
  -o-border-radius: 6px 6px 6px 6px;
  border-radius: 6px 6px 6px 6px;
  border: 2px solid #b3b3b3;
  text-align: center;
}

.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.9285714286rem;
  font-weight: bold;
  border-left: 3px solid #00a73c;
  padding: 5px 0 5px 15px;
}

.post h2 {
  font-size: 20px;
  font-size: 1.4285714286rem;
  font-weight: bold;
  color: #1d5097;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.post h2:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: auto;
  width: 280px;
  height: 5px;
  bottom: 0;
  background-color: #1d5097;
}

.post h3 {
  font-size: 17px;
  font-size: 1.2142857143rem;
  font-weight: bold;
}

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

.post h5 {
  font-size: 17px;
  font-size: 1.2142857143rem;
  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:not(:last-child) {
  margin-bottom: 30px;
}

.post p.mpb0 {
  padding-bottom: 0;
  margin-bottom: 0;
}

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

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

.post table td p {
  padding-bottom: 15px;
  line-height: 1.5;
}

.post table td p:last-child {
  padding-bottom: 0;
}

.post cite {
  border: 1px solid #b3b3b3;
  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.8571428571rem;
}

.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: 750px) {
  .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: '';
}

.iv {
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

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

/* 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%);
  }
}

.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 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 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: rotateY(90deg);
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
}

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

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