@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
html {
  font-size: 62.5%;
  overflow-x: hidden;
  width: 100vw;
}

body {
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  overflow-x: hidden;
  width: 100vw;
}

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

dl dd {
  margin-left: 0;
}

img {
  display: block;
  max-width: 100%;
  width: auto;
}

.eng,
.number {
  font-family: "Nunito Sans", sans-serif;
}

.lead {
  font-size: 1.8rem;
  margin-bottom: 6rem;
  line-height: 1.8;
}
@media screen and (max-width: 700px) {
  .lead {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

li {
  margin-bottom: 20px;
}

h2 {
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: center;
}

h3 {
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
}

p {
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  p {
    font-size: 1.4rem;
  }
}
p.text {
  letter-spacing: 0.15em;
  line-height: 1.8;
}
p.text--center {
  text-align: center;
}

*:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

b.underline-1 {
  color: #131313;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #FFF499));
  background: linear-gradient(transparent 60%, #FFF499 0%);
  font-weight: normal;
}

/*=============================================
*
* 画像ロールオーバー
*
=============================================*/
.hover-to-color {
  -webkit-filter: saturate(0%);
          filter: saturate(0%);
  -webkit-transition: -webkit-filter 0.2s ease;
  transition: -webkit-filter 0.2s ease;
  transition: filter 0.2s ease;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}
.hover-to-color:hover {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}

.scroll-to-color {
  -webkit-filter: saturate(0%);
          filter: saturate(0%);
  -webkit-transition: -webkit-filter 0.2s ease;
  transition: -webkit-filter 0.2s ease;
  transition: filter 0.2s ease;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}
.scroll-to-color.scroll-in {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}

/*=============================================
*
*  ヘッダー
*
=============================================*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100vw;
  z-index: 4;
}
.header > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .header > .inner {
    height: 60px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 1100px) {
  .header > .inner .menu-main-menu-container {
    background: #fff;
    height: 100vh;
    overflow-y: auto;
    padding: 60px 0 0 0;
    position: absolute;
    right: -300px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    top: 0;
    width: 300px;
  }
  .header > .inner .menu-main-menu-container.active {
    right: 0;
  }
}
.header > .inner .menu-main-menu-container #menu-main-menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .header > .inner .menu-main-menu-container #menu-main-menu {
    display: block;
  }
}
.header > .inner .menu-main-menu-container #menu-main-menu > li {
  margin: 0 40px 0 0;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .header > .inner .menu-main-menu-container #menu-main-menu > li {
    border-bottom: 1px #D4D4D4 solid;
    margin: 0;
    position: relative;
  }
  .header > .inner .menu-main-menu-container #menu-main-menu > li::after {
    background: #554B4B;
    bottom: -1.5px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 25px;
  }
}
.header > .inner .menu-main-menu-container #menu-main-menu > li > a {
  padding: 5px 0;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .header > .inner .menu-main-menu-container #menu-main-menu > li > a {
    display: block;
    padding: 20px;
    width: 100%;
  }
}
.header > .inner .menu-main-menu-container #menu-main-menu > li > a:hover {
  opacity: 0.8;
}
.header > .inner .menu-main-menu-container #menu-main-menu > li:last-child {
  background: #1A1818;
  padding: 10px 20px;
}
@media screen and (max-width: 1100px) {
  .header > .inner .menu-main-menu-container #menu-main-menu > li:last-child {
    background: none;
    padding: 0;
  }
}
.header > .inner .menu-main-menu-container #menu-main-menu > li:last-child a {
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .header > .inner .menu-main-menu-container #menu-main-menu > li:last-child a {
    color: #1a1818;
  }
}
.header > .inner .header-nav-drawer {
  display: none;
  position: fixed;
  top: 17.5px;
  right: 10px;
  height: 30px;
}
@media screen and (max-width: 1100px) {
  .header > .inner .header-nav-drawer {
    display: block;
  }
  .header > .inner .header-nav-drawer > div {
    width: 25px;
  }
  .header > .inner .header-nav-drawer span {
    background: #4d4d4d;
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    width: 100%;
  }
  .header > .inner .header-nav-drawer span:nth-child(1) {
    top: 0;
  }
  .header > .inner .header-nav-drawer span:nth-child(2) {
    top: 10px;
  }
  .header > .inner .header-nav-drawer span:nth-child(3) {
    top: 20px;
  }
}
.header > .inner .header-nav-drawer.active span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header > .inner .header-nav-drawer.active span:nth-child(2) {
  width: 0;
  left: 50%;
}
.header > .inner .header-nav-drawer.active span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  position: fixed;
  top: 0;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  visibility: hidden;
  width: 100vw;
  z-index: 3;
}
.overlay.active {
  background: rgba(0, 0, 0, 0.6);
  visibility: visible;
}

/*=============================================
*
*  ローダー
*
=============================================*/
#loader {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 0.3s linear 0.3s;
  transition: all 0.3s linear 0.3s;
  z-index: 99999;
}
#loader::before {
  background: #1a1818;
  bottom: 0;
  content: "";
  height: 100vh;
  opacity: 1;
  position: absolute;
  width: 100vw;
  -webkit-transition: all 0.3s linear 0.3s;
  transition: all 0.3s linear 0.3s;
}
#loader .loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  -webkit-animation: turn 3s infinite linear;
          animation: turn 3s infinite linear;
}
#loader.loaded {
  visibility: hidden;
}
#loader.loaded::before {
  opacity: 0;
  visibility: hidden;
}
#loader .line-scale-party > div, #loader .line-scale-pulse-out-rapid > div, #loader .line-scale-pulse-out > div, #loader .line-scale > div {
  width: 4px;
  height: 35px;
  display: inline-block;
}
#loader .line-scale-party > div, #loader .line-scale-pulse-out-rapid > div, #loader .line-scale-pulse-out > div, #loader .line-scale > div, #loader .line-spin-fade-loader > div {
  border-radius: 2px;
  margin: 2px;
  background-color: #fff;
}
@-webkit-keyframes line-scale-pulse-out-rapid {
  0%, 90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }
}
@keyframes line-scale-pulse-out-rapid {
  0%, 90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }
}
#loader .line-scale-pulse-out-rapid > div {
  vertical-align: middle;
  -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
  animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
}
#loader .line-scale-pulse-out-rapid > div:nth-child(2), #loader .line-scale-pulse-out-rapid > div:nth-child(4) {
  -webkit-animation-delay: -0.25s !important;
  animation-delay: -0.25s !important;
}
#loader .line-scale-pulse-out-rapid > div:nth-child(1), #loader .line-scale-pulse-out-rapid > div:nth-child(5) {
  -webkit-animation-delay: 0s !important;
  animation-delay: 0s !important;
}

