@charset "UTF-8";
/* Usage Examples
    .my-level-1-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 48px;
        margin: 0 0 0 16px;
    }

    .my-level-2-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 32px; // Don't need to change any settings, will work with any font size automatically
        margin: 0 0 0 16px;
    }

    .my-body-copy-class {
        @include text-crop($line-height: 2); // Larger line height desired, set the line height via the mixin
        font-size: 16px;
    }

    // Sometimes depending on the font-size, the rendering, the browser, etc. you may need to tweak the output. 
    // You can adjust the top and bottom cropping when invoking the component using the $top-adjustment and $bottom-adjustment settings 
    
    .slight-adjustment-needed {
        @include text-crop($top-adjustment: -0.5px, $bottom-adjustment: 2px);
        font-size: 17px;
    }

    .dont-do-this {
        @include text-crop;
        font-size: 16px;
        line-height: 3; // DO NOT set line height outside of the mixin, the mixin needs the line height value to calculate the crop correctly
    }
*/
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* common
----------------------*/
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw / 37.5);
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1200px;
  }
}

img {
  vertical-align: top;
}

ul, ol {
  margin: 0;
  padding: 0;
}

ul li, ol li {
  list-style: none;
}

p {
  line-height: 1.6em;
}

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

/* contents fix
----------------------*/
/* 横幅
----------------------*/
.inner-common {
  width: 1200px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .inner-common {
    width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .inner-common {
    padding: 0 10%;
  }
}

.inner-txt {
  width: 800px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .inner-txt {
    width: 100%;
  }
}

/* bg
----------------------*/
.bg-color {
  background-color: #eaf0f9;
}

/* header
---------------------------------------------------*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 10px;
  }
}

.header .logo-global {
  display: inline-block;
  margin: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 767px) {
  .header .logo-global {
    width: 50%;
    position: relative;
    z-index: 2;
  }
}

.header .logo-global img {
  width: auto;
}

@media screen and (max-width: 767px) {
  .header .logo-global img {
    width: 100%;
  }
}

.header .logo-global:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .header.fixed {
    padding: 10px;
  }
}

/* nav-global
---------------------------------------------------*/
.nav-global {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-global ul {
  width: 100%;
}

.nav-global li {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 0 15px;
}

@media screen and (max-width: 767px) {
  .nav-global li {
    display: block;
    margin: 10px;
  }
}

.nav-global a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
  color: #080254;
  font-weight: normal;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav-global a {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) {
  .nav-global a:after {
    content: '';
    width: 0;
    height: 5px;
    background-color: #FFF;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.25s;
    transition: 0.25s;
  }
  .nav-global a:hover:after {
    width: 100%;
  }
}

/* .mobile-menu-btn
----------------------------*/
.mobile-menu-btn {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  background: none;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 98;
  position: fixed;
  top: 0;
  right: 0;
}

.mobile-menu-btn a {
  display: block;
  padding: 20px 14px;
  height: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mobile-menu-btn .mobile-menu-bar {
  position: relative;
  display: block;
  height: 100%;
}

.mobile-menu-btn span {
  display: inline-block;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #080254;
}

.mobile-menu-btn span:nth-of-type(1) {
  top: 0;
}

.mobile-menu-btn span:nth-of-type(2) {
  top: 9px;
}

.mobile-menu-btn span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #080254;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.mobile-menu-btn span:nth-of-type(3) {
  bottom: 0;
}

@media (max-width: 767px) {
  .mobile-menu-btn {
    display: block;
    width: 56px;
    height: 56px;
    position: absolute;
  }
  .mobile-menu-btn a {
    padding: 18px 14px;
  }
}

/* .mobile-nav:open
----------------------------*/
@media screen and (max-width: 767px) {
  .nav-global {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: #ffd300;
    background-color: rgba(255, 211, 0, 0.96);
  }
  .open .nav-global {
    right: 0;
  }
  .open .mobile-menu-bar span {
    background-color: #080254;
  }
  .open .mobile-menu-bar span:nth-of-type(1) {
    -webkit-transform: translateY(20px) scale(0);
    transform: translateY(20px) scale(0);
  }
  .open .mobile-menu-bar span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .open .mobile-menu-bar span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .open .mobile-menu-bar span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) scale(0);
    transform: translateY(-20px) scale(0);
  }
  .open .nav-global-list {
    margin-right: 0;
  }
}

/* pagetop
----------------------*/
.pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .pagetop {
    width: 60px;
    height: 60px;
  }
}

.pagetop a {
  display: block;
  width: 100px;
  height: 100px;
  background-color: #000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.pagetop a:before {
  content: "";
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -10px;
  margin-left: -14px;
  -webkit-transition: inherit;
  transition: inherit;
}

