@charset "UTF-8";

.btn {
  display: inline-block;
  font-weight: 600;
  color: #2d3748;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.375;
  border-radius: 3px;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    transition: none;
  }
}

.btn:hover {
  color: #2d3748;
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(46, 124, 217, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

.btn-outline-secondary {
  color: #868e96;
  border-color: #868e96;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #868e96;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
}

.text-danger {
  color: #cd201f !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #8b1615 !important;
}

.text-styled {
  border: 1px solid #707070;
  font-size: 1.5rem;
  padding: 0 15px;
  height: 45px;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
  background: none;
}

/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mr0 {
  margin-left: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mr5 {
  margin-left: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mr10 {
  margin-left: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mr15 {
  margin-left: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mr20 {
  margin-left: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mr25 {
  margin-left: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr30 {
  margin-left: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mr35 {
  margin-left: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mr40 {
  margin-left: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mr45 {
  margin-left: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mr50 {
  margin-left: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mr55 {
  margin-left: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mr60 {
  margin-left: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mr65 {
  margin-left: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mr70 {
  margin-left: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mr75 {
  margin-left: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mr80 {
  margin-left: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mr85 {
  margin-left: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mr90 {
  margin-left: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mr95 {
  margin-left: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mr100 {
  margin-left: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
 * 3DX
 */

.hamburger--3dx .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before,
.hamburger--3dx .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */

.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before,
.hamburger--3dx-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */

.hamburger--3dy .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before,
.hamburger--3dy .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */

.hamburger--3dy-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before,
.hamburger--3dy-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * Arrow
 */

.hamburger--arrow.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */

.hamburger--arrow-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */

.hamburger--arrowalt .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */

.hamburger--arrowalt-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Boring
 */

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
  -webkit-transition-property: none;
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/*
 * Collapse
 */

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(45deg);
          transform: translate3d(0, -10px, 0) rotate(45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */

.hamburger--elastic .hamburger-inner {
  top: 2px;
  -webkit-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(135deg);
          transform: translate3d(0, 10px, 0) rotate(135deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);
          transform: translate3d(0, -20px, 0) rotate(-270deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */

.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  -webkit-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg);
          transform: translate3d(0, 10px, 0) rotate(-135deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(270deg);
          transform: translate3d(0, -20px, 0) rotate(270deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/*
 * Emphatic
 */

.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  -webkit-transform: translate3d(80px, 80px, 0) rotate(45deg);
          transform: translate3d(80px, 80px, 0) rotate(45deg);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  -webkit-transform: translate3d(-80px, 80px, 0) rotate(-45deg);
          transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */

.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  -webkit-transform: translate3d(80px, -80px, 0) rotate(-45deg);
          transform: translate3d(80px, -80px, 0) rotate(-45deg);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  -webkit-transform: translate3d(-80px, -80px, 0) rotate(45deg);
          transform: translate3d(-80px, -80px, 0) rotate(45deg);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Slider
 */

.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
          transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
          transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */

.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
          transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  -webkit-transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
          transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(90deg);
          transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
 * Spring
 */

.hamburger--spring .hamburger-inner {
  top: 2px;
  -webkit-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
          transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */

.hamburger--stand .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: transparent;
  -webkit-transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */

.hamburger--stand-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: transparent;
  -webkit-transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin
 */

.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */

.hamburger--spin-r .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */

.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */

.hamburger--vortex .hamburger-inner {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transform: rotate(765deg);
          transform: rotate(765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */

.hamburger--vortex-r .hamburger-inner {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before,
.hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
          transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before,
.hamburger--vortex-r.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* Z-INDEX */

.formError {
  z-index: 990;
}

.formError .formErrorContent {
  z-index: 991;
}

.formError .formErrorArrow {
  z-index: 996;
}

.ui-dialog .formError {
  z-index: 5000;
}

.ui-dialog .formError .formErrorContent {
  z-index: 5001;
}

.ui-dialog .formError .formErrorArrow {
  z-index: 5006;
}

.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left;
}

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
}

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
}

.formError .formErrorContent {
  width: 100%;
  background: #292b2d;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px;
}

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative;
}

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #292b2d;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block;
}

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none;
}

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none;
}

.formError .formErrorArrow .line8 {
  width: 11px;
}

.formError .formErrorArrow .line7 {
  width: 9px;
}

.formError .formErrorArrow .line6 {
  width: 7px;
}

.formError .formErrorArrow .line5 {
  width: 5px;
}

.formError .formErrorArrow .line4 {
  width: 3px;
}

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd;
}

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd;
}

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd;
}

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px;
}

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

body[dir=rtl] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.greenPopup .formErrorArrow div {
  background: #33be40;
}

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

html {
  font-size: 62.5%;
  font-family: "\6E38\30B4\30B7\30C3\30AF", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4   Pro", "Hiragino Kaku Gothic Pro", "\30E1\30A4\30EA\30AA", "Meiryo", sans-serif;
}

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}

button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button::focus,
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.row {
  overflow: hidden;
  *zoom: 1;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.8;
}

.flex-row {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.inner-m {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.inner-l {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px;
}

body.green header .login,
body.green header .logout,
body.green header .profile {
  display: none;
}

body.results header .login,
body.results header .login-register {
  display: none;
}

body.for-top header .logout,
body.for-top header .profile,
body.for-top header .login-register {
  display: none;
}

body.yellow {
  /*
  * === BASE COLORS ===
  */
  /*
  * === COMPONENTS ===
  */
  /*
  * === PAGES ===
  */
}

body.yellow .btn.full-background {
  background-color: #EBA438;
}

body.yellow .btn.color-outline {
  border: 2px solid #EBA438;
}

body.yellow #mainvisual {
  background-image: url(/images/main-bg-orange.jpg?189d7efc61ae16992a1d00b0c0953a1b);
}

@media only screen and (max-width: 767px) {
  body.yellow #mainvisual {
    background-image: url(/images/main-bg-orange-sp.jpg?5629070e4aa3856d6135efddc7ceb2ee);
  }
}

body.yellow .border:before {
  background-color: #EBA438;
}

body.yellow .border:after {
  background: #E6CC00;
}

body.yellow .card__header figure figcaption .label {
  background-color: #EBA438;
}

body.yellow .card__information {
  background: #fdf5ea;
}

body.yellow .card-type02:after {
  background-image: url(/images/arrow-orange.svg?78520f59f8dc31fdea4e47abf0e846e4);
}

body.yellow .card-type02 .upper .text .category {
  background-color: #EBA438;
}

body.yellow .card-type02 .down {
  background-color: #fdf5ea;
}

body.yellow .card-type03:after {
  background-image: url(/images/arrow-orange.svg?78520f59f8dc31fdea4e47abf0e846e4);
}

body.yellow .card-type03 .upper .text .category {
  background-color: #EBA438;
}

body.yellow .card-type03 .down {
  background-color: #fdf5ea;
}

body.yellow .searchsidebar .mainbar {
  background-color: #fdf5ea;
}

body.yellow .searchsidebar .titler {
  background-color: #EBA438;
}

@media only screen and (min-width: 768px) {
  body.yellow .searchsidebar .btn.color-outline:hover:after {
    border: 4px solid #EBA438;
  }
}

body.yellow .checker .effec:after {
  background-image: url(/images/check-orange.svg?bab30c48d0da25ce89ec396a1089cae8);
}

body.yellow .pagination span.current {
  background-color: #EBA438;
}

body.yellow.for-top #gyoshu {
  background: #EBA438;
}

body.yellow.for-top #area .inner .btns ul li a {
  border: 2px solid #EBA438;
}

body.yellow.for-top #area .animated2:hover {
  box-shadow: inset 0px 0px 0px 4px #EBA438;
}

@media only screen and (min-width: 768px) {
  body.yellow.for-top #area .inner .btns ul li a:hover:after {
    border: 4px solid #EBA438;
  }
}

body.yellow.for-top #area .inner .map #Path_1241:hover,
body.yellow.top #area .inner .map #Path_1242:hover,
body.yellow.top #area .inner .map #Path_1243:hover,
body.yellow.top #area .inner .map #Path_1244:hover {
  fill: #EBA438;
}

body.yellow.for-top #price {
  background: #fdf5ea;
}

body.yellow.for-top #price .col {
  background-image: url(/images/price_arrow-orange.svg?41b1f81ecde69b86eb5468786f71c9b6);
}

body.yellow.for-top #feature .inner .merits .col figure:before {
  background: rgba(235, 164, 56, 0.2);
}

body.yellow.for-top #flow .flex-row.list .col figure .img-box span {
  background: #EBA438;
}

body.yellow.for-top #flow .flex-row.list .col:before {
  background-image: url(/images/service_arrow-orange.svg?c9c685e12ce60c924ca3a512a38dddf0);
}

body.yellow.results.list .content-wrapper .resulheader p.top .number {
  color: #EBA438;
}

body.yellow.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper .category {
  background-color: #EBA438;
}

body.yellow.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr th {
  background-color: #fdf5ea;
}

body.yellow.results.detail .searchresults-wrapper .btn.color-outline span:after {
  background-color: #EBA438;
}

body.yellow.results.detail .searchresults-wrapper .btn.color-outline span:hover {
  box-shadow: inset 0px 0px 0px 3px #EBA438;
}

body.yellow.results.detail .detail-card-wrapper .btn.color-outline:hover {
  box-shadow: inset 0px 0px 0px 3px #EBA438;
}

@media only screen and (min-width: 768px) {
  body.yellow.results.detail .content-wrapper .detail-card-wrapper .btn.color-outline:hover:after {
    border: 4px solid #EBA438;
  }
}

@media only screen and (min-width: 768px) {
  body.yellow.results.detail .content-wrapper .down-list .btn.color-outline:hover:after {
    border: 4px solid #EBA438;
  }
}

body.yellow.company .company-main table tr th {
  background-color: #fdf5ea;
}

@media only screen and (min-width: 768px) {
  body.yellow.company .btn.color-outline:hover:after {
    border: 4px solid #EBA438;
  }
}

body.blue {
  /*
  * === BASE COLORS ===
  */
  /*
  * === COMPONENTS ===
  */
  /*
  * === PAGES ===
  */
}

body.blue .btn.full-background {
  background-color: #327AAA;
}

body.blue .btn.color-outline {
  border: 2px solid #327AAA;
}

body.blue #area .animated2:hover {
  box-shadow: inset 0px 0px 0 4px #0B7AC4;
}

@media only screen and (min-width: 768px) {
  body.blue.for-top #area .inner .btns ul li a:hover:after {
    border: 4px solid #327AAA;
  }
}

body.blue.for-top #area .inner .map #Path_1241:hover,
body.blue.top #area .inner .map #Path_1242:hover,
body.blue.top #area .inner .map #Path_1243:hover,
body.blue.top #area .inner .map #Path_1244:hover {
  fill: #0B7AC4;
}

body.blue #mainvisual {
  background: url(/images/main-bg-blue.jpg?8cf8ff5342d7d2eb5574695b5cdda32e) center/cover no-repeat;
}

@media only screen and (max-width: 767px) {
  body.blue #mainvisual {
    background: url(/images/main-bg-sp.jpg?5f6a768c7d67f0ee4da096e9703a3745) center/cover no-repeat;
  }
}

body.blue .border:before {
  background-color: #0B7AC4;
}

body.blue .border:after {
  background: #10A6D4;
}

body.blue .card-type02:after {
  background-image: url(/images/arrow-blue.svg?6eca488f9ac4c00e4fd8ea07252d1b13);
}

body.blue .card__header figure figcaption .label {
  background-color: #327AAA;
}

body.blue .card__information {
  background: #eaf1f6;
}

body.blue .card-type02 .upper .text .category {
  background-color: #0B7AC4;
}

body.blue .card-type02 .down {
  background-color: #eaf1f6;
}

body.blue .card-type03:after {
  background-image: url(/images/arrow-blue.svg?6eca488f9ac4c00e4fd8ea07252d1b13);
}

body.blue .card-type03 .upper .text .category {
  background-color: #327AAA;
}

body.blue .card-type03 .down {
  background-color: #eaf1f6;
}

body.blue .searchsidebar .mainbar {
  background-color: #eaf1f6;
}

body.blue .searchsidebar .titler {
  background-color: #327AAA;
}

@media only screen and (min-width: 768px) {
  body.blue .searchsidebar .btn.color-outline:hover:after {
    border: 4px solid #327AAA;
  }
}

body.blue .checker .effec:after {
  background-image: url(/images/check-blue.svg?a3caee8a353d6555da30927f8ba02bcc);
}

body.blue .pagination span.current {
  background-color: #327AAA;
}

body.blue.for-top #gyoshu {
  background: #327AAA;
}

body.blue.for-top #area .inner .btns ul li a {
  border: 2px solid #327AAA;
}

body.blue.for-top #price {
  background: #eaf1f6;
}

body.blue.for-top #price .col {
  background-image: url(/images/arrow-blue.svg?6eca488f9ac4c00e4fd8ea07252d1b13);
}

body.blue.for-top #feature .inner .merits .col figure:before {
  background: #eaf1f6;
}

body.blue.for-top #flow .flex-row.list .col figure .img-box span {
  background: #327AAA;
}

body.blue.for-top #flow .flex-row.list .col:before {
  background-image: url(/images/service_arrow-blue.svg?2b75d555820d7a41f83a742be519f5f5);
}

body.blue.results.list .content-wrapper .resulheader p.top .number {
  color: #327AAA;
}

body.blue.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper .category {
  background-color: #327AAA;
}

body.blue.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr th {
  background-color: #eaf1f6;
}

body.blue.results.detail .searchresults-wrapper .btn.color-outline span:after {
  background-color: #327AAA;
}

body.blue.results.detail .searchresults-wrapper .btn.color-outline span:hover {
  box-shadow: inset 0px 0px 0px 3px #327AAA;
}

@media only screen and (min-width: 768px) {
  body.blue.results.detail .detail-card-wrapper .btn.color-outline:hover:after {
    border: 4px solid #327AAA;
  }
}

@media only screen and (min-width: 768px) {
  body.blue.results.detail .content-wrapper .down-list .btn.color-outline:hover:after {
    border: 4px solid #327AAA;
  }
}

body.blue.company .company-main table tr th {
  background-color: #eaf1f6;
}

@media only screen and (min-width: 768px) {
  body.blue.company .btn.color-outline:hover:after {
    border: 4px solid #327AAA;
  }
}

body.green {
  /*
  * === BASE COLORS ===
  */
  /*
  * === COMPONENTS ===
  */
  /*
  * === PAGES ===
  */
}

body.green .btn.full-background {
  background-color: #327AAA;
}

body.green .btn.color-outline {
  border: 2px solid #327AAA;
}

body.green #area .animated2:hover {
  box-shadow: inset 0px 0px 0 4px #145F91;
}

body.green #mainvisual {
  background: url(/images/main-bg-green.jpg?d8bd8a19084ee3e02621b540b1090275) center/cover no-repeat;
}

@media only screen and (max-width: 767px) {
  body.green #mainvisual {
    background: url(/images/main-bg-sp.jpg?0afa32191c406b69c58a3ff15c40f05f) center/cover no-repeat;
  }
}