/*=============================================
*
*  フッター
*
=============================================*/
.footer {
  background: #1A1818;
}
.footer > .inner {
  margin: 0 auto;
  max-width: 1100px;
  padding: 50px 0;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1030px) {
  .footer > .inner {
    padding: 30px 15px;
  }
}
.footer > .inner .copyright {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .footer > .inner .copyright {
    font-size: 1rem;
  }
}
.footer > .inner .page-top {
  background: url("../images/common/btn-to-page-top.svg") no-repeat center center;
  color: #fff;
  height: 45px;
  max-width: 80px;
  padding: 10px;
  position: absolute;
  text-indent: -9999em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  right: 0;
  top: -60px;
  width: 45px;
}
.footer > .inner .page-top:hover {
  opacity: 0.7;
}
@media screen and (max-width: 700px) {
  .footer > .inner .page-top {
    background-size: 10px;
    height: 40px;
    right: 10px;
    top: -45px;
    width: 40px;
  }
}
.footer .footer-nav a {
  color: #fff;
  font-size: 1.3rem;
}
@media screen and (max-width: 700px) {
  .footer .footer-nav a {
    font-size: 1.2rem;
  }
}
.footer .footer-sns {
  margin-bottom: 30px;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .footer .footer-sns {
    margin-bottom: 15px;
  }
}
.footer .footer-sns__list {
  text-align: center;
}
.footer .footer-sns__list li {
  display: inline-block;
  margin: 0 5px;
}
.footer .footer-sns__list a {
  background: url("../images/common/footer-nav-pre-icon.svg") no-repeat left center;
  color: #fff;
  font-size: 1.4rem;
  padding-left: 20px;
}
.footer .footer-sns__list a:hover {
  opacity: 0.7;
}