@media screen and (max-width: 767px) {
  .pagetop a:before {
    width: 15px;
    height: 15px;
    margin-top: -5px;
    margin-left: -7px;
  }
}

@media screen and (min-width: 768px) {
  .pagetop a:hover {
    background: #ffd300;
  }
  .pagetop a:hover:before {
    margin-top: -15px;
    border-color: #080254;
  }
}

/* footer
---------------------------------------------------*/
.footer {
  text-align: center;
  height: 100px;
  background-color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .footer {
    font-size: 10px;
    font-size: 1rem;
    height: 120px;
  }
}

.footer .footer-wrapper {
  width: 100%;
}

.sns-list {
  text-align: center;
  width: 100%;
}

.sns-list li {
  display: inline-block;
  margin: 10px;
}

@media screen and (max-width: 767px) {
  .sns-list li {
    margin: 0 10px 10px;
  }
}

.sns-list a {
  font-size: 20px;
}

.sns-list .fa-twitter {
  color: #55acee;
}

.sns-list .fa-facebook-square {
  color: #315096;
}

.sns-list .fa-line {
  color: #00c300;
}

.sns-list .svg-inline--fa {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (min-width: 768px) {
  .sns-list a:hover .svg-inline--fa {
    color: #a8a8a8;
  }
}

.copyright {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  margin: 0;
  color: #080254;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .copyright {
    font-size: 10px;
    font-size: 1rem;
  }
}

/* txt
---------------------------------------------------*/
/* title */
.page-title {
  font-size: 32px;
  font-size: 3.2rem;
  color: rgba(0, 0, 0, 0.85);
  font-weight: bold;
  text-align: center;
}