body.green #mainvisual.subpage-mainvisual:before {
  background-image: url(/images/mv_side_bg-green.svg?31d7e56b192591e635a39cf0b1e3156c);
}

@media only screen and (max-width: 767px) {
  body.green #mainvisual.subpage-mainvisual:before {
    background-image: url(/images/mv_side_bg_sp-green.svg?cbc37b27369fb41ecc67ec29d72a5a9f);
  }
}

body.green .border:before {
  background-color: #145F91;
}

body.green .border:after {
  background: #EBA438;
}

body.green.top .section2 .inner .merits .col figure:before {
  background: rgba(235, 164, 56, 0.2);
}

body.green.top .section2 .flex-row.list .col figure .img-box span {
  background: #EBA438;
}

body.green.top .section2 .flex-row.list .col:before {
  background-image: url(/images/service_arrow-orange.svg?c9c685e12ce60c924ca3a512a38dddf0);
}

body.green.top .section3 .inner .merits .col figure:before {
  background: rgba(20, 95, 145, 0.2);
}

body.green.top .section3 .flex-row.list .col figure .img-box span {
  background: #327AAA;
}

body.green.top .section3 .flex-row.list .col:before {
  background-image: url(/images/service_arrow-blue.svg?2b75d555820d7a41f83a742be519f5f5);
}

.footer {
  background: #282828;
  position: relative;
  z-index: 80;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding-top: 37px;
  }
}

.footer__nav {
  padding: 40px 0 0;
  max-width: 900px;
  margin: 0 auto;
  /* IE11  */
}

.footer__nav li {
  text-align: center;
  position: relative;
  height: 16px;
  width: 20%;
}

.footer__nav li:after,
.footer__nav li:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
}

.footer__nav li:after {
  display: none;
  right: auto;
  left: 0;
}

.footer__nav li:first-child:after {
  display: block;
}

.footer__nav li a {
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
}

@media only screen and (min-width: 768px) {
  .footer__nav li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}

.footer__nav _:lang(x)::-ms-backdrop,
.footer__nav li {
  padding-top: 3px;
}

.footer__info {
  margin-top: 60px;
}

@media only screen and (max-width: 767px) {
  .footer__info {
    margin-top: auto;
  }
}

.footer__info .company-name-address {
  text-align: center;
  line-height: 25px;
  font-size: 13px;
  font-size: 1.3rem;
  color: #FFFFFF;
}

.footer__info .company-name-address b {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .footer__info .company-name-address b {
    display: block;
    margin-bottom: -11px;
  }
}

.footer__hr {
  width: 100%;
  height: 1px;
  background: #393939;
  margin-top: 37px;
}

@media only screen and (max-width: 767px) {
  .footer__hr {
    margin-top: 20px;
  }
}

.footer__copy {
  text-align: center;
  color: #EBEAE7;
  font-size: 11px;
  font-size: 1.1rem;
  padding: 24px 0 36px;
}

@media only screen and (max-width: 767px) {
  .footer__copy {
    padding: 20px 0 25px;
  }
}

.n-header {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  *zoom: 1;
}

.n-header__brand {
  padding-top: 30px;
  padding-left: 28px;
  float: left;
}

@media only screen and (max-width: 767px) {
  .n-header__brand {
    padding-top: 10px;
    padding-left: 10px;
  }
}

.n-header__brand a {
  display: block;
}

.n-header__brand a img {
  width: 180px;
}

.n-header__mypage {
  float: right;
}

.n-header__mypage a {
  display: block;
  width: 198px;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  padding: 21px 0;
  position: relative;
}

@media all and (-ms-high-contrast: none) {
  .n-header__mypage a {
    padding: 26px 0 16px 0;
  }
}

@media only screen and (max-width: 767px) {
  .n-header__mypage a {
    height: 59px;
    width: 100px;
  }
}

@media only screen and (min-width: 768px) {
  .n-header__mypage a:after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

.n-header__mypage a img {
  width: 19px;
  height: 19px;
}

@media only screen and (max-width: 767px) {
  .n-header__mypage a img {
    margin: 0 auto;
    position: absolute;
    top: 11px;
    left: 0;
    right: 0;
  }
}

.n-header__mypage a span {
  margin-left: 10px;
}

@media only screen and (max-width: 767px) {
  .n-header__mypage a span {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 34px;
    left: 0;
    right: 0;
  }
}

.n-header__mypage .n-profile {
  background: #fff;
  color: #000;
}

.n-header__mypage .n-profile span {
  margin-left: 0;
}

.n-header__mypage .n-profile:after {
  display: none;
}

.n-header__mypage .n-login,
.n-header__mypage .n-logout,
.n-header__mypage .n-login-register {
  background: #000;
  color: #fff;
  padding-right: 2px;
}

@media only screen and (min-width: 768px) {
  .n-header__mypage .n-login,
  .n-header__mypage .n-logout,
  .n-header__mypage .n-login-register {
    -webkit-transition: none;
    transition: none;
  }

  .n-header__mypage .n-login:hover,
  .n-header__mypage .n-logout:hover,
  .n-header__mypage .n-login-register:hover {
    background-color: #505050;
    opacity: 1;
  }
}

.n-header__mypage .n-login-register {
  padding-right: 30px;
  width: 279px;
}

@media only screen and (max-width: 767px) {
  .n-header__mypage .n-login-register {
    width: 116px;
  }

  .n-header__mypage .n-login-register span {
    line-height: 1.3;
    top: 11px;
  }

  .n-header__mypage .n-login-register:after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

@media only screen and (max-width: 767px) {
  .subpage .header {
    background-color: white;
  }
}

.breadcrumb {
  padding: 19px 0 57px;
  margin: 0 auto;
  max-width: 1000px;
  /* IE11  */
}

@media only screen and (max-width: 1000px) {
  .breadcrumb {
    padding: 19px 30px 57px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumb {
    padding: 17px 23px 53px;
    line-height: 1.5;
  }
}

.breadcrumb li {
  color: #BBBEBA;
  display: inline;
  font-size: 13px;
  font-size: 1.3rem;
  padding-right: 14px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .breadcrumb li {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.breadcrumb li:after {
  content: ">";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.breadcrumb li:last-child:after {
  display: none;
  padding-right: 0;
}

.breadcrumb li a {
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
  .breadcrumb li a {
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .breadcrumb li a:hover {
    opacity: 0.7;
  }
}

.breadcrumb _:lang(x)::-ms-backdrop,
.breadcrumb li {
  top: 1px;
}

.breadcrumb ul {
  color: #BBBEBA;
  position: relative;
  overflow: hidden;
}

.breadcrumb ul:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, white));
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white 80%);
}

.breadcrumb ul:after {
  height: 1.3em;
}

@media only screen and (max-width: 767px) {
  .breadcrumb ul:after {
    height: 1.3em;
  }
}

.breadcrumb ul {
  height: 1.3em;
}

@supports (-webkit-line-clamp: 1) {
  .breadcrumb ul {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .breadcrumb ul:after {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .animated1 {
    position: relative;
  }

  .animated1:after,
  .animated1:before {
    content: "";
    width: 0;
    height: 3px;
    position: absolute;
    transition: all 0.27s linear;
    -webkit-transition: all 0.27s linear;
    box-sizing: border-box;
  }

  .animated1 a:after,
  .animated1 a:before {
    content: "";
    width: 3px;
    height: 0;
    position: absolute;
    transition: all 0.27s linear;
    -webkit-transition: all 0.27s linear;
  }

  .animated1:hover::before,
  .animated1:hover::after {
    width: 100%;
  }

  .animated1:hover a::before,
  .animated1:hover a::after {
    height: 100%;
  }

  .animated1::before,
  .animated1::after {
    -webkit-transition-delay: 0.27s;
            transition-delay: 0.27s;
  }

  .animated1 a::before,
  .animated1 a::after {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }

  .animated1::before {
    right: 0;
    top: 0;
  }

  .animated1::after {
    left: 0;
    bottom: 0;
  }

  .animated1 a::before {
    left: 0;
    top: 0;
  }

  .animated1 a::after {
    right: 0;
    bottom: 0;
  }

  .animated1:hover::before,
  .animated1:hover::after {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }

  .animated1:hover a::before,
  .animated1:hover a::after {
    -webkit-transition-delay: 0.27s;
            transition-delay: 0.27s;
  }

  .animated2 {
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
  }

  .animated2:after {
    position: absolute;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    content: "";
    width: 0;
    left: 50%;
    bottom: 0;
    height: 3px;
  }

  .animated2:hover {
    cursor: pointer;
  }

  .animated2:hover:after {
    width: 100%;
    left: 0;
  }

  .animated3 {
    overflow: hidden;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
  }

  .animated3:before,
  .animated3:after {
    z-index: 4;
  }

  .animated3 span:before {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 10px;
    height: 10px;
    background: #222;
    border-radius: 50%;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    z-index: -1;
  }

  .animated3:hover,
  .animated3:focus {
    opacity: 1;
  }

  .animated3:hover span:before,
  .animated3:focus span:before {
    width: 670px;
    height: 670px;
    bottom: -240px;
    right: -240px;
    opacity: 1;
  }
}

.btn {
  display: block;
  line-height: 0;
  text-align: center;
  margin: 0 auto;
  padding: auto;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .btn {
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .btn:hover {
    opacity: 0.7;
  }
}

.btn.full-background {
  color: white;
  width: 100%;
}

.btn.full-background input {
  background: transparent;
  color: white;
  font-weight: bold;
  font-size: 15px;
  font-size: 1.5rem;
  outline: 0;
  width: 100%;
  padding: 24px 0;
}

.btn.full-background:before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

.btn.black-outline {
  border: 2px solid #282828;
  font-weight: bold;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 19px 0;
  width: 100%;
}

.btn.color-outline {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 33px 0;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .btn.color-outline {
    padding: 28px;
  }
}

.btn.rounded {
  border-radius: 36px;
}

.btn:before {
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn.arrow-left:before {
  content: "";
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 26px;
}

@media only screen and (max-width: 767px) {
  .btn.arrow-left:before {
    left: 14px;
  }
}

.btn.arrow-right:before {
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 26px;
}

@media only screen and (max-width: 767px) {
  .btn.arrow-right:before {
    right: 14px;
  }
}

.slick-list {
  overflow: visible;
}

.card-whole {
  padding: 0 10px;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .card-whole {
    margin-top: 35px;
  }
}

.card-whole a {
  display: block;
  position: relative;
  width: 100%;
}

.card-whole .animated2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.card-whole .animated2:after {
  background-color: #EBEAE7;
}

.card-whole .animated2:hover {
  box-shadow: inset 0px 0px 0px 5px #EBEAE7;
}

.card {
  border: 3px solid #EBEAE7;
  padding: 25px 30px 20px;
}

@media only screen and (max-width: 767px) {
  .card {
    padding: 18px 20px 20px;
  }
}

.card__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .card__inner {
    padding: 5px 20px 0;
    position: relative;
  }
}

.card__header {
  padding-bottom: 23px;
}

@media only screen and (max-width: 767px) {
  .card__header {
    padding-bottom: 18px;
  }
}

.card__header figure {
  -webkit-box-align: center;
          align-items: center;
}

.card__header figure .img-box {
  margin-left: -9px;
  width: 26.4615385%;
}

.card__header figure figcaption {
  width: 70%;
  /* IE11  */
}

.card__header figure figcaption .label {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
}

.card__header figure figcaption _:lang(x)::-ms-backdrop,
.card__header figure figcaption .label {
  padding: 10px 10px 5px;
}

.card__header figure figcaption h3 {
  color: #222222;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 1.3;
  margin-top: 5px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .card__header figure figcaption h3 {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.card__information {
  margin-left: -30px;
  width: calc(100% + 60px);
  padding-bottom: 20px;
  padding-top: 10px;
}

@media only screen and (max-width: 767px) {
  .card__information {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
}

.card__information table {
  width: calc(100% - 60px);
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .card__information table {
    width: calc(100% - 40px);
  }
}

.card__information table tr {
  border-bottom: 1px solid #EBEAE7;
}

.card__information table tr:last-child {
  border-bottom: none;
}

.card__information table tr th,
.card__information table tr td {
  font-size: 15px;
  font-size: 1.5rem;
  padding: 20px 0 10px;
}

@media only screen and (max-width: 767px) {
  .card__information table tr th,
  .card__information table tr td {
    line-height: 1.2;
  }
}

.card__information table tr th {
  font-weight: bold;
  width: 107px;
}

@media only screen and (max-width: 767px) {
  .card__information table tr th {
    width: 95px;
  }
}

.card__information table tr p {
  position: relative;
}

.card__information table tr p {
  line-height: 1.4;
}

.card__message {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 20px;
  text-align: justify;
}

.slidernavarrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
}

.slidernavarrow#backsl {
  left: 10px;
}

.slidernavarrow#nextsl {
  right: 10px;
}

.card-type02 {
  border: 3px solid #EBEAE7;
  margin-bottom: 30px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .card-type02 {
    margin-bottom: 25px;
  }
}

.card-type02:after {
  background-size: 39px;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 39px;
  width: 39px;
  z-index: 10;
}

.card-type02 a {
  display: block;
  position: relative;
  width: 100%;
  z-index: 10;
}

.card-type02 a:after {
  background-color: #EBEAE7;
}

.card-type02 a:hover {
  box-shadow: inset 0px 0px 0px 3px #EBEAE7;
}

.card-type02:last-child {
  margin-bottom: 0;
}

.card-type02 .upper img {
  align-self: center;
  margin: 0 auto;
  width: 16.6188%;
}

@media only screen and (max-width: 767px) {
  .card-type02 .upper img {
    width: 70px;
  }
}

@media only screen and (max-width: 320px) {
  .card-type02 .upper img {
    width: 60px;
  }
}

.card-type02 .upper .text {
  padding: 25px 30px 25px 0;
  width: 75.62%;
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  .card-type02 .upper .text {
    padding: 18px 26px 18px 0;
    width: 72.44%;
  }
}

.card-type02 .upper .text .category {
  color: #fff;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: auto;
  font-weight: bold;
  margin-bottom: 16px;
  padding: 5px;
  text-align: center;
  width: 74px;
}

@media only screen and (max-width: 767px) {
  .card-type02 .upper .text .category {
    margin-bottom: 6px;
  }
}

.card-type02 .upper .text _:lang(x)::-ms-backdrop,
.card-type02 .upper .text .category {
  padding-top: 9px;
}

.card-type02 .upper .text .card-ttl {
  color: #222222;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.025em;
  line-height: 1.3;
  font-weight: bold;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .card-type02 .upper .text .card-ttl {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.5;
  }
}

.card-type02 .upper .text .card-ttl:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, white));
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white 80%);
}

.card-type02 .upper .text .card-ttl:after {
  height: 1.3em;
}

@media only screen and (max-width: 767px) {
  .card-type02 .upper .text .card-ttl:after {
    height: 1.3em;
  }
}

.card-type02 .upper .text .card-ttl {
  height: 2.7em;
}

@supports (-webkit-line-clamp: 2) {
  .card-type02 .upper .text .card-ttl {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .card-type02 .upper .text .card-ttl:after {
    display: none;
  }
}

.card-type02 .down {
  padding: 8px 26px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .card-type02 .down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.card-type02 .down table {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .card-type02 .down table {
    width: 100%;
  }

  .card-type02 .down table:last-of-type {
    border-top: 1px solid #EBEAE7;
  }
}

.card-type02 .down table tr {
  border-bottom: 1px solid #EBEAE7;
  font-size: 15px;
  font-size: 1.5rem;
}

.card-type02 .down table tr:last-child {
  border-bottom: none;
}

.card-type02 .down table tr th {
  font-weight: bold;
  padding: 16px 0 14px;
  height: 45px;
  width: 100px;
}

@media only screen and (max-width: 767px) {
  .card-type02 .down table tr th {
    width: 107px;
  }
}

.card-type02 .down table tr td {
  padding: 16px 0 14px;
  height: 45px;
}

.card-type02 .down table tr td p:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(253, 245, 234, 0)), color-stop(80%, rgba(253, 245, 234, 0.1)));
  background: linear-gradient(to right, rgba(253, 245, 234, 0), rgba(253, 245, 234, 0.1) 80%);
}

.card-type02 .down table tr td p:after {
  height: 1.5em;
}

@media only screen and (max-width: 767px) {
  .card-type02 .down table tr td p:after {
    height: 1.5em;
  }
}

.card-type02 .down table tr td p {
  position: relative;
  height: 1em;
}

.card-type03 {
  border: 3px solid #EBEAE7;
  margin-bottom: 30px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .card-type03 {
    margin-bottom: 25px;
  }
}

.card-type03:after {
  background-size: 39px;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 39px;
  width: 39px;
  z-index: 10;
}

.card-type03 a {
  display: block;
  position: relative;
  width: 100%;
  z-index: 10;
}

.card-type03 a:after {
  background-color: #EBEAE7;
}

.card-type03 a:hover {
  box-shadow: inset 0px 0px 0px 3px #EBEAE7;
}

.card-type03:last-child {
  margin-bottom: 0;
}

.card-type03 .upper img {
  align-self: center;
  margin: 0 auto;
  width: 16.6188%;
}

@media only screen and (max-width: 767px) {
  .card-type03 .upper img {
    width: 70px;
  }
}

@media only screen and (max-width: 320px) {
  .card-type03 .upper img {
    width: 60px;
  }
}

.card-type03 .upper .text {
  padding: 25px 30px 25px 0;
  width: 75.62%;
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  .card-type03 .upper .text {
    padding: 18px 26px 18px 0;
    width: 72.44%;
  }
}

.card-type03 .upper .text .category {
  color: #fff;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: auto;
  font-weight: bold;
  margin-bottom: 16px;
  padding: 5px;
  text-align: center;
  width: 74px;
}

@media only screen and (max-width: 767px) {
  .card-type03 .upper .text .category {
    margin-bottom: 6px;
  }
}

.card-type03 .upper .text _:lang(x)::-ms-backdrop,
.card-type03 .upper .text .category {
  padding-top: 9px;
}

.card-type03 .upper .text .card-ttl {
  color: #222222;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.025em;
  line-height: 1.3;
  font-weight: bold;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .card-type03 .upper .text .card-ttl {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.5;
  }
}

.card-type03 .down {
  padding: 8px 26px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .card-type03 .down {
    padding: 20px 26px 30px 26px;
  }
}

.card-type03 .down table {
  width: 100%;
  letter-spacing: -0.4em;
}

@media only screen and (max-width: 767px) {
  .card-type03 .down table:last-of-type {
    border-top: 1px solid #EBEAE7;
  }
}

@media only screen and (max-width: 767px) and (max-width: 767px) {
  .card-type03 .down table:last-of-type {
    border-top: none;
  }
}

.card-type03 .down table tr {
  border-bottom: 1px solid #EBEAE7;
  font-size: 15px;
  font-size: 1.5rem;
  width: 50%;
  display: inline-block;
  letter-spacing: 0;
}

.card-type03 .down table tr:first-child {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .card-type03 .down table tr:nth-child(4),
  .card-type03 .down table tr:last-child {
    border-bottom: none;
  }
}

@media only screen and (max-width: 767px) {
  .card-type03 .down table tr {
    width: 100%;
    display: block;
  }
}

.card-type03 .down table tr th {
  font-weight: bold;
  padding: 16px 0 14px;
  width: 100px;
}

@media only screen and (max-width: 767px) {
  .card-type03 .down table tr th {
    width: 107px;
  }
}

.card-type03 .down table tr td {
  padding: 16px 0 14px;
}

.card-type03 .down table tr td p:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(253, 245, 234, 0)), color-stop(80%, rgba(253, 245, 234, 0.1)));
  background: linear-gradient(to right, rgba(253, 245, 234, 0), rgba(253, 245, 234, 0.1) 80%);
}