/*=============================================
*
*  ページ送り
*
=============================================*/
.pagenation-area {
  padding: 20px 0;
}
.pagenation-area .nav-links {
  text-align: center;
}
.pagenation-area .nav-links .page-numbers {
  border: 1px #1A1818 solid;
  color: #1A1818;
  display: inline-block;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 7.5px 10px;
  text-decoration: none;
}
@media screen and (max-width: 700px) {
  .pagenation-area .nav-links .page-numbers {
    font-size: 1.6rem;
  }
}
.pagenation-area .nav-links .page-numbers.prev, .pagenation-area .nav-links .page-numbers.next {
  border: none;
}
.pagenation-area .nav-links .page-numbers.current {
  background: #1A1818;
  border: 1px #1A1818 solid;
  color: #fff;
}

/*=============================================
*
*  recaptcha
*
=============================================*/
.grecaptcha-badge {
  visibility: hidden;
}

/*=============================================
*
*  インポート
*
=============================================*/
/*=============================================
*
*  セクション
*
=============================================*/
section > .inner {
  margin: 0 auto;
  padding: 80px 0;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  section > .inner {
    padding: 30px 0;
  }
}

/*=============================================
*
*  container 
*
=============================================*/
.container {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .container {
    padding: 0 15px;
  }
}

.full-container {
  width: 100%;
}

/*=============================================
*
*  #main
*
=============================================*/
#main {
  background: #F5F5F5;
}

