@charset "UTF-8";


/* ==========================================================================

  base header main footer common animation

  ---------------------------------------------------------------------------
  
  ※クラス名に .custom-**** となっているクラスは bootstrap 外のもの

  ※bootstrapのクラスに .custom-**** が追加でついているものは .custom-**** にスタイルを記載

  【例】
  ▼bootstrapのみ
  <div class="col-md text-center"></div>

  ▼追加のスタイルあり
  <div class="col-md text-center custom-text"></div>

  .col-md.custom-text {
    スタイルの指定
  }

  ---------------------------------------------------------------------------
  
  .js-**** はjsで動いている場合のクラス

*/
/* ==========================================================================
  font
========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;700&display=swap");
/* 使用フォント */
/* font-family: "Noto Sans JP", sans-serif; */
/* font-family: 'Lato', sans-serif; */
/* ==========================================================================
  base
========================================================================== */
.body-index,
.page-underlayer {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  background-color: #fff;
}

.main {
  display: block;
}

/* ==========================================================================
  component
========================================================================== */
/* font */
.custom-ff-lato {
  font-family: "Lato", sans-serif;
}

/* marker */
.custom-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #FFF60A));
  background: -webkit-linear-gradient(transparent 60%, #FFF60A 0%);
  background: linear-gradient(transparent 60%, #FFF60A 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 2px 4px;
}

/* small */
@media (max-width: 575px) {
  .custom-small {
    font-size: 0.9375rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .custom-small {
    font-size: 0.9375rem;
  }
}

@media (min-width: 768px) {
  .custom-small {
    font-size: 1.125rem;
  }
}

/* custom-h3-sp */
@media (max-width: 575px) {
  .custom-h3-sp {
    font-size: 1.375rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .custom-h3-sp {
    font-size: 1.5rem;
  }
}

/* custom-text-blue */
.custom-text-blue {
  color: #0055A2;
}

/* custom-bg-blue */
.custom-bg-blue {
  background-color: #0055A2;
}

/* custom-bg-lblue */
.custom-bg-lblue {
  background-color: #F2F4F9;
}

/* custom-d-block 910px以下 block */
.custom-d-block--nav {
  display: block;
}

@media (min-width: 911px) {
  .custom-d-block--nav {
    display: none;
  }
}

/* custom-d-none--nav 910px以上 none */
.custom-d-none--nav {
  display: none;
}

@media (min-width: 911px) {
  .custom-d-none--nav {
    display: block;
  }
}

/* custom-btn */
.btn.custom-btn--yel, .btn.custom-btn--login, .btn.custom-btn--link, .btn.custom-btn--blueonly {
  width: 80%;
  font-size: 1.125rem;
  border-radius: 3.75rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .btn.custom-btn--yel, .btn.custom-btn--login, .btn.custom-btn--link, .btn.custom-btn--blueonly {
    width: 100%;
  }
}

.btn.custom-icon--blank, a.custom-icon--blank {
  position: relative;
}

.btn.custom-icon--blank:after, a.custom-icon--blank:after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
}

.btn.custom-btn--yel {
  color: #0055A2;
  background-color: #FFF60A;
}

.btn.custom-btn--yel:hover {
  background-color: #fff;
}

.btn.custom-btn--login {
  color: #E60012;
  border: 1px #E60012 solid;
  background-color: #fff;
}

.btn.custom-btn--login:hover {
  color: #fff;
  background-color: #E60012;
}

.btn.custom-btn--link {
  color: #0055A2;
  border: 1px #0055A2 solid;
  background-color: #fff;
}

.btn.custom-btn--link:hover {
  color: #fff;
  background-color: #0055A2;
}

.btn.custom-btn--blueonly {
  width: 100%;
  background-color: #0055A2;
}

.btn.custom-btn--blueonly:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .btn.custom-btn {
    width: 100%;
  }
}

.btn.custom-icon--blank:after {
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-image: url(/seino/uriPlus/assets/img/common/icon_blank@2x.png);
}

a {
  display: block;
}

a.custom-icon--blank:after {
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-image: url(/seino/uriPlus/assets/img/common/icon_blank@2x.png);
}

@media (min-width: 768px) and (max-width: 991px) {
  a.custom-icon--blank:after {
    right: 1rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  a.custom-icon--blank:after {
    right: 2rem;
  }
}

@media (min-width: 1200px) {
  a.custom-icon--blank:after {
    right: 4rem;
  }
}

a.custom-btn--blue {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  border-radius: 60px;
  background: #3b76d6;
  background: -webkit-gradient(linear, left top, left bottom, from(#3b76d6), to(#003489));
  background: -webkit-linear-gradient(top, #3b76d6 0%, #003489 100%);
  background: linear-gradient(180deg, #3b76d6 0%, #003489 100%);
  color: #fff;
  text-decoration: none;
}

a.custom-btn--blue::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border: 1px #fff60a solid;
  background: #fff60a;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff60a), to(#fff60a));
  background: -webkit-linear-gradient(top, #fff60a 0%, #fff60a 100%);
  background: linear-gradient(180deg, #fff60a 0%, #fff60a 100%);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

@media (min-width: 768px) {
  a.custom-btn--blue:hover::before {
    opacity: 1;
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
}

@media (min-width: 768px) {
  a.custom-btn--blue:hover {
    color: #0055A2;
  }
}

a.custom-btn--bdr-blue {
  font-size: 0.875rem;
  border: 1px #0055A2 solid;
  border-radius: 100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a.custom-btn--bdr-blue:hover {
  color: #fff;
  background-color: #0055A2;
  text-decoration: none;
}

a.custom-link-bdr {
  color: #0055A2;
  text-decoration: underline;
}

a .custom-icon--blank-inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  a .custom-icon--blank-inline {
    display: inline;
  }
}

a .custom-icon--blank-inline:after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 1rem;
  background-image: url(/seino/uriPlus/assets/img/common/icon_blank@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
}

a.custom-hover {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a.custom-hover:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* custom-container__wrap */
.custom-container__wrap.custom-bg--blue {
  background-color: #0055A2;
}

/* row > custom-mx */
@media (max-width: 575px) {
  .row.custom-mx-row-sp {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .row.custom-mx-row-sp {
    margin-left: 0;
    margin-right: 0;
  }
}

/* 下層共通 */
.page-underlayer .main {
  height: 100%;
  max-height: 100%;
  padding-top: 56px;
}

@media (min-width: 911px) {
  .page-underlayer .main {
    padding-top: 77px;
  }
}

.page-underlayer .main.custom-main-bottom {
  padding-bottom: 100px;
}

@media (min-width: 768px) {
  .page-underlayer .main.custom-main-bottom {
    padding-bottom: 180px;
  }
}

.page-underlayer .main.custom-main-bottom-none {
  padding-bottom: 0;
}

.page-underlayer .main .custom-h2__wrap .custom-h2 {
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  .page-underlayer .main .custom-h2__wrap .custom-h2 {
    font-size: 2.5rem;
  }
}

.page-underlayer .main .custom-h2__wrap > span {
  font-size: 0.875rem;
  line-height: 1.8;
}

/* ==========================================================================
  header
========================================================================== */
.custom-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
}

.custom-header .custom-header-inner {
  height: 56px;
}

@media (min-width: 911px) {
  .custom-header .custom-header-inner {
    height: 77px;
  }
}

.custom-header .custom-header-inner .cunstom-h1 {
  width: 114px;
  margin-left: 0.75rem;
}

@media (min-width: 911px) {
  .custom-header .custom-header-inner .cunstom-h1 {
    width: 12%;
    max-width: 161px;
    margin-right: 1rem;
  }
}

.custom-header .custom-header-inner .cunstom-h1 h1 {
  margin-bottom: 0;
  line-height: 0;
}

.custom-header .custom-header-inner .cunstom-h1 img {
  width: 100%;
}

.custom-header .custom-header-inner .custom-nav {
  position: fixed;
  top: 56px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
}

@media (min-width: 911px) {
  .custom-header .custom-header-inner .custom-nav {
    position: static;
    height: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.custom-header .custom-header-inner .custom-nav > div {
  display: block;
}

@media (min-width: 911px) {
  .custom-header .custom-header-inner .custom-nav > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.custom-header .custom-header-inner .custom-nav ul.custom-ul {
  display: block;
  max-width: 262px;
  margin: 0 auto;
  padding-top: 40px;
}

@media (min-width: 911px) {
  .custom-header .custom-header-inner .custom-nav ul.custom-ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: inherit;
    margin: 0;
    padding: 0;
  }
}

.custom-header .custom-header-inner .custom-nav ul.custom-ul li {
  margin-bottom: 1rem;
  list-style-type: none;
  color: #B5B5B5;
}

@media (min-width: 911px) {
  .custom-header .custom-header-inner .custom-nav ul.custom-ul li {
    margin-right: 1em;
    margin-bottom: 0;
    font-size: 0.625rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .custom-header .custom-header-inner .custom-nav ul.custom-ul li {
    font-size: 0.75rem;
  }
}

@media (min-width: 1200px) {
  .custom-header .custom-header-inner .custom-nav ul.custom-ul li {
    font-size: 0.875rem;
  }
}

.custom-header .custom-header-inner .custom-nav ul.custom-ul li a {
  position: relative;
  display: block;
  color: #000;
}

.custom-header .custom-header-inner .custom-nav ul.custom-ul li a:after {
  content: '';
  opacity: 0;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-color: #0055A2;
}

.custom-header .custom-header-inner .custom-nav ul.custom-ul li a:hover {
  text-decoration: none;
}

@media (min-width: 911px) {
  .custom-header .custom-header-inner .custom-nav ul.custom-ul li a:hover:after {
    content: '';
    opacity: 1;
  }
}

.custom-header .custom-header-inner .custom-hamburger {
  position: fixed;
  top: 5px;
  right: 5px;
}

.custom-header .custom-header-inner .custom-hamburger div {
  width: 57px;
  padding: 19%;
}

.custom-header .custom-header-inner .custom-hamburger img {
  width: 100%;
}

.custom-header .custom-header-inner .custom-login--sp {
  position: fixed;
  top: 0;
  right: 65px;
}

.custom-header .custom-header-inner .custom-login--sp a {
  display: block;
  width: 81px;
}

.custom-header .custom-header-inner .custom-login--sp img {
  width: 100%;
}

.custom-header .custom-link {
  width: 75%;
  margin: 2.5rem auto 0;
  /* @media (min-width: 990px) {
      width:100px;
      font-size: $rem-14px;
    } */
}

@media (min-width: 911px) {
  .custom-header .custom-link {
    width: 130px;
    margin: 0 1rem 0 0;
    font-size: 0.9375rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .custom-header .custom-link {
    width: 100px;
    font-size: 0.875rem;
  }
}

@media (min-width: 1040px) {
  .custom-header .custom-link {
    width: 130px;
  }
}

@media (min-width: 1200px) {
  .custom-header .custom-link {
    width: 190px;
  }
}

@media (min-width: 1260px) {
  .custom-header .custom-link {
    width: 230px;
  }
}

.custom-header .custom-link a {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  padding: 0.75em;
  border-radius: 60px;
  background: #3b76d6;
  background: -webkit-gradient(linear, left top, left bottom, from(#3b76d6), to(#003489));
  background: -webkit-linear-gradient(top, #3b76d6 0%, #003489 100%);
  background: linear-gradient(180deg, #3b76d6 0%, #003489 100%);
  color: #fff;
  text-decoration: none;
}

.custom-header .custom-link a::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border: 1px #fff60a solid;
  background: #fff60a;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff60a), to(#fff60a));
  background: -webkit-linear-gradient(top, #fff60a 0%, #fff60a 100%);
  background: linear-gradient(180deg, #fff60a 0%, #fff60a 100%);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

@media (min-width: 768px) {
  .custom-header .custom-link a:hover::before {
    opacity: 1;
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
}

@media (min-width: 768px) {
  .custom-header .custom-link a:hover {
    color: #0055A2;
  }
}

.custom-header .custom-login {
  max-width: 111px;
  min-width: 111px;
  margin-right: 0;
}

.custom-header .custom-login img {
  width: 100%;
}

.custom-nav {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.custom-nav.is-sp {
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  pointer-events: none;
  visibility: hidden;
}

.custom-nav.is-open {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  pointer-events: all;
  visibility: visible;
}

/* ==========================================================================
  footer
========================================================================== */
.custom-sec__wrap.custom-contact .custom-container__wrap {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .custom-sec__wrap.custom-contact .custom-container__wrap {
    padding: 5.5rem 0 7em;
  }
}

.custom-sec__wrap.custom-contact .custom-plus {
  line-height: 1.6;
}

@media (max-width: 575px) {
  .custom-sec__wrap.custom-contact .custom-plus {
    font-size: 1.375rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .custom-sec__wrap.custom-contact .custom-plus {
    font-size: 1.5rem;
  }
}

.custom-sec__wrap.custom-contact .custom-plus:after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  -webkit-transform: translateX(3rem) translateY(-3.5rem);
          transform: translateX(3rem) translateY(-3.5rem);
  background-image: url(/seino/uriPlus/assets/img/top/plus_mark@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
}

@media (min-width: 768px) {
  .custom-sec__wrap.custom-contact .custom-plus:after {
    -webkit-transform: translateX(0) translateY(-1.3rem);
            transform: translateX(0) translateY(-1.3rem);
  }
}

.custom-container__wrap.custom-footer {
  font-size: 0.75rem;
  background-color: #0055A2;
}

@media (min-width: 768px) and (max-width: 991px) {
  .custom-container__wrap.custom-footer {
    font-size: 0.8125rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .custom-container__wrap.custom-footer {
    font-size: 0.875rem;
  }
}

@media (min-width: 1200px) {
  .custom-container__wrap.custom-footer {
    font-size: 0.875rem;
  }
}

.custom-container__wrap.custom-footer .custom-py {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (max-width: 575px) {
  .custom-container__wrap.custom-footer .custom-py {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .custom-container__wrap.custom-footer .custom-py {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 768px) {
  .custom-container__wrap.custom-footer .custom-py {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

.custom-container__wrap.custom-footer .custom-logo {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .custom-container__wrap.custom-footer .custom-logo {
    margin: 0;
  }
}

.custom-container__wrap.custom-footer .custom-logo a {
  display: inline-block;
  width: 90%;
}

@media (min-width: 576px) and (max-width: 767px) {
  .custom-container__wrap.custom-footer .custom-logo a {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .custom-container__wrap.custom-footer .custom-logo a {
    width: 90%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .custom-container__wrap.custom-footer .custom-logo a {
    width: 70%;
    max-width: 253px;
  }
}

@media (min-width: 1200px) {
  .custom-container__wrap.custom-footer .custom-logo a {
    width: 70%;
    max-width: 253px;
  }
}

.custom-container__wrap.custom-footer .custom-logo img {
  width: 100%;
}

@media (min-width: 768px) {
  .custom-container__wrap.custom-footer .custom-bg {
    padding: 2rem 0;
    background-color: rgba(0, 24, 62, 0.5);
  }
}

.custom-container__wrap.custom-footer .custom-bg .custom-col, .custom-container__wrap.custom-footer .custom-bg .custom-col2 {
  padding: 1rem 0;
  background-color: rgba(0, 24, 62, 0.5);
}

@media (min-width: 768px) {
  .custom-container__wrap.custom-footer .custom-bg .custom-col, .custom-container__wrap.custom-footer .custom-bg .custom-col2 {
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
  }
}

.custom-container__wrap.custom-footer .custom-bg .custom-col {
  margin-bottom: 0.2rem;
}

@media (min-width: 768px) {
  .custom-container__wrap.custom-footer .custom-bg .custom-col {
    margin-bottom: 0;
    border-right: 1px rgba(0, 85, 162, 0.3) solid;
  }
}

.custom-container__wrap.custom-footer .custom-nav {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.3);
}

.custom-container__wrap.custom-footer .custom-nav li {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .custom-container__wrap.custom-footer .custom-nav li {
    margin-bottom: 1rem;
  }
}

.custom-container__wrap.custom-footer .custom-nav li:last-child {
  margin: 0;
}

.custom-container__wrap.custom-footer a.custom-btn span:nth-of-type(2) {
  font-size: 1.25rem;
  line-height: 2;
}

@media (min-width: 768px) and (max-width: 991px) {
  .custom-container__wrap.custom-footer a.custom-btn span:nth-of-type(2) {
    font-size: 1.0625rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .custom-container__wrap.custom-footer a.custom-btn span:nth-of-type(2) {
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .custom-container__wrap.custom-footer a.custom-btn span:nth-of-type(2) {
    font-size: 1.25rem;
  }
}

.custom-container__wrap.custom-footer .custom-btn-top {
  position: absolute;
  right: 0.5rem;
  bottom: 1rem;
  width: 50px;
  height: 50px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (min-width: 768px) {
  .custom-container__wrap.custom-footer .custom-btn-top:hover {
    cursor: pointer;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .custom-container__wrap.custom-footer .custom-btn-top {
    right: 1rem;
    bottom: 1rem;
    width: 59px;
    height: 59px;
  }
}

@media (min-width: 768px) {
  .custom-container__wrap.custom-footer .custom-btn-top {
    bottom: 2rem;
    width: 105px;
    height: 105px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .custom-container__wrap.custom-footer .custom-btn-top {
    bottom: 2rem;
  }
}

@media (min-width: 1200px) {
  .custom-container__wrap.custom-footer .custom-btn-top {
    bottom: 4rem;
  }
}

.custom-container__wrap.custom-footer .custom-btn-top img {
  width: 100%;
}

/* ==========================================================================
  top
========================================================================== */
/* custom-hero */
.body-index .custom-hero {
  position: absolute;
  top: 15vw;
  left: 0;
}

@media (min-width: 768px) {
  .body-index .custom-hero {
    top: 77px;
    height: auto;
  }
}

.body-index .custom-hero .custom-h2 {
  position: absolute;
  top: 3vw;
  left: 3vw;
  z-index: 1;
  width: 80%;
}

@media (min-width: 768px) {
  .body-index .custom-hero .custom-h2 {
    top: 8%;
    left: 3%;
    max-width: 592px;
    width: 36%;
  }
}

.body-index .custom-hero .custom-h2 .custom-h2-02 img {
  vertical-align: top;
}

.body-index .custom-hero .custom-h2 img {
  width: 100%;
}

.body-index .custom-hero .custom-h2 p {
  margin: 0;
}

.body-index .custom-hero .custom-bg {
  padding-top: 23vw;
}

@media (min-width: 768px) {
  .body-index .custom-hero .custom-bg {
    padding-top: 0;
  }
}

.body-index .custom-hero .custom-bg img {
  width: 100%;
}

.body-index .custom-hero .custom-pin {
  position: absolute;
  top: 9%;
  left: 40%;
  z-index: 1;
  width: 11vw;
}

@media (min-width: 768px) {
  .body-index .custom-hero .custom-pin {
    width: 4vw;
  }
}

.body-index .custom-hero .custom-pin img {
  width: 100%;
}

.body-index .custom-hero .custom-pin.pin-01 {
  top: 37%;
  left: 36%;
}

@media (min-width: 768px) {
  .body-index .custom-hero .custom-pin.pin-01 {
    top: 35.5%;
    left: 55.3%;
  }
}

.body-index .custom-hero .custom-pin.pin-02 {
  top: 28%;
  left: 50%;
}

@media (min-width: 768px) {
  .body-index .custom-hero .custom-pin.pin-02 {
    top: 22.1%;
    left: 61.5%;
  }
}

.body-index .custom-hero .custom-pin.pin-03 {
  top: 27%;
  left: 10%;
}

@media (min-width: 768px) {
  .body-index .custom-hero .custom-pin.pin-03 {
    top: 20.2%;
    left: 44.8%;
  }
}

/* custom-first-block */
.body-index .custom-sec__wrap.custom-first-block {
  position: relative;
  z-index: 3;
  margin-bottom: 7rem;
  padding: 100vw 0 0;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-first-block {
    font-size: 1.0625rem;
    margin-bottom: 9rem;
    padding: 60% 0 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .body-index .custom-sec__wrap.custom-first-block {
    padding: 58% 0 0;
  }
}

@media (min-width: 1200px) {
  .body-index .custom-sec__wrap.custom-first-block {
    padding: 56% 0 0;
  }
}

.body-index .custom-sec__wrap.custom-first-block .row.custom-block {
  margin: 0 1rem;
  -webkit-box-shadow: 0 0 20px rgba(191, 203, 224, 0.3);
          box-shadow: 0 0 20px rgba(191, 203, 224, 0.3);
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-first-block .row.custom-block {
    margin: 0;
    padding: 2.5em 0;
  }
}

.body-index .custom-sec__wrap.custom-first-block .col-md.custom-text {
  padding: 2rem 0;
  font-weight: 700;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-first-block .col-md.custom-text {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-first-block .col-md.custom-text:last-child {
    border-right: none;
  }
}

.body-index .custom-sec__wrap.custom-first-block .col-md.custom-text:last-child:after {
  display: none;
}

.body-index .custom-sec__wrap.custom-first-block .col-md.custom-text:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  max-width: 280px;
  height: 1px;
  background-color: rgba(0, 85, 162, 0.3);
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-first-block .col-md.custom-text:after {
    display: none;
  }
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-first-block .col-md.custom-text {
    padding: 0;
    border-right: 1px rgba(0, 85, 162, 0.3) solid;
  }
}

.body-index .custom-sec__wrap.custom-first-block .custom-number {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-first-block .custom-number {
    position: absolute;
    top: -100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 2.875rem;
  }
}

.body-index .custom-sec__wrap.custom-first-block .custom-number:after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  -webkit-transform: translateY(-1.5rem);
          transform: translateY(-1.5rem);
  background-image: url(/seino/uriPlus/assets/img/top/plus_mark@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-first-block .custom-number:after {
    -webkit-transform: translateY(-2rem);
            transform: translateY(-2rem);
  }
}

.body-index .custom-sec__wrap.custom-first-block .custom-btn {
  display: block;
  width: 600px;
  margin: 2vw auto 12vw;
}

@media (max-width: 575px) {
  .body-index .custom-sec__wrap.custom-first-block .custom-btn {
    width: 85%;
    max-width: 415px;
    margin: 70vw auto 14vw;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .body-index .custom-sec__wrap.custom-first-block .custom-btn {
    width: 85%;
    max-width: 415px;
    margin: 70vw auto 14vw;
  }
}

@media (min-width: 911px) {
  .body-index .custom-sec__wrap.custom-first-block .custom-btn {
    display: none;
    margin: 0;
  }
}

/* custom-merit */
.body-index .custom-sec__wrap.custom-merit {
  padding: 0 0 11rem;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-merit {
    padding: 0 0 10rem;
  }
}

.body-index .custom-sec__wrap.custom-merit .custom-ab-text:after {
  content: 'MERIT';
  display: block;
  position: absolute;
  top: -3rem;
  right: 0;
  color: rgba(0, 85, 162, 0.09);
  line-height: 1;
  font-size: 100px;
  font-weight: 900;
  font-family: "Lato", sans-serif;
}

@media (min-width: 576px) and (max-width: 767px) {
  .body-index .custom-sec__wrap.custom-merit .custom-ab-text:after {
    font-size: 120px;
  }
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-merit .custom-ab-text:after {
    top: -1rem;
    font-size: 180px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .body-index .custom-sec__wrap.custom-merit .custom-ab-text:after {
    top: -1rem;
    font-size: 220px;
  }
}

@media (min-width: 1200px) {
  .body-index .custom-sec__wrap.custom-merit .custom-ab-text:after {
    top: -1rem;
    font-size: 246px;
  }
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-merit .custom-pt {
    padding-top: 5rem;
  }
}

.body-index .custom-sec__wrap.custom-merit .custom-h3 {
  font-size: 1.75rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-merit .custom-h3 {
    font-size: 2.25rem;
  }
}

.body-index .custom-sec__wrap.custom-merit .custom-text {
  margin-bottom: 2rem;
  font-size: 0.875rem;
  line-height: 2;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-merit .custom-text {
    margin-bottom: 2rem;
    line-height: 2.4;
  }
}

.body-index .custom-sec__wrap.custom-merit .custom-illust {
  position: absolute;
  right: 15px;
  bottom: -120px;
  width: 100px;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-merit .custom-illust {
    right: 10%;
    bottom: -30px;
    width: 147px;
    max-width: inherit;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .body-index .custom-sec__wrap.custom-merit .custom-illust {
    right: 0;
    bottom: -80px;
    width: 110px;
  }
}

.body-index .custom-sec__wrap.custom-merit .custom-illust img {
  width: 100%;
}

/* custom-company */
.body-index .custom-sec__wrap.custom-company {
  padding: 0 0 5rem;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-company {
    padding: 0 0 7rem;
  }
}

.body-index .custom-sec__wrap.custom-company .custom-inner {
  position: relative;
  padding: 0 0 5rem;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-company .custom-inner {
    padding: 0 0 5rem;
  }
}

.body-index .custom-sec__wrap.custom-company .custom-inner:after {
  content: '';
  position: absolute;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 23px;
  height: 23px;
  background-image: url(/seino/uriPlus/assets/img/top/plus_mark@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-company .custom-inner:after {
    width: 18px;
    height: 18px;
  }
}

.body-index .custom-sec__wrap.custom-company .swiper-container__wrap.js-slider .slider-container {
  width: 200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-company .swiper-container__wrap.js-slider .slider-container {
    width: 304px;
  }
}

.body-index .custom-sec__wrap.custom-company .swiper-container__wrap.js-slider .slider-container .swiper-slide {
  width: 200px;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-company .swiper-container__wrap.js-slider .slider-container .swiper-slide {
    width: 304px;
  }
}

.body-index .custom-sec__wrap.custom-company .swiper-container__wrap.js-slider .slider-container .swiper-slide img {
  width: 100%;
}

.body-index .custom-sec__wrap.custom-company .swiper-container__wrap.js-slider-none ul {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-company .swiper-container__wrap.js-slider-none ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.body-index .custom-sec__wrap.custom-company .swiper-container__wrap.js-slider-none .swiper-slide {
  width: 49%;
  margin: 0 2% 2% 0;
}

.body-index .custom-sec__wrap.custom-company .swiper-container__wrap.js-slider-none .swiper-slide:nth-of-type(2n) {
  margin-right: 0;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-company .swiper-container__wrap.js-slider-none .swiper-slide:nth-of-type(2n) {
    margin: 0 10px 0 0;
  }
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-company .swiper-container__wrap.js-slider-none .swiper-slide {
    max-width: 304px;
    width: 25%;
    margin: 0 10px 0 0;
  }
}

.body-index .custom-sec__wrap.custom-company .swiper-container__wrap.js-slider-none .swiper-slide img {
  width: 100%;
}

/* custom-point */
.body-index .custom-sec__wrap.custom-point {
  padding: 4rem 0 6rem;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-point {
    padding: 4rem 0;
  }
}

.body-index .custom-sec__wrap.custom-point .custom-point-circle {
  position: relative;
  display: block;
  width: 51vw;
  max-width: 220px;
  height: 51vw;
  max-height: 220px;
  margin: 0 auto 20px;
  -webkit-box-shadow: 0 0 20px rgba(191, 203, 224, 0.3);
          box-shadow: 0 0 20px rgba(191, 203, 224, 0.3);
  border-radius: 50%;
  background: #fff;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-point .custom-point-circle {
    display: inline-block;
    max-width: inherit;
    max-height: inherit;
    width: 20%;
    height: 18.7vw;
    margin: 0 10px 0 0;
  }
  .body-index .custom-sec__wrap.custom-point .custom-point-circle:nth-last-of-type(1) {
    margin: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .body-index .custom-sec__wrap.custom-point .custom-point-circle {
    width: 180px;
    height: 180px;
    margin: 0 10px 0 0;
  }
}

@media (min-width: 1200px) {
  .body-index .custom-sec__wrap.custom-point .custom-point-circle {
    width: 180px;
    height: 180px;
    margin: 0 25px 0 0;
  }
}

.body-index .custom-sec__wrap.custom-point .custom-point-circle .custom-point-circle-inner {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  font-size: 17.5px;
  text-align: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .body-index .custom-sec__wrap.custom-point .custom-point-circle .custom-point-circle-inner {
    width: 180px;
  }
}

@media (min-width: 1200px) {
  .body-index .custom-sec__wrap.custom-point .custom-point-circle .custom-point-circle-inner {
    width: 180px;
  }
}

.body-index .custom-sec__wrap.custom-point .custom-point-circle .custom-point-circle-inner .custom-text {
  font-size: 1.375rem;
}

@media (min-width: 768px) and (max-width: 991px) {
  .body-index .custom-sec__wrap.custom-point .custom-point-circle .custom-point-circle-inner .custom-text {
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .body-index .custom-sec__wrap.custom-point .custom-point-circle .custom-point-circle-inner .custom-text {
    font-size: 1.375rem;
  }
}

@media (min-width: 1200px) {
  .body-index .custom-sec__wrap.custom-point .custom-point-circle .custom-point-circle-inner .custom-text {
    font-size: 1.375rem;
  }
}

/* custom-voice */
.body-index .custom-sec__wrap.custom-voice {
  padding: 7rem 0 5rem;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-voice {
    padding: 18rem 0 10rem;
  }
}

.body-index .custom-sec__wrap.custom-voice .custom-ab-text:after {
  content: 'VOICE';
  display: block;
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: rgba(0, 85, 162, 0.09);
  line-height: 1;
  font-size: 110px;
  font-weight: 900;
  font-family: "Lato", sans-serif;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-voice .custom-ab-text:after {
    left: 0;
    right: auto;
    top: -11rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .body-index .custom-sec__wrap.custom-voice .custom-ab-text:after {
    top: -9rem;
    font-size: 190px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .body-index .custom-sec__wrap.custom-voice .custom-ab-text:after {
    top: -11rem;
    font-size: 219px;
  }
}

@media (min-width: 1200px) {
  .body-index .custom-sec__wrap.custom-voice .custom-ab-text:after {
    top: -11rem;
    font-size: 219px;
  }
}

.body-index .custom-sec__wrap.custom-voice .swiper-container__wrap.js-slider .slider-container {
  width: 250px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-voice .swiper-container__wrap.js-slider .slider-container {
    width: 392px;
  }
}

.body-index .custom-sec__wrap.custom-voice .swiper-container__wrap.js-slider .slider-container .swiper-slide {
  width: 250px;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-voice .swiper-container__wrap.js-slider .slider-container .swiper-slide {
    width: 392px;
  }
}

.body-index .custom-sec__wrap.custom-voice .swiper-container__wrap.js-slider .slider-container .swiper-slide img {
  width: 100%;
}

.body-index .custom-sec__wrap.custom-voice .swiper-container__wrap a {
  color: #000;
}

.body-index .custom-sec__wrap.custom-voice .swiper-container__wrap .custom-texts p:nth-of-type(1) {
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-voice .swiper-container__wrap .custom-texts p:nth-of-type(1) {
    font-size: 0.9375rem;
  }
}

.body-index .custom-sec__wrap.custom-voice .swiper-container__wrap .custom-texts p:nth-of-type(2) {
  font-size: 0.6875rem;
  color: #0055A2;
}

@media (min-width: 768px) {
  .body-index .custom-sec__wrap.custom-voice .swiper-container__wrap .custom-texts p:nth-of-type(2) {
    font-size: 0.75rem;
  }
}

/* swiper */
.body-index .swiper-container__wrap.js-slider {
  overflow: hidden;
}

.body-index .swiper-container__wrap.js-slider .slider-container {
  overflow: visible;
}

.body-index .swiper-container__wrap.js-slider .slider-container .slider-speed {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

/* ==========================================================================
  faq
========================================================================== */
.page-underlayer.page-faq .custom-btn .custom-btn-col .custom-q, .page-underlayer.page-faq .custom-inner .custom-a {
  display: inline-block;
  width: 35px;
  height: 35px;
  font-size: 1.125rem;
  border-radius: 3.125rem;
  text-align: center;
  line-height: 30px;
}

@media (min-width: 768px) {
  .page-underlayer.page-faq .custom-btn .custom-btn-col .custom-q, .page-underlayer.page-faq .custom-inner .custom-a {
    width: 64px;
    height: 64px;
    font-size: 1.875rem;
    line-height: 59px;
  }
}

.page-underlayer.page-faq .custom-btn .custom-pr {
  padding-right: 2rem;
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-underlayer.page-faq .custom-btn .custom-pr,
  .page-underlayer.page-faq .custom-inner .custom-pr {
    padding-right: 2rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-underlayer.page-faq .custom-btn .custom-pr,
  .page-underlayer.page-faq .custom-inner .custom-pr {
    padding-right: 4rem;
  }
}

@media (min-width: 1200px) {
  .page-underlayer.page-faq .custom-btn .custom-pr,
  .page-underlayer.page-faq .custom-inner .custom-pr {
    padding-right: 5rem;
  }
}

.page-underlayer.page-faq .custom-btn {
  cursor: pointer;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .page-underlayer.page-faq .custom-btn {
    margin-bottom: 6px;
  }
}

.page-underlayer.page-faq .custom-btn.is-open .custom-btn-col:after {
  background-image: url(/seino/uriPlus/assets/img/faq/icon_close@2x.png);
}

.page-underlayer.page-faq .custom-btn .custom-btn-col {
  color: #0055A2;
  font-size: 0.75rem;
  background-color: rgba(0, 85, 162, 0.07);
}

@media (min-width: 768px) {
  .page-underlayer.page-faq .custom-btn .custom-btn-col {
    font-size: 1.125rem;
  }
}

.page-underlayer.page-faq .custom-btn .custom-btn-col .custom-q {
  color: #fff;
  background-color: #0055A2;
}

.page-underlayer.page-faq .custom-btn .custom-btn-col:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.5rem;
  width: 20px;
  height: 20px;
  background-image: url(/seino/uriPlus/assets/img/faq/icon_plus@2x.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-underlayer.page-faq .custom-btn .custom-btn-col:after {
    right: 2rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-underlayer.page-faq .custom-btn .custom-btn-col:after {
    right: 3rem;
  }
}

@media (min-width: 1200px) {
  .page-underlayer.page-faq .custom-btn .custom-btn-col:after {
    right: 3rem;
  }
}

.page-underlayer.page-faq .custom-inner {
  display: none;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-faq .custom-inner {
    font-size: 1.125rem;
  }
}

.page-underlayer.page-faq .custom-inner .custom-a {
  color: #0055A2;
  border: 1px #0055A2 solid;
}

/* ==========================================================================
  flow
========================================================================== */
@media (max-width: 575px) {
  .page-underlayer.page-flow h3.custom-h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-flow h3.custom-h3 {
    font-size: 1.5rem;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.step {
  padding-bottom: 6rem;
}

.page-underlayer.page-flow .custom-sec__wrap.step h3 .custom-h3-span {
  font-size: 2.625rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-flow .custom-sec__wrap.step h3 .custom-h3-span {
    font-size: 3rem;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.step .custom-step {
  -webkit-box-shadow: 0 0 20px rgba(191, 203, 224, 0.3);
          box-shadow: 0 0 20px rgba(191, 203, 224, 0.3);
  border-radius: 0.5rem;
}

@media (max-width: 575px) {
  .page-underlayer.page-flow .custom-sec__wrap.step .custom-step {
    height: 100%;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-flow .custom-sec__wrap.step .custom-step {
    height: 100%;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.step .custom-step:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 34px;
  height: 13px;
  background-image: url(/seino/uriPlus/assets/img/flow/arrow_u@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
}

.page-underlayer.page-flow .custom-sec__wrap.step .custom-step:nth-last-of-type(1):after {
  display: none;
}

@media (max-width: 575px) {
  .page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-texts {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1;
        -ms-flex: 1 1;
            flex: 1 1;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-texts {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1;
        -ms-flex: 1 1;
            flex: 1 1;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-texts .custom-text {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-texts .custom-text {
    font-size: 1.375rem;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-num {
  border-radius: 0.5rem 0 0 0.5rem;
}

@media (max-width: 575px) {
  .page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-num {
    width: 40px;
    height: 100%;
    padding: 1rem 0;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-num {
    width: 40px;
    height: 100%;
    padding: 1rem 0;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-num span {
  display: block;
  line-height: 1;
}

@media (max-width: 575px) {
  .page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-num span:nth-of-type(1) {
    font-size: 0.625rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-num span:nth-of-type(1) {
    font-size: 0.625rem;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-num span:nth-of-type(2) {
  font-size: 2.25rem;
}

@media (max-width: 575px) {
  .page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-num span:nth-of-type(2) {
    font-size: 1.125rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-flow .custom-sec__wrap.step .custom-step .custom-step-num span:nth-of-type(2) {
    font-size: 1.125rem;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.flow {
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow {
    padding-bottom: 10rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .container.custom-container {
    max-width: 910px;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner {
  position: relative;
}

@media (max-width: 575px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner {
    width: 85%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner {
    width: 300px;
    margin: 0 auto;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: -25px;
  width: 20px;
  height: 370px;
  border-top: 1px #fff solid;
  border-right: 1px #fff solid;
  border-bottom: 1px #fff solid;
}

@media (min-width: 768px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner:before {
    right: auto;
    left: 0;
    top: auto;
    bottom: -28px;
    height: 20px;
    border-top: none;
    border-left: 1px #fff solid;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner:before {
    width: 48%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner:before {
    width: 463px;
  }
}

@media (min-width: 1200px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner:before {
    width: 554px;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-flow {
  padding-bottom: 32px;
  font-size: 1.625rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-flow {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-flow {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-flow:nth-of-type(1) {
    padding-bottom: 40px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-flow:nth-of-type(1) {
    padding-bottom: 40px;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-flow:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 37px;
  background-image: url(/seino/uriPlus/assets/img/flow/arrow_sp@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
}

@media (min-width: 768px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-flow:after {
    top: 0;
    left: auto;
    bottom: auto;
    right: -1.4rem;
    width: 40px;
    height: 100%;
    background-image: url(/seino/uriPlus/assets/img/flow/arrow_pc@2x.png);
  }
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-flow:nth-last-of-type(2):after {
  display: none;
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-flow .small-custom {
  padding-left: 2.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-flow .small-custom {
    padding-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-flow .small-custom {
    font-size: 0.6875rem;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-texts {
  position: absolute;
  top: 15%;
  right: -34px;
  width: 18px;
  height: 120px;
}

@media (min-width: 768px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-texts {
    position: absolute;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    bottom: -130px;
    width: 30px;
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-texts {
    left: 5%;
    width: 37%;
    min-width: 300px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-texts {
    left: 77px;
    width: 310px;
  }
}

@media (min-width: 1200px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-texts {
    left: 122px;
    width: 310px;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-texts .custom-period {
  width: 100%;
  background-color: #fff;
  border-radius: 3.125rem;
}

@media (max-width: 575px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-texts .custom-period {
    display: block;
    height: 100%;
    font-size: 0.75rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-texts .custom-period {
    display: block;
    height: 100%;
    font-size: 0.75rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-texts dl {
  font-size: 0.875rem;
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-flow__inner .custom-texts dl dt {
  width: 100px;
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-texts-sp {
  width: 80%;
  max-width: 300px;
  font-size: 0.75rem;
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-texts-sp .custom-period {
  width: 110px;
  background-color: #fff;
  border-radius: 3.125rem;
}

.page-underlayer.page-flow .custom-sec__wrap.flow .custom-texts-sp dl dt {
  width: 100px;
}

.page-underlayer.page-flow .custom-sec__wrap.about {
  padding-top: 7rem;
}

.page-underlayer.page-flow .custom-sec__wrap.about .custom-ul {
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .page-underlayer.page-flow .custom-sec__wrap.about .custom-ul .custom-md-pl {
    padding-left: 1em;
  }
}

/* ==========================================================================
  merit
========================================================================== */
.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-ab-text:after {
  content: 'MERIT';
  display: block;
  position: absolute;
  top: -3rem;
  right: 0;
  color: rgba(0, 85, 162, 0.09);
  line-height: 1;
  font-size: 100px;
  font-weight: 900;
  font-family: "Lato", sans-serif;
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-ab-text:after {
    font-size: 120px;
  }
}

@media (min-width: 768px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-ab-text:after {
    top: -1rem;
    font-size: 180px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-ab-text:after {
    top: -1rem;
    font-size: 220px;
  }
}

@media (min-width: 1200px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-ab-text:after {
    top: -1rem;
    font-size: 246px;
  }
}

@media (min-width: 768px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-pt {
    padding-top: 5rem;
  }
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-h3 {
  font-size: 1.75rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-h3 {
    font-size: 2.25rem;
  }
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-text {
  margin-bottom: 3rem;
  font-size: 0.875rem;
  line-height: 2;
}

@media (min-width: 768px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-text {
    margin-bottom: 6rem;
    line-height: 2.4;
  }
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-image {
  max-width: 796px;
  width: 100%;
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .container.custom-rez2 {
  position: relative;
  z-index: 2;
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-arc__wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-arc__wrap .custom-arc {
  min-height: 290px;
  border-bottom-right-radius: 2000px 450px;
  border-bottom-left-radius: 2000px 450px;
  margin-left: -200px;
  margin-right: -200px;
  padding-left: 200px;
  padding-right: 200px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-arc__wrap .custom-arc {
    min-height: 340px;
    border-bottom-right-radius: 2000px 300px;
    border-bottom-left-radius: 2000px 300px;
  }
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap {
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap {
    padding-bottom: 10rem;
  }
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap {
  margin-top: -11rem;
  padding-top: 0;
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap .row:nth-of-type(2n) .custom-block:nth-last-of-type(1) {
  margin-bottom: 0;
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap .custom-block {
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap .custom-block {
    margin-bottom: 0;
  }
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap .custom-block .custom-block-inner {
  padding: 3.5rem 0 2rem;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 20px rgba(191, 203, 224, 0.3);
          box-shadow: 0 0 20px rgba(191, 203, 224, 0.3);
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap .custom-block .custom-img {
  position: absolute;
  top: -14%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 78px;
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap .custom-block .custom-h3 {
  margin-bottom: 2.5rem;
  font-size: 1.0625rem;
  color: #0055A2;
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap .custom-block .custom-h3 {
    font-size: 0.875rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap .custom-block .custom-h3 {
    font-size: 0.9375rem;
  }
}

@media (max-width: 575px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap .custom-block .custom-h3 {
    font-size: 0.9375rem;
  }
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap .custom-block .custom-texts {
  padding: 0 1.5rem;
  font-size: 0.875rem;
}

@media (min-width: 1200px) {
  .page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap .custom-block .custom-texts {
    padding: 0 2rem;
  }
}

.page-underlayer.page-merit .custom-sec__wrap .custom-merit .custom-container__wrap.custom-wrap .custom-block .custom-texts:after {
  content: '';
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background-image: url(/seino/uriPlus/assets/img/top/plus_mark@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
}

/* ==========================================================================
  service
========================================================================== */
.page-underlayer.page-service .custom-sec__wrap .custom-point .custom-container__wrap {
  padding: 4rem 0 2rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-service .custom-sec__wrap .custom-point .custom-container__wrap {
    padding: 0;
  }
}

.page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner {
  /* ※
          @include mq-pc {
            padding:9rem 0 23rem;
          }; 
          */
}

@media (min-width: 768px) {
  .page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner {
    padding: 5rem 0 2rem;
  }
}

.page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison {
  margin: 3rem 0 0;
  position: relative;
}

@media (min-width: 768px) {
  .page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison {
    width: 90%;
  }
}

@media (min-width: 1200px) {
  .page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison {
    width: 90%;
    max-width: 1032px;
  }
}

.page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison:after {
  content: '';
  display: block;
  position: absolute;
  left: 15px;
  top: 0;
  width: 150px;
  height: 243px;
  background-image: url(/seino/uriPlus/assets/img/service/comparison_sp_fixed@2x.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
}

@media (min-width: 768px) {
  .page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison:after {
    display: none;
  }
}

@media (max-width: 575px) {
  .page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison div {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    margin-left: 15px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison div {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    margin-left: 15px;
  }
}

.page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison div::-webkit-scrollbar {
  height: 3px;
}

.page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison div::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
}

.page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison div::-webkit-scrollbar-track-piece {
  background: #efefef;
}

.page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison img {
  width: 100%;
}

@media (max-width: 575px) {
  .page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison img {
    width: 939px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-service .custom-sec__wrap .custom-point .custom-inner .custom-comparison img {
    width: 939px;
  }
}

/* ==========================================================================
  price
========================================================================== */
.page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-container__wrap {
  padding: 0 0 5.5rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-container__wrap {
    padding: 2rem 0 7rem;
  }
}

.page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner {
  margin: 0 2.5rem;
  /* ※
           @include mq-pc {
            position: absolute;
            bottom:-15rem;
            left:50%;
            transform: translateX(-50%);
            width:100%;
            margin:0;
          }; */
}

@media (min-width: 768px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner {
    position: static;
    width: 100%;
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container {
    max-width: 1170px;
  }
}

.page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price {
  position: relative;
  z-index: 5;
  padding: 2.5rem 1rem;
  -webkit-box-shadow: 0 0 20px rgba(191, 203, 224, 0.3);
          box-shadow: 0 0 20px rgba(191, 203, 224, 0.3);
}

@media (min-width: 768px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price {
    padding: 4.5rem 0;
  }
}

.page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap {
  margin: 1rem 0 0;
}

@media (min-width: 768px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap {
    margin: 3rem 0 0;
  }
}

.page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table {
  padding: 0.8rem 0;
}

@media (min-width: 768px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table {
    padding: 0;
    border-right: 1px rgba(0, 85, 162, 0.3) solid;
  }
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table:last-child {
    border-right: none;
  }
}

@media (max-width: 575px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table:nth-of-type(1) {
    font-size: 12px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table:nth-of-type(1) {
    font-size: 12px;
  }
}

.page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table:nth-of-type(n+2) {
  border-bottom: 1px rgba(0, 85, 162, 0.3) solid;
}

@media (min-width: 768px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table:nth-of-type(n+2) {
    border-bottom: none;
  }
}

.page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table:nth-of-type(n+2) p:nth-of-type(2) {
  line-height: 1;
  font-size: 3.125rem;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table:nth-of-type(n+2) p:nth-of-type(2) {
    font-size: 3.125rem;
    letter-spacing: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table:nth-of-type(n+2) p:nth-of-type(2) {
    font-size: 3.75rem;
  }
}

@media (min-width: 1200px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table:nth-of-type(n+2) p:nth-of-type(2) {
    font-size: 3.75rem;
  }
}

.page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table div {
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table div {
    padding: 0 1rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table div {
    padding: 0 2rem;
  }
}

@media (min-width: 1200px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table div {
    padding: 0 2rem;
  }
}

.page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table p {
  margin: 0;
}

.page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table p:nth-of-type(1) {
  color: #666;
}

.page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table p span {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table p span {
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table p span {
    font-size: 1.875rem;
  }
}

@media (min-width: 1200px) {
  .page-underlayer.page-price .custom-sec__wrap .custom-price__wrap .custom-inner .container.custom-price .custom-table__wrap .custom-table p span {
    font-size: 1.875rem;
  }
}

/* ==========================================================================
  voice
========================================================================== */
.page-underlayer.page-voice .custom-sec__wrap.voice {
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-voice .custom-sec__wrap.voice {
    padding-bottom: 1rem;
  }
}

.page-underlayer.page-voice .custom-sec__wrap.voice .custom-case .custom-case-block {
  width: 100%;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-voice .custom-sec__wrap.voice .custom-case .custom-case-block {
    width: 30%;
  }
}

.page-underlayer.page-voice .custom-sec__wrap.voice .custom-case .custom-case-block a {
  display: block;
  overflow: hidden;
  height: 100%;
  border-radius: 10px;
  color: #333;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.page-underlayer.page-voice .custom-sec__wrap.voice .custom-case .custom-case-block a:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 3px 15px rgba(191, 203, 224, 0.3);
          box-shadow: 0 3px 15px rgba(191, 203, 224, 0.3);
}

.page-underlayer.page-voice .custom-sec__wrap.voice .custom-case .custom-case-block a .custom-case-inner .custom-case-photo {
  margin: 0;
}

.page-underlayer.page-voice .custom-sec__wrap.voice .custom-case .custom-case-block a .custom-case-inner .custom-case-photo img {
  width: 100%;
}

.page-underlayer.page-voice .custom-sec__wrap.voice .custom-case .custom-case-block a .custom-case-inner .custom-case-texts__wrap {
  padding: 1em;
}

.page-underlayer.page-voice .custom-sec__wrap.voice .custom-case .custom-case-block a .custom-case-inner .custom-case-texts {
  font-size: 0.875rem;
}

.page-underlayer.page-voice .custom-sec__wrap.voice .custom-case .custom-case-block a .custom-case-inner .custom-case-company {
  font-size: 0.625rem;
}

.custom-details-body {
  padding: 3rem 0 8rem;
}

@media (min-width: 768px) {
  .custom-details-body {
    padding: 5rem 0 8rem;
  }
}

.custom-details-body .custom-photo {
  overflow: hidden;
  border-radius: 10px;
}

.custom-details-body .custom-photo img {
  width: 100%;
}

.custom-details-body .custom-company .custom-company-name {
  margin-top: 5px;
  font-size: 0.875rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .custom-details-body .custom-company .custom-company-name {
    font-size: 0.875rem;
  }
}

.custom-details-body .custom-company .custom-company-logo {
  width: 84px;
}

@media (min-width: 768px) {
  .custom-details-body .custom-company .custom-company-logo {
    width: 100%;
  }
}

.custom-details-body .custom-company .custom-company-logo img {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .custom-details-body .custom-company .custom-company-logo img {
    max-width: 100px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .custom-details-body .custom-company .custom-company-logo img {
    max-width: 130px;
  }
}

@media (min-width: 1200px) {
  .custom-details-body .custom-company .custom-company-logo img {
    max-width: 150px;
  }
}

.custom-details-body .custom-h2 {
  font-size: 1.125rem;
  color: #0055A2;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .custom-details-body .custom-h2 {
    font-size: 2.125rem;
    line-height: 1.4;
  }
}

.custom-details-body .custom-texts {
  line-height: 1.6;
}

@media (max-width: 575px) {
  .custom-details-body .custom-texts {
    font-size: 0.8125rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .custom-details-body .custom-texts {
    font-size: 0.8125rem;
  }
}

@media (min-width: 768px) {
  .custom-details-body .custom-texts {
    line-height: 1.8;
  }
}

.custom-details-body .custom-btn {
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .custom-details-body .custom-btn {
    margin-top: 7rem;
  }
}

/* ==========================================================================
  news
========================================================================== */
.page-underlayer.page-news .custom-sec__wrap.news {
  padding: 3rem 0 5rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-news .custom-sec__wrap.news {
    padding: 0 0 6rem;
  }
}

.page-underlayer.page-news .custom-sec__wrap.news .custom-news .custom-news-block {
  border-bottom: 1px rgba(0, 85, 162, 0.3) solid;
}

.page-underlayer.page-news .custom-sec__wrap.news .custom-news .custom-news-block a {
  color: #333;
}

.page-underlayer.page-news .custom-sec__wrap.news .custom-news .custom-news-block a:hover {
  text-decoration: none;
}

.page-underlayer.page-news .custom-sec__wrap.news .custom-news .custom-news-block .custom-news-inner p {
  margin: 0;
}

.page-underlayer.page-news .custom-sec__wrap.news .custom-news .custom-news-block .custom-news-inner p:nth-of-type(1) {
  font-size: 0.75rem;
}

.page-underlayer.page-news .custom-sec__wrap.news .custom-news .custom-news-block .custom-news-inner p:nth-of-type(2) {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .page-underlayer.page-news .custom-sec__wrap.news .custom-news .custom-news-block .custom-news-inner p:nth-of-type(2) {
    font-size: 1.125rem;
  }
}

.custom-details-news-body {
  padding: 3rem 0 6rem;
}

@media (min-width: 768px) {
  .custom-details-news-body {
    padding: 5rem 0 6rem;
  }
}

.custom-details-news-body .custom-news-block .custom-title {
  border-bottom: 2px #0055A2 solid;
}

.custom-details-news-body .custom-news-block .custom-title h2 span:nth-of-type(1) {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .custom-details-news-body .custom-news-block .custom-title h2 span:nth-of-type(1) {
    font-size: 0.875rem;
  }
}

.custom-details-news-body .custom-news-block .custom-title h2 span:nth-of-type(2) {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .custom-details-news-body .custom-news-block .custom-title h2 span:nth-of-type(2) {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .custom-details-news-body .custom-news-block .custom-texts {
    font-size: 0.8125rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .custom-details-news-body .custom-news-block .custom-texts {
    font-size: 0.8125rem;
  }
}

/* ==========================================================================
  request
========================================================================== */
.page-underlayer.page-request .footer .custom-contact {
  display: none;
}

.page-underlayer.page-request .custom-sec__wrap.form {
  margin-top: 6rem;
}

.page-underlayer.page-request .custom-form .custom-check-free {
  background-color: #E6E6E6;
}

.page-underlayer.page-request .custom-form .custom-required {
  color: #ED0000;
}

.page-underlayer.page-request input[type="text"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.page-underlayer.page-request input[type="text"]::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.page-underlayer.page-request input[type="text"]::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.page-underlayer.page-request input[type="text"]:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.page-underlayer.page-request input[type="text"]::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.page-underlayer.page-request input[type="text"]::placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.page-underlayer.page-request textarea {
  min-height: 266px;
  resize: vertical;
  border: none;
  font-weight: 300;
}

.page-underlayer.page-request textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.page-underlayer.page-request textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.page-underlayer.page-request textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.page-underlayer.page-request textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.page-underlayer.page-request textarea::placeholder {
  color: rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.page-underlayer.page-request .custom-select-box {
  overflow: hidden;
}

.page-underlayer.page-request .custom-select-box select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.page-underlayer.page-request .custom-select-box select::-ms-expand {
  display: none;
}

.page-underlayer.page-request .custom-select-box.custom-select-inner {
  position: relative;
  border: 1px #0055A2 solid;
  background: #ffffff;
}

.page-underlayer.page-request .custom-select-box.custom-select-inner::before {
  content: '';
  position: absolute;
  top: 1em;
  right: 1em;
  border-bottom: solid 2px #0055A2;
  border-right: solid 2px #0055A2;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}

.page-underlayer.page-request .custom-select-box.custom-select-inner select {
  padding: 0.75em 1em;
  color: #666666;
}

.page-underlayer.page-request .custom-check-box {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.1rem;
  padding: 0 5px 0 0;
  line-height: 1.5;
  cursor: pointer;
  /* （外側）：チェック後 */
  /* （内側）：チェック後 */
}

.page-underlayer.page-request .custom-check-box input[type="checkbox"] {
  /* 本来のinput[type="checkbox"]を非表示 */
  display: none;
}

.page-underlayer.page-request .custom-check-box input[type="checkbox"]:checked + .custom-check-box--check::before {
  border: 1px #0055A2 solid;
}

.page-underlayer.page-request .custom-check-box input[type="checkbox"]:checked + .custom-check-box--check::after {
  border-left: 2px solid #0055A2;
  border-bottom: 2px solid #0055A2;
  width: 12px;
  height: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 5px;
  left: 3px;
}

.page-underlayer.page-request .custom-check-box .custom-check-box--check {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin-right: 10px;
}

.page-underlayer.page-request .custom-check-box .custom-check-box--check::before, .page-underlayer.page-request .custom-check-box .custom-check-box--check::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page-underlayer.page-request .custom-check-box .custom-check-box--check::before {
  /* （外側） */
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #0055A2;
}

.page-underlayer.page-request .custom-check-box .custom-check-box--check::after {
  /* （内側） */
  width: 11px;
  height: 7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
  left: 0;
}

.page-underlayer.page-request input[type="submit"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.page-underlayer.page-request .custom-btn-submit {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-underlayer.page-request .custom-btn-submit {
    width: 340px;
  }
}

.page-underlayer.page-request .custom-btn-submit input[type="submit"] {
  width: 100%;
  font-size: 1.125rem;
  color: #fff;
  border-radius: 3.125rem;
  background-color: #0055A2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.page-underlayer.page-request .custom-btn-submit input[type="submit"]:disabled {
  cursor: auto;
  color: #fff;
  background: #ccc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}

.page-underlayer.page-request .custom-btn-submit input[type="submit"]:disabled:hover {
  color: #fff;
  background: #ccc;
}

.page-underlayer.page-request .custom-btn-submit input[type="submit"]:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #0055A2;
  background-color: #FFF60A;
}

.page-underlayer.page-request .custom-icon:after {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 0.5rem;
  background-image: url(/seino/uriPlus/assets/img/common/icon_blank_bk@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
}

@media (min-width: 768px) {
  .page-underlayer.page-request .custom-icon:after {
    margin-left: 1rem;
  }
}

.page-underlayer.page-request input[type="text"], .page-underlayer.page-request textarea {
  width: 100%;
  padding: 0.75em 1em;
  border: 1px #0055A2 solid;
}

.page-underlayer.page-request .custom-btn-submit {
  text-align: center;
}

.page-underlayer.page-request .custom-btn-submit input[type="submit"] {
  cursor: pointer;
}

/* ==========================================================================
  animation
========================================================================== */
.body-index .custom-bg.is-start, .body-index .custom-h2-01.is-start, .body-index .custom-h2-02.is-start, .body-index .custom-header.is-start, .body-index .pin-01.is-start, .body-index .pin-02.is-start, .body-index .pin-03.is-start {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.body-index .custom-bg.js-animation {
  opacity: 0;
}

.body-index .custom-bg.is-start {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
}

.body-index .custom-h2-01.js-animation {
  opacity: 0;
}

.body-index .custom-h2-01.is-start {
  -webkit-animation-name: fadein-up;
          animation-name: fadein-up;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.body-index .custom-h2-02.js-animation {
  opacity: 0;
}

.body-index .custom-h2-02.is-start {
  -webkit-animation-name: fadein-up2;
          animation-name: fadein-up2;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.body-index .custom-header.js-animation {
  opacity: 0;
}

.body-index .custom-header.is-start {
  -webkit-animation-name: fadein-down;
          animation-name: fadein-down;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}

.body-index .pin-01.js-animation {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.body-index .pin-01.is-start {
  -webkit-animation-name: popup;
          animation-name: popup;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

.body-index .pin-02.js-animation {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.body-index .pin-02.is-start {
  -webkit-animation-name: popup;
          animation-name: popup;
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

.body-index .pin-03.js-animation {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.body-index .pin-03.is-start {
  -webkit-animation-name: popup;
          animation-name: popup;
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

@-webkit-keyframes fadein-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadein-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadein-up2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadein-up2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadein-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadein-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes popup {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popup {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  46.8085% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  56.2648% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  73.9953% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  85.8156% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  90.5437% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  95.2719% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    opacity: 1;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  46.8085% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  56.2648% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  73.9953% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  85.8156% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  90.5437% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  95.2719% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    opacity: 1;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}

/* scroll animation */
.js-animation-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 1.0s, -webkit-transform 1.0s;
  transition: opacity 1.0s, -webkit-transform 1.0s;
  transition: opacity 1.0s, transform 1.0s;
  transition: opacity 1.0s, transform 1.0s, -webkit-transform 1.0s;
}

.js-animation-item.is-init {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 1.0s, -webkit-transform 1.0s;
  transition: opacity 1.0s, -webkit-transform 1.0s;
  transition: opacity 1.0s, transform 1.0s;
  transition: opacity 1.0s, transform 1.0s, -webkit-transform 1.0s;
}

.js-animation-item.is-animation {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-animation-item.is-delay--1 {
  -webkit-transition-delay: 1.0s;
          transition-delay: 1.0s;
}

.custom-ab-text.js-animation-item--fade:after {
  opacity: 0;
  -webkit-transition: opacity 1.0s, -webkit-transform 1.0s;
  transition: opacity 1.0s, -webkit-transform 1.0s;
  transition: opacity 1.0s, transform 1.0s;
  transition: opacity 1.0s, transform 1.0s, -webkit-transform 1.0s;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}

.custom-ab-text.js-animation-item--fade.is-animation:after {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
/*# sourceMappingURL=maps/bootstrap_custom.css.map */

b, strong {
    font-weight: bold;
}