.card-type03 .down table tr td p:after {
  height: 1.5em;
}

@media only screen and (max-width: 767px) {
  .card-type03 .down table tr td p:after {
    height: 1.5em;
  }
}

.card-type03 .down table tr td p {
  position: relative;
}

ul.faq-question-wrap {
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
  margin: 40px auto 130px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  ul.faq-question-wrap {
    margin: 40px auto 78px;
  }
}

ul.faq-question-wrap .question {
  border-top: 1px solid rgba(57, 57, 57, 0.1);
}

ul.faq-question-wrap .question:first-child {
  border-top: none;
}

ul.faq-question-wrap .question .question-trigger {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  padding: 28px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul.faq-question-wrap .question .question-trigger:before {
  color: #145F91;
  content: "Q";
}

ul.faq-question-wrap .question .question-trigger:after {
  border-right: 2px solid #000000;
  border-top: 2px solid #000000;
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 16px;
  margin: -10px auto 0;
  -webkit-transform: rotate(135deg) translateY(-50%);
          transform: rotate(135deg) translateY(-50%);
  top: 50%;
  height: 8px;
  width: 8px;
}

ul.faq-question-wrap .question .question-trigger.arrowTurn:after {
  margin-right: -7px;
  margin-top: 0;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}

ul.faq-question-wrap .question .answer {
  display: none;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: -8px;
  margin-bottom: 28px;
}

ul.faq-question-wrap .question .answer:before {
  color: #EBA438;
  content: "A";
}

ul.faq-question-wrap .question .question-trigger,
ul.faq-question-wrap .question .answer {
  padding-left: 62px;
  padding-right: 60px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  ul.faq-question-wrap .question .question-trigger,
  ul.faq-question-wrap .question .answer {
    padding-left: 42px;
    padding-right: 28px;
  }
}

ul.faq-question-wrap .question .question-trigger:before,
ul.faq-question-wrap .question .answer:before {
  display: block;
  font-size: 30px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
}

@media only screen and (max-width: 767px) {
  ul.faq-question-wrap .question .question-trigger:before,
  ul.faq-question-wrap .question .answer:before {
    font-size: 24px;
    left: 10px;
    top: 23px;
  }
}

@media only screen and (max-width: 767px) {
  ul.faq-question-wrap .question .question-trigger:before {
    top: 47px;
  }
}

.features-section .merits {
  margin-top: 35px;
}

@media only screen and (max-width: 767px) {
  .features-section .merits {
    margin-top: 15px;
  }
}

.features-section .merits .col {
  width: 30%;
}

@media only screen and (max-width: 767px) {
  .features-section .merits .col {
    margin-bottom: 26px;
    width: 100%;
  }

  .features-section .merits .col:last-child {
    margin-bottom: auto;
  }
}

.features-section .merits .col figure {
  position: relative;
}

.features-section .merits .col figure:before {
  content: "";
  width: 194px;
  height: 194px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  border-radius: 100%;
  z-index: 0;
}

@media only screen and (max-width: 767px) {
  .features-section .merits .col figure:before {
    width: 158px;
    height: 158px;
  }
}

.features-section .merits .col figure .img-box {
  position: relative;
  text-align: center;
  padding: 63px 0;
}

.features-section .merits .col figure .img-box img {
  height: 65px;
}

@media only screen and (max-width: 767px) {
  .features-section .merits .col figure .img-box img {
    position: relative;
    top: -10px;
  }
}

.features-section .merits .col figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  margin: auto;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .features-section .merits .col figure figcaption {
    bottom: -16px;
  }
}

.features-section .merits .col figure figcaption span {
  font-size: 30px;
  font-size: 3rem;
}

.features-section .merits .col figure figcaption span img {
  display: block;
  margin: 0 auto;
  padding: 14px 0;
}

@media only screen and (max-width: 767px) {
  .features-section .merits .col figure figcaption span img {
    padding: 16px 0;
  }
}

.features-section .merits .col .description {
  margin-top: 40px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.533333333;
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  .features-section .merits .col .description {
    margin-top: 20px;
    margin-left: 48px;
    width: calc(100% - 96px);
  }
}

.features-section .flex-row.list {
  margin-top: 50px;
  padding: 0 25px;
}

@media only screen and (max-width: 767px) {
  .features-section .flex-row.list {
    margin-top: 30px;
    padding: 0;
  }
}

.features-section .flex-row.list .col {
  width: 22%;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .features-section .flex-row.list .col {
    width: 100%;
    margin-bottom: 60px;
  }
}

.features-section .flex-row.list .col:before {
  content: "";
  width: 17px;
  height: 13px;
  background-size: 17px 13px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -45%;
  bottom: 0;
  right: -13%;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .features-section .flex-row.list .col:before {
    top: auto;
    right: 0;
    left: 0;
    bottom: -35px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media only screen and (max-width: 767px) {
  .features-section .flex-row.list .col:last-child {
    margin-bottom: 0;
  }
}

.features-section .flex-row.list .col:last-child:before {
  content: none;
}

@media only screen and (max-width: 767px) {
  .features-section .flex-row.list .col figure {
    *zoom: 1;
  }

  .features-section .flex-row.list .col figure:after {
    content: "";
    display: table;
    clear: both;
  }
}

.features-section .flex-row.list .col figure .img-box {
  position: relative;
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  .features-section .flex-row.list .col figure .img-box img {
    float: left;
    width: calc(50% - 9px);
  }
}

.features-section .flex-row.list .col figure .img-box span {
  position: absolute;
  color: #fff;
  padding: 3px 0;
  text-align: center;
  width: 100px;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 767px) {
  .features-section .flex-row.list .col figure .img-box span {
    height: 30px;
    width: 85px;
    padding: 6px 0;
  }
}

.features-section .flex-row.list .col figure .img-box span em {
  font-weight: bold;
  vertical-align: middle;
  display: inline-block;
}

.features-section .flex-row.list .col figure .img-box span em:first-child {
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  .features-section .flex-row.list .col figure .img-box span em:first-child {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.features-section .flex-row.list .col figure .img-box span em:last-child {
  font-size: 26px;
  font-size: 2.6rem;
  vertical-align: middle;
  margin: 0px 0 0px 7px;
}

@media only screen and (max-width: 767px) {
  .features-section .flex-row.list .col figure .img-box span em:last-child {
    font-size: 20px;
    font-size: 2rem;
  }
}

.features-section .flex-row.list .col figure .img-box _:lang(x)::-ms-backdrop,
.features-section .flex-row.list .col figure .img-box span {
  padding-top: 10px;
}

@media only screen and (max-width: 767px) {
  .features-section .flex-row.list .col figure figcaption {
    float: right;
    padding-right: 20px;
    width: calc(50% - 9px);
  }
}

.features-section .flex-row.list .col figure figcaption h3 {
  font-size: 20px;
  font-size: 2rem;
  margin-top: 24px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .features-section .flex-row.list .col figure figcaption h3 {
    font-size: 17px;
    font-size: 1.7rem;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 320px) {
  .features-section .flex-row.list .col figure figcaption h3 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.features-section .flex-row.list .col figure figcaption p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.533333333;
  margin-top: 15px;
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  .features-section .flex-row.list .col figure figcaption p {
    margin-top: 13px;
  }
}

@media only screen and (max-width: 320px) {
  .features-section .flex-row.list .col figure figcaption p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#mainvisual {
  height: 500px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e6cc00+0,eba438+100 */
  position: relative;
}

@media only screen and (max-width: 767px) {
  #mainvisual {
    height: 367px;
  }
}

#mainvisual:before {
  content: "";
  width: 100%;
  height: 205px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(/images/main-bg.svg?dbef444d536b62eade807088df034c17);
  background-size: auto 205px;
  background-position: left 26px center;
  z-index: 0;
}

@media only screen and (max-width: 767px) {
  #mainvisual:before {
    background-image: url(/images/main-bg-sp.svg?1879da3132c382e4d825538bc4563b8b);
    background-size: auto 151px;
    background-repeat: repeat-x;
    bottom: -30px;
  }
}

#mainvisual h1 {
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding-top: 155px;
  position: relative;
  width: 650px;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 767px) {
  #mainvisual h1 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.5;
    padding-top: 110px;
    width: 300px;
  }
}

#mainvisual h1:before,
#mainvisual h1:after {
  content: "";
  background: #fff;
  width: 1px;
  height: 32px;
  position: absolute;
  left: -20px;
  bottom: 0;
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

@media only screen and (max-width: 767px) {
  #mainvisual h1:before,
  #mainvisual h1:after {
    left: 10px;
    bottom: 2px;
    height: 62px;
    width: 2px;
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }
}

#mainvisual h1:after {
  left: auto;
  right: -20px;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

@media only screen and (max-width: 767px) {
  #mainvisual h1:after {
    right: 10px;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }
}

#mainvisual .anchors {
  max-width: 682px;
  margin: 38px auto 0;
  position: relative;
}

@media only screen and (max-width: 767px) {
  #mainvisual .anchors {
    padding: 0 10px;
    margin: 15px auto 0;
    width: 80%;
  }
}

@media only screen and (max-width: 500px) {
  #mainvisual .anchors {
    width: 100%;
  }
}

#mainvisual .anchors a {
  display: block;
  width: 28.1524927%;
  background: #fff;
  border: 3px solid #EBEAE7;
  border-radius: 100%;
}

@media only screen and (min-width: 768px) {
  #mainvisual .anchors a:hover {
    box-shadow: inset 0px 0px 0px 3px #EBEAE7;
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  #mainvisual .anchors a {
    position: relative;
    height: 0;
    padding-bottom: 30.5%;
    width: calc((100% - 16px)/3);
  }
}

#mainvisual .anchors a figure {
  padding-top: 25px;
}

@media only screen and (max-width: 767px) {
  #mainvisual .anchors a figure {
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 13px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

#mainvisual .anchors a figure .img-box {
  text-align: center;
}

#mainvisual .anchors a figure .img-box img {
  height: 58px;
  width: auto;
}

@media only screen and (max-width: 767px) {
  #mainvisual .anchors a figure .img-box img {
    height: 34px;
  }
}

@media only screen and (max-width: 320px) {
  #mainvisual .anchors a figure .img-box img {
    height: 24px;
  }
}