/*=============================================
*
*  カラム
*
=============================================*/
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.row.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.row .col-md-3 {
  margin: 0 30px 30px 0;
  width: calc(25% - 22.5px);
}
.row .col-md-3:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1000px) {
  .row .col-md-3 {
    margin: 0 0 15px 0;
    width: 100%;
  }
  .row .col-md-3:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 700px) {
  .row .col-md-3 {
    margin: 0 0 15px 0;
    width: 100%;
  }
  .row .col-md-3:nth-child(2n) {
    margin-right: 0;
  }
}
.row .col-md-4 {
  margin: 0 30px 30px 0;
  width: calc(33.333% - 20px);
}
.row .col-md-4:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1000px) {
  .row .col-md-4 {
    margin: 0 0 15px 0;
    width: 100%;
  }
  .row .col-md-4:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 700px) {
  .row .col-md-4 {
    margin: 0 0 15px 0;
    width: 100%;
  }
  .row .col-md-4:nth-child(2n) {
    margin-right: 0;
  }
}
.row .col-md-6 {
  margin: 0 40px 40px 0;
  width: calc(50% - 20px);
}
.row .col-md-6:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 700px) {
  .row .col-md-6 {
    margin: 0 auto 15px auto;
    width: 100%;
  }
}
.row .col-15, .row .col-sm-15, .row .col-md-15, .row .col-lg-15 {
  position: relative;
  min-height: 1px;
  overflow: hidden;
  margin-right: 15px;
  position: relative;
  width: 100%;
}
.row .col-15:nth-child(5n), .row .col-sm-15:nth-child(5n), .row .col-md-15:nth-child(5n), .row .col-lg-15:nth-child(5n) {
  margin-right: 0;
}
.row .col-15 a, .row .col-sm-15 a, .row .col-md-15 a, .row .col-lg-15 a {
  overflow: hidden;
  width: 100%;
}
@media (max-width: 700px) {
  .row .col-15, .row .col-sm-15, .row .col-md-15, .row .col-lg-15 {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .row .col-sm-15 {
    width: 20%;
  }
}
@media (min-width: 992px) {
  .row .col-md-15 {
    width: calc(20% - 12px);
  }
}
@media (min-width: 1200px) {
  .row .col-lg-15 {
    width: 20%;
  }
}
.row .col-15 {
  width: calc(20% - 12px);
}

/*=============================================
*
* .table-type1
*
=============================================*/
.table-type1 tr {
  line-height: 1.7;
}
.table-type1 tr th {
  min-width: 140px;
  padding: 20px;
  width: 20%;
}
@media (max-width: 700px) {
  .table-type1 tr th {
    display: block;
    padding: 15px 15px 5px;
    width: 100%;
  }
}
.table-type1 tr td {
  padding: 20px;
}
@media (max-width: 700px) {
  .table-type1 tr td {
    display: block;
    padding: 5px 15px 25px;
    width: 100%;
  }
}
.table-type1 ol {
  padding-left: 2em;
}
.table-type1 ol li {
  list-style: decimal-leading-zero;
}

/*=============================================
*
*  
*
=============================================*/
.content-number-list-type1 .story-desc h3 {
  font-size: 4.3rem;
}

/*=============================================
*
*  ナンバーリスト
*
=============================================*/
.content-number-list-type1 .story-desc h3 {
  font-size: 4.3rem;
}

/*=============================================
*
*  タイプ1
*
=============================================*/
.list-type1 {
  counter-reset: section;
}
.list-type1 > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 90px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .list-type1 > li {
    margin-bottom: 40px;
  }
}
.list-type1 > li .img-box {
  width: 50%;
}
@media screen and (max-width: 700px) {
  .list-type1 > li .img-box {
    width: 100%;
  }
}
.list-type1 > li .detail-box {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px #0000001A;
          box-shadow: 0px 0px 10px #0000001A;
  overflow: hidden;
  padding: 50px;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 700px) {
  .list-type1 > li .detail-box {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 25px 15px;
    width: 100%;
  }
}
.list-type1 > li .detail-box::before {
  bottom: -40px;
  color: #F3F3F3;
  counter-increment: section;
  content: counter(section, decimal-leading-zero);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23.4rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  position: absolute;
  right: 0px;
}
@media screen and (max-width: 700px) {
  .list-type1 > li .detail-box::before {
    font-size: 9rem;
  }
}
.list-type1 > li .title-lead {
  color: #ABABAB;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.list-type1 > li .title {
  font-size: 3rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 700px) {
  .list-type1 > li .title {
    font-size: 2.1rem;
  }
}
.list-type1 > li .text {
  color: #707070;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 700px) {
  .list-type1 > li .text {
    -webkit-line-clamp: 3;
  }
}
.list-type1 > li:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.list-type1 > li .btn-area {
  text-align: right;
}

input[type=text],
input[type=number],
input[type=password],
input[type=email],
input[type=tel],
input[type=search] {
  background: #fff;
  border: 1px #707070 solid;
  border-radius: 3px;
  font-size: 1.6rem;
  max-width: 100%;
  outline: 0;
  padding: 10px 5px 10px 5px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  input[type=text],
input[type=number],
input[type=password],
input[type=email],
input[type=tel],
input[type=search] {
    font-size: 1.6rem;
  }
}
input[type=text].datetimepicker,
input[type=number].datetimepicker,
input[type=password].datetimepicker,
input[type=email].datetimepicker,
input[type=tel].datetimepicker,
input[type=search].datetimepicker {
  padding-left: 30px;
}
input[type=text].num,
input[type=number].num,
input[type=password].num,
input[type=email].num,
input[type=tel].num,
input[type=search].num {
  text-align: right;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  text-align: right;
}

input[type=number],
input[type=password],
input[type=email],
input[type=tel] {
  font-family: "Roboto", sans-serif;
}

textarea {
  background: #fff;
  border: 1px #707070 solid;
  border-radius: 3px;
  font-size: 1.6rem;
  max-width: 100%;
  padding: 15px;
  outline: 0;
  width: 100%;
}

input[type=submit] {
  background: #000;
  color: #fff;
  display: block;
  font-size: 1.8rem;
  margin: 0 auto;
  max-width: 400px;
  padding: 30px 0;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}
@media screen and (max-width: 700px) {
  input[type=submit] {
    font-size: 1.6rem;
    max-width: 260px;
    padding: 20px 0;
  }
}
input[type=submit]:hover {
  background: #ccc;
  color: #000;
}