@media (max-width: 767px) {
  .page-title {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.sec-title-bg {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-style: italic;
  color: #FFF;
  font-size: 8vw;
  position: absolute;
  top: 40px;
  left: 5%;
}

@media screen and (max-width: 767px) {
  .sec-title-bg {
    font-size: 10vw;
    top: 40px;
  }
}

.sec-title {
  font-size: 46px;
  font-size: 4.6rem;
  color: #080254;
  font-weight: bold;
  text-align: center;
  margin: 0 0 60px;
  line-height: 1.4em;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}

.sec-title .ff-i {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
}

.sec-title .number {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  color: #ffd301;
  font-weight: 900;
  font-size: 84px;
  font-size: 8.4rem;
  margin: 0 3px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .sec-title .number {
    font-size: 44px;
    font-size: 4.4rem;
  }
}

.sec-head-txt {
  margin: 0;
  text-align: center;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.main .sec-head-txt {
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .main .sec-head-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.sec-sub-title {
  font-size: 24px;
  font-size: 2.4rem;
  color: rgba(0, 0, 0, 0.85);
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .sec-sub-title {
    font-size: 20px;
    font-size: 2rem;
  }
}

/* contents-txt
---------------------------------------------------*/
.main p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8em;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .main p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* .btn
---------------------------------------------------*/
.btn.btn-white {
  font-size: 18px;
  font-size: 1.8rem;
  background-color: #FFF;
  width: 240px;
  letter-spacing: 0.22em;
  padding: 18px 0;
  text-decoration: none;
  display: inline-block;
  color: #080254;
  position: relative;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .btn.btn-white {
    width: 100%;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.btn.btn-white span {
  position: relative;
  z-index: 2;
}

.btn.btn-white:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ffd300;
  width: 0;
  height: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (max-width: 767px) {
  .btn.btn-white {
    letter-spacing: 0.1em;
  }
  .btn.btn-white:after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    right: 8%;
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -4px;
    z-index: 5;
    border-top: 1px solid #080254;
    border-right: 1px solid #080254;
  }
}

@media screen and (min-width: 768px) {
  .btn.btn-white:hover:before {
    width: 100%;
  }
}

.bg-animation {
  background-image: url(../images/sample.jpg);
}

/* mv
---------------------------------------------------*/
.mv {
  height: 750px;
  background-color: #ffd300;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .mv {
    padding-top: 112%;
    height: auto;
  }
}

.mv .line-gray {
  width: 100%;
  height: 0;
  max-height: 500px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .mv .line-gray {
    max-height: 250px;
  }
}

.mv .line-gray .line-gray-bg {
  width: inherit;
  height: inherit;
  background-image: url(../images/mv/line-gray.png);
  background-size: 100% 500px;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .mv .line-gray .line-gray-bg {
    background-size: 120% 200px;
    background-position: center bottom;
  }
}

.mv .line-blue {
  width: 100%;
  height: 0;
  max-height: 290px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .mv .line-blue {
    max-height: 130px;
  }
}

.mv .line-blue .line-blue-bg {
  width: inherit;
  height: inherit;
  background-image: url(../images/mv/line-blue.png);
  background-size: 100% 290px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .mv .line-blue .line-blue-bg {
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

.mv .mv-txt .mv-title-1 {
  opacity: 0;
}

.mv .mv-txt .mv-title-2 {
  opacity: 0;
}

.mv .el {
  opacity: 0;
  width: 100%;
  display: block;
  position: absolute;
  bottom: -120.8%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .mv .el {
    padding-top: 30%;
    height: auto;
    bottom: -146%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  .mv .el img {
    width: 100%;
    height: 260px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.mv .mv-slider .slick-track {
  text-align: center;
}

.mv .mv-slider .mv-slider-inner {
  display: inline-block;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .mv .mv-slider .mv-slider-inner {
    padding: 8px;
    margin: 4%;
  }
}

.mv .number {
  position: absolute;
  bottom: -4px;
  left: 30px;
  z-index: 5;
  display: inline-block;
  /* アニメーション時に消す */
}

@media screen and (max-width: 767px) {
  .mv .number {
    left: 0;
  }
}

.mv .number span {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 380px;
  line-height: 0;
  color: #ffd300;
  letter-spacing: -0.15em;
}

@media screen and (max-width: 767px) {
  .mv .number span {
    font-size: 130px;
    font-size: 13rem;
  }
}

.mv .mv-txt {
  width: 1200px;
  height: 642px;
  margin: 0 auto;
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .mv .mv-txt {
    width: 100%;
    height: 100%;
  }
}

.mv .mv-txt .mv-title-1 {
  position: absolute;
  top: 45px;
  left: 60px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .mv .mv-txt .mv-title-1 {
    width: 90%;
    left: 50%;
    top: 20%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.mv .mv-txt .mv-title-2 {
  position: absolute;
  bottom: 0;
  left: 50px;
}

@media screen and (max-width: 767px) {
  .mv .mv-txt .mv-title-2 {
    bottom: 0;
    width: 90%;
    left: auto;
    right: 3%;
  }
}

@media screen and (max-width: 767px) {
  .mv .mv-txt img {
    width: 100%;
    height: auto;
  }
}

/* .other-contents
---------------------------------------------------*/
/* .reason
---------------------------------------------------*/
.reason {
  padding-top: 90px;
  padding-bottom: 100px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .reason {
    padding: 60px 0;
  }
}

.reason .sec-title {
  margin-top: 0.5em;
}

.reason .sec-title .number {
  vertical-align: bottom;
}

.reason .reason-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 8%;
}

@media screen and (max-width: 767px) {
  .reason .reason-box {
    margin-bottom: 14%;
  }
}

.reason .reason-box:last-child {
  margin-bottom: 0;
}

.reason .reason-box-img {
  width: 62%;
  float: right;
}

.reason .reason-box-img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .reason .reason-box-img {
    width: 90%;
  }
}

.reason .inner-common {
  width: 1000px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .reason .inner-common {
    width: 100%;
    padding: 0;
  }
}

.reason .reason-title {
  width: 40%;
  height: 440px;
  background-color: rgba(8, 2, 84, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #FFF;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .reason .reason-title {
    width: 45%;
    height: auto;
    padding: 20% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.reason .reason-title h3 {
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.6em;
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .reason .reason-title h3 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 3em;
  }
}

.reason .reason-title h3 span {
  font-size: 56px;
  font-size: 5.6rem;
  color: #ffd300;
}

@media screen and (max-width: 767px) {
  .reason .reason-title h3 span {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.reason .reason-title .btn-wrapper {
  margin-bottom: 0;
}

.reason .reason-point {
  margin-top: -160px;
}

@media screen and (max-width: 767px) {
  .reason .reason-point {
    margin-top: -105%;
  }
}

.reason .reason-point .point-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-style: italic;
  font-size: 24px;
  font-size: 2.4rem;
  display: inline-block;
  color: #080254;
  border-bottom: 4px solid #080254;
  margin-left: 1em;
}

@media screen and (max-width: 767px) {
  .reason .reason-point .point-title {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}

.reason .reason-point .number {
  display: block;
  color: #ffd300;
  font-size: 140px;
  font-size: 14rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.015em;
  margin-bottom: 0;
  line-height: 1em;
}

@media screen and (max-width: 767px) {
  .reason .reason-point .number {
    font-size: 70px;
    font-size: 7rem;
  }
}

.reason .reason-box-txt {
  width: 55%;
  padding-left: 45%;
  margin-top: -3.5em;
}

@media screen and (max-width: 767px) {
  .reason .reason-box-txt {
    padding-left: 50%;
    width: 55%;
    margin-top: -1.5em;
    padding-right: 5%;
    text-align: justify;
    position: relative;
  }
}

.reason .reason-box-txt span {
  font-size: 64px;
  font-size: 6.4rem;
  color: #080254;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
  .reason .reason-box-txt span {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.reason .reason-box-txt p {
  margin-bottom: 0;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .reason .reason-box-txt p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.reason .reason-box.left .reason-box-img {
  float: left;
}

.reason .reason-box.left .reason-box-txt {
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .reason .reason-box.left .reason-box-txt {
    padding-right: 50%;
    padding-left: 5%;
  }
}

.reason .reason-box.left .reason-title {
  left: auto;
  right: 0;
}

/* .ranking
---------------------------------------------------*/
.ranking {
  background-image: url(../images/ranking-bg.jpg);
  background-size: cover;
  background-position: center center;
  padding: 100px 0 60px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .ranking {
    padding: 60px 0 40px;
  }
}

.ranking .inner-common {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .ranking .inner-common {
    width: 100%;
  }
}

.ranking .ranking-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .ranking .ranking-list {
    display: block;
  }
}

.ranking .ranking-list li {
  background-color: rgba(255, 255, 255, 0.5);
  width: 46%;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

@media screen and (max-width: 767px) {
  .ranking .ranking-list li {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 20px;
  }
}

.ranking .ranking-list .icon {
  position: absolute;
  top: -20px;
  left: -20px;
}

@media screen and (max-width: 767px) {
  .ranking .ranking-list .icon {
    width: 80px;
    height: auto;
    top: -15px;
    left: -15px;
  }
}

.ranking .ranking-list .txt {
  text-align: center;
  padding-left: 100px;
}

@media screen and (max-width: 767px) {
  .ranking .ranking-list .txt {
    padding: 0;
  }
}

.ranking .ranking-list .txt .notes {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .ranking .ranking-list .txt .notes {
    font-size: 10px;
    font-size: 1rem;
  }
}

.ranking .ranking-list .ranking-txt {
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.6em;
}

@media screen and (max-width: 767px) {
  .ranking .ranking-list .ranking-txt {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.4em;
  }
}

.ranking .ranking-list .ranking-txt .year {
  font-size: 18px;
  font-size: 1.8rem;
  padding-bottom: 4px;
  position: relative;
  bottom: 2px;
}

@media screen and (max-width: 767px) {
  .ranking .ranking-list .ranking-txt .year {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.ranking .ranking-list .ranking-txt .number {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 40px;
  font-size: 4rem;
}

@media screen and (max-width: 767px) {
  .ranking .ranking-list .ranking-txt .number {
    font-size: 30px;
    font-size: 3rem;
  }
}

.ranking .ranking-sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-left: 1px solid #FFF;
}

@media screen and (max-width: 767px) {
  .ranking .ranking-sub-list {
    border-left: none;
  }
}

.ranking .ranking-sub-list li {
  width: 25%;
  text-align: center;
  border-right: 1px solid #FFF;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .ranking .ranking-sub-list li {
    width: 50%;
    margin-bottom: 10%;
  }
  .ranking .ranking-sub-list li:nth-child(odd) {
    border-left: 1px solid #FFF;
  }
}

.ranking .ranking-sub-list li dt, .ranking .ranking-sub-list li dd {
  color: #FFF;
  font-size: 14px;
  font-size: 1.4rem;
}

.ranking .ranking-sub-list li dd {
  margin: 0;
}

.ranking .ranking-sub-list li dd .number {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
}

@media screen and (max-width: 767px) {
  .ranking .ranking-sub-list li dd .number {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

/* .other-contents
---------------------------------------------------*/
.service {
  position: relative;
  padding: 110px 0 70px;
}

@media screen and (max-width: 767px) {
  .service {
    padding: 60px 0 40px;
  }
}

.service .service-list-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .service .service-list-wrapper {
    width: 80%;
    margin: 0 auto;
  }
}

.service .service-list-inner {
  padding: 0 20px;
}

.service .service-list-box {
  text-align: center;
  outline: none;
}

.service .slick-prev,
.service .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 45%;
  display: block;
  width: 40px;
  height: 56px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 10;
}

.service .slick-prev:before,
.service .slick-next:before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -20px;
  margin-left: -10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.service .slick-prev:hover:before,
.service .slick-next:hover:before {
  border-color: #ffd300;
}

@media screen and (max-width: 767px) {
  .service .slick-prev,
  .service .slick-next {
    top: 42%;
  }
}

.service .slick-prev {
  left: -20px;
}

.service .slick-prev:before {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}

@media screen and (max-width: 767px) {
  .service .slick-prev {
    left: -10px;
  }
}

.service .slick-next {
  right: -20px;
}

.service .slick-next:before {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  z-index: 20;
  margin-left: -30px;
}

@media screen and (max-width: 767px) {
  .service .slick-next {
    right: -10px;
  }
}

.service .service-list .notes {
  color: #000;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.4em;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 0 20px;
  margin: 1em 0 1.5em 0;
}

@media screen and (max-width: 767px) {
  .service .service-list .notes {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.service .service-list .notes:before, .service .service-list .notes:after {
  content: '';
  width: 1px;
  height: 66px;
  background-color: #000;
  display: block;
  position: absolute;
  top: -0.4em;
}

@media screen and (max-width: 767px) {
  .service .service-list .notes:before, .service .service-list .notes:after {
    height: 50px;
  }
}

.service .service-list .notes:before {
  left: 0;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

.service .service-list .notes:after {
  right: 0;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

.service a {
  position: relative;
  display: inline-block;
  margin: 0 auto 30px;
  outline: none;
}

.service a:after {
  content: "READ MORE";
  width: 0;
  height: 0;
  background-color: rgba(8, 2, 84, 0.8);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  opacity: 0;
  letter-spacing: 0.2em;
  font-size: 18px;
  font-size: 1.8rem;
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .service a:after {
    display: inline-block;
    top: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    opacity: 1;
    width: auto;
    height: auto;
    border-radius: 20px;
    letter-spacing: 0.1em;
    padding: 10px 15%;
  }
}

@media screen and (max-width: 767px) {
  .service a:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    right: 20%;
    bottom: -3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -20px;
    margin-left: -10px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 5;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
  }
  .service a img {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .service a:hover:after {
    width: 220px;
    height: 220px;
    opacity: 1;
  }
}

.service .balloon {
  background-color: #FFF;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 0 #bcc0c8;
  box-shadow: 0 3px 0 #bcc0c8;
  padding: 14px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.service .balloon:before {
  content: '';
  width: 30px;
  height: 30px;
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -15px;
  margin-top: -12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.service .balloon dt {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #080254;
  margin-bottom: 6px;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .service .balloon dt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.service .balloon dd {
  font-size: 23px;
  font-size: 2.3rem;
  color: #f7be00;
  font-weight: bold;
  margin: 0;
  letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
  .service .balloon dd {
    font-size: 20px;
    font-size: 2rem;
  }
}

.service .balloon dd span {
  font-size: 14px;
  font-size: 1.4rem;
  color: #080254;
  font-weight: normal;
  display: block;
  letter-spacing: 0;
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .service .balloon dd span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* animation
---------------------------------------------------*/
.service, .ranking, .reason {
  overflow: hidden;
}

.sec-title-bg {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.sec-title-bg.on {
  -webkit-animation-name: secTitleCover;
  animation-name: secTitleCover;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes secTitleCover {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes secTitleCover {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.sec-title,
.sec-head-txt {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.sec-head-txt.on {
  -webkit-animation-name: secTitle;
  animation-name: secTitle;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.sec-title.on {
  -webkit-animation-name: secTitle;
  animation-name: secTitle;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes secTitle {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes secTitle {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

/* reason */
.reason-box .reason-box-img:after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #eaf0f9;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.reason-box .reason-box-img.on:after {
  -webkit-animation-name: reasonImgCover;
  animation-name: reasonImgCover;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.reason-box.left .reason-box-img:after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #eaf0f9;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.reason-box.left .reason-box-img.on:after {
  -webkit-animation-name: reasonImgCover;
  animation-name: reasonImgCover;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes reasonImgCover {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes reasonImgCover {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

.reason-title,
.reason-box-txt {
  opacity: 0;
}

.reason-title.on {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.reason-box-txt.on {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

/* service */
.service-list-wrapper {
  opacity: 0;
}

.service-list-wrapper.on {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.ranking-list li {
  opacity: 0;
}

.ranking-list.on li {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.ranking-list.on li:nth-child(1) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.ranking-list.on li:nth-child(2) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.ranking-sub-list li {
  opacity: 0;
}

.ranking-sub-list.on li {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.ranking-sub-list.on li:nth-child(1) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.ranking-sub-list.on li:nth-child(2) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.ranking-sub-list.on li:nth-child(3) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.ranking-sub-list.on li:nth-child(4) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