#mainvisual .anchors a figure figcaption {
  padding-bottom: 43px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 22px;
  padding-top: 16px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  #mainvisual .anchors a figure figcaption {
    padding-top: 0;
    padding-bottom: 0;
  }
}

#mainvisual .anchors a figure figcaption:before {
  content: "";
  background: url(/images/arrow01.svg?a860a515ed9de4b973b87c0ff5d3a53c) center/12px 8px no-repeat;
  width: 12px;
  height: 8px;
  position: absolute;
  bottom: 14%;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}

@media only screen and (max-width: 767px) {
  #mainvisual .anchors a figure figcaption:before {
    bottom: -46%;
    width: 10px;
    height: 18px;
    background-size: 10px 18px;
  }
}

@media only screen and (max-width: 320px) {
  #mainvisual .anchors a figure figcaption:before {
    bottom: -56%;
  }
}

#mainvisual .anchors a figure figcaption h2 {
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 767px) {
  #mainvisual .anchors a figure figcaption h2 {
    font-size: 17px;
    font-size: 1.7rem;
    padding-top: 5px;
  }
}

@media only screen and (max-width: 320px) {
  #mainvisual .anchors a figure figcaption h2 {
    font-size: 15px;
    font-size: 1.5rem;
    padding-top: 3px;
  }
}

#mainvisual .anchors a figure figcaption p {
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  #mainvisual .anchors a figure figcaption p {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1;
  }
}

@media only screen and (max-width: 320px) {
  #mainvisual .anchors a figure figcaption p {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 0.8;
  }
}

#mainvisual.subpage-mainvisual {
  position: relative;
  height: 188px;
}

@media only screen and (max-width: 767px) {
  #mainvisual.subpage-mainvisual {
    margin-top: 59px;
    height: 151px;
  }
}

#mainvisual.subpage-mainvisual h1 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: 0.2em;
  padding-top: 88px;
  max-width: 960px;
}

@media only screen and (max-width: 320px) {
  #mainvisual.subpage-mainvisual h1 {
    padding: 88px 10px 0;
  }
}

@media only screen and (max-width: 767px) {
  #mainvisual.subpage-mainvisual h1 {
    padding: 0;
    font-size: 28px;
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 55%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
}

#mainvisual.subpage-mainvisual h1:before,
#mainvisual.subpage-mainvisual h1:after {
  display: none;
}

#mainvisual.subpage-mainvisual .profile {
  color: #fff;
  position: absolute;
  top: 17px;
  right: 12px;
}

#mainvisual.subpage-mainvisual:before {
  background-image: url(/images/mv_side_bg.svg?401285626a03e214a92ef2597f86d035);
  bottom: auto;
  overflow: hidden;
  top: 15px;
}

@media only screen and (max-width: 767px) {
  #mainvisual.subpage-mainvisual:before {
    background-image: url(/images/mv_side_bg_sp.svg?ad075ee052a4ea8f7ec257288232c9a9);
    background-size: auto 151px;
    background-repeat: repeat-x;
    top: -22px;
  }
}

.border {
  height: 10px;
  width: 100%;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .border {
    height: 8px;
  }
}

.border:before,
.border:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
}

.border:after {
  left: auto;
  right: 0;
}

.pagination {
  float: left;
  margin: 105px 0 0 -34px;
  width: 475px;
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  .pagination {
    float: none;
    margin: 54px auto 84px;
    width: 100%;
  }
}

.pagination .upper {
  -webkit-box-pack: start;
          justify-content: flex-start;
}

@media only screen and (max-width: 767px) {
  .pagination .upper {
    -webkit-box-pack: center;
            justify-content: center;
  }
}

.pagination a,
.pagination span {
  background-color: #EBEAE7;
  color: #5E625D;
  margin-right: 1px;
  padding-top: 16px;
  text-align: center;
  height: 47px;
  width: 42px;
}

@media only screen and (min-width: 768px) {
  .pagination a,
  .pagination span {
    -webkit-transition: none;
    transition: none;
  }

  .pagination a:hover,
  .pagination span:hover {
    background-color: #505050;
    color: white;
  }
}

@media only screen and (max-width: 767px) {
  .pagination a,
  .pagination span {
    padding-top: 24px;
    height: 58px;
    width: calc((100% - 6px)/7);
  }
}

.pagination a.last,
.pagination a.first,
.pagination span.last,
.pagination span.first {
  background-color: transparent;
  text-align: left;
  width: 34px;
}

.pagination a.last img,
.pagination a.first img,
.pagination span.last img,
.pagination span.first img {
  width: 23px;
}

.pagination a.last,
.pagination span.last {
  text-align: right;
}

.pagination _:lang(x)::-ms-backdrop,
.pagination a,
.pagination span {
  padding-top: 18px;
}

.pagination span.current {
  color: white;
  font-weight: bold;
}

.pagination .lower {
  margin-top: 20px;
  text-align: center;
}

.searchsidebar {
  width: 280px;
  /* IE11  */
  /* IE11  */
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  .searchsidebar {
    width: 100%;
  }
}

.searchsidebar .mainbar {
  margin-bottom: 20px;
  padding: 22px 20px 56px;
}

@media only screen and (max-width: 767px) {
  .searchsidebar .mainbar {
    margin-bottom: 27px;
    padding: 23px 20px 64px;
  }
}

.searchsidebar .titler {
  color: white;
  font-weight: bold;
  padding: 17px 0;
  font-size: 17px;
  font-size: 1.7rem;
  text-align: center;
}

.searchsidebar _:lang(x)::-ms-backdrop,
.searchsidebar .titler {
  padding-top: 21px;
}

.searchsidebar ul.searchitems {
  margin-bottom: 26px;
}

.searchsidebar ul.searchitems li.search {
  border-bottom: 1px solid #EBEAE7;
}

.searchsidebar ul.searchitems li .itmttl {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
}

.searchsidebar ul.searchitems li .search-input {
  background-color: white;
  border: 2px solid #EBEAE7;
  font-family: "\6E38\30B4\30B7\30C3\30AF", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4   Pro", "Hiragino Kaku Gothic Pro", "\30E1\30A4\30EA\30AA", "Meiryo", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 8px auto 20px;
  padding: 10px 15px;
  height: 50px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .searchsidebar ul.searchitems li .search-input {
    height: 56px;
    -webkit-appearance: none;
    border-radius: 0;
  }
}

.searchsidebar ul.searchitems li input[type=text]::-webkit-input-placeholder {
  color: #d9d5d0;
}

.searchsidebar ul.searchitems .checklist {
  border-bottom: 1px solid #EBEAE7;
  /* IE11  */
}

.searchsidebar ul.searchitems .checklist .trigger {
  padding: 21px 0;
  position: relative;
  -webkit-box-align: center;
          align-items: center;
}

.searchsidebar ul.searchitems .checklist .trigger:after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: 0;
  top: -6px;
  bottom: 0;
  margin: auto;
}

.searchsidebar ul.searchitems .checklist .trigger.active:after {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  top: 0;
}

.searchsidebar ul.searchitems .checklist _:lang(x)::-ms-backdrop,
.searchsidebar ul.searchitems .checklist .trigger {
  padding-top: 26px;
}

.searchsidebar ul.searchitems .checklist .listbox {
  display: none;
}

.searchsidebar .checker {
  background-color: white;
  display: inline-block;
  margin-bottom: 5px;
  position: relative;
  height: auto;
  width: 100%;
}

.searchsidebar .checker:last-child {
  margin-bottom: 22px;
}

.searchsidebar .checker label {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 14px 15px 14px 50px;
  pointer-events: none;
  position: relative;
  z-index: 11;
}

.searchsidebar .checker input[type=checkbox] {
  background: transparent;
  outline: none;
  margin: auto;
  padding: 12px 15px;
  width: 100%;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
}

.searchsidebar .checker input[type=checkbox]::-ms-check {
  display: none;
}

.searchsidebar .checker .effec {
  position: absolute;
  pointer-events: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15px;
  z-index: 10;
}

.searchsidebar .checker .effec:before {
  background: white;
  border: 2px solid #EBEAE7;
  content: "";
  display: inline-block;
  pointer-events: none;
  position: relative;
  width: 22px;
  height: 22px;
  z-index: 1;
}

.searchsidebar .checker .effec:after {
  background-size: 22px 14px;
  content: "";
  display: none;
  position: absolute;
  top: 4px;
  left: 4px;
  height: 14px;
  width: 22px;
  z-index: 2;
}

.searchsidebar .checker .check:checked ~ .effec:after,
.searchsidebar .checker .check:checked ~ .effec2:after {
  display: inline-block;
  z-index: 2;
}

.searchsidebar .checker .check:checked {
  background-color: #EBEAE7;
}

@media only screen and (max-width: 767px) {
  .searchsidebar .checker .check:checked {
    background-color: #E0DFDD;
  }
}

.searchsidebar .btn.full-background {
  margin-top: 26px;
}

@media only screen and (min-width: 768px) {
  .searchsidebar .btn.full-background {
    -webkit-transition: none;
    transition: none;
  }

  .searchsidebar .btn.full-background:hover {
    background-color: #505050;
    opacity: 1;
  }
}

.searchsidebar .btn.black-outline {
  margin-top: 14px;
}

@media only screen and (min-width: 768px) {
  .searchsidebar .btn.black-outline:hover {
    box-shadow: inset 0px 0px 0px 3px #282828;
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  .searchsidebar .btn.black-outline {
    margin-top: 14px;
    width: calc(100% - 46px);
  }
}

.searchsidebar .btn.color-outline {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .searchsidebar .btn.color-outline:hover {
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  .searchsidebar .btn.color-outline {
    width: calc(100% - 100px);
  }
}

.searchsidebar .btn.color-outline:after {
  content: "";
  display: block;
  -webkit-transition: linear 0.3s;
  transition: linear 0.3s;
  width: 97.5%;
  height: 89%;
  border: 4px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .searchsidebar .btn.color-outline:after {
    width: 96.5%;
    height: 85%;
  }
}

.searchsidebar _:lang(x)::-ms-backdrop,
.searchsidebar .btn.black-outline {
  padding-top: 22px;
}

.searchsidebar _:lang(x)::-ms-backdrop,
.searchsidebar .btn.color-outline {
  padding-top: 42px;
}

@media all and (-ms-high-contrast: none) {
  .searchsidebar .btn.color-outline:after {
    height: 90%;
  }
}

.ttl {
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #000;
  position: relative;
  padding-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .ttl {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
    padding-bottom: 19px;
  }
}

.ttl:before {
  content: "";
  background: #000;
  width: 2px;
  height: 24px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .ttl:before {
    bottom: -20px;
  }
}

.ttl.white {
  color: #fff;
}

.ttl.white:before {
  background: #fff;
}

.ttl02 {
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0.025em;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .ttl02 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.2;
  }
}

.ttl02 span {
  position: relative;
}

.ttl02 span:after,
.ttl02 span:before {
  content: "";
  width: 43px;
  height: 1px;
  background: #000;
  position: absolute;
  left: -65px;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .ttl02 span:after,
  .ttl02 span:before {
    left: -50px;
  }
}

.ttl02 span:after {
  left: auto;
  right: -65px;
}

@media only screen and (max-width: 767px) {
  .ttl02 span:after {
    right: -50px;
  }
}

.ttl03 {
  text-align: center;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #000;
  position: relative;
  padding-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .ttl03 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
    padding-bottom: 19px;
  }
}

.ttl03:before {
  content: "";
  background: #000;
  width: 2px;
  height: 24px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .ttl03:before {
    bottom: -20px;
  }
}

.ttl03.white {
  color: #fff;
}

.ttl03.white:before {
  background: #fff;
}

body.company main .inner {
  max-width: 860px;
}

@media only screen and (max-width: 767px) {
  body.company main .inner {
    padding: 0 24px;
  }
}

body.company h3 {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: bold;
  margin: 25px 0 46px;
}

@media only screen and (max-width: 767px) {
  body.company h3 {
    margin: 35px 0 22px;
  }
}

body.company p.main-text {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  body.company p.main-text {
    text-align: justify;
  }
}

body.company p.sign-text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 40px;
  padding-right: 7px;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  body.company p.sign-text {
    line-height: 1.5;
    margin-top: 43px;
    padding-right: 0;
  }
}

body.company p.sign-text .bold {
  font-weight: bold;
}

body.company .section02 {
  padding: 114px 0 137px;
}

@media only screen and (max-width: 767px) {
  body.company .section02 {
    padding: 86px 0 91px;
  }
}

body.company table {
  border: 3px solid #EBEAE7;
  table-layout: fixed;
  margin: 35px auto 0;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  body.company table {
    margin-top: 40px;
  }
}

body.company table tr {
  border-bottom: 1px solid #EBEAE7;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
  /* IE11  */
}

body.company table tr th {
  background-color: rgba(77, 81, 82, 0.075);
  font-weight: bold;
  padding: 17px 0 17px 44px;
  vertical-align: text-top;
  width: 240px;
}

@media only screen and (max-width: 767px) {
  body.company table tr th {
    display: block;
    padding: 14px 0 14px 25px;
    width: 100%;
  }
}

body.company table tr th span.small {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
}

body.company table tr _:lang(x)::-ms-backdrop,
body.company table tr th {
  padding: 20px 0 16px 44px;
}

body.company table tr td {
  padding: 17px 36px 17px;
  line-height: 1.5;
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  body.company table tr td {
    display: block;
    padding: 14px 25px 14px;
    width: 100%;
  }
}

body.company table tr td a {
  text-decoration: underline;
}

body.contact {
  /*
  * === COMMON ===
  */
  /*
  * === SECTIONS ===
  */
  /*
  * === CONFIRM ===
  */
  /*
  * === COMPLETE ===
  */
}

body.contact main .inner {
  overflow: hidden;
  max-width: 818px;
}

@media only screen and (max-width: 767px) {
  body.contact main .inner {
    padding: 0 24px;
  }
}

body.contact .btn.rounded {
  background-color: #000000;
  color: white;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 37px 0;
  width: 384px;
}

@media only screen and (max-width: 767px) {
  body.contact .btn.rounded {
    width: 100%;
  }
}

body.contact .btn.rounded:before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

@media only screen and (max-width: 767px) {
  body.contact .btn.rounded:before {
    right: 28px;
  }
}

@media only screen and (min-width: 768px) {
  body.contact .btn.rounded:hover {
    background-color: #1EABBD;
  }
}

body.contact .btn.rounded.off {
  background-color: #686868;
  pointer-events: none;
}

body.contact .footer {
  display: none;
}

body.contact section.upper-section {
  /* Safari 7.1+ */
  /* IE11  */
}

body.contact section.upper-section a.tel {
  margin: 29px auto 120px;
  position: relative;
  width: 529px;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body.contact section.upper-section a.tel {
    display: inline-block;
    right: -90px;
    width: 569px;
  }

  body.contact section.upper-section a.tel .left {
    display: inline-block;
  }

  body.contact section.upper-section a.tel .right {
    display: inline-block;
    position: absolute;
    right: -30px;
  }
}

@media only screen and (max-width: 767px) {
  body.contact section.upper-section a.tel {
    margin: 39px auto 84px;
    width: auto;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    text-align: center;
  }
}