input[type=submit]:focus {
  outline: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: url("../images/form/select-box-icon.svg") no-repeat right 10px center #fff;
  background-size: 12px;
  border: 1px #707070 solid;
  border-radius: 3px;
  max-width: 100%;
  padding: 15px 20px 15px 15px;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 700px) {
  select {
    font-size: 1.3rem;
  }
}
select::-ms-expand {
  display: none;
}

::-webkit-input-placeholder {
  color: #888;
  font-size: 1.6rem;
}

::-moz-placeholder {
  color: #888;
  font-size: 1.6rem;
}

:-ms-input-placeholder {
  color: #888;
  font-size: 1.6rem;
}

::-ms-input-placeholder {
  color: #888;
  font-size: 1.6rem;
}

::placeholder {
  color: #888;
  font-size: 1.6rem;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #ccc;
}

.toggle-switch {
  display: inline-block;
}

.toggle-input:checked + .toggle-label {
  background-color: #4F8ED6;
}
.toggle-input:checked + .toggle-label:after {
  left: 19px;
}

.toggle-input {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.toggle-label {
  border-radius: 46px;
  height: 20.5px;
  background: #ccc;
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 40px;
}
.toggle-label:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  left: 3px;
  top: 1.25px;
  z-index: 2;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

td .img1 {
  max-width: 100%;
}
td .img1 img {
  max-width: 100%;
}

/*=============================================
*
* チェックボックス 
*
=============================================*/
.checkbox-type1,
.checkbox-type2,
.checkbox-type3 {
  display: none;
}

/* ============================================
チェックボックス タイプ1
============================================ */
.checkbox-type1 + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font: 1.4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.checkbox-type1 + label:last-child {
  margin-bottom: 0;
}

.checkbox-type1 + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}

.checkbox-type1:checked + label:before {
  width: 10px;
  top: -3px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* ============================================
チェックボックス タイプ2
============================================ */
.checkbox-type2 + label {
  cursor: pointer;
  display: block;
  margin-right: -20px;
  position: relative;
  font: 1.4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.checkbox-type2 + label:last-child {
  margin-bottom: 0;
}

.checkbox-type2 + label:before {
  background: url("../img/common/check-icon-wh.svg") no-repeat center center #4F8ED6;
  border-radius: 50%;
  content: "";
  height: 30px;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.05s;
  transition: all 0.05s;
  width: 30px;
  z-index: 2;
}

.checkbox-type2:checked + label:before {
  opacity: 1;
}

/* ============================================
チェックボックス タイプ3
============================================ */
.checkbox-type3 + .checkbox-label {
  background: #F5F5F5;
  color: #8a8a8a;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 5px 8px;
  position: relative;
}

.checkbox-type3:checked + .checkbox-label {
  background: #999;
  color: #fff;
}
/*
.checkbox-type3 + .checkbox-label {
  border: 2px #ddd solid;
  border-radius: 15px;
  color: #999;
  cursor: pointer;
  font-size: 1.2rem;
  margin: 0 5px 10px 0;
  padding: 5px 8px;
  position: relative;
}
.checkbox-type3:checked + .checkbox-label {
  background: #f6f6f6;
  border: 2px #999 solid;//4F8ED6
  color: #333;
  &::before {
    //top: 50%;
  }
}
.checkbox-type3 + label:last-child { margin-bottom: 0; }

.checkbox-type3 + label:before {

}
.checkbox-type3:checked + label:before {
  //opacity: 1;
}
*/
/*=============================================
*
* ラジオボタン
*
=============================================*/
.radio {
  display: inline-block;
  margin: 15px auto;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 0;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #3197EE;
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #3197EE;
}
.radio input[type=radio]:disabled + .radio-label:before {
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

/*=============================================
*
* ラジオボタン
*
=============================================*/
.wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
}

/*=============================================
*
*  セクション
*
=============================================*/
section > .inner {
  margin: 0 auto;
  padding: 120px 0;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  section > .inner {
    padding: 30px 0;
  }
}

/*=============================================
*
*  container 
*
=============================================*/
.container {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .container {
    padding: 0 15px;
  }
}

.full-container {
  width: 100%;
}

/*=============================================
*
*  カラム
*
=============================================*/
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.row.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.row .col-md-3 {
  margin: 0 30px 30px 0;
  width: calc(25% - 22.5px);
}
.row .col-md-3:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1000px) {
  .row .col-md-3 {
    margin: 0 0 15px 0;
    width: 100%;
  }
  .row .col-md-3:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 700px) {
  .row .col-md-3 {
    margin: 0 0 15px 0;
    width: 100%;
  }
  .row .col-md-3:nth-child(2n) {
    margin-right: 0;
  }
}
.row .col-md-4 {
  margin: 0 30px 30px 0;
  width: calc(33.333% - 20px);
}
.row .col-md-4:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1000px) {
  .row .col-md-4 {
    margin: 0 0 15px 0;
    width: 100%;
  }
  .row .col-md-4:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 700px) {
  .row .col-md-4 {
    margin: 0 0 15px 0;
    width: 100%;
  }
  .row .col-md-4:nth-child(2n) {
    margin-right: 0;
  }
}
.row .col-md-6 {
  margin: 0 40px 40px 0;
  width: calc(50% - 20px);
}
.row .col-md-6:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 700px) {
  .row .col-md-6 {
    margin: 0 auto 15px auto;
    width: 100%;
  }
}
.row .col-15, .row .col-sm-15, .row .col-md-15, .row .col-lg-15 {
  position: relative;
  min-height: 1px;
  overflow: hidden;
  margin-right: 15px;
  position: relative;
  width: 100%;
}
.row .col-15:nth-child(5n), .row .col-sm-15:nth-child(5n), .row .col-md-15:nth-child(5n), .row .col-lg-15:nth-child(5n) {
  margin-right: 0;
}
.row .col-15 a, .row .col-sm-15 a, .row .col-md-15 a, .row .col-lg-15 a {
  overflow: hidden;
  width: 100%;
}
@media (max-width: 700px) {
  .row .col-15, .row .col-sm-15, .row .col-md-15, .row .col-lg-15 {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .row .col-sm-15 {
    width: 20%;
  }
}
@media (min-width: 992px) {
  .row .col-md-15 {
    width: calc(20% - 12px);
  }
}
@media (min-width: 1200px) {
  .row .col-lg-15 {
    width: 20%;
  }
}
.row .col-15 {
  width: calc(20% - 12px);
}

.btn-type1 {
  border: none;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  position: relative;
}
.btn-type1::before {
  background: #1A1818;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  width: 100%;
}
.btn-type1::after {
  background: #666;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  width: 100%;
}
.btn-type1 .btn-text {
  color: #1A1818;
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  height: 100%;
  padding: 0 30px 3px 0;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .btn-type1 .btn-text {
    font-size: 1.7rem;
  }
}
.btn-type1 .btn-text::after {
  background: url("../images/btn/next-arrow-type1.svg") no-repeat center center;
  content: "";
  height: 13px;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s 0.1s ease;
  transition: all 0.2s 0.1s ease;
  top: 50%;
  width: 16px;
}
.btn-type1:hover .btn-text {
  color: #333;
}
.btn-type1:hover .btn-text::after {
  right: -5px;
}
.btn-type1:hover::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.btn-type1:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/**/
.btn-type3 {
  background: #fff;
  border: 1px solid #4A4E4B;
  border-radius: 2px;
  display: block;
  max-width: 300px;
  overflow: hidden;
  padding: 15px 0;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-type3 span {
  font-size: 1.8rem;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}
.btn-type3 .btn-type1-arrow {
  display: block;
  height: 11px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s ease 0.2s;
  transition: all 0.2s ease 0.2s;
  right: 10px;
  width: 9px;
}
.btn-type3::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  background: #397168;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-type3:hover {
  border-color: #397168;
  color: #fff;
}
.btn-type3:hover .btn-type1-arrow {
  right: 5px;
  z-index: 2;
}
.btn-type3:hover .btn-type1-arrow-path {
  fill: #fff;
}
.btn-type3:hover::after {
  left: 0;
  width: 100%;
}

/*
btn-type2
*/
.btn-type2 {
  background: #fff;
  border: 1px solid #1A1818;
  display: inline-block;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  width: 360px;
}
.btn-type2 .btn-text {
  color: #1A1818;
  display: block;
  font-weight: 500;
  font-size: 1.8rem;
  height: 100%;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  width: 100%;
}
.btn-type2:hover {
  background: #303030;
}
.btn-type2:hover .btn-text {
  background-position: right 5px center;
  color: #fff;
}
.btn-type2:hover .btn-text::before {
  width: 100%;
}
.btn-type2--sm {
  height: 30px;
  line-height: 30px;
  width: 120px;
}
.btn-type2--sm .btn-text {
  font-size: 1.4rem;
}

/*=============================================
*
*  外部サイトへ
*
=============================================*/
.btn-external-link-type1 {
  border: none;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  position: relative;
}
.btn-external-link-type1::before {
  background: #1A1818;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  width: 100%;
}
.btn-external-link-type1::after {
  background: #666;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  width: 100%;
}
.btn-external-link-type1 .btn-text {
  color: #1A1818;
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  height: 100%;
  padding: 0 25px 3px 0;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .btn-external-link-type1 .btn-text {
    font-size: 1.7rem;
  }
}
.btn-external-link-type1 .btn-text::after {
  background: url("../images/btn/btn-external-link-type1-arrow.svg") no-repeat center center;
  content: "";
  height: 12px;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s 0.1s ease;
  transition: all 0.2s 0.1s ease;
  top: 50%;
  width: 12px;
}
.btn-external-link-type1:hover .btn-text {
  color: #333;
}
.btn-external-link-type1:hover .btn-text::after {
  right: -5px;
}
.btn-external-link-type1:hover::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.btn-external-link-type1:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.btn-external-link-type1--WHT::before {
  background: #fff;
}
.btn-external-link-type1--WHT::after {
  background: #ccc;
}
.btn-external-link-type1--WHT .btn-text {
  color: #fff;
}
.btn-external-link-type1--WHT .btn-text::after {
  background: url("../images/btn/btn-external-link-type1-arrow-WHT.svg") no-repeat center center;
}
.btn-external-link-type1--WHT:hover .btn-text {
  color: #ccc;
}
.btn-external-type1 {
  border: none;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  position: relative;
}
.btn-external-type1::before {
  background: #1A1818;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  width: 100%;
}
.btn-external-type1::after {
  background: #666;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  width: 100%;
}
.btn-external-type1 .btn-text {
  color: #1A1818;
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  height: 100%;
  padding: 0 30px 3px 0;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .btn-external-type1 .btn-text {
    font-size: 1.7rem;
  }
}
.btn-external-type1 .btn-text::after {
  background: url("../images/btn/btn-external-link-type1-arrow.svg") no-repeat center center/100%;
  content: "";
  height: 14px;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s 0.1s ease;
  transition: all 0.2s 0.1s ease;
  top: 50%;
  width: 14px;
}
.btn-external-type1:hover .btn-text {
  color: #333;
}
.btn-external-type1:hover .btn-text::after {
  right: -5px;
}
.btn-external-type1:hover::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.btn-external-type1:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/*=============================================
*
*  
*
=============================================*/
.btn-prev {
  border: none;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  position: relative;
}
.btn-prev::before {
  background: #1A1818;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  width: 100%;
}
.btn-prev::after {
  background: #666;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  width: 100%;
}
.btn-prev a {
  color: #1A1818;
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  height: 100%;
  padding: 0 0 3px 30px;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .btn-prev a {
    font-size: 1.7rem;
  }
}
.btn-prev a::after {
  background: url("../images/btn/prev-arrow-type1.svg") no-repeat center center;
  content: "";
  height: 13px;
  left: 0;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s 0.1s ease;
  transition: all 0.2s 0.1s ease;
  top: 50%;
  width: 16px;
}
.btn-prev:hover a {
  color: #333;
}
.btn-prev:hover a::after {
  right: -5px;
}
.btn-prev:hover::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.btn-prev:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.btn-next {
  border: none;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  position: relative;
}
.btn-next::before {
  background: #1A1818;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  width: 100%;
}
.btn-next::after {
  background: #666;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  width: 100%;
}
.btn-next a {
  color: #1A1818;
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  height: 100%;
  padding: 0 30px 3px 0;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .btn-next a {
    font-size: 1.7rem;
  }
}
.btn-next a::after {
  background: url("../images/btn/next-arrow-type1.svg") no-repeat center center;
  content: "";
  height: 13px;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s 0.1s ease;
  transition: all 0.2s 0.1s ease;
  top: 50%;
  width: 16px;
}
.btn-next:hover a {
  color: #333;
}
.btn-next:hover a::after {
  right: -5px;
}
.btn-next:hover::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.btn-next:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/*=============================================
*
*  テキストリンク
*
=============================================*/
.text-link1 {
  color: #0062B7;
  text-decoration: underline;
}

/*=============================================
*
*  フェードイン
*
=============================================*/
.bottom-to-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 1s;
  transition: 1s;
  visibility: hidden;
}
.bottom-to-up.scroll-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.bottom-to-up.scroll-in.delay-1 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.bottom-to-up.scroll-in.delay-2 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.bottom-to-up.scroll-in.delay-3 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.bottom-to-up.scroll-in.delay-4 {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.bottom-to-up-2 {
  opacity: 0;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  visibility: hidden;
}
.bottom-to-up-2.scroll-in {
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  visibility: visible;
}
.bottom-to-up-2.scroll-in.delay-1 {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.bottom-to-up-2.scroll-in.delay-2 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.bottom-to-up-2.scroll-in.delay-3 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.bottom-to-up-2.scroll-in.delay-4 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.smooth {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transition-property: -webkit-clip-path;
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.smooth.scroll-in {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

.smooth-block-left-to-right {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.smooth-block-left-to-right .inside-text,
.smooth-block-left-to-right img {
  opacity: 0;
}
.smooth-block-left-to-right::after {
  background: #000;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  top: 0;
  width: 100%;
}
.smooth-block-left-to-right.scroll-in .inside-text,
.smooth-block-left-to-right.scroll-in img {
  opacity: 0;
  -webkit-animation: inside-text forwards 0.7s ease;
          animation: inside-text forwards 0.7s ease;
}
.smooth-block-left-to-right.scroll-in::after {
  -webkit-animation: smooth-block-left-to-right forwards 0.7s ease;
          animation: smooth-block-left-to-right forwards 0.7s ease;
}

@-webkit-keyframes inside-text {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes inside-text {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes smooth-block-left-to-right {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  99% {
    opacity: 1;
    -webkit-transform: scaleX(1) translateX(100%);
            transform: scaleX(1) translateX(100%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes smooth-block-left-to-right {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  99% {
    opacity: 1;
    -webkit-transform: scaleX(1) translateX(100%);
            transform: scaleX(1) translateX(100%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.smooth-bottom-to-up {
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transition-property: -webkit-clip-path;
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.smooth-bottom-to-up.delay-1 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.smooth-bottom-to-up.delay-2 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.smooth-bottom-to-up.delay-3 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.smooth-bottom-to-up.scroll-in {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

/*=============================================
*
*  ロード完了
*
=============================================*/
.smooth-loaded {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transition-property: -webkit-clip-path;
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.smooth-loaded.delay-1 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.smooth-loaded.delay-2 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.smooth-loaded.delay-3 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.all-loaded .smooth-loaded {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

/*=============================================
*
*  フェードイン
*
=============================================*/
.scale-0-to-100 {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.scale-0-to-100.scroll-in {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.scale-0-to-100.scroll-in.delay-1 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.scale-0-to-100.scroll-in.delay-2 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.scale-0-to-100.scroll-in.delay-3 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

/*
.obj-scale-0-to-100 {
	&::before {
		transform: scale(0);
		transform-origin: 50%;
		transition: .7s;
	}		
	&.scroll-in {
		&::before {
			transform: scale(1);
		}
	}
}*/
/*=============================================
*
*  ディレイ
*
=============================================*/
.delay-1 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.deley-2 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}