body.contact section.upper-section a.tel .upper {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 12px;
}

body.contact section.upper-section a.tel .left {
  font-size: 40px;
  font-size: 4rem;
  font-family: "Lato", sans-serif;
  padding-left: 35px;
  letter-spacing: 0.05em;
  font-weight: bold;
  position: relative;
  /* IE11  */
}

@media only screen and (min-width: 768px) {
  body.contact section.upper-section a.tel .left {
    position: absolute;
    left: 0;
  }
}

@media only screen and (max-width: 767px) {
  body.contact section.upper-section a.tel .left {
    display: block;
    font-size: 34px;
    font-size: 3.4rem;
    margin-bottom: 10px;
    margin-left: 15px;
    padding-left: 35px;
    width: 290px;
  }
}

@media only screen and (device-width: 375px) and (device-height: 812px) {
  body.contact section.upper-section a.tel .left {
    font-size: 26px;
    font-size: 2.6rem;
    margin-left: -3px;
    width: 270px;
  }

  body.contact section.upper-section a.tel .left:before {
    position: absolute;
    margin-top: -8px;
    height: 28px;
    width: 16px;
  }
}

@media only screen and (max-width: 320px) {
  body.contact section.upper-section a.tel .left {
    margin-left: 0;
  }
}

body.contact section.upper-section a.tel .left:before {
  background-image: url(/images/tell.svg?2b1a065b15a187b7f90e776c66c5db93);
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  height: 38px;
  width: 22px;
}

@media only screen and (max-width: 767px) {
  body.contact section.upper-section a.tel .left:before {
    top: -2px;
    left: 10px;
  }
}

body.contact section.upper-section a.tel .left _:lang(x)::-ms-backdrop,
body.contact section.upper-section a.tel .left:before {
  background-size: 24px 39px;
  height: 40px;
  width: 25px;
}

body.contact section.upper-section a.tel .right {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5;
}

@media only screen and (min-width: 768px) {
  body.contact section.upper-section a.tel .right {
    position: absolute;
    right: 0;
  }
}

@media not all and (min-resolution: 0.001dpcm) {
@supports (-webkit-appearance: none) {
    body.contact section.upper-section a.tel {
      width: 562px;
    }

@media only screen and (max-width: 767px) {
      body.contact section.upper-section a.tel {
        width: auto;
      }
}
}
}

body.contact section.upper-section _:lang(x)::-ms-backdrop,
body.contact section.upper-section a.tel {
  width: 522px;
}

body.contact section.upper-section ul.steps {
  margin: 32px auto 36px;
  flex-wrap: nowrap;
}

body.contact section.upper-section ul.steps li {
  border-top: 7px solid #c6eaee;
  color: #c6eaee;
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 11px;
  position: relative;
  text-align: center;
  width: calc(100% / 3);
}

@media only screen and (max-width: 767px) {
  body.contact section.upper-section ul.steps li {
    font-size: 13px;
    font-size: 1.3rem;
    padding-top: 7px;
  }
}

@media only screen and (max-width: 320px) {
  body.contact section.upper-section ul.steps li {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.contact section.upper-section ul.steps li.active {
  border-top: 7px solid #1EABBD;
  color: #1EABBD;
}

body.contact section.upper-section ul.steps li:after {
  background-color: white;
  content: "";
  display: block;
  position: absolute;
  top: -12px;
  right: -7px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  height: 30px;
  width: 10px;
  z-index: 4;
}

@media only screen and (max-width: 767px) {
  body.contact section.upper-section ul.steps li:after {
    font-size: 13px;
    font-size: 1.3rem;
    top: -12px;
    right: -3px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    height: 18px;
    width: 5px;
  }
}

body.contact section.upper-section ul.steps li:last-child:after {
  display: none;
}

body.contact section.upper-section ul.steps li span.bold {
  font-weight: bold;
  margin-right: 16px;
}

@media only screen and (max-width: 767px) {
  body.contact section.upper-section ul.steps li span.bold {
    margin-right: 6px;
  }
}

body.contact section.upper-section .info {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 42px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  body.contact section.upper-section .info {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-align: left;
  }
}

body.contact section.form-section table {
  width: 100%;
}

body.contact section.form-section table tr {
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
  /* IE11  */
  /* IE11  */
}

@media only screen and (min-width: 768px) {
  body.contact section.form-section table tr.message th {
    padding-top: 36px;
    vertical-align: text-top;
  }
}

@media only screen and (min-width: 768px) {
  body.contact section.form-section table tr.message td {
    padding-right: 19px;
  }
}

body.contact section.form-section table tr th {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 9px;
  vertical-align: middle;
  width: 200px;
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  body.contact section.form-section table tr th {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 27px 0 10px;
  }
}

body.contact section.form-section table tr th span {
  color: white;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 3px 4px;
  margin-left: 10px;
}

body.contact section.form-section table tr th span.rec {
  background-color: #EBA438;
}

body.contact section.form-section table tr th span.norec {
  background-color: #C4C4C4;
}

body.contact section.form-section table tr th _:lang(x)::-ms-backdrop,
body.contact section.form-section table tr th span {
  padding: 4px 4px 0;
}

body.contact section.form-section table tr _:lang(x)::-ms-backdrop,
body.contact section.form-section table tr th {
  padding-top: 13px;
}

body.contact section.form-section table tr td {
  padding: 25px 0;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  body.contact section.form-section table tr td {
    display: block;
    padding: 0 0 30px;
  }
}

body.contact section.form-section table tr td input {
  border: 1px solid #707070;
  height: 45px;
}

body.contact section.form-section table tr td input.medium {
  width: 315px;
}

@media only screen and (max-width: 767px) {
  body.contact section.form-section table tr td input.medium {
    width: 100%;
  }
}

body.contact section.form-section table tr td input.large {
  width: 415px;
}

@media only screen and (max-width: 767px) {
  body.contact section.form-section table tr td input.large {
    width: 100%;
  }
}

body.contact section.form-section table tr td input[type=text],
body.contact section.form-section table tr td input[type=email] {
  border-radius: 0;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "\6E38\30B4\30B7\30C3\30AF", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4   Pro", "Hiragino Kaku Gothic Pro", "\30E1\30A4\30EA\30AA", "Meiryo", sans-serif;
  padding: 0 20px;
  -webkit-appearance: none;
  outline: none;
}

@media only screen and (max-width: 767px) {
  body.contact section.form-section table tr td input[type=text],
  body.contact section.form-section table tr td input[type=email] {
    padding-top: 0;
    padding-bottom: 0;
  }
}

body.contact section.form-section table tr td textarea {
  border-radius: 0;
  border: 1px solid #707070;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "\6E38\30B4\30B7\30C3\30AF", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4   Pro", "Hiragino Kaku Gothic Pro", "\30E1\30A4\30EA\30AA", "Meiryo", sans-serif;
  line-height: 1.5;
  outline: none;
  padding: 10px 20px;
  height: 185px;
  width: 100%;
  -webkit-appearance: none;
}

@media only screen and (max-width: 767px) {
  body.contact section.form-section table tr td textarea {
    height: 205px;
  }
}

body.contact section.form-section table tr td input[type=text]::-webkit-input-placeholder,
body.contact section.form-section table tr td input[type=email]::-webkit-input-placeholder,
body.contact section.form-section table tr td textarea::-webkit-input-placeholder {
  color: #C4C4C4;
  font-family: "\6E38\30B4\30B7\30C3\30AF", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4   Pro", "Hiragino Kaku Gothic Pro", "\30E1\30A4\30EA\30AA", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.contact section.form-section table tr td .select-box {
  background-color: white;
  border: 1px solid #707070;
  position: relative;
  width: 178px;
}

@media only screen and (max-width: 767px) {
  body.contact section.form-section table tr td .select-box {
    width: 181px;
  }
}

body.contact section.form-section table tr td .select-box:after {
  background-color: white;
  border-right: 2px solid #707070;
  border-top: 2px solid #707070;
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  top: 15px;
  right: 10px;
  margin: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  height: 8px;
  width: 8px;
}

body.contact section.form-section table tr td .select-box:before {
  background-color: white;
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
  width: 20px;
}

body.contact section.form-section table tr td .select-box select {
  background-color: white;
  color: #4D5152;
  border-radius: 0;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "\6E38\30B4\30B7\30C3\30AF", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4   Pro", "Hiragino Kaku Gothic Pro", "\30E1\30A4\30EA\30AA", "Meiryo", sans-serif;
  padding-left: 24px;
  height: 45px;
  width: 100%;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -ms-appearance: none;
  /* get rid of default appearance for IE8, 9 and 10*/
}

body.contact section.form-section table tr #attach-btn {
  border: 1px solid #707070;
  cursor: pointer;
  color: #4D5152;
  float: left;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "\6E38\30B4\30B7\30C3\30AF", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4   Pro", "Hiragino Kaku Gothic Pro", "\30E1\30A4\30EA\30AA", "Meiryo", sans-serif;
  padding-top: 14px;
  margin-right: 18px;
  text-align: center;
  height: 45px;
  width: 178px;
}

@media only screen and (max-width: 767px) {
  body.contact section.form-section table tr #attach-btn {
    padding-top: 14px;
    margin-right: 14px;
    width: 148px;
  }
}

body.contact section.form-section table tr _:lang(x)::-ms-backdrop,
body.contact section.form-section table tr #attach-btn {
  padding-top: 16px;
}

body.contact section.form-section table tr label {
  color: #4D5152;
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 15px;
}

body.contact section .info2 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 22px 0 37px;
}

@media only screen and (max-width: 767px) {
  body.contact section .info2 {
    margin: 24px 0 20px;
  }
}

body.contact section .info2 a {
  text-decoration: underline;
}

body.contact section .policy-confirm {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: bold;
  margin: 0 auto 45px;
  width: 284px;
}

@media only screen and (max-width: 767px) {
  body.contact section .policy-confirm {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

body.contact section .policy-confirm .check:checked ~ .effec:after {
  background-color: #707070;
  background-size: cover;
  display: inline-block;
  left: 0;
  top: 0;
  height: 16px;
  width: 16px;
  z-index: 11;
}

body.contact section .policy-confirm .check {
  position: relative;
  z-index: 11;
}

body.contact section .policy-confirm .checker {
  display: inline-block;
  position: relative;
}

@media only screen and (max-width: 767px) {
  body.contact section .policy-confirm .checker {
    padding-left: 24px;
    margin: 15px auto 0;
  }
}

body.contact section .policy-confirm .checker label {
  display: block;
  font-size: 19px;
  font-size: 1.9rem;
  margin-left: 30px;
  margin-top: -20px;
  position: relative;
  pointer-events: none;
  z-index: 3;
}

@media only screen and (max-width: 767px) {
  body.contact section .policy-confirm .checker label {
    margin-left: 0px;
    margin-top: -3px;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.5;
  }
}

body.contact section .policy-confirm input[type=checkbox] {
  background: transparent;
  outline: none;
  margin: auto;
  height: 15px;
  width: 100%;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
}

@media only screen and (max-width: 767px) {
  body.contact section .policy-confirm input[type=checkbox] {
    top: -5px;
    position: absolute;
    left: 0;
  }
}

body.contact section .policy-confirm input[type=checkbox]::-ms-check {
  display: none;
}

body.contact section .policy-confirm .effec {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
}

body.contact section .policy-confirm .effec:before {
  background: white;
  border: 1px solid #707070;
  content: "";
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  z-index: 10;
}

body.contact section .policy-confirm .effec:after {
  content: "";
  display: inline-block;
  position: absolute;
}

body.contact section .info3 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
  margin: 26px auto 112px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  body.contact section .info3 {
    font-size: 15px;
    font-size: 1.5rem;
    margin: 28px auto 60px;
  }
}

body.contact section .copyright {
  color: #707070;
  font-size: 11px;
  font-size: 1.1rem;
  padding-bottom: 27px;
  text-align: center;
}

body.contact.confirm ul.steps {
  margin: 0 auto 66px !important;
}

@media only screen and (max-width: 767px) {
  body.contact.confirm ul.steps {
    margin: 0 auto 34px !important;
  }
}

body.contact.confirm table tr td p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
}

body.contact.confirm a.correct {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 24px auto 30px;
  padding-right: 7px;
  position: relative;
  text-align: right;
  text-decoration: underline;
}

body.contact.confirm a.correct:after {
  background-image: url(/images/arrow.svg?652cdfe3d6b4e8beff794729b75f5a73);
  background-size: 5px 10px;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 1px;
  height: 10px;
  width: 5px;
}

body.contact.complete ul.steps {
  margin: 0 auto 66px !important;
}

body.contact.complete section.final-message {
  padding-bottom: 118px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  body.contact.complete section.final-message {
    padding-bottom: 60px;
  }
}

body.contact.complete section.final-message h2 {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 33px;
}

@media only screen and (max-width: 767px) {
  body.contact.complete section.final-message h2 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 26px;
  }
}

body.contact.complete section.final-message p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 52px;
}

@media only screen and (max-width: 767px) {
  body.contact.complete section.final-message p {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

body.contact.complete section.final-message .btn {
  font-family: "\6E38\30B4\30B7\30C3\30AF", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4   Pro", "Hiragino Kaku Gothic Pro", "\30E1\30A4\30EA\30AA", "Meiryo", sans-serif;
  font-weight: bold;
}

body.contact.complete section.final-message .btn:before {
  left: 27px;
  right: auto;
}

body.contact.complete .footer {
  display: block;
}

body.faq main .inner {
  max-width: 920px;
}

@media only screen and (max-width: 767px) {
  body.faq main .inner {
    padding: 0 24px;
  }
}

body.faq .breadcrumb {
  padding: 17px 0 48px;
}

@media only screen and (max-width: 767px) {
  body.faq .breadcrumb {
    padding: 17px 23px 30px;
  }
}

body.faq .section01 {
  margin-bottom: 106px;
}

@media only screen and (max-width: 767px) {
  body.faq .section01 {
    margin-bottom: 76px;
  }
}

body.faq .anchor {
  position: relative;
  top: -30px;
}

body.faq .category-selector.pc {
  background-color: rgba(187, 190, 186, 0.14);
  padding: 40px 50px;
}

body.faq .category-selector.pc li {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  padding-left: 18px;
  width: calc((100% - 48px)/ 3);
  /* IE11  */
}

body.faq .category-selector.pc li:nth-last-child(n+4) {
  margin-bottom: 20px;
}

body.faq .category-selector.pc li:before {
  background-image: url(/images/check.svg?274b6833dadd67f47119e42d3c7c1bd5);
  background-size: 14px 9px;
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  height: 9px;
  width: 14px;
}

body.faq .category-selector.pc li _:lang(x)::-ms-backdrop,
body.faq .category-selector.pc li:before {
  top: 4px;
}

body.faq .category-selector.sp {
  border: 1px solid #707070;
  font-size: 15px;
  font-size: 1.5rem;
  position: relative;
  width: 100%;
}

body.faq .category-selector.sp:after {
  border-right: 2px solid #000000;
  border-top: 2px solid #000000;
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  top: 15px;
  right: 13px;
  margin: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  height: 8px;
  width: 8px;
}

body.faq .category-selector.sp select {
  background-color: white;
  color: #4D5152;
  border-radius: 0;
  font-size: 15px;
  font-size: 1.5rem;
  padding-left: 24px;
  height: 45px;
  width: 100%;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -ms-appearance: none;
  /* get rid of default appearance for IE8, 9 and 10*/
}

body.faq .faq-question-wrap:last-of-type {
  margin-bottom: 157px;
}

@media only screen and (max-width: 767px) {
  body.faq .faq-question-wrap:last-of-type {
    margin-bottom: 136px;
  }
}

body.for-top {
  /* IE11  */
}

body.for-top #new-topics {
  overflow: hidden;
  padding: 95px 0;
}

@media only screen and (max-width: 767px) {
  body.for-top #new-topics {
    padding: 60px 0;
  }
}

body.for-top #gyoshu {
  padding: 90px 0 75px;
}

@media only screen and (max-width: 767px) {
  body.for-top #gyoshu {
    padding: 60px 0 54px;
  }
}

body.for-top #gyoshu .flex-row {
  padding: 0 60px;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  body.for-top #gyoshu .flex-row {
    margin-top: 40px;
    padding: 0 20px;
  }
}

body.for-top #gyoshu .flex-row .col {
  width: 32%;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  margin-top: 20px;
  background-image: url(/images/gyoshu_arrow.svg?9592fdec3d0108ba89832753ca876171);
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: right bottom;
}

body.for-top #gyoshu .flex-row .col:before,
body.for-top #gyoshu .flex-row .col:after,
body.for-top #gyoshu .flex-row .col a:before,
body.for-top #gyoshu .flex-row .col a:after {
  background: #000000;
}

body.for-top #gyoshu .flex-row .col figure img {
  margin: 35px auto 10px;
  height: 84px;
}

@media only screen and (max-width: 767px) {
  body.for-top #gyoshu .flex-row .col figure img {
    height: 60px;
    margin: 20px auto 0;
  }
}

@media only screen and (max-width: 767px) {
  body.for-top #gyoshu .flex-row .col {
    margin-top: 10px;
    width: calc(50% - 5px);
  }

  body.for-top #gyoshu .flex-row .col:nth-child(5) a,
  body.for-top #gyoshu .flex-row .col:nth-child(6) a {
    padding: 0 0 34px;
  }

  body.for-top #gyoshu .flex-row .col:last-child {
    height: 64px;
    width: 100%;
  }

  body.for-top #gyoshu .flex-row .col:last-child a {
    padding: 0;
    position: relative;
  }

  body.for-top #gyoshu .flex-row .col:last-child a img.exception {
    position: absolute;
    top: 50%;
    left: 0;
    margin: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  body.for-top #gyoshu .flex-row .col:last-child a figcaption {
    margin: 0 auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  body.for-top #gyoshu .flex-row .col:last-child a figcaption h3 {
    margin-top: 0;
  }
}

@media only screen and (max-width: 320px) {
  body.for-top #gyoshu .flex-row .col {
    background-size: 30px 30px;
  }
}

body.for-top #gyoshu .flex-row .col a {
  display: block;
  padding: 0 0 25px;
}

@media only screen and (max-width: 767px) {
  body.for-top #gyoshu .flex-row .col a {
    padding: 0 0 14px;
    height: 100%;
  }
}

body.for-top #gyoshu .flex-row .col a figure .img-box {
  text-align: center;
}

body.for-top #gyoshu .flex-row .col a figure figcaption {
  text-align: center;
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  body.for-top #gyoshu .flex-row .col a figure figcaption {
    padding: 0;
  }
}

body.for-top #gyoshu .flex-row .col a figure figcaption h3 {
  color: #000;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  body.for-top #gyoshu .flex-row .col a figure figcaption h3 {
    font-size: 17px;
    font-size: 1.7rem;
    margin-top: 8px;
  }
}

body.for-top #gyoshu .flex-row .col a figure figcaption p {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  body.for-top #gyoshu .flex-row .col a figure figcaption p {
    line-height: 1.5;
    margin-left: 0;
    margin-top: 8px;
  }
}

@media only screen and (max-width: 320px) {
  body.for-top #gyoshu .flex-row .col a figure figcaption p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

body.for-top #area {
  padding: 90px 0 50px 0;
}

@media only screen and (max-width: 767px) {
  body.for-top #area {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  body.for-top #area .inner {
    display: block;
  }
}

body.for-top #area .inner .map {
  width: 41%;
}

@media only screen and (max-width: 767px) {
  body.for-top #area .inner .map {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

body.for-top #area .inner .map text {
  pointer-events: none;
}

@media only screen and (min-width: 768px) {
  body.for-top #area .inner .map #Path_1241 {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  body.for-top #area .inner .map #Path_1241:hover {
    cursor: pointer;
  }
}

@media only screen and (min-width: 768px) {
  body.for-top #area .inner .map #Path_1242 {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  body.for-top #area .inner .map #Path_1242:hover {
    cursor: pointer;
  }
}

@media only screen and (min-width: 768px) {
  body.for-top #area .inner .map #Path_1243 {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  body.for-top #area .inner .map #Path_1243:hover {
    cursor: pointer;
  }
}

@media only screen and (min-width: 768px) {
  body.for-top #area .inner .map #Path_1244 {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  body.for-top #area .inner .map #Path_1244:hover {
    cursor: pointer;
  }
}

body.for-top #area .inner _:lang(x)::-ms-backdrop,
body.for-top #area .inner .map svg {
  margin: 47px auto 20px;
  transform: scale(1.25);
}

body.for-top #area .inner .btns {
  width: 54.8%;
  margin-top: 77px;
}

@media only screen and (max-width: 767px) {
  body.for-top #area .inner .btns {
    margin-top: 20px;
    width: 100%;
  }
}

body.for-top #area .inner .btns ul {
  /* IE11  */
}

body.for-top #area .inner .btns ul li {
  width: 48.5%;
  margin-top: 13px;
}

@media only screen and (max-width: 767px) {
  body.for-top #area .inner .btns ul li {
    margin-top: 10px;
    width: calc(50% - 5px);
  }
}

body.for-top #area .inner .btns ul li a {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  height: 70px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
  body.for-top #area .inner .btns ul li a {
    height: 66px;
    padding: 0 18px 0 10px;
  }
}

body.for-top #area .inner .btns ul li a:before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 22px;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  body.for-top #area .inner .btns ul li a:before {
    right: 11px;
  }
}

body.for-top #area .inner .btns ul li a:after {
  content: "";
  display: block;
  -webkit-transition: linear 0.3s;
  transition: linear 0.3s;
  width: 97%;
  height: 88%;
  border: 4px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  body.for-top #area .inner .btns ul li a:after {
    width: 95%;
    height: 85%;
  }
}

@media only screen and (max-width: 320px) {
  body.for-top #area .inner .btns ul li a:after {
    width: 94%;
  }
}

body.for-top #area .inner .btns ul _:lang(x)::-ms-backdrop,
body.for-top #area .inner .btns ul li a {
  padding: 32px 2px 25px 0;
}

body.for-top _:lang(x)::-ms-backdrop,
body.for-top #area {
  padding: 90px 0 150px;
}

body.for-top #price {
  padding: 60px 0;
}

@media only screen and (max-width: 767px) {
  body.for-top #price {
    padding: 60px 0 50px;
  }

  body.for-top #price .inner-l {
    padding: 0 24px;
  }
}

body.for-top #price .flex-row {
  padding-top: 37px;
}

body.for-top #price .flex-row .col {
  background-color: #fff;
  width: 24%;
  border: 3px solid #EBEAE7;
  background-position: right bottom;
  background-size: 40px 40px;
  background-repeat: no-repeat;
}

body.for-top #price .flex-row .col:before,
body.for-top #price .flex-row .col:after,
body.for-top #price .flex-row .col a:before,
body.for-top #price .flex-row .col a:after {
  background: #000000;
}

@media only screen and (max-width: 767px) {
  body.for-top #price .flex-row .col {
    margin-bottom: 10px;
    width: 100%;
    background-size: 30px 30px;
  }

  body.for-top #price .flex-row .col:last-child {
    margin-bottom: 0;
  }

  body.for-top #price .flex-row .col:last-child figure img.exception {
    height: 32px;
  }
}

body.for-top #price .flex-row .col a {
  display: block;
  position: relative;
  height: 100%;
}

body.for-top #price .flex-row .col a figure {
  padding-top: 35px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  body.for-top #price .flex-row .col a figure {
    padding: 0;
    height: 80px;
  }
}

body.for-top #price .flex-row .col a figure .img-box {
  text-align: center;
}

body.for-top #price .flex-row .col a figure .img-box img {
  height: 70px;
}

@media only screen and (max-width: 767px) {
  body.for-top #price .flex-row .col a figure .img-box img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 20px;
    height: 45px;
  }
}

body.for-top #price .flex-row .col a figure figcaption {
  text-align: center;
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  body.for-top #price .flex-row .col a figure figcaption {
    padding: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 79px;
    text-align: left;
  }
}

body.for-top #price .flex-row .col a figure figcaption h3 {
  font-size: 19px;
  font-size: 1.9rem;
  margin-top: 17px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  body.for-top #price .flex-row .col a figure figcaption h3 {
    font-size: 17px;
    font-size: 1.7rem;
    margin-top: 0;
  }
}

body.for-top #price .flex-row .col a figure figcaption p {
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  body.for-top #price .flex-row .col a figure figcaption p {
    margin-top: 8px;
  }
}

@media only screen and (max-width: 320px) {
  body.for-top #price .flex-row .col a figure figcaption p {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

body.for-top #feature {
  padding: 100px 0 80px;
}

@media only screen and (max-width: 767px) {
  body.for-top #feature {
    padding: 80px 0 65px;
  }
}

body.for-top #feature .inner {
  max-width: 900px;
}

body.for-top #feature .inner .intro {
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.025em;
  line-height: 1.764705882;
  margin-top: 25px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  body.for-top #feature .inner .intro {
    font-size: 15px;
    font-size: 1.5rem;
    padding-top: 20px;
    text-align: justify;
  }
}

body.for-top #flow {
  padding-bottom: 112px;
}

@media only screen and (max-width: 767px) {
  body.for-top #flow {
    padding-bottom: 80px;
  }
}

body.for-top #flow h2 {
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 767px) {
  body.for-top #flow .inner-l {
    padding: 0;
  }
}

body.login main .inner {
  max-width: 680px;
}

@media only screen and (max-width: 767px) {
  body.login main .inner {
    padding: 0 24px;
  }
}

body.login .btn.rounded {
  background-color: #000000;
  color: white;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  font-weight: bold;
  padding: 28px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 384px;
}

@media only screen and (max-width: 767px) {
  body.login .btn.rounded {
    width: calc(100% - 26px);
  }
}

body.login .btn.rounded:before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

@media only screen and (min-width: 768px) {
  body.login .btn.rounded:hover {
    background-color: #1EABBD;
  }
}

body.login section.section01 {
  padding-bottom: 101px;
}

@media only screen and (max-width: 767px) {
  body.login section.section01 {
    padding-bottom: 58px;
  }
}

body.login section.section01 .info01 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 26px 0 0;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  body.login section.section01 .info01 {
    margin: 32px 0 0;
    text-align: left;
  }
}

body.login section.section01 .info01 a {
  text-decoration: underline;
}

body.login section.section01 table {
  margin: 0 auto 28px;
  width: 618px;
}

@media only screen and (max-width: 767px) {
  body.login section.section01 table {
    margin: 0 auto 20px;
    width: 100%;
  }
}

body.login section.section01 table tr {
  border-bottom: 1px solid rgba(20, 20, 20, 0.14);
}

body.login section.section01 table tr th {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  padding-top: 39px;
  padding-left: 8px;
  vertical-align: text-top;
  width: 200px;
}

@media only screen and (max-width: 767px) {
  body.login section.section01 table tr th {
    display: block;
    padding: 20px 0 0;
    width: 100%;
  }
}

body.login section.section01 table tr td {
  padding: 25px 0;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  body.login section.section01 table tr td {
    display: block;
    padding: 13px 0 18px;
  }
}

body.login section.section01 table tr td input[type=text] {
  border: 1px solid #707070;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 0 15px;
  height: 45px;
  width: 100%;
  -webkit-appearance: none;
}

body.login section.section01 table tr td input[type=text]::-webkit-input-placeholder {
  color: #C4C4C4;
}

body.login section.section01 table tr td .check:checked ~ .effec:after {
  background-color: #707070;
  background-size: cover;
  display: inline-block;
  left: 0;
  top: 0;
  height: 16px;
  width: 16px;
  z-index: 11;
}

body.login section.section01 table tr td .check {
  position: relative;
  z-index: 11;
}

body.login section.section01 table tr td .checker {
  display: inline-block;
  margin-top: 25px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  body.login section.section01 table tr td .checker {
    padding-left: 24px;
    margin-top: 15px;
  }
}

body.login section.section01 table tr td .checker label {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  margin-left: 25px;
  margin-top: -15px;
  position: relative;
  pointer-events: none;
  z-index: 3;
}

@media only screen and (max-width: 767px) {
  body.login section.section01 table tr td .checker label {
    margin-left: 0px;
    margin-top: 0;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

body.login section.section01 table tr td input[type=checkbox] {
  background: transparent;
  outline: none;
  margin: auto;
  height: 15px;
  width: 100%;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
}

@media only screen and (max-width: 767px) {
  body.login section.section01 table tr td input[type=checkbox] {
    top: -5px;
    position: absolute;
    left: 0;
  }
}

body.login section.section01 table tr td input[type=checkbox]::-ms-check {
  display: none;
}

body.login section.section01 table tr td .effec {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
}

body.login section.section01 table tr td .effec:before {
  background: white;
  border: 1px solid #707070;
  content: "";
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  z-index: 10;
}

body.login section.section01 table tr td .effec:after {
  content: "";
  display: inline-block;
  position: absolute;
}

body.login section.section01 .info02 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 18px;
  padding-left: 0;
  position: relative;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  body.login section.section01 .info02 {
    margin-top: 28px;
    padding-left: 15px;
    text-align: left;
  }
}

body.login section.section01 .info02 a {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  body.login section.section01 .info02 .asterisc {
    position: absolute;
    left: 0;
  }
}

body.login section.section02 {
  background-color: rgba(187, 190, 186, 0.14);
  padding: 93px 0 135px;
}

@media only screen and (max-width: 767px) {
  body.login section.section02 {
    padding: 43px 0 83px;
  }
}

body.login section.section02 .info03 {
  font-size: 15px;
  font-size: 1.5rem;
  margin: 26px 0;
  line-height: 1.8;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  body.login section.section02 .info03 {
    line-height: 1.7;
    margin: 32px 0 30px;
  }
}

body.privacy main .inner {
  max-width: 860px;
}

@media only screen and (max-width: 767px) {
  body.privacy main .inner {
    padding: 0 24px;
  }
}

body.privacy h2 {
  margin-bottom: 38px;
}

body.privacy section p {
  line-height: 1.7;
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  body.privacy section p {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

body.privacy section p.intro01 {
  margin-bottom: 44px;
}

@media only screen and (max-width: 767px) {
  body.privacy section p.intro01 {
    margin-bottom: 30px;
  }
}

body.privacy section p.intro02 {
  margin-bottom: 34px;
}

@media only screen and (max-width: 767px) {
  body.privacy section p.intro02 {
    margin-bottom: 19px;
  }
}

body.privacy section p a {
  text-decoration: underline;
  word-break: break-all;
}

body.privacy section p a.no-deco {
  text-decoration: none;
}

body.privacy section h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  body.privacy section h3 {
    margin-bottom: 20px;
    line-height: 1.4;
  }
}

body.privacy section .chapter {
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  body.privacy section .chapter {
    margin-bottom: 30px;
  }
}

body.privacy section .chapter.last-of-type,
body.privacy section .chapter.last {
  margin-bottom: 0;
}

body.privacy section .chapter.last-of-type ul.privacy-list01,
body.privacy section .chapter.last ul.privacy-list01 {
  margin-bottom: 0;
}

body.privacy section ul.privacy-list01 li {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
  position: relative;
  padding-left: 22px;
}

@media only screen and (max-width: 767px) {
  body.privacy section ul.privacy-list01 li {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

body.privacy section ul.privacy-list01 li span.numbering {
  position: absolute;
  left: 0;
}

@media only screen and (max-width: 767px) {
  body.privacy section ul.privacy-list01 li ul {
    margin: 0 0 2px;
  }
}

body.privacy section ul.privacy-list01.bullet li {
  padding-left: 15px;
}

@media only screen and (max-width: 767px) {
  body.privacy section ul.privacy-list01.bullet li {
    padding-left: 21px;
  }
}

body.privacy section ul.privacy-list01.bullet span {
  background-color: #000000;
  border-radius: 50%;
  top: 8px;
  margin-left: 4px;
  height: 5px;
  width: 5px;
}

@media only screen and (max-width: 767px) {
  body.privacy section ul.privacy-list01.bullet span {
    top: 8px;
    margin-left: 5px;
    height: 8px;
    width: 8px;
  }
}

body.privacy section.section02 {
  padding: 80px 0;
}

body.results-company .company-main {
  margin: 0 auto;
  max-width: 800px;
  padding-bottom: 89px;
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  body.results-company .company-main {
    padding: 0 20px 96px;
  }
}

@media only screen and (min-width: 768px) {
  body.results-company .company-main .ttl02 {
    padding-top: 67px;
  }
}

body.results-company .company-main .company-image {
  margin-top: 42px;
  height: auto;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  body.results-company .company-main .company-image {
    margin-top: 25px;
  }
}

body.results-company .company-main table {
  border: 3px solid #EBEAE7;
  table-layout: fixed;
  margin-top: 35px;
}

@media only screen and (max-width: 767px) {
  body.results-company .company-main table {
    margin-top: 25px;
  }
}

body.results-company .company-main table tr {
  border-bottom: 1px solid #EBEAE7;
  font-size: 15px;
  font-size: 1.5rem;
}

body.results-company .company-main table tr th {
  font-weight: bold;
  padding: 22px 0 22px 44px;
  vertical-align: text-top;
  width: 240px;
}

@media only screen and (max-width: 767px) {
  body.results-company .company-main table tr th {
    display: block;
    padding: 14px 0 14px 25px;
    width: 100%;
  }
}

body.results-company .company-main table tr td {
  padding: 22px 36px 22px;
  line-height: 1.5;
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  body.results-company .company-main table tr td {
    display: block;
    padding: 14px 25px 14px;
    width: 100%;
  }
}

body.results-company .company-main .btn {
  margin-top: 70px;
  padding-left: 16px;
  width: 313px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  body.results-company .company-main .btn:hover {
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  body.results-company .company-main .btn {
    margin-top: 35px;
    padding-left: 26px;
    width: calc(100% - 56px);
  }
}

body.results-company .company-main .btn:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(/images/cross.svg?6ae19991f6e2a083efde4da9f114dfef);
  background-size: 20px;
  background-repeat: no-repeat;
  border: none;
  left: 26px;
  height: 20px;
  width: 20px;
}

@media only screen and (max-width: 767px) {
  body.results-company .company-main .btn:before {
    left: 16px;
  }
}

body.results-company .company-main .btn:after {
  content: "";
  display: block;
  -webkit-transition: linear 0.3s;
  transition: linear 0.3s;
  width: 97.5%;
  height: 87%;
  border: 4px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  body.results-company .company-main .btn:after {
    width: 96.5%;
    height: 85%;
  }
}

body.results-company .company-main _:lang(x)::-ms-backdrop,
body.results-company .company-main .btn {
  padding: 36px 1px 30px 0;
}

body.results.detail .content-wrapper {
  padding-bottom: 158px;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper {
    padding-bottom: 96px;
  }
}

@media only screen and (max-width: 1000px) {
  body.results.detail .content-wrapper .inner {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .inner {
    padding: 0;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper {
  border-bottom: 1px solid #EBEAE7;
  padding-bottom: 64px;
  position: relative;
  /* IE11  */
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper {
    border-bottom: none;
  }

  body.results.detail .content-wrapper .detail-card-wrapper::before {
    background-color: #EBEAE7;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: -20px;
    height: 1px;
    width: calc(100% + 40px);
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card {
  border: 3px solid #EBEAE7;
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper {
  flex-wrap: nowrap;
  /* IE11  */
  /* IE11  */
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper .left {
  padding-top: 31px;
  position: relative;
  height: 152px;
  width: 26.263%;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper .left {
    height: 139px;
    width: 109px;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper .category {
  color: #fff;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 16px;
  padding: 7px 0;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper .category {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 6px;
    padding: 9px 0 7px;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper _:lang(x)::-ms-backdrop,
body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper .category {
  padding-top: 12px;
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper img {
  align-self: center;
  margin: 0 auto;
  height: 110px;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper img {
    height: 74px;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper _:lang(x)::-ms-backdrop,
body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper img {
  margin: 0;
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper .text {
  padding: 30px 30px 20px 0;
  min-height: 152px;
  width: 69.13%;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper .text {
    padding: 10px 13px 10px 13px;
    min-height: auto;
    width: calc(100% - 109px);
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper .text .card-ttl {
  color: #222222;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.025em;
  line-height: 1.3;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card .upper .text .card-ttl {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: -3px;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card table {
  border-top: 1px solid #EBEAE7;
  table-layout: fixed;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table {
    width: 100%;
  }

  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table:last-of-type {
    border-top: 1px solid #EBEAE7;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr {
  border-bottom: 1px solid #EBEAE7;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
  /* IE11  */
  /* IE11  */
}

@media only screen and (min-width: 768px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr:first-child {
    /* IE11  */
  }

  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr:first-child th {
    padding: 18px 0 17px 30px;
  }

  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr:first-child td {
    padding: 18px 0 17px 24px;
  }

  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr:first-child _:lang(x)::-ms-backdrop,
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr:first-child th {
    padding: 24px 0 17px 30px;
  }

  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr:first-child _:lang(x)::-ms-backdrop,
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr:first-child td {
    padding: 24px 0 17px 24px;
  }
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr:nth-child(2) td {
    height: 100px;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr:last-child {
  border-bottom: none;
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr th {
  font-weight: bold;
  padding: 15px 0 15px 30px;
  text-align: left;
  vertical-align: text-top;
  width: 30.87%;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr th {
    display: block;
    padding: 13px 24px 11px;
    width: 100%;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr _:lang(x)::-ms-backdrop,
body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr th {
  padding: 17px 0 15px 30px;
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td {
  padding: 16px 24px 14px;
  position: relative;
  vertical-align: text-top;
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td {
    display: block;
    width: 100%;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td .btn {
  font-size: 13px;
  font-size: 1.3rem;
  padding-right: 6px;
  position: absolute;
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  padding: 15px 2px 14px 0;
  width: 148px;
}

@media only screen and (min-width: 768px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td .btn {
    -webkit-transition: none;
    transition: none;
  }

  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td .btn:hover {
    background-color: #505050;
    opacity: 1;
  }
}

@media only screen and (max-width: 1000px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td .btn {
    top: auto;
    right: auto;
    left: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    position: relative;
    margin: 10px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td .btn {
    margin: 0 auto;
    line-height: 1;
    padding: 11px 2px 14px 0;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 16px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 188px;
    position: absolute;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td .btn:before {
  right: 8px;
  height: 4px;
  width: 4px;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td .btn:before {
    right: 10px;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td ul li {
  position: relative;
  padding-left: 15px;
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td ul li span {
  position: absolute;
  left: 0;
  top: 0;
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td _:lang(x)::-ms-backdrop,
body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td .btn {
  padding-top: 20px;
}

body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr _:lang(x)::-ms-backdrop,
body.results.detail .content-wrapper .detail-card-wrapper .detail-card table tr td {
  padding: 19px 24px 14px;
}

body.results.detail .content-wrapper .detail-card-wrapper .btn.full-background {
  font-size: 17px;
  font-size: 1.7rem;
  margin-top: 39px;
  padding: 37px 0;
  width: 402px;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  body.results.detail .content-wrapper .detail-card-wrapper .btn.full-background {
    -webkit-transition: none;
    transition: none;
  }

  body.results.detail .content-wrapper .detail-card-wrapper .btn.full-background:hover {
    background-color: #505050;
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .btn.full-background {
    font-weight: bold;
    margin-top: 24px;
    padding: 46px 0;
    width: 100%;
  }

  body.results.detail .content-wrapper .detail-card-wrapper .btn.full-background:before {
    right: 16px;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper _:lang(x)::-ms-backdrop,
body.results.detail .content-wrapper .detail-card-wrapper .btn.full-background {
  padding-top: 39px;
}

body.results.detail .content-wrapper .detail-card-wrapper .btn.color-outline {
  margin-top: 33px;
  width: 294px;
  padding: 23px 0;
  font-size: 15px;
  font-size: 1.5rem;
  position: relative;
}

@media only screen and (min-width: 768px) {
  body.results.detail .content-wrapper .detail-card-wrapper .btn.color-outline:hover {
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .btn.color-outline {
    margin-top: 24px;
    padding: 28px 0 28px 2px;
    width: calc(100% - 54px);
  }
}

body.results.detail .content-wrapper .detail-card-wrapper .btn.color-outline:after {
  content: "";
  display: block;
  -webkit-transition: linear 0.3s;
  transition: linear 0.3s;
  width: 97.5%;
  height: 82%;
  border: 4px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .detail-card-wrapper .btn.color-outline:after {
    width: 96.5%;
  }
}

body.results.detail .content-wrapper .detail-card-wrapper _:lang(x)::-ms-backdrop,
body.results.detail .content-wrapper .detail-card-wrapper .btn.color-outline {
  padding: 26px 0 20px 0;
}

body.results.detail .content-wrapper .down-list {
  /* IE11  */
}

body.results.detail .content-wrapper .down-list .ttl {
  margin: 94px auto 36px;
  font-size: 26px;
  font-size: 2.6rem;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .down-list .ttl {
    margin: 55px auto 36px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 320px) {
  body.results.detail .content-wrapper .down-list .ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

body.results.detail .content-wrapper .down-list .btn.color-outline {
  margin-top: 49px;
  padding: 0;
  width: 265px;
}

body.results.detail .content-wrapper .down-list .btn.color-outline:hover {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .down-list .btn.color-outline {
    margin-bottom: 88px;
  }
}

body.results.detail .content-wrapper .down-list .btn.color-outline span {
  display: block;
  padding: 33px 8px 33px 0;
  position: relative;
}

@media only screen and (min-width: 768px) {
  body.results.detail .content-wrapper .down-list .btn.color-outline span:hover {
    opacity: 1;
  }
}

body.results.detail .content-wrapper .down-list .btn.color-outline:after {
  content: "";
  display: block;
  -webkit-transition: linear 0.3s;
  transition: linear 0.3s;
  width: 97%;
  height: 88%;
  border: 4px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  body.results.detail .content-wrapper .down-list .btn.color-outline:after {
    width: 95%;
    height: 85%;
  }
}

body.results.detail .content-wrapper .down-list _:lang(x)::-ms-backdrop,
body.results.detail .content-wrapper .down-list .btn.color-outline span {
  padding-top: 38px;
  margin-top: -1px;
}

body.results.list .content-wrapper {
  padding-bottom: 146px;
  *zoom: 1;
}

body.results.list .content-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 767px) {
  body.results.list .content-wrapper {
    padding-bottom: 96px;
  }
}

@media only screen and (max-width: 1000px) {
  body.results.list .content-wrapper .inner {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  body.results.list .content-wrapper .inner {
    padding: 0;
  }
}

body.results.list .content-wrapper .resulheader {
  margin-bottom: 27px;
}

@media only screen and (max-width: 767px) {
  body.results.list .content-wrapper .resulheader {
    margin-bottom: 30px;
  }
}

body.results.list .content-wrapper .resulheader p.top {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  body.results.list .content-wrapper .resulheader p.top {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

body.results.list .content-wrapper .resulheader p.top .number {
  padding-right: 2px;
}

body.results.list .content-wrapper .resulheader p.info {
  color: #5E625D;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 12px;
  line-height: 1.4;
}

body.results .content-wrapper .inner {
  max-width: 1000px;
  padding: 0;
}

body.results .content-wrapper .searchresults-wrapper {
  width: calc(100% - 320px);
}

@media only screen and (max-width: 767px) {
  body.results .content-wrapper .searchresults-wrapper {
    -webkit-box-ordinal-group: 2;
            order: 1;
    padding: 0 20px;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  body.results .content-wrapper .searchsidebar {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
}

body.top {
  /*
  * === INVIEW ANIMATIONS===
  */
}

body.top .header {
  overflow: visible;
}

body.top section#mainvisual {
  text-align: center;
  height: 640px;
}

@media only screen and (max-width: 767px) {
  body.top section#mainvisual {
    height: 524px;
  }
}

body.top section#mainvisual .sub-catch {
  color: white;
  display: inline-block;
  margin: 0 auto 12px;
  padding-top: 162px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
  position: relative;
}

@media only screen and (max-width: 767px) {
  body.top section#mainvisual .sub-catch {
    font-size: 15px;
    font-size: 1.5rem;
    margin: 0 auto 10px;
    padding-top: 112px;
  }
}

@media only screen and (max-width: 320px) {
  body.top section#mainvisual .sub-catch {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

body.top section#mainvisual .sub-catch:before,
body.top section#mainvisual .sub-catch:after {
  content: "";
  background: #fff;
  width: 2px;
  height: 34px;
  position: absolute;
  left: -20px;
  bottom: 0;
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

@media only screen and (max-width: 767px) {
  body.top section#mainvisual .sub-catch:before,
  body.top section#mainvisual .sub-catch:after {
    bottom: 2px;
    height: 51px;
    width: 2px;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}

body.top section#mainvisual .sub-catch:after {
  left: auto;
  right: -20px;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

@media only screen and (max-width: 767px) {
  body.top section#mainvisual .sub-catch:after {
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
}

body.top section#mainvisual h1 {
  font-size: 50px;
  font-size: 5rem;
  line-height: 1.7;
  font-weight: bold;
  padding-top: 0;
}

body.top section#mainvisual h1:before,
body.top section#mainvisual h1:after {
  display: none;
}

@media only screen and (max-width: 767px) {
  body.top section#mainvisual h1 {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

body.top section#mainvisual .buttons {
  margin: 24px auto 0;
  max-width: 776px;
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  body.top section#mainvisual .buttons {
    margin: 16px auto 0;
    padding: 0 24px;
    width: 100%;
  }
}

body.top section#mainvisual .buttons a {
  background-color: white;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  padding: 35px 0;
  width: calc(50% - 8px);
}

@media only screen and (min-width: 768px) {
  body.top section#mainvisual .buttons a:after {
    border-radius: 36px;
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    height: 74px;
    width: calc(100% + 4px);
    z-index: 4;
  }

  body.top section#mainvisual .buttons a:hover {
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  body.top section#mainvisual .buttons a {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 27px 0;
    width: 100%;
  }

  body.top section#mainvisual .buttons a:before {
    right: 20px;
  }
}

body.top section#mainvisual .buttons a:first-child {
  border: 3px solid #EBA438;
}

@media only screen and (min-width: 768px) {
  body.top section#mainvisual .buttons a:first-child:hover {
    box-shadow: inset 0px 0px 0px 2px #EBA438;
  }

  body.top section#mainvisual .buttons a:first-child:hover:after {
    box-shadow: inset 0px 0px 0px 3px #EBA438;
  }
}

@media only screen and (max-width: 767px) {
  body.top section#mainvisual .buttons a:first-child {
    margin-bottom: 13px;
  }
}

body.top section#mainvisual .buttons a:last-child {
  border: 3px solid #145F91;
}

@media only screen and (min-width: 768px) {
  body.top section#mainvisual .buttons a:last-child:hover {
    box-shadow: inset 0px 0px 0px 2px #145F91;
  }

  body.top section#mainvisual .buttons a:last-child:hover:after {
    box-shadow: inset 0px 0px 0px 3px #145F91;
  }
}

body.top section#mainvisual .buttons _:lang(x)::-ms-backdrop,
body.top section#mainvisual .buttons a {
  padding: 38px 0 35px;
}

body.top section#mainvisual .buttons _:lang(x)::-ms-backdrop,
body.top section#mainvisual .buttons .btn:after {
  height: 76px;
}

body.top section#mainvisual:before {
  display: none;
}

body.top section#mainvisual .bg-image {
  content: "";
  width: 100%;
  height: 205px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(/images/main-bg-green.svg?468c2ff806cb8bbcef98421bed3ce980);
  background-size: auto 205px;
  background-position: left 26px center;
  z-index: 0;
}

@media only screen and (max-width: 767px) {
  body.top section#mainvisual .bg-image {
    background-image: url(/images/main-bg-sp-green.svg?39c0ab6faef18e6ea95bc183090ee7e3);
    background-size: auto 151px;
    background-repeat: repeat-x;
    bottom: -30px;
  }
}

body.top section.section1 {
  padding: 115px 0 113px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  body.top section.section1 {
    padding: 58px 24px 60px;
  }
}

body.top section.section1 p.intro {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.7;
  margin: 30px auto 40px;
}

@media only screen and (max-width: 767px) {
  body.top section.section1 p.intro {
    margin: 38px auto 26px;
    text-align: left;
  }
}

body.top section.section1 img {
  margin: 0 auto;
  max-width: 860px;
}

@media only screen and (max-width: 767px) {
  body.top section.section1 img {
    width: 100%;
  }
}

body.top section.section2,
body.top section.section3 {
  padding-bottom: 114px;
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  body.top section.section2,
  body.top section.section3 {
    padding-bottom: 79px;
  }
}

body.top section.section2 .inner,
body.top section.section3 .inner {
  max-width: 1110px;
}

body.top section.section2 .inner,
body.top section.section2 .inner-l,
body.top section.section3 .inner,
body.top section.section3 .inner-l {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  body.top section.section2 .inner,
  body.top section.section2 .inner-l,
  body.top section.section3 .inner,
  body.top section.section3 .inner-l {
    padding: 0;
  }
}

body.top section.section2 .inner .flex-row.list,
body.top section.section2 .inner-l .flex-row.list,
body.top section.section3 .inner .flex-row.list,
body.top section.section3 .inner-l .flex-row.list {
  max-width: 1110px;
  padding: 0;
}

body.top section.section2 .merits,
body.top section.section3 .merits {
  margin-bottom: 68px;
  max-width: 840px;
}

@media only screen and (min-width: 768px) {
  body.top section.section2 .merits,
  body.top section.section3 .merits {
    margin: 35px auto 68px;
  }
}

body.top section.section2 p.intro,
body.top section.section3 p.intro {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.7;
  letter-spacing: 0.025em;
  margin-top: 56px;
  padding-bottom: 35px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  body.top section.section2 p.intro,
  body.top section.section3 p.intro {
    font-size: 15px;
    font-size: 1.5rem;
    margin-top: 30px;
    padding: 0 25px;
    text-align: left;
  }
}

body.top section.section2 .btn,
body.top section.section3 .btn {
  color: white;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.025em;
  margin-top: 80px;
  max-width: 560px;
  padding: 37px 0;
}

@media only screen and (min-width: 768px) {
  body.top section.section2 .btn:hover,
  body.top section.section3 .btn:hover {
    background-color: #000;
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  body.top section.section2 .btn,
  body.top section.section3 .btn {
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 32px;
    padding: 13px 0;
    width: calc(100% - 96px);
  }
}

body.top section.section2 .btn:before,
body.top section.section3 .btn:before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

@media only screen and (max-width: 767px) {
  body.top section.section2 .btn:before,
  body.top section.section3 .btn:before {
    right: 18px;
  }
}

body.top section.section2 _:lang(x)::-ms-backdrop,
body.top section.section2 .btn,
body.top section.section3 _:lang(x)::-ms-backdrop,
body.top section.section3 .btn {
  padding: 38px 0 35px;
}

body.top section.section2 h2.ttl {
  background-color: #EBA438;
  color: white;
  padding-top: 48px;
}

@media only screen and (max-width: 767px) {
  body.top section.section2 h2.ttl {
    padding-top: 30px;
    height: 90px;
  }
}

body.top section.section2 h2.ttl:before {
  background-color: white;
}

@media only screen and (max-width: 767px) {
  body.top section.section2 h2.ttl:before {
    bottom: 0;
  }
}

body.top section.section2 .btn {
  background-color: #EBA438;
}

body.top section.section3 h2.ttl {
  background-color: #145F91;
  color: white;
  padding-top: 48px;
}

@media only screen and (max-width: 767px) {
  body.top section.section3 h2.ttl {
    padding-top: 30px;
    height: 90px;
  }
}

body.top section.section3 h2.ttl:before {
  background-color: white;
}

@media only screen and (max-width: 767px) {
  body.top section.section3 h2.ttl:before {
    bottom: 0;
  }
}

body.top section.section3 .btn {
  background-color: #145F91;
}

@media only screen and (max-width: 767px) {
  body.top section.section3 .btn {
    padding: 19px 0;
  }
}

@media only screen and (max-width: 320px) {
  body.top section.section3 .btn {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

body.top section.faq {
  background: #282828;
  padding: 100px 0;
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  body.top section.faq {
    padding: 60px 0;
  }
}

body.top section.faq .inner {
  max-width: 860px;
}

body.top section.faq h2.ttl {
  color: white;
}

body.top section.faq h2.ttl:before {
  background-color: white;
}

body.top section.faq .faq-question-wrap {
  border-bottom: 0;
  margin-bottom: 34px;
}

body.top section.faq .faq-question-wrap .question {
  border-top: 1px solid #393939;
}

body.top section.faq .faq-question-wrap .question:first-child {
  border-top: none;
}

body.top section.faq .faq-question-wrap .question h4,
body.top section.faq .faq-question-wrap .question .answer {
  color: white;
}

body.top section.faq .faq-question-wrap .question .question-trigger:after {
  border-right: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
}

body.top section.faq .btn {
  border: 2px solid white;
  color: white;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  padding: 26px 0;
  width: 370px;
}

@media only screen and (min-width: 768px) {
  body.top section.faq .btn:after {
    border-radius: 36px;
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    left: -1px;
    height: 56px;
    width: calc(100% + 2px);
    z-index: 2;
  }

  body.top section.faq .btn:hover {
    box-shadow: inset 0px 0px 0px 2px white;
    opacity: 1;
  }

  body.top section.faq .btn:hover:after {
    box-shadow: inset 0px 0px 0px 2px #f7f7f7;
  }
}

@media only screen and (max-width: 767px) {
  body.top section.faq .btn {
    font-weight: bold;
    width: 280px;
  }
}

body.top section.faq .btn:before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

@media only screen and (max-width: 767px) {
  body.top section.faq .btn:before {
    right: 18px;
  }
}

body.top section.faq _:lang(x)::-ms-backdrop,
body.top section.faq .btn {
  padding: 30px 0 26px;
}

body.top section.faq _:lang(x)::-ms-backdrop,
body.top section.faq .btn:after {
  height: 60px;
}

body.top section.slider-section {
  overflow: hidden;
  padding: 108px 0 103px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  body.top section.slider-section {
    padding: 59px 0 60px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body.top section.slider-section .slick-list.draggable {
    padding: 0px 50px !important;
  }
}

body.top section.slider-section .slider0 .slider {
  padding: 0 10px;
}

@media only screen and (max-width: 767px) {
  body.top section.slider-section .slider0 .slider {
    padding: 0 22px;
  }
}

body.top section.slider-section .slider0 .slider .slider-inner {
  flex-wrap: nowrap;
}

@media only screen and (max-width: 767px) {
  body.top section.slider-section .slider0 .slider .slider-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

body.top section.slider-section .slider0 .slider .imager {
  background-size: cover;
  width: 443px;
}

@media only screen and (max-width: 767px) {
  body.top section.slider-section .slider0 .slider .imager {
    padding-bottom: 85.45%;
    height: auto;
    width: 100%;
  }
}

body.top section.slider-section .slider0 .slider .text {
  background-color: #FBFAF8;
  padding: 69px 92px 48px 48px;
  width: calc(100% - 443px);
}

@media only screen and (max-width: 767px) {
  body.top section.slider-section .slider0 .slider .text {
    background-color: white;
    padding: 30px 0 0;
    width: 100%;
  }
}

body.top section.slider-section .slider0 .slider .text h2 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 26px;
}

@media only screen and (max-width: 767px) {
  body.top section.slider-section .slider0 .slider .text h2 {
    font-size: 17px;
    font-size: 1.7rem;
    margin-bottom: 24px;
  }
}

body.top section.slider-section .slider0 .slider .text p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  body.top section.slider-section .slider0-nav {
    padding-bottom: calc(85.45% - 36px);
    position: absolute;
    top: 59px;
    width: 100%;
  }
}

body.top section.slider-section .slider0-nav #arrow-left,
body.top section.slider-section .slider0-nav #arrow-right {
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 64px;
  width: 64px;
}

@media only screen and (max-width: 767px) {
  body.top section.slider-section .slider0-nav #arrow-left,
  body.top section.slider-section .slider0-nav #arrow-right {
    background-color: #EBEAE7;
    position: absolute;
    height: 45px;
    width: 45px;
  }
}

body.top section.slider-section .slider0-nav #arrow-left img,
body.top section.slider-section .slider0-nav #arrow-right img {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
}

body.top section.slider-section .slider0-nav #arrow-left {
  left: 150px;
}

@media only screen and (max-width: 767px) {
  body.top section.slider-section .slider0-nav #arrow-left {
    left: 0;
  }
}

body.top section.slider-section .slider0-nav #arrow-right {
  right: 150px;
}

@media only screen and (max-width: 767px) {
  body.top section.slider-section .slider0-nav #arrow-right {
    right: 0px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body.top section.slider-section .slider0-nav #arrow-right {
    right: 50px;
  }

  body.top section.slider-section .slider0-nav #arrow-left {
    left: 50px;
  }
}

body.top section.login {
  background: url(/images/main-bg-green.jpg?d8bd8a19084ee3e02621b540b1090275) center/cover no-repeat;
  padding-top: 70px;
  position: relative;
  height: 250px;
  /* IE11  */
}

@media only screen and (max-width: 767px) {
  body.top section.login {
    background: url(/images/main-bg-sp.jpg?0afa32191c406b69c58a3ff15c40f05f) center/cover no-repeat;
    padding: 40px 0 42px;
    height: auto;
  }
}

body.top section.login:before {
  content: "";
  width: 100%;
  height: 205px;
  position: absolute;
  left: 0;
  background-size: auto 205px;
  background-position: left 26px center;
  z-index: 0;
  background-image: url(/images/login_bk.svg?b0541300943b063e67120784ea4d1c35);
  bottom: 0;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  body.top section.login:before {
    background-image: url(/images/login_bk_sp.svg?3cb3071f8924a5c8e00909d4a8de5664);
    background-size: auto 151px;
    background-repeat: repeat-x;
    bottom: -27px;
  }
}

body.top section.login h2 {
  color: white;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  body.top section.login h2 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

body.top section.login a.btn {
  background-color: #000000;
  border-radius: 56px;
  color: white;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 18px;
  padding: 40px 0;
  width: 430px;
}

@media only screen and (min-width: 768px) {
  body.top section.login a.btn:hover {
    background-color: #fff;
    color: #000;
    opacity: 1;
  }

  body.top section.login a.btn:hover:before {
    border-right: 2px solid #000;
    border-top: 2px solid #000;
  }
}

@media only screen and (max-width: 767px) {
  body.top section.login a.btn {
    font-size: 17px;
    font-size: 1.7rem;
    padding: 32px;
    width: calc(100% - 36px);
  }
}

body.top section.login a.btn:before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

@media only screen and (max-width: 767px) {
  body.top section.login a.btn:before {
    right: 21px;
  }
}

body.top section.login _:lang(x)::-ms-backdrop,
body.top section.login a.btn {
  padding: 45px 0 40px;
  border-radius: 56px;
}

body.top .animate {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-transition: all 1.3s;
  transition: all 1.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

body.top .header__brand,
body.top .header__mypage.flex-row,
body.top .sub-catch,
body.top #mainvisual h1,
body.top #mainvisual .buttons a:nth-child(1),
body.top #mainvisual .buttons a:nth-child(2) {
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

body.top .sub-catch,
body.top #mainvisual h1 {
  -webkit-transition: all 1.9s;
  transition: all 1.9s;
}

body.top #mainvisual .bg-image {
  opacity: 0;
  -webkit-transition: all 1.6s;
  transition: all 1.6s;
}

body.top .section1,
body.top .section2,
body.top .section3,
body.top .faq,
body.top .slider-section,
body.top section.login {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}

body.top .fade-In-Up {
  opacity: 1 !important;
  -webkit-transform: translateY(0px) !important;
          transform: translateY(0px) !important;
}

body.top .fade-In {
  opacity: 1 !important;
  -webkit-transform: translateY(0px) !important;
          transform: translateY(0px) !important;
}

