@charset "UTF-8";
@import url("/css/fonts/icon.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap");
/* =======================================

  BROWSER RESET

 ======================================= */
html,
body,
div,
span,
nav,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
button,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-style: inherit;
  font-weight: inherit;
  background: transparent;
}

html {
  font-size: 62.5%;
  line-height: 1;
  overflow-y: scroll;
}

img {
  vertical-align: bottom;
}

strong {
  font-weight: bold;
}

sup {
  font-size: 70%;
  vertical-align: super;
}

sub {
  font-size: 70%;
  vertical-align: sub;
}

ul {
  list-style: none;
}

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

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

blockquote,
q {
  quotes: none;
}

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

/* form */
input {
  vertical-align: middle;
  font-family: inherit;
  border: none;
  border-radius: 0;
  background: none;
}

input[type=radio],
input[type=checkbox] {
  margin: 0;
}

textarea {
  resize: vertical;
  font-family: inherit;
  border: none;
  border-radius: 0;
  background: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  vertical-align: middle;
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* for IE select */
select::-ms-expand {
  display: none;
}

/* for IE clear */
input::-ms-clear {
  display: none;
}

/* for IE password */
input::-ms-reveal {
  display: none;
}

option {
  padding-right: 10px;
}

/* for iOS15 safari */
input,
button,
select {
  color: inherit;
}

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

/* ------------------------------
  HTML5 ELEMENTS
------------------------------ */
header,
footer,
article,
section,
aside,
main,
nav,
menu,
details,
summary,
figcaption,
figure {
  display: block;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* =======================================

  BASE

======================================= */
html,
body {
  height: 100%;
}

html.menu_open {
  overflow: hidden;
}

body {
  min-width: 980px;
  font-size: 1.6rem;
  line-height: 1.4375;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-text-size-adjust: none;
  background: #ffffff;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}

#container {
  min-height: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
}
a.deco_underline {
  text-decoration: underline;
}

.tel a {
  color: #000000;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

/*-----------------------------------------
  CLEARFIX
-----------------------------------------*/
.clear:before,
.clear:after {
  content: "";
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  *zoom: 1;
}

/* =======================================

  SLICK

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

/* Slider */
.slick-loading .slick-list {
  background: #fff url("/img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/css/fonts/slick.eot");
  src: url("/css/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/css/fonts/slick.woff") format("woff"), url("/css/fonts/slick.ttf") format("truetype"), url("/css/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #ff0000;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* =======================================

  SCROLL HINT

======================================= */
@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
    opacity: 0;
  }
}
@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 65px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 130px;
  height: 80px;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  line-height: 1;
  font-size: 10px;
  color: #fff;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
  animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/*-----------------------------------------
add style
-----------------------------------------*/
.scroll-hint-icon {
  top: 64px;
}

/* =======================================

  COMMON

======================================= */
.cont_inner {
  max-width: 1080px;
  margin-inline: auto;
}
@media screen and (max-width: 1140px) {
  .cont_inner {
    margin-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cont_inner {
    width: 92%;
    margin-inline: 4%;
  }
}

.cont_release {
  margin-inline: calc((100% - 1080px) / 2) auto;
}
.cont_release.reverse {
  margin-inline: auto calc((100% - 1080px) / 2);
}
@media screen and (max-width: 1140px) {
  .cont_release {
    margin-inline: 30px auto;
  }
  .cont_release.reverse {
    margin-inline: auto 30px;
  }
}
@media screen and (max-width: 767px) {
  .cont_release {
    margin-inline: 4% !important;
  }
}

.sec_wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sec_wrap {
    margin-bottom: 40px;
  }
}

.cont_wrap {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .cont_wrap {
    margin-bottom: 20px;
  }
}

.cont_wrap_wide {
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .cont_wrap_wide {
    margin-bottom: 32px;
  }
}

/*-----------------------------------------
  Loading
-----------------------------------------*/
/* ローディング画面背景 */
#bg_loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: block;
  width: 100vw;
  height: 100svh;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* ローディングアニメーション */
}
#bg_loader .loader {
  width: 60px;
  aspect-ratio: 1;
  -webkit-animation: loader_rotate_0 1s infinite steps(1);
          animation: loader_rotate_0 1s infinite steps(1);
}
#bg_loader .loader::before,
#bg_loader .loader::after {
  position: absolute;
  inset: 0 50% 50% 0;
  content: "";
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-animation: loader_rotate_1 0.5s infinite linear alternate, loader_rotate_2 0.5s infinite steps(1) alternate;
          animation: loader_rotate_1 0.5s infinite linear alternate, loader_rotate_2 0.5s infinite steps(1) alternate;
}
#bg_loader .loader::after {
  --s: -1,-1;
}

@-webkit-keyframes loader_rotate_0 {
  0% {
    -webkit-transform: scale(1, 1) rotate(0deg);
            transform: scale(1, 1) rotate(0deg);
  }
  50% {
    -webkit-transform: scale(1, -1) rotate(90deg);
            transform: scale(1, -1) rotate(90deg);
  }
}

@keyframes loader_rotate_0 {
  0% {
    -webkit-transform: scale(1, 1) rotate(0deg);
            transform: scale(1, 1) rotate(0deg);
  }
  50% {
    -webkit-transform: scale(1, -1) rotate(90deg);
            transform: scale(1, -1) rotate(90deg);
  }
}
@-webkit-keyframes loader_rotate_1 {
  0% {
    -webkit-transform: scale(var(--s, 1)) perspective(150px) rotateX(0deg);
            transform: scale(var(--s, 1)) perspective(150px) rotateX(0deg);
  }
  100% {
    -webkit-transform: scale(var(--s, 1)) perspective(150px) rotateX(180deg);
            transform: scale(var(--s, 1)) perspective(150px) rotateX(180deg);
  }
}
@keyframes loader_rotate_1 {
  0% {
    -webkit-transform: scale(var(--s, 1)) perspective(150px) rotateX(0deg);
            transform: scale(var(--s, 1)) perspective(150px) rotateX(0deg);
  }
  100% {
    -webkit-transform: scale(var(--s, 1)) perspective(150px) rotateX(180deg);
            transform: scale(var(--s, 1)) perspective(150px) rotateX(180deg);
  }
}
@-webkit-keyframes loader_rotate_2 {
  0% {
    background: #1A3C69;
  }
  50% {
    background: #00A0E9;
  }
}
@keyframes loader_rotate_2 {
  0% {
    background: #1A3C69;
  }
  50% {
    background: #00A0E9;
  }
}
/*-----------------------------------------
  page_top_wrap
-----------------------------------------*/
#page_top_wrap {
  position: fixed;
  right: 1%;
  bottom: 20px;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  #page_top_wrap {
    position: relative;
    inset: inherit;
    margin: 0 auto 60px;
    width: 100%;
    text-align: center;
  }
}
#page_top_wrap #page_top {
  width: 47px;
  height: 47px;
  background: url("/img/common/pagetop_arrow.svg") no-repeat center center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /* hover */
}
@media (hover: hover) and (pointer: fine) {
  #page_top_wrap #page_top:hover {
    opacity: 0.8;
  }
  #page_top_wrap #page_top:hover img {
    -webkit-animation: 6s linear infinite rotation;
            animation: 6s linear infinite rotation;
  }
}

#site_index #page_top_wrap {
  position: static;
  margin: 0 auto 120px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #site_index #page_top_wrap {
    margin: 0 auto 60px;
  }
}
#site_index #page_top_wrap #page_top {
  width: 100px;
  height: 100px;
  background: url("/img/common/pagetop_arrow.svg") no-repeat center center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /* hover */
}
@media screen and (max-width: 767px) {
  #site_index #page_top_wrap #page_top {
    width: 50px;
    height: 50px;
    background-size: 24px 24px;
  }
}
@media (hover: hover) and (pointer: fine) {
  #site_index #page_top_wrap #page_top:hover {
    opacity: 0.8;
  }
  #site_index #page_top_wrap #page_top:hover img {
    -webkit-animation: 6s linear infinite rotation;
            animation: 6s linear infinite rotation;
  }
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*-----------------------------------------
  parts
-----------------------------------------*/
a {
  color: #1A3C69;
}

@media screen and (max-width: 767px) {
  button {
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
}

/* .text_link */
.text_link {
  color: #1A3C69;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  /* hover */
}
.text_link::after {
  content: "";
  font-family: "kichd_icon";
  display: inline-block;
  margin-left: 8px;
}
.text_link[target=_blank]::after {
  content: "\e904";
}
.text_link[href$=".pdf"]::after {
  position: relative;
  top: 4px;
  content: "";
  width: 17px;
  height: 21px;
  background: url("/img/common/icon_pdf.svg") no-repeat center center;
  background-size: 17px 21px;
}
@media (hover: hover) and (pointer: fine) {
  .text_link:hover {
    opacity: 0.6;
  }
}

/* .btn */
.btn {
  position: relative;
  display: table;
  overflow: hidden;
  padding: 8px 50px 8px 24px;
  min-width: 160px;
  border: 1px solid #333333;
  color: #333333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  /* hover */
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    opacity: 1 !important;
  }
  .btn:hover::before {
    width: 100%;
    background: #F4F9FF;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .btn:hover::after {
    -webkit-transform: translate3d(7px, 0, 0);
            transform: translate3d(7px, 0, 0);
  }
}
@media screen and (max-width: 767px) {
  .btn {
    min-width: initial;
    font-size: 1.4rem;
    line-height: 1.3571428571;
    padding: 10px 55px 10px 16px;
  }
}
.btn::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: #F4F9FF;
  content: "";
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.btn::after {
  position: absolute;
  inset: 0 16px 0 auto;
  z-index: 2;
  display: block;
  width: 14px;
  height: 14px;
  background: url("/img/common/icon_arrow.svg") no-repeat center center;
  background-size: 14px 14px;
  content: "";
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-block: auto;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn:disabled {
  background: #DDDDDD !important;
  border: 1px solid #DDDDDD !important;
  pointer-events: none;
}
.btn.basic {
  padding: 16px;
  min-width: 280px;
  border: 1px solid #1A3C69;
  background: #1A3C69;
  color: #ffffff;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /* hover */
}
@media (hover: hover) and (pointer: fine) {
  .btn.basic:hover {
    color: #1A3C69;
    border: 1px solid #1A3C69;
  }
  .btn.basic:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
.btn.basic::before {
  background: #ffffff;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.btn.basic::after {
  content: none;
}
.btn.back {
  padding: 8px 24px 8px 50px;
  /* hover */
}
@media (hover: hover) and (pointer: fine) {
  .btn.back:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .btn.back:hover::after {
    -webkit-transform: translate3d(-7px, 0, 0) scale(-1, 1);
            transform: translate3d(-7px, 0, 0) scale(-1, 1);
  }
}
.btn.back::before {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.btn.back::after {
  -webkit-transform: translate3d(0, 0, 0) scale(-1, 1);
          transform: translate3d(0, 0, 0) scale(-1, 1);
  inset: 0 auto 0 16px;
}
.btn.contact {
  display: inline-flex;      /* inline-block と同じふるまい＋Flexbox */
  align-items: center;       /* 垂直方向センタリング */
  justify-content: center;   /* 水平方向センタリング */

  border: 1px solid #333333;
  color: #333333;
  /* padding や width/height はそのまま */
}
@media (hover: hover) and (pointer: fine) {
  .btn.contact:hover {
    color: #333333;
    border: 1px solid #333333;
  }
  .btn.contact:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .btn.contact:hover::after {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.btn.contact::before {
  background: #ffffff;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.btn.contact::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .btn.contact::after {
    inset: 4px 16px 0 auto;
  }
}
.btn.movie {
  border: 1px solid #627e78;
  background: #627e78;
  color: #ffffff;
  padding-inline: 16px 43px;
  /* hover */
}
@media (hover: hover) and (pointer: fine) {
  .btn.movie:hover {
    color: #627e78;
    border: 1px solid #627e78;
  }
  .btn.movie:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .btn.movie:hover::after {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.btn.movie::before {
  background: #ffffff;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.btn.movie::after {
  inset: 0 16px 0 auto;
  width: 22px;
  height: 17px;
  background: none;
  font-family: "kichd_icon";
  font-size: 1.7rem;
  line-height: 1;
  content: "\e903";
}
@media screen and (max-width: 767px) {
  .btn.movie::after {
    inset: 4px 16px 0 auto;
  }
}
.btn.map {
  border: 1px solid #333333;
  background: #ffffff;
  color: #333333;
  padding-inline: 16px 43px;
  /* hover */
}
@media (hover: hover) and (pointer: fine) {
  .btn.map:hover {
    color: #333333;
    border: 1px solid #333333;
  }
  .btn.map:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .btn.map:hover::after {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.btn.map::before {
  background: #F4F9FF;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.btn.map::after {
  inset: 0 16px 0 auto;
  width: 17px;
  height: 22px;
  background: none;
  font-family: "kichd_icon";
  font-size: 2.2rem;
  line-height: 1;
  content: "\e902";
}
@media screen and (max-width: 767px) {
  .btn.map::after {
    inset: 4px 16px 0 auto;
  }
}

/* .btn_clm */
.btn_clm {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .btn_clm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 8px;
    margin-inline: auto;
  }
  .btn_clm .btn {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* select */
.select_wrap {
  width: 280px;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .select_wrap {
    width: 100%;
    max-width: 280px;
  }
}
.select_wrap::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("/img/common/icon_arrow_line.svg") no-repeat center center;
  background-size: 14px 14px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 16px;
}
.select_wrap select {
  width: 100%;
  padding: 12px 48px 12px 13px;
  background: #ffffff;
  border: 1px solid #DDDDDD;
}

input[type=text],
input[type=email],
input[type=tel] {
  padding: 12px 18px;
  border: 1px solid #DDDDDD;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder {
  color: #bababa;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder {
  color: #bababa;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder {
  color: #bababa;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder {
  color: #bababa;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
  color: #bababa;
}

textarea {
  padding: 12px 18px;
  border: 1px solid #DDDDDD;
}
textarea::-webkit-input-placeholder {
  color: #bababa;
}
textarea::-moz-placeholder {
  color: #bababa;
}
textarea:-ms-input-placeholder {
  color: #bababa;
}
textarea::-ms-input-placeholder {
  color: #bababa;
}
textarea::placeholder {
  color: #bababa;
}

/* radio */
.radio_wrap label {
  cursor: pointer;
}
.radio_wrap label input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio_wrap label input[type=radio] + span {
  position: relative;
  padding-left: 31px;
}
.radio_wrap label input[type=radio] + span::before {
  content: "";
  width: 23px;
  height: 23px;
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid #DDDDDD;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.radio_wrap label input[type=radio] + span::after {
  opacity: 0;
  content: "";
  width: 11px;
  height: 11px;
  background: #1A3C69;
  position: absolute;
  top: 8px;
  left: 6px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 9999px;
  cursor: pointer;
}
.radio_wrap label input[type=radio]:checked + span::after {
  opacity: 1;
}

/* checkbox */
.input_checkbox {
  position: relative;
  cursor: pointer;
}
.input_checkbox input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #aeaeae;
  border-radius: 2px;
}
.input_checkbox input[type=checkbox] + span {
  position: relative;
  padding-left: 31px;
}
.input_checkbox input[type=checkbox] + span:before {
  opacity: 0;
  position: absolute;
  top: 6px;
  left: 8px;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  width: 8px;
  height: 12px;
  border-right: 2px solid #1A3C69;
  border-bottom: 2px solid #1A3C69;
  content: "";
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.input_checkbox input[type=checkbox]:checked + span:before {
  opacity: 1;
}

.text_small {
  font-size: 1.4rem;
}

/*-----------------------------------------
  tab
-----------------------------------------*/
.tab_field {
  /* tab */
  /* tab content */
}
.tab_field .tab_wrap {
  position: relative;
  z-index: 1;
  display: block;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tab_field .tab_wrap::-webkit-scrollbar {
  height: 2px;
}
.tab_field .tab_wrap::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background-color: #DDDDDD;
}
@media screen and (max-width: 767px) {
  .tab_field .tab_wrap {
    /* tab */
    margin-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tab_field .tab_wrap > li > a {
    min-width: 80px;
  }
}
.tab_field .tab_wrap > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  /* hover */
}
@media (hover: hover) and (pointer: fine) {
  .tab_field .tab_wrap > li:hover a {
    color: #1A3C69;
  }
}
.tab_field .tab_wrap > li::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 40px;
  background: #DDDDDD;
}
@media screen and (min-width: 768px) {
  .tab_field .tab_wrap > li:last-child::after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .tab_field .tab_wrap > li {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    border-bottom: 1px solid #DDDDDD;
  }
  .tab_field .tab_wrap > li:nth-child(even)::after {
    content: none;
  }
  .tab_field .tab_wrap > li:last-child, .tab_field .tab_wrap > li:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  .tab_field .tab_wrap > li:last-child:nth-child(odd) {
    width: 100%;
  }
  .tab_field .tab_wrap > li:last-child:nth-child(odd)::after {
    content: none;
  }
}
.tab_field .tab_wrap > li.is_active {
  background: #F4F9FF;
  /* hover */
}
@media (hover: hover) and (pointer: fine) {
  .tab_field .tab_wrap > li.is_active:hover::after {
    opacity: 0.1;
  }
}
.tab_field .tab_wrap > li.is_active a {
  color: #1A3C69;
  font-weight: 700;
}
.tab_field .tab_wrap > li.is_active a > span {
  position: relative;
}
.tab_field .tab_wrap > li.is_active a > span::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 0 0 5px 5px;
  background: #000000;
  opacity: 1;
}
.tab_field .tab_wrap > li.is_active a > span > i {
  color: #1A3C69;
}
.tab_field .tab_wrap > li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #333333;
  text-align: center;
  white-space: nowrap;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.3125;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  /* hover */
}
@media (hover: hover) and (pointer: fine) {
  .tab_field .tab_wrap > li a:hover {
    color: #1A3C69;
  }
}
.tab_field .tab_wrap > li a > span {
  display: inline-block;
  padding: 16px;
}
.tab_field .tab_wrap > li a > span::after {
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.tab_field .tab_wrap > li a > span > i {
  font-size: 1.4rem;
  line-height: 1;
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .tab_field .tab_wrap > li a > span {
    white-space: wrap;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.tab_field .tab_cont_all {
  position: relative;
}
.tab_field .tab_cont {
  position: absolute;
  width: 100%;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.tab_field .tab_cont.is_active {
  opacity: 1;
}
.tab_field .tab_cont:not(.is_active) {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .tab_field--parent > .tab_wrap {
    margin-bottom: 36px;
  }
}
.tab_field--parent > .tab_wrap > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.tab_field--parent > .tab_wrap > li a {
  padding: 20px;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .tab_field--parent > .tab_wrap > li a {
    padding: 10px 8px;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.tab_field--parent > .tab_wrap > li a .number {
  margin-left: 8px;
  color: rgba(34, 34, 34, 0.5);
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
  .tab_field--parent > .tab_wrap > li a .number {
    display: block;
    margin-left: 0;
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}

/*-----------------------------------------
  NEWS
-----------------------------------------*/
.news_list > li {
  border-bottom: 1px solid #DDDDDD;
}
.news_list > li:first-child {
  border-top: 1px solid #DDDDDD;
}
.news_list > li a {
  position: relative;
  gap: 8px 24px;
  padding: 25px 15px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /* hover */
}
.news_list > li a::after {
  z-index: 2;
  display: block;
  width: 14px;
  height: 14px;
  background: url("/img/common/icon_arrow.svg") no-repeat center center;
  background-size: 14px 14px;
  content: "";
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .news_list > li a:hover {
    color: #1A3C69;
    opacity: 1 !important;
  }
  .news_list > li a:hover::after {
    -webkit-transform: translate3d(7px, 0, 0);
            transform: translate3d(7px, 0, 0);
  }
}
.news_list > li a[href$=".pdf"]::after {
  content: none;
}
.news_list > li time {
  display: inline-block;
  font-family: "Times New Roman", "Zen Old Mincho", Times, serif;
  font-size: 1.6rem;
  line-height: 2;
}
.news_list > li .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 2;
}
.news_list > li .size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #676767;
  font-size: 1.6rem;
  line-height: 1.25;
}
.news_list > li .size::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 21px;
  background: url("/img/common/icon_pdf.svg") no-repeat center center;
  background-size: 17px 21px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 2;
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .news_list > li a {
    gap: 6px 9px;
    padding: 12px 0;
  }
  .news_list > li .title {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
  .news_list > li .size {
    margin-inline: auto 0;
  }
}

/* .label */
.label {
  display: inline-block;
  padding: 3px 10px;
  min-width: 112px;
  background: #081F50;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5;
}
.label.property_info {
  background: #081F50;
}
.label.financial_results {
  background: #00A0E9;
}
.label.us_news {
  background: #00A0E9;
}
.label.real_estate_column {
  background: #00A0E9;
}
.label.notice {
  background: #00A0E9;
}

/* .pager */
.pager {
  position: relative;
  display: table;
  margin: 40px auto 0;
}
.pager > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 48px;
  gap: 4px;
}
.pager > ul li a {
  width: 32px;
  height: 32px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /* hover */
}
@media (hover: hover) and (pointer: fine) {
  .pager > ul li a:hover {
    background: #F4F9FF;
  }
}
.pager > ul li.active a {
  color: #1A3C69;
  background: #F4F9FF;
}
.pager > ul li.prev {
  left: 0;
}
.pager > ul li.prev a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.pager > ul li.next {
  right: 0;
}
.pager > ul li.next a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.pager > ul li.prev, .pager > ul li.next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pager > ul li.prev.disabled a, .pager > ul li.next.disabled a {
  background: #DDDDDD;
  pointer-events: none;
}
.pager > ul li.prev a, .pager > ul li.next a {
  width: 32px;
  height: 32px;
  background: #081F50;
  /* hover */
}
@media (hover: hover) and (pointer: fine) {
  .pager > ul li.prev a:hover, .pager > ul li.next a:hover {
    background: rgba(8, 31, 80, 0.8);
  }
}
.pager > ul li.prev a::before, .pager > ul li.next a::before {
  font-family: "kichd_icon";
  content: "\e900";
  font-size: 1rem;
  color: #ffffff;
}
.pager > ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  background: #F7F7F7;
}
.pager > ul li .dots {
  display: inline-block;
}

/* =======================================

  LAYOUT

======================================= */
/* =======================================

  HEADER

======================================= */
body:not(#site_index) header {
  background: #ffffff;
}

header {
  position: absolute;
  z-index: 10;
  min-width: 980px;
  width: 100%;
  height: 96px;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-backdrop-filter: blur(20px) brightness(1.3) contrast(105%);
          backdrop-filter: blur(20px) brightness(1.3) contrast(105%);
  padding-inline: 4% 0;
  /* fixed */
  /* .glonav */
  /* .language_field */
  /* #toggle_btn */
}
@media screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0 !important;
    display: block;
    padding: 0;
    min-width: initial;
    height: 50px;
    background: #ffffff;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  header .glonav > ul > li.parent {
    /* hover */
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  header .glonav > ul > li.parent:hover > a,
  header .glonav > ul > li.parent:hover > span {
    color: #1A3C69;
  }
  header .glonav > ul > li.parent:hover > a::after,
  header .glonav > ul > li.parent:hover > span::after {
    width: 80%;
  }
  header .glonav > ul > li.parent:hover .lower_list_field {
    visibility: visible;
    height: auto;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
}
@media screen and (min-width: 768px) {
  header .glonav > ul > li.parent .lower_list_field {
    display: block !important;
  }
  header .glonav > ul > li.parent:focus-within .lower_list_field {
    visibility: visible;
    height: auto;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
}
header .site_logo {
  display: block;
  min-width: 100px;
  width: 182px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  header .site_logo {
    padding-left: 2%;
    min-width: initial;
    width: 100px;
    height: 50px;
  }
}
header .site_logo > a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  header .site_logo > a:focus-visible {
    outline: none;
  }
}
header .site_logo > a img {
  width: 100%;
  caret-color: transparent;
}
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  background: #ffffff;
  -webkit-box-shadow: 0 1px 1px rgba(51, 51, 51, 0.16);
          box-shadow: 0 1px 1px rgba(51, 51, 51, 0.16);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding-inline: 3% 0;
}
header.fixed .site_logo {
  width: 120px;
}
header .glonav {
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /* .lower_list_field */
  /* .lower_list */
  /* .lower_clm_wrap */
}
@media screen and (max-width: 767px) {
  header .glonav {
    z-index: 12;
    visibility: hidden;
    overflow-y: auto;
    height: 0;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .glonav > ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  header .glonav > ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    gap: 0;
    padding: 20px 2% 40px;
    height: auto;
    background: #F7F7F7;
    -webkit-box-shadow: 0 6px 4px rgba(51, 51, 51, 0.5);
            box-shadow: 0 6px 4px rgba(51, 51, 51, 0.5);
  }
}
header .glonav > ul > li {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  header .glonav > ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    width: 100%;
  }
}
header .glonav > ul > li > span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #333333;
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.4375;
  padding-inline: 24px;
}
header .glonav > ul > li > span {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  header .glonav > ul > li > span {
    pointer-events: auto;
  }
}
@media screen and (max-width: 767px) {
  header .glonav > ul > li:first-child {
    border-top: 1px solid #ffffff;
  }
}
@media screen and (max-width: 767px) {
  header .glonav > ul .parent > span {
    padding: 16px;
    border-bottom: 1px solid #ffffff;
    font-weight: 400;
  }
}
header .glonav > ul .parent > span::after {
  position: absolute;
  inset: auto 0 0;
  display: block;
  width: 0;
  height: 4px;
  background: #333333;
  content: "";
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  header .glonav > ul .parent > span::after {
    inset: 0 9px 0 auto;
    margin: auto;
    width: 16px;
    height: 2px;
  }
}
@media screen and (max-width: 767px) {
  header .glonav > ul .parent > span::before {
    position: absolute;
    inset: 0 16px 0 auto;
    display: block;
    margin: auto;
    width: 2px;
    height: 16px;
    background: #333333;
    content: "";
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
}
@media screen and (max-width: 767px) {
  header .glonav > ul .parent > span.on::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
header .glonav > ul > li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 168px;
  height: 100%;
  color: #ffffff;
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.4375;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  header .glonav > ul > li > a {
    margin: auto;
    width: 100%;
  }
}
header .glonav > ul > li > a::before {
  display: block;
  width: 28px;
  height: 28px;
  content: "";
}
header .glonav > ul > li > .losistics {
  background: #081F50;
}
@media (hover: hover) and (pointer: fine) {
  header .glonav > ul > li > .losistics:hover {
    background: rgba(8, 31, 80, 0.8);
  }
}
header .glonav > ul > li > .losistics::before {
  background: url("/img/common/icon_logistics.svg") no-repeat center center;
}
header .glonav > ul > li > .contact {
  background: #a18e5e;
}
@media (hover: hover) and (pointer: fine) {
  header .glonav > ul > li > .contact:hover {
    background: rgba(161, 142, 94, 0.8);
  }
}
header .glonav > ul > li > .contact::before {
  <!-- background: url("/img/common/icon_mail.svg") no-repeat center center; -->
}
@media screen and (max-width: 767px) {
  header .glonav > ul > li:not(.parent) {
    margin-top: 40px;
    width: calc(50% - 4px);
    height: 50px;
  }
}
header .glonav .lower_list_field {
  position: absolute;
  inset: 96px 0 auto;
  z-index: 10;
  visibility: hidden;
  min-width: 980px;
  width: 100%;
  height: 0;
  border-top: 1px solid #ddd;
  background: #F7F7F7;
  -webkit-box-shadow: 0 6px 4px rgba(51, 51, 51, 0.5);
          box-shadow: 0 6px 4px rgba(51, 51, 51, 0.5);
  opacity: 0;
  -webkit-transform: translate3d(0, -20px, 0);
          transform: translate3d(0, -20px, 0);
  -webkit-transition: top 0.3s ease-out;
  transition: top 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  header .glonav .lower_list_field {
    position: relative;
    inset: 0;
    visibility: visible;
    min-width: inherit;
    height: auto;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
header .glonav .lower_list {
  margin: auto;
  padding: 30px 5%;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  header .glonav .lower_list {
    padding: 0;
    opacity: 0;
  }
}
header .glonav .lower_list > div {
  width: 30%;
  color: #333333;
  font-family: "Times New Roman", "Zen Old Mincho", Times, serif;
  font-size: 4rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  header .glonav .lower_list > div {
    display: none;
  }
}
header .glonav .lower_list > div > span {
  position: relative;
  display: block;
  margin-top: 8px;
  padding-left: 40px;
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
header .glonav .lower_list > div > span::before {
  position: absolute;
  inset: -4px auto 0 16px;
  display: block;
  width: 2px;
  height: 30px;
  background: #333333;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .glonav .lower_list > nav {
  width: 70%;
}
@media screen and (max-width: 767px) {
  header .glonav .lower_list > nav {
    width: 100%;
  }
}
header .glonav .lower_clm_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  header .glonav .lower_clm_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    gap: 0;
    padding-block: 8px;
  }
}
header .glonav .lower_clm_wrap > li {
  width: calc(33.3333333333% - 5.3333333333px);
  height: 76px;
  background: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  header .glonav .lower_clm_wrap > li {
    width: 100%;
    height: auto;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
header .glonav .lower_clm_wrap > li > a {
  position: relative;
  height: 100%;
  color: #333333;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /* hover */
  padding-inline: 16px;
}
@media screen and (max-width: 767px) {
  header .glonav .lower_clm_wrap > li > a {
    padding-block: 1px;
  }
}
@media (hover: hover) and (pointer: fine) {
  header .glonav .lower_clm_wrap > li > a:hover {
    background: #F4F9FF;
  }
  header .glonav .lower_clm_wrap > li > a:hover::after {
    -webkit-transform: translate3d(7px, 0, 0);
            transform: translate3d(7px, 0, 0);
  }
}
header .glonav .lower_clm_wrap > li > a::after {
  position: absolute;
  inset: 0 16px 0 auto;
  display: block;
  width: 14px;
  height: 14px;
  background: url("/img/common/icon_arrow.svg") no-repeat center center;
  background-size: 14px 14px;
  content: "";
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-block: auto;
}
@media screen and (max-width: 767px) {
  header .glonav .lower_clm_wrap > li > a::after {
    display: none;
  }
}
header.fixed .glonav .lower_list_field {
  inset: 60px 0 auto;
}
header.fixed .language_field {
  width: 60px;
}
header .language_field {
  position: relative;
  width: 96px;
  height: 100%;
  background: #333333;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  header .language_field:hover {
    background: rgba(51, 51, 51, 0.8);
  }
}
@media screen and (max-width: 767px) {
  header .language_field {
    position: fixed;
    top: 0;
    right: 50px;
    width: 50px;
    height: 50px;
  }
}
header .language_field a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  header .language_field a {
    font-size: 0.8rem;
    line-height: 1.25;
  }
}
header .language_field a::before {
  display: block;
  width: 24px;
  height: 24px;
  background: url("/img/common/icon_lang.svg") no-repeat center center;
  content: "";
}
header #toggle_btn {
  z-index: 1;
  display: none;
}
@media screen and (max-width: 767px) {
  header #toggle_btn {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 50px;
    height: 50px;
  }
  header #toggle_btn > span {
    position: absolute;
    right: 0;
    left: 0;
    display: inline-block;
    margin: auto;
    width: 20px;
    height: 2px;
    background: #333333;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header #toggle_btn > span:nth-of-type(1) {
    top: calc(50% - 7px);
  }
  header #toggle_btn > span:nth-of-type(3) {
    top: calc(50% + 7px);
  }
}

/* .menu_open */
@media screen and (max-width: 767px) {
  .menu_open header {
    /* #toggle_btn */
  }
  .menu_open header .glonav {
    visibility: visible;
    width: 100%;
    height: 100svh;
    background: rgba(51, 51, 51, 0.7);
    opacity: 1;
  }
  .menu_open header #toggle_btn > span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) translateX(-3.5px) rotate(45deg);
            transform: translate(-50%, -50%) translateX(-3.5px) rotate(45deg);
  }
  .menu_open header #toggle_btn > span:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: translateX(10%) translateX(3.5px) rotate(0);
            transform: translateX(10%) translateX(3.5px) rotate(0);
  }
  .menu_open header #toggle_btn > span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) translateX(-3.5px) rotate(-45deg);
            transform: translate(-50%, -50%) translateX(-3.5px) rotate(-45deg);
  }
  .switch_btn.on + .lower_list_field .lower_list {
    margin: 0 auto;
    padding-bottom: 0;
    height: 100%;
    border-bottom: 1px solid #ffffff;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .switch_btn.on + .lower_list_field .lower_list a {
    padding-block: 8px;
  }
}
/* =======================================

  FOOTER

======================================= */
footer {
  background: #333333;
  padding-block: 60px 40px;
  /* .sns_wrap */
}
@media screen and (max-width: 767px) {
  footer {
    padding-block: 40px;
  }
}
footer .footer_field > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  gap: 0 24px;
  margin: 0 auto;
  max-height: 250px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .footer_field > ul {
    max-height: initial;
    border-top: 1px solid rgba(211, 211, 211, 0.5);
  }
}
footer .footer_field > ul > li {
  width: calc((100% - 72px) / 4);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  footer .footer_field > ul > li {
    width: 100%;
    margin-bottom: 0;
  }
}
footer .footer_field > ul > li:nth-child(2) {
  height: 139px;
}
@media screen and (max-width: 767px) {
  footer .footer_field > ul > li:nth-child(2) {
    height: initial;
  }
}
footer .footer_field > ul > li > a,
footer .footer_field > ul > li > span {
  display: block;
  overflow: hidden;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(211, 211, 211, 0.5);
  color: #d3d3d3;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  footer .footer_field > ul > li > a,
  footer .footer_field > ul > li > span {
    margin-bottom: 0;
    padding-block: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  footer .footer_field > ul > li > a:hover {
    color: #ffffff;
  }
}
footer .footer_field > ul > li .lower_list a {
  display: block;
  margin-bottom: 10px;
  color: #d3d3d3;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media (hover: hover) and (pointer: fine) {
  footer .footer_field > ul > li .lower_list a:hover {
    color: #ffffff;
  }
}
footer .sns_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  footer .sns_wrap {
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .sns_wrap > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer_copy_field {
  margin-top: 40px;
  width: 100%;
  text-align: center;
}
footer .footer_copy_field small {
  color: #fff;
  letter-spacing: 0.3rem;
  font-family: "Times New Roman", "Zen Old Mincho", Times, serif;
  font-size: 1rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  li {
    position: relative;
  }
  li .lower_list_field .switch_btn {
    position: absolute;
    inset: 13px 5px auto auto;
    z-index: 5;
    display: block;
    width: 32px;
    height: 32px;
    text-align: center;
    cursor: pointer;
  }
  li .lower_list_field .switch_btn::after, li .lower_list_field .switch_btn::before {
    position: absolute;
    inset: -2px 0 0 0;
    display: block;
    margin: auto;
    width: 16px;
    height: 2px;
    background: #d3d3d3;
    content: "";
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  li .lower_list_field .switch_btn::after {
    width: 2px;
    height: 16px;
  }
  li .lower_list_field .lower_list {
    display: block;
    overflow: hidden;
    margin: 0;
    height: 0;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  li .lower_list_field .switch_btn.on::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  li .lower_list_field .switch_btn.on + .lower_list {
    margin: 20px auto 0;
    padding-bottom: 16px;
    height: 100%;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    border-bottom: 1px solid rgba(211, 211, 211, 0.5);
  }
}
/* =======================================

  UTILITY

======================================= */
/*-----------------------------------------
  color
-----------------------------------------*/
.color_primary {
  color: #1A3C69 !important;
}

.color_secondary {
  color: #00A0E9 !important;
}

.color_black {
  color: #000000 !important;
}

/*-----------------------------------------
  font_size
-----------------------------------------*/
.fs_l {
  font-size: 1.8rem;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
  .fs_l {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}

.fs_m {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .fs_m {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.fs_s {
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .fs_s {
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}

.fs_xs {
  font-size: 1.2rem;
  line-height: 1.8333333333;
}
@media screen and (max-width: 767px) {
  .fs_xs {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

/*-----------------------------------------
  font_wight
-----------------------------------------*/
.fw_400 {
  font-weight: 400 !important;
}

.fw_500 {
  font-weight: 500 !important;
}

.fw_600 {
  font-weight: 600 !important;
}

.fw_700 {
  font-weight: 700 !important;
}

/*-----------------------------------------
  font
-----------------------------------------*/
.ff_en {
  font-family: "Times New Roman", "Zen Old Mincho", Times, serif !important;
}

/*-----------------------------------------
  align
-----------------------------------------*/
.align_r {
  text-align: right !important;
}

.align_c {
  text-align: center !important;
}

.align_l {
  text-align: left !important;
}

.v_align_t {
  vertical-align: top !important;
}

.v_align_m {
  vertical-align: middle !important;
}

.v_align_b {
  vertical-align: bottom !important;
}

/*-----------------------------------------
  flex
-----------------------------------------*/
.row_reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.column_reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

/*-----------------------------------------
  display
-----------------------------------------*/
.pc {
  display: block !important;
}

.pc_flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.pc_inline {
  display: inline !important;
}

.sp {
  display: none !important;
}

.sp_inline {
  display: none !important;
}

.dib {
  display: inline-block !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .pc_flex {
    display: none !important;
  }
  .pc_inline {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp_inline {
    display: inline !important;
  }
}
/*-----------------------------------------
  width
-----------------------------------------*/
.w_1 {
  width: 1% !important;
}

.w_max_1 {
  max-width: 1% !important;
}

.w_min_1 {
  min-width: 1% !important;
}

.w_2 {
  width: 2% !important;
}

.w_max_2 {
  max-width: 2% !important;
}

.w_min_2 {
  min-width: 2% !important;
}

.w_3 {
  width: 3% !important;
}

.w_max_3 {
  max-width: 3% !important;
}

.w_min_3 {
  min-width: 3% !important;
}

.w_4 {
  width: 4% !important;
}

.w_max_4 {
  max-width: 4% !important;
}

.w_min_4 {
  min-width: 4% !important;
}

.w_5 {
  width: 5% !important;
}

.w_max_5 {
  max-width: 5% !important;
}

.w_min_5 {
  min-width: 5% !important;
}

.w_6 {
  width: 6% !important;
}

.w_max_6 {
  max-width: 6% !important;
}

.w_min_6 {
  min-width: 6% !important;
}

.w_7 {
  width: 7% !important;
}

.w_max_7 {
  max-width: 7% !important;
}

.w_min_7 {
  min-width: 7% !important;
}

.w_8 {
  width: 8% !important;
}

.w_max_8 {
  max-width: 8% !important;
}

.w_min_8 {
  min-width: 8% !important;
}

.w_9 {
  width: 9% !important;
}

.w_max_9 {
  max-width: 9% !important;
}

.w_min_9 {
  min-width: 9% !important;
}

.w_10 {
  width: 10% !important;
}

.w_max_10 {
  max-width: 10% !important;
}

.w_min_10 {
  min-width: 10% !important;
}

.w_11 {
  width: 11% !important;
}

.w_max_11 {
  max-width: 11% !important;
}

.w_min_11 {
  min-width: 11% !important;
}

.w_12 {
  width: 12% !important;
}

.w_max_12 {
  max-width: 12% !important;
}

.w_min_12 {
  min-width: 12% !important;
}

.w_13 {
  width: 13% !important;
}

.w_max_13 {
  max-width: 13% !important;
}

.w_min_13 {
  min-width: 13% !important;
}

.w_14 {
  width: 14% !important;
}

.w_max_14 {
  max-width: 14% !important;
}

.w_min_14 {
  min-width: 14% !important;
}

.w_15 {
  width: 15% !important;
}

.w_max_15 {
  max-width: 15% !important;
}

.w_min_15 {
  min-width: 15% !important;
}

.w_16 {
  width: 16% !important;
}

.w_max_16 {
  max-width: 16% !important;
}

.w_min_16 {
  min-width: 16% !important;
}

.w_17 {
  width: 17% !important;
}

.w_max_17 {
  max-width: 17% !important;
}

.w_min_17 {
  min-width: 17% !important;
}

.w_18 {
  width: 18% !important;
}

.w_max_18 {
  max-width: 18% !important;
}

.w_min_18 {
  min-width: 18% !important;
}

.w_19 {
  width: 19% !important;
}

.w_max_19 {
  max-width: 19% !important;
}

.w_min_19 {
  min-width: 19% !important;
}

.w_20 {
  width: 20% !important;
}

.w_max_20 {
  max-width: 20% !important;
}

.w_min_20 {
  min-width: 20% !important;
}

.w_21 {
  width: 21% !important;
}

.w_max_21 {
  max-width: 21% !important;
}

.w_min_21 {
  min-width: 21% !important;
}

.w_22 {
  width: 22% !important;
}

.w_max_22 {
  max-width: 22% !important;
}

.w_min_22 {
  min-width: 22% !important;
}

.w_23 {
  width: 23% !important;
}

.w_max_23 {
  max-width: 23% !important;
}

.w_min_23 {
  min-width: 23% !important;
}

.w_24 {
  width: 24% !important;
}

.w_max_24 {
  max-width: 24% !important;
}

.w_min_24 {
  min-width: 24% !important;
}

.w_25 {
  width: 25% !important;
}

.w_max_25 {
  max-width: 25% !important;
}

.w_min_25 {
  min-width: 25% !important;
}

.w_26 {
  width: 26% !important;
}

.w_max_26 {
  max-width: 26% !important;
}

.w_min_26 {
  min-width: 26% !important;
}

.w_27 {
  width: 27% !important;
}

.w_max_27 {
  max-width: 27% !important;
}

.w_min_27 {
  min-width: 27% !important;
}

.w_28 {
  width: 28% !important;
}

.w_max_28 {
  max-width: 28% !important;
}

.w_min_28 {
  min-width: 28% !important;
}

.w_29 {
  width: 29% !important;
}

.w_max_29 {
  max-width: 29% !important;
}

.w_min_29 {
  min-width: 29% !important;
}

.w_30 {
  width: 30% !important;
}

.w_max_30 {
  max-width: 30% !important;
}

.w_min_30 {
  min-width: 30% !important;
}

.w_31 {
  width: 31% !important;
}

.w_max_31 {
  max-width: 31% !important;
}

.w_min_31 {
  min-width: 31% !important;
}

.w_32 {
  width: 32% !important;
}

.w_max_32 {
  max-width: 32% !important;
}

.w_min_32 {
  min-width: 32% !important;
}

.w_33 {
  width: 33% !important;
}

.w_max_33 {
  max-width: 33% !important;
}

.w_min_33 {
  min-width: 33% !important;
}

.w_34 {
  width: 34% !important;
}

.w_max_34 {
  max-width: 34% !important;
}

.w_min_34 {
  min-width: 34% !important;
}

.w_35 {
  width: 35% !important;
}

.w_max_35 {
  max-width: 35% !important;
}

.w_min_35 {
  min-width: 35% !important;
}

.w_36 {
  width: 36% !important;
}

.w_max_36 {
  max-width: 36% !important;
}

.w_min_36 {
  min-width: 36% !important;
}

.w_37 {
  width: 37% !important;
}

.w_max_37 {
  max-width: 37% !important;
}

.w_min_37 {
  min-width: 37% !important;
}

.w_38 {
  width: 38% !important;
}

.w_max_38 {
  max-width: 38% !important;
}

.w_min_38 {
  min-width: 38% !important;
}

.w_39 {
  width: 39% !important;
}

.w_max_39 {
  max-width: 39% !important;
}

.w_min_39 {
  min-width: 39% !important;
}

.w_40 {
  width: 40% !important;
}

.w_max_40 {
  max-width: 40% !important;
}

.w_min_40 {
  min-width: 40% !important;
}

.w_41 {
  width: 41% !important;
}

.w_max_41 {
  max-width: 41% !important;
}

.w_min_41 {
  min-width: 41% !important;
}

.w_42 {
  width: 42% !important;
}

.w_max_42 {
  max-width: 42% !important;
}

.w_min_42 {
  min-width: 42% !important;
}

.w_43 {
  width: 43% !important;
}

.w_max_43 {
  max-width: 43% !important;
}

.w_min_43 {
  min-width: 43% !important;
}

.w_44 {
  width: 44% !important;
}

.w_max_44 {
  max-width: 44% !important;
}

.w_min_44 {
  min-width: 44% !important;
}

.w_45 {
  width: 45% !important;
}

.w_max_45 {
  max-width: 45% !important;
}

.w_min_45 {
  min-width: 45% !important;
}

.w_46 {
  width: 46% !important;
}

.w_max_46 {
  max-width: 46% !important;
}

.w_min_46 {
  min-width: 46% !important;
}

.w_47 {
  width: 47% !important;
}

.w_max_47 {
  max-width: 47% !important;
}

.w_min_47 {
  min-width: 47% !important;
}

.w_48 {
  width: 48% !important;
}

.w_max_48 {
  max-width: 48% !important;
}

.w_min_48 {
  min-width: 48% !important;
}

.w_49 {
  width: 49% !important;
}

.w_max_49 {
  max-width: 49% !important;
}

.w_min_49 {
  min-width: 49% !important;
}

.w_50 {
  width: 50% !important;
}

.w_max_50 {
  max-width: 50% !important;
}

.w_min_50 {
  min-width: 50% !important;
}

.w_51 {
  width: 51% !important;
}

.w_max_51 {
  max-width: 51% !important;
}

.w_min_51 {
  min-width: 51% !important;
}

.w_52 {
  width: 52% !important;
}

.w_max_52 {
  max-width: 52% !important;
}

.w_min_52 {
  min-width: 52% !important;
}

.w_53 {
  width: 53% !important;
}

.w_max_53 {
  max-width: 53% !important;
}

.w_min_53 {
  min-width: 53% !important;
}

.w_54 {
  width: 54% !important;
}

.w_max_54 {
  max-width: 54% !important;
}

.w_min_54 {
  min-width: 54% !important;
}

.w_55 {
  width: 55% !important;
}

.w_max_55 {
  max-width: 55% !important;
}

.w_min_55 {
  min-width: 55% !important;
}

.w_56 {
  width: 56% !important;
}

.w_max_56 {
  max-width: 56% !important;
}

.w_min_56 {
  min-width: 56% !important;
}

.w_57 {
  width: 57% !important;
}

.w_max_57 {
  max-width: 57% !important;
}

.w_min_57 {
  min-width: 57% !important;
}

.w_58 {
  width: 58% !important;
}

.w_max_58 {
  max-width: 58% !important;
}

.w_min_58 {
  min-width: 58% !important;
}

.w_59 {
  width: 59% !important;
}

.w_max_59 {
  max-width: 59% !important;
}

.w_min_59 {
  min-width: 59% !important;
}

.w_60 {
  width: 60% !important;
}

.w_max_60 {
  max-width: 60% !important;
}

.w_min_60 {
  min-width: 60% !important;
}

.w_61 {
  width: 61% !important;
}

.w_max_61 {
  max-width: 61% !important;
}

.w_min_61 {
  min-width: 61% !important;
}

.w_62 {
  width: 62% !important;
}

.w_max_62 {
  max-width: 62% !important;
}

.w_min_62 {
  min-width: 62% !important;
}

.w_63 {
  width: 63% !important;
}

.w_max_63 {
  max-width: 63% !important;
}

.w_min_63 {
  min-width: 63% !important;
}

.w_64 {
  width: 64% !important;
}

.w_max_64 {
  max-width: 64% !important;
}

.w_min_64 {
  min-width: 64% !important;
}

.w_65 {
  width: 65% !important;
}

.w_max_65 {
  max-width: 65% !important;
}

.w_min_65 {
  min-width: 65% !important;
}

.w_66 {
  width: 66% !important;
}

.w_max_66 {
  max-width: 66% !important;
}

.w_min_66 {
  min-width: 66% !important;
}

.w_67 {
  width: 67% !important;
}

.w_max_67 {
  max-width: 67% !important;
}

.w_min_67 {
  min-width: 67% !important;
}

.w_68 {
  width: 68% !important;
}

.w_max_68 {
  max-width: 68% !important;
}

.w_min_68 {
  min-width: 68% !important;
}

.w_69 {
  width: 69% !important;
}

.w_max_69 {
  max-width: 69% !important;
}

.w_min_69 {
  min-width: 69% !important;
}

.w_70 {
  width: 70% !important;
}

.w_max_70 {
  max-width: 70% !important;
}

.w_min_70 {
  min-width: 70% !important;
}

.w_71 {
  width: 71% !important;
}

.w_max_71 {
  max-width: 71% !important;
}

.w_min_71 {
  min-width: 71% !important;
}

.w_72 {
  width: 72% !important;
}

.w_max_72 {
  max-width: 72% !important;
}

.w_min_72 {
  min-width: 72% !important;
}

.w_73 {
  width: 73% !important;
}

.w_max_73 {
  max-width: 73% !important;
}

.w_min_73 {
  min-width: 73% !important;
}

.w_74 {
  width: 74% !important;
}

.w_max_74 {
  max-width: 74% !important;
}

.w_min_74 {
  min-width: 74% !important;
}

.w_75 {
  width: 75% !important;
}

.w_max_75 {
  max-width: 75% !important;
}

.w_min_75 {
  min-width: 75% !important;
}

.w_76 {
  width: 76% !important;
}

.w_max_76 {
  max-width: 76% !important;
}

.w_min_76 {
  min-width: 76% !important;
}

.w_77 {
  width: 77% !important;
}

.w_max_77 {
  max-width: 77% !important;
}

.w_min_77 {
  min-width: 77% !important;
}

.w_78 {
  width: 78% !important;
}

.w_max_78 {
  max-width: 78% !important;
}

.w_min_78 {
  min-width: 78% !important;
}

.w_79 {
  width: 79% !important;
}

.w_max_79 {
  max-width: 79% !important;
}

.w_min_79 {
  min-width: 79% !important;
}

.w_80 {
  width: 80% !important;
}

.w_max_80 {
  max-width: 80% !important;
}

.w_min_80 {
  min-width: 80% !important;
}

.w_81 {
  width: 81% !important;
}

.w_max_81 {
  max-width: 81% !important;
}

.w_min_81 {
  min-width: 81% !important;
}

.w_82 {
  width: 82% !important;
}

.w_max_82 {
  max-width: 82% !important;
}

.w_min_82 {
  min-width: 82% !important;
}

.w_83 {
  width: 83% !important;
}

.w_max_83 {
  max-width: 83% !important;
}

.w_min_83 {
  min-width: 83% !important;
}

.w_84 {
  width: 84% !important;
}

.w_max_84 {
  max-width: 84% !important;
}

.w_min_84 {
  min-width: 84% !important;
}

.w_85 {
  width: 85% !important;
}

.w_max_85 {
  max-width: 85% !important;
}

.w_min_85 {
  min-width: 85% !important;
}

.w_86 {
  width: 86% !important;
}

.w_max_86 {
  max-width: 86% !important;
}

.w_min_86 {
  min-width: 86% !important;
}

.w_87 {
  width: 87% !important;
}

.w_max_87 {
  max-width: 87% !important;
}

.w_min_87 {
  min-width: 87% !important;
}

.w_88 {
  width: 88% !important;
}

.w_max_88 {
  max-width: 88% !important;
}

.w_min_88 {
  min-width: 88% !important;
}

.w_89 {
  width: 89% !important;
}

.w_max_89 {
  max-width: 89% !important;
}

.w_min_89 {
  min-width: 89% !important;
}

.w_90 {
  width: 90% !important;
}

.w_max_90 {
  max-width: 90% !important;
}

.w_min_90 {
  min-width: 90% !important;
}

.w_91 {
  width: 91% !important;
}

.w_max_91 {
  max-width: 91% !important;
}

.w_min_91 {
  min-width: 91% !important;
}

.w_92 {
  width: 92% !important;
}

.w_max_92 {
  max-width: 92% !important;
}

.w_min_92 {
  min-width: 92% !important;
}

.w_93 {
  width: 93% !important;
}

.w_max_93 {
  max-width: 93% !important;
}

.w_min_93 {
  min-width: 93% !important;
}

.w_94 {
  width: 94% !important;
}

.w_max_94 {
  max-width: 94% !important;
}

.w_min_94 {
  min-width: 94% !important;
}

.w_95 {
  width: 95% !important;
}

.w_max_95 {
  max-width: 95% !important;
}

.w_min_95 {
  min-width: 95% !important;
}

.w_96 {
  width: 96% !important;
}

.w_max_96 {
  max-width: 96% !important;
}

.w_min_96 {
  min-width: 96% !important;
}

.w_97 {
  width: 97% !important;
}

.w_max_97 {
  max-width: 97% !important;
}

.w_min_97 {
  min-width: 97% !important;
}

.w_98 {
  width: 98% !important;
}

.w_max_98 {
  max-width: 98% !important;
}

.w_min_98 {
  min-width: 98% !important;
}

.w_99 {
  width: 99% !important;
}

.w_max_99 {
  max-width: 99% !important;
}

.w_min_99 {
  min-width: 99% !important;
}

.w_100 {
  width: 100% !important;
}

.w_max_100 {
  max-width: 100% !important;
}

.w_min_100 {
  min-width: 100% !important;
}

.w_fix_10 {
  width: 10px !important;
}

.w_fix_max_10 {
  max-width: 10px !important;
}

.w_fix_min_10 {
  min-width: 10px !important;
}

.w_fix_20 {
  width: 20px !important;
}

.w_fix_max_20 {
  max-width: 20px !important;
}

.w_fix_min_20 {
  min-width: 20px !important;
}

.w_fix_30 {
  width: 30px !important;
}

.w_fix_max_30 {
  max-width: 30px !important;
}

.w_fix_min_30 {
  min-width: 30px !important;
}

.w_fix_40 {
  width: 40px !important;
}

.w_fix_max_40 {
  max-width: 40px !important;
}

.w_fix_min_40 {
  min-width: 40px !important;
}

.w_fix_50 {
  width: 50px !important;
}

.w_fix_max_50 {
  max-width: 50px !important;
}

.w_fix_min_50 {
  min-width: 50px !important;
}

.w_fix_60 {
  width: 60px !important;
}

.w_fix_max_60 {
  max-width: 60px !important;
}

.w_fix_min_60 {
  min-width: 60px !important;
}

.w_fix_70 {
  width: 70px !important;
}

.w_fix_max_70 {
  max-width: 70px !important;
}

.w_fix_min_70 {
  min-width: 70px !important;
}

.w_fix_80 {
  width: 80px !important;
}

.w_fix_max_80 {
  max-width: 80px !important;
}

.w_fix_min_80 {
  min-width: 80px !important;
}

.w_fix_90 {
  width: 90px !important;
}

.w_fix_max_90 {
  max-width: 90px !important;
}

.w_fix_min_90 {
  min-width: 90px !important;
}

.w_fix_100 {
  width: 100px !important;
}

.w_fix_max_100 {
  max-width: 100px !important;
}

.w_fix_min_100 {
  min-width: 100px !important;
}

.w_fix_110 {
  width: 110px !important;
}

.w_fix_max_110 {
  max-width: 110px !important;
}

.w_fix_min_110 {
  min-width: 110px !important;
}

.w_fix_120 {
  width: 120px !important;
}

.w_fix_max_120 {
  max-width: 120px !important;
}

.w_fix_min_120 {
  min-width: 120px !important;
}

.w_fix_130 {
  width: 130px !important;
}

.w_fix_max_130 {
  max-width: 130px !important;
}

.w_fix_min_130 {
  min-width: 130px !important;
}

.w_fix_140 {
  width: 140px !important;
}

.w_fix_max_140 {
  max-width: 140px !important;
}

.w_fix_min_140 {
  min-width: 140px !important;
}

.w_fix_150 {
  width: 150px !important;
}

.w_fix_max_150 {
  max-width: 150px !important;
}

.w_fix_min_150 {
  min-width: 150px !important;
}

.w_fix_160 {
  width: 160px !important;
}

.w_fix_max_160 {
  max-width: 160px !important;
}

.w_fix_min_160 {
  min-width: 160px !important;
}

.w_fix_170 {
  width: 170px !important;
}

.w_fix_max_170 {
  max-width: 170px !important;
}

.w_fix_min_170 {
  min-width: 170px !important;
}

.w_fix_180 {
  width: 180px !important;
}

.w_fix_max_180 {
  max-width: 180px !important;
}

.w_fix_min_180 {
  min-width: 180px !important;
}

.w_fix_190 {
  width: 190px !important;
}

.w_fix_max_190 {
  max-width: 190px !important;
}

.w_fix_min_190 {
  min-width: 190px !important;
}

.w_fix_200 {
  width: 200px !important;
}

.w_fix_max_200 {
  max-width: 200px !important;
}

.w_fix_min_200 {
  min-width: 200px !important;
}

.w_fix_210 {
  width: 210px !important;
}

.w_fix_max_210 {
  max-width: 210px !important;
}

.w_fix_min_210 {
  min-width: 210px !important;
}

.w_fix_220 {
  width: 220px !important;
}

.w_fix_max_220 {
  max-width: 220px !important;
}

.w_fix_min_220 {
  min-width: 220px !important;
}

.w_fix_230 {
  width: 230px !important;
}

.w_fix_max_230 {
  max-width: 230px !important;
}

.w_fix_min_230 {
  min-width: 230px !important;
}

.w_fix_240 {
  width: 240px !important;
}

.w_fix_max_240 {
  max-width: 240px !important;
}

.w_fix_min_240 {
  min-width: 240px !important;
}

.w_fix_250 {
  width: 250px !important;
}

.w_fix_max_250 {
  max-width: 250px !important;
}

.w_fix_min_250 {
  min-width: 250px !important;
}

.w_fix_260 {
  width: 260px !important;
}

.w_fix_max_260 {
  max-width: 260px !important;
}

.w_fix_min_260 {
  min-width: 260px !important;
}

.w_fix_270 {
  width: 270px !important;
}

.w_fix_max_270 {
  max-width: 270px !important;
}

.w_fix_min_270 {
  min-width: 270px !important;
}

.w_fix_280 {
  width: 280px !important;
}

.w_fix_max_280 {
  max-width: 280px !important;
}

.w_fix_min_280 {
  min-width: 280px !important;
}

.w_fix_290 {
  width: 290px !important;
}

.w_fix_max_290 {
  max-width: 290px !important;
}

.w_fix_min_290 {
  min-width: 290px !important;
}

.w_fix_300 {
  width: 300px !important;
}

.w_fix_max_300 {
  max-width: 300px !important;
}

.w_fix_min_300 {
  min-width: 300px !important;
}

.w_fix_310 {
  width: 310px !important;
}

.w_fix_max_310 {
  max-width: 310px !important;
}

.w_fix_min_310 {
  min-width: 310px !important;
}

.w_fix_320 {
  width: 320px !important;
}

.w_fix_max_320 {
  max-width: 320px !important;
}

.w_fix_min_320 {
  min-width: 320px !important;
}

.w_fix_330 {
  width: 330px !important;
}

.w_fix_max_330 {
  max-width: 330px !important;
}

.w_fix_min_330 {
  min-width: 330px !important;
}

.w_fix_340 {
  width: 340px !important;
}

.w_fix_max_340 {
  max-width: 340px !important;
}

.w_fix_min_340 {
  min-width: 340px !important;
}

.w_fix_350 {
  width: 350px !important;
}

.w_fix_max_350 {
  max-width: 350px !important;
}

.w_fix_min_350 {
  min-width: 350px !important;
}

.w_fix_360 {
  width: 360px !important;
}

.w_fix_max_360 {
  max-width: 360px !important;
}

.w_fix_min_360 {
  min-width: 360px !important;
}

.w_fix_370 {
  width: 370px !important;
}

.w_fix_max_370 {
  max-width: 370px !important;
}

.w_fix_min_370 {
  min-width: 370px !important;
}

.w_fix_380 {
  width: 380px !important;
}

.w_fix_max_380 {
  max-width: 380px !important;
}

.w_fix_min_380 {
  min-width: 380px !important;
}

.w_fix_390 {
  width: 390px !important;
}

.w_fix_max_390 {
  max-width: 390px !important;
}

.w_fix_min_390 {
  min-width: 390px !important;
}

.w_fix_400 {
  width: 400px !important;
}

.w_fix_max_400 {
  max-width: 400px !important;
}

.w_fix_min_400 {
  min-width: 400px !important;
}

@media screen and (max-width: 767px) {
  .sp_full {
    width: 100% !important;
  }
  .w_sp_fix_s {
    width: 85px !important;
  }
  .w_sp_auto {
    width: auto !important;
  }
  .w_sp_1 {
    width: 1% !important;
  }
  .w_sp_max_1 {
    max-width: 1% !important;
  }
  .w_sp_min_1 {
    min-width: 1% !important;
  }
  .w_sp_2 {
    width: 2% !important;
  }
  .w_sp_max_2 {
    max-width: 2% !important;
  }
  .w_sp_min_2 {
    min-width: 2% !important;
  }
  .w_sp_3 {
    width: 3% !important;
  }
  .w_sp_max_3 {
    max-width: 3% !important;
  }
  .w_sp_min_3 {
    min-width: 3% !important;
  }
  .w_sp_4 {
    width: 4% !important;
  }
  .w_sp_max_4 {
    max-width: 4% !important;
  }
  .w_sp_min_4 {
    min-width: 4% !important;
  }
  .w_sp_5 {
    width: 5% !important;
  }
  .w_sp_max_5 {
    max-width: 5% !important;
  }
  .w_sp_min_5 {
    min-width: 5% !important;
  }
  .w_sp_6 {
    width: 6% !important;
  }
  .w_sp_max_6 {
    max-width: 6% !important;
  }
  .w_sp_min_6 {
    min-width: 6% !important;
  }
  .w_sp_7 {
    width: 7% !important;
  }
  .w_sp_max_7 {
    max-width: 7% !important;
  }
  .w_sp_min_7 {
    min-width: 7% !important;
  }
  .w_sp_8 {
    width: 8% !important;
  }
  .w_sp_max_8 {
    max-width: 8% !important;
  }
  .w_sp_min_8 {
    min-width: 8% !important;
  }
  .w_sp_9 {
    width: 9% !important;
  }
  .w_sp_max_9 {
    max-width: 9% !important;
  }
  .w_sp_min_9 {
    min-width: 9% !important;
  }
  .w_sp_10 {
    width: 10% !important;
  }
  .w_sp_max_10 {
    max-width: 10% !important;
  }
  .w_sp_min_10 {
    min-width: 10% !important;
  }
  .w_sp_11 {
    width: 11% !important;
  }
  .w_sp_max_11 {
    max-width: 11% !important;
  }
  .w_sp_min_11 {
    min-width: 11% !important;
  }
  .w_sp_12 {
    width: 12% !important;
  }
  .w_sp_max_12 {
    max-width: 12% !important;
  }
  .w_sp_min_12 {
    min-width: 12% !important;
  }
  .w_sp_13 {
    width: 13% !important;
  }
  .w_sp_max_13 {
    max-width: 13% !important;
  }
  .w_sp_min_13 {
    min-width: 13% !important;
  }
  .w_sp_14 {
    width: 14% !important;
  }
  .w_sp_max_14 {
    max-width: 14% !important;
  }
  .w_sp_min_14 {
    min-width: 14% !important;
  }
  .w_sp_15 {
    width: 15% !important;
  }
  .w_sp_max_15 {
    max-width: 15% !important;
  }
  .w_sp_min_15 {
    min-width: 15% !important;
  }
  .w_sp_16 {
    width: 16% !important;
  }
  .w_sp_max_16 {
    max-width: 16% !important;
  }
  .w_sp_min_16 {
    min-width: 16% !important;
  }
  .w_sp_17 {
    width: 17% !important;
  }
  .w_sp_max_17 {
    max-width: 17% !important;
  }
  .w_sp_min_17 {
    min-width: 17% !important;
  }
  .w_sp_18 {
    width: 18% !important;
  }
  .w_sp_max_18 {
    max-width: 18% !important;
  }
  .w_sp_min_18 {
    min-width: 18% !important;
  }
  .w_sp_19 {
    width: 19% !important;
  }
  .w_sp_max_19 {
    max-width: 19% !important;
  }
  .w_sp_min_19 {
    min-width: 19% !important;
  }
  .w_sp_20 {
    width: 20% !important;
  }
  .w_sp_max_20 {
    max-width: 20% !important;
  }
  .w_sp_min_20 {
    min-width: 20% !important;
  }
  .w_sp_21 {
    width: 21% !important;
  }
  .w_sp_max_21 {
    max-width: 21% !important;
  }
  .w_sp_min_21 {
    min-width: 21% !important;
  }
  .w_sp_22 {
    width: 22% !important;
  }
  .w_sp_max_22 {
    max-width: 22% !important;
  }
  .w_sp_min_22 {
    min-width: 22% !important;
  }
  .w_sp_23 {
    width: 23% !important;
  }
  .w_sp_max_23 {
    max-width: 23% !important;
  }
  .w_sp_min_23 {
    min-width: 23% !important;
  }
  .w_sp_24 {
    width: 24% !important;
  }
  .w_sp_max_24 {
    max-width: 24% !important;
  }
  .w_sp_min_24 {
    min-width: 24% !important;
  }
  .w_sp_25 {
    width: 25% !important;
  }
  .w_sp_max_25 {
    max-width: 25% !important;
  }
  .w_sp_min_25 {
    min-width: 25% !important;
  }
  .w_sp_26 {
    width: 26% !important;
  }
  .w_sp_max_26 {
    max-width: 26% !important;
  }
  .w_sp_min_26 {
    min-width: 26% !important;
  }
  .w_sp_27 {
    width: 27% !important;
  }
  .w_sp_max_27 {
    max-width: 27% !important;
  }
  .w_sp_min_27 {
    min-width: 27% !important;
  }
  .w_sp_28 {
    width: 28% !important;
  }
  .w_sp_max_28 {
    max-width: 28% !important;
  }
  .w_sp_min_28 {
    min-width: 28% !important;
  }
  .w_sp_29 {
    width: 29% !important;
  }
  .w_sp_max_29 {
    max-width: 29% !important;
  }
  .w_sp_min_29 {
    min-width: 29% !important;
  }
  .w_sp_30 {
    width: 30% !important;
  }
  .w_sp_max_30 {
    max-width: 30% !important;
  }
  .w_sp_min_30 {
    min-width: 30% !important;
  }
  .w_sp_31 {
    width: 31% !important;
  }
  .w_sp_max_31 {
    max-width: 31% !important;
  }
  .w_sp_min_31 {
    min-width: 31% !important;
  }
  .w_sp_32 {
    width: 32% !important;
  }
  .w_sp_max_32 {
    max-width: 32% !important;
  }
  .w_sp_min_32 {
    min-width: 32% !important;
  }
  .w_sp_33 {
    width: 33% !important;
  }
  .w_sp_max_33 {
    max-width: 33% !important;
  }
  .w_sp_min_33 {
    min-width: 33% !important;
  }
  .w_sp_34 {
    width: 34% !important;
  }
  .w_sp_max_34 {
    max-width: 34% !important;
  }
  .w_sp_min_34 {
    min-width: 34% !important;
  }
  .w_sp_35 {
    width: 35% !important;
  }
  .w_sp_max_35 {
    max-width: 35% !important;
  }
  .w_sp_min_35 {
    min-width: 35% !important;
  }
  .w_sp_36 {
    width: 36% !important;
  }
  .w_sp_max_36 {
    max-width: 36% !important;
  }
  .w_sp_min_36 {
    min-width: 36% !important;
  }
  .w_sp_37 {
    width: 37% !important;
  }
  .w_sp_max_37 {
    max-width: 37% !important;
  }
  .w_sp_min_37 {
    min-width: 37% !important;
  }
  .w_sp_38 {
    width: 38% !important;
  }
  .w_sp_max_38 {
    max-width: 38% !important;
  }
  .w_sp_min_38 {
    min-width: 38% !important;
  }
  .w_sp_39 {
    width: 39% !important;
  }
  .w_sp_max_39 {
    max-width: 39% !important;
  }
  .w_sp_min_39 {
    min-width: 39% !important;
  }
  .w_sp_40 {
    width: 40% !important;
  }
  .w_sp_max_40 {
    max-width: 40% !important;
  }
  .w_sp_min_40 {
    min-width: 40% !important;
  }
  .w_sp_41 {
    width: 41% !important;
  }
  .w_sp_max_41 {
    max-width: 41% !important;
  }
  .w_sp_min_41 {
    min-width: 41% !important;
  }
  .w_sp_42 {
    width: 42% !important;
  }
  .w_sp_max_42 {
    max-width: 42% !important;
  }
  .w_sp_min_42 {
    min-width: 42% !important;
  }
  .w_sp_43 {
    width: 43% !important;
  }
  .w_sp_max_43 {
    max-width: 43% !important;
  }
  .w_sp_min_43 {
    min-width: 43% !important;
  }
  .w_sp_44 {
    width: 44% !important;
  }
  .w_sp_max_44 {
    max-width: 44% !important;
  }
  .w_sp_min_44 {
    min-width: 44% !important;
  }
  .w_sp_45 {
    width: 45% !important;
  }
  .w_sp_max_45 {
    max-width: 45% !important;
  }
  .w_sp_min_45 {
    min-width: 45% !important;
  }
  .w_sp_46 {
    width: 46% !important;
  }
  .w_sp_max_46 {
    max-width: 46% !important;
  }
  .w_sp_min_46 {
    min-width: 46% !important;
  }
  .w_sp_47 {
    width: 47% !important;
  }
  .w_sp_max_47 {
    max-width: 47% !important;
  }
  .w_sp_min_47 {
    min-width: 47% !important;
  }
  .w_sp_48 {
    width: 48% !important;
  }
  .w_sp_max_48 {
    max-width: 48% !important;
  }
  .w_sp_min_48 {
    min-width: 48% !important;
  }
  .w_sp_49 {
    width: 49% !important;
  }
  .w_sp_max_49 {
    max-width: 49% !important;
  }
  .w_sp_min_49 {
    min-width: 49% !important;
  }
  .w_sp_50 {
    width: 50% !important;
  }
  .w_sp_max_50 {
    max-width: 50% !important;
  }
  .w_sp_min_50 {
    min-width: 50% !important;
  }
  .w_sp_51 {
    width: 51% !important;
  }
  .w_sp_max_51 {
    max-width: 51% !important;
  }
  .w_sp_min_51 {
    min-width: 51% !important;
  }
  .w_sp_52 {
    width: 52% !important;
  }
  .w_sp_max_52 {
    max-width: 52% !important;
  }
  .w_sp_min_52 {
    min-width: 52% !important;
  }
  .w_sp_53 {
    width: 53% !important;
  }
  .w_sp_max_53 {
    max-width: 53% !important;
  }
  .w_sp_min_53 {
    min-width: 53% !important;
  }
  .w_sp_54 {
    width: 54% !important;
  }
  .w_sp_max_54 {
    max-width: 54% !important;
  }
  .w_sp_min_54 {
    min-width: 54% !important;
  }
  .w_sp_55 {
    width: 55% !important;
  }
  .w_sp_max_55 {
    max-width: 55% !important;
  }
  .w_sp_min_55 {
    min-width: 55% !important;
  }
  .w_sp_56 {
    width: 56% !important;
  }
  .w_sp_max_56 {
    max-width: 56% !important;
  }
  .w_sp_min_56 {
    min-width: 56% !important;
  }
  .w_sp_57 {
    width: 57% !important;
  }
  .w_sp_max_57 {
    max-width: 57% !important;
  }
  .w_sp_min_57 {
    min-width: 57% !important;
  }
  .w_sp_58 {
    width: 58% !important;
  }
  .w_sp_max_58 {
    max-width: 58% !important;
  }
  .w_sp_min_58 {
    min-width: 58% !important;
  }
  .w_sp_59 {
    width: 59% !important;
  }
  .w_sp_max_59 {
    max-width: 59% !important;
  }
  .w_sp_min_59 {
    min-width: 59% !important;
  }
  .w_sp_60 {
    width: 60% !important;
  }
  .w_sp_max_60 {
    max-width: 60% !important;
  }
  .w_sp_min_60 {
    min-width: 60% !important;
  }
  .w_sp_61 {
    width: 61% !important;
  }
  .w_sp_max_61 {
    max-width: 61% !important;
  }
  .w_sp_min_61 {
    min-width: 61% !important;
  }
  .w_sp_62 {
    width: 62% !important;
  }
  .w_sp_max_62 {
    max-width: 62% !important;
  }
  .w_sp_min_62 {
    min-width: 62% !important;
  }
  .w_sp_63 {
    width: 63% !important;
  }
  .w_sp_max_63 {
    max-width: 63% !important;
  }
  .w_sp_min_63 {
    min-width: 63% !important;
  }
  .w_sp_64 {
    width: 64% !important;
  }
  .w_sp_max_64 {
    max-width: 64% !important;
  }
  .w_sp_min_64 {
    min-width: 64% !important;
  }
  .w_sp_65 {
    width: 65% !important;
  }
  .w_sp_max_65 {
    max-width: 65% !important;
  }
  .w_sp_min_65 {
    min-width: 65% !important;
  }
  .w_sp_66 {
    width: 66% !important;
  }
  .w_sp_max_66 {
    max-width: 66% !important;
  }
  .w_sp_min_66 {
    min-width: 66% !important;
  }
  .w_sp_67 {
    width: 67% !important;
  }
  .w_sp_max_67 {
    max-width: 67% !important;
  }
  .w_sp_min_67 {
    min-width: 67% !important;
  }
  .w_sp_68 {
    width: 68% !important;
  }
  .w_sp_max_68 {
    max-width: 68% !important;
  }
  .w_sp_min_68 {
    min-width: 68% !important;
  }
  .w_sp_69 {
    width: 69% !important;
  }
  .w_sp_max_69 {
    max-width: 69% !important;
  }
  .w_sp_min_69 {
    min-width: 69% !important;
  }
  .w_sp_70 {
    width: 70% !important;
  }
  .w_sp_max_70 {
    max-width: 70% !important;
  }
  .w_sp_min_70 {
    min-width: 70% !important;
  }
  .w_sp_71 {
    width: 71% !important;
  }
  .w_sp_max_71 {
    max-width: 71% !important;
  }
  .w_sp_min_71 {
    min-width: 71% !important;
  }
  .w_sp_72 {
    width: 72% !important;
  }
  .w_sp_max_72 {
    max-width: 72% !important;
  }
  .w_sp_min_72 {
    min-width: 72% !important;
  }
  .w_sp_73 {
    width: 73% !important;
  }
  .w_sp_max_73 {
    max-width: 73% !important;
  }
  .w_sp_min_73 {
    min-width: 73% !important;
  }
  .w_sp_74 {
    width: 74% !important;
  }
  .w_sp_max_74 {
    max-width: 74% !important;
  }
  .w_sp_min_74 {
    min-width: 74% !important;
  }
  .w_sp_75 {
    width: 75% !important;
  }
  .w_sp_max_75 {
    max-width: 75% !important;
  }
  .w_sp_min_75 {
    min-width: 75% !important;
  }
  .w_sp_76 {
    width: 76% !important;
  }
  .w_sp_max_76 {
    max-width: 76% !important;
  }
  .w_sp_min_76 {
    min-width: 76% !important;
  }
  .w_sp_77 {
    width: 77% !important;
  }
  .w_sp_max_77 {
    max-width: 77% !important;
  }
  .w_sp_min_77 {
    min-width: 77% !important;
  }
  .w_sp_78 {
    width: 78% !important;
  }
  .w_sp_max_78 {
    max-width: 78% !important;
  }
  .w_sp_min_78 {
    min-width: 78% !important;
  }
  .w_sp_79 {
    width: 79% !important;
  }
  .w_sp_max_79 {
    max-width: 79% !important;
  }
  .w_sp_min_79 {
    min-width: 79% !important;
  }
  .w_sp_80 {
    width: 80% !important;
  }
  .w_sp_max_80 {
    max-width: 80% !important;
  }
  .w_sp_min_80 {
    min-width: 80% !important;
  }
  .w_sp_81 {
    width: 81% !important;
  }
  .w_sp_max_81 {
    max-width: 81% !important;
  }
  .w_sp_min_81 {
    min-width: 81% !important;
  }
  .w_sp_82 {
    width: 82% !important;
  }
  .w_sp_max_82 {
    max-width: 82% !important;
  }
  .w_sp_min_82 {
    min-width: 82% !important;
  }
  .w_sp_83 {
    width: 83% !important;
  }
  .w_sp_max_83 {
    max-width: 83% !important;
  }
  .w_sp_min_83 {
    min-width: 83% !important;
  }
  .w_sp_84 {
    width: 84% !important;
  }
  .w_sp_max_84 {
    max-width: 84% !important;
  }
  .w_sp_min_84 {
    min-width: 84% !important;
  }
  .w_sp_85 {
    width: 85% !important;
  }
  .w_sp_max_85 {
    max-width: 85% !important;
  }
  .w_sp_min_85 {
    min-width: 85% !important;
  }
  .w_sp_86 {
    width: 86% !important;
  }
  .w_sp_max_86 {
    max-width: 86% !important;
  }
  .w_sp_min_86 {
    min-width: 86% !important;
  }
  .w_sp_87 {
    width: 87% !important;
  }
  .w_sp_max_87 {
    max-width: 87% !important;
  }
  .w_sp_min_87 {
    min-width: 87% !important;
  }
  .w_sp_88 {
    width: 88% !important;
  }
  .w_sp_max_88 {
    max-width: 88% !important;
  }
  .w_sp_min_88 {
    min-width: 88% !important;
  }
  .w_sp_89 {
    width: 89% !important;
  }
  .w_sp_max_89 {
    max-width: 89% !important;
  }
  .w_sp_min_89 {
    min-width: 89% !important;
  }
  .w_sp_90 {
    width: 90% !important;
  }
  .w_sp_max_90 {
    max-width: 90% !important;
  }
  .w_sp_min_90 {
    min-width: 90% !important;
  }
  .w_sp_91 {
    width: 91% !important;
  }
  .w_sp_max_91 {
    max-width: 91% !important;
  }
  .w_sp_min_91 {
    min-width: 91% !important;
  }
  .w_sp_92 {
    width: 92% !important;
  }
  .w_sp_max_92 {
    max-width: 92% !important;
  }
  .w_sp_min_92 {
    min-width: 92% !important;
  }
  .w_sp_93 {
    width: 93% !important;
  }
  .w_sp_max_93 {
    max-width: 93% !important;
  }
  .w_sp_min_93 {
    min-width: 93% !important;
  }
  .w_sp_94 {
    width: 94% !important;
  }
  .w_sp_max_94 {
    max-width: 94% !important;
  }
  .w_sp_min_94 {
    min-width: 94% !important;
  }
  .w_sp_95 {
    width: 95% !important;
  }
  .w_sp_max_95 {
    max-width: 95% !important;
  }
  .w_sp_min_95 {
    min-width: 95% !important;
  }
  .w_sp_96 {
    width: 96% !important;
  }
  .w_sp_max_96 {
    max-width: 96% !important;
  }
  .w_sp_min_96 {
    min-width: 96% !important;
  }
  .w_sp_97 {
    width: 97% !important;
  }
  .w_sp_max_97 {
    max-width: 97% !important;
  }
  .w_sp_min_97 {
    min-width: 97% !important;
  }
  .w_sp_98 {
    width: 98% !important;
  }
  .w_sp_max_98 {
    max-width: 98% !important;
  }
  .w_sp_min_98 {
    min-width: 98% !important;
  }
  .w_sp_99 {
    width: 99% !important;
  }
  .w_sp_max_99 {
    max-width: 99% !important;
  }
  .w_sp_min_99 {
    min-width: 99% !important;
  }
  .w_sp_100 {
    width: 100% !important;
  }
  .w_sp_max_100 {
    max-width: 100% !important;
  }
  .w_sp_min_100 {
    min-width: 100% !important;
  }
  .w_sp_fix_10 {
    width: 10px !important;
  }
  .w_sp_fix_max_10 {
    max-width: 10px !important;
  }
  .w_sp_fix_min_10 {
    min-width: 10px !important;
  }
  .w_sp_fix_20 {
    width: 20px !important;
  }
  .w_sp_fix_max_20 {
    max-width: 20px !important;
  }
  .w_sp_fix_min_20 {
    min-width: 20px !important;
  }
  .w_sp_fix_30 {
    width: 30px !important;
  }
  .w_sp_fix_max_30 {
    max-width: 30px !important;
  }
  .w_sp_fix_min_30 {
    min-width: 30px !important;
  }
  .w_sp_fix_40 {
    width: 40px !important;
  }
  .w_sp_fix_max_40 {
    max-width: 40px !important;
  }
  .w_sp_fix_min_40 {
    min-width: 40px !important;
  }
  .w_sp_fix_50 {
    width: 50px !important;
  }
  .w_sp_fix_max_50 {
    max-width: 50px !important;
  }
  .w_sp_fix_min_50 {
    min-width: 50px !important;
  }
  .w_sp_fix_60 {
    width: 60px !important;
  }
  .w_sp_fix_max_60 {
    max-width: 60px !important;
  }
  .w_sp_fix_min_60 {
    min-width: 60px !important;
  }
  .w_sp_fix_70 {
    width: 70px !important;
  }
  .w_sp_fix_max_70 {
    max-width: 70px !important;
  }
  .w_sp_fix_min_70 {
    min-width: 70px !important;
  }
  .w_sp_fix_80 {
    width: 80px !important;
  }
  .w_sp_fix_max_80 {
    max-width: 80px !important;
  }
  .w_sp_fix_min_80 {
    min-width: 80px !important;
  }
  .w_sp_fix_90 {
    width: 90px !important;
  }
  .w_sp_fix_max_90 {
    max-width: 90px !important;
  }
  .w_sp_fix_min_90 {
    min-width: 90px !important;
  }
  .w_sp_fix_100 {
    width: 100px !important;
  }
  .w_sp_fix_max_100 {
    max-width: 100px !important;
  }
  .w_sp_fix_min_100 {
    min-width: 100px !important;
  }
  .w_sp_fix_110 {
    width: 110px !important;
  }
  .w_sp_fix_max_110 {
    max-width: 110px !important;
  }
  .w_sp_fix_min_110 {
    min-width: 110px !important;
  }
  .w_sp_fix_120 {
    width: 120px !important;
  }
  .w_sp_fix_max_120 {
    max-width: 120px !important;
  }
  .w_sp_fix_min_120 {
    min-width: 120px !important;
  }
  .w_sp_fix_130 {
    width: 130px !important;
  }
  .w_sp_fix_max_130 {
    max-width: 130px !important;
  }
  .w_sp_fix_min_130 {
    min-width: 130px !important;
  }
  .w_sp_fix_140 {
    width: 140px !important;
  }
  .w_sp_fix_max_140 {
    max-width: 140px !important;
  }
  .w_sp_fix_min_140 {
    min-width: 140px !important;
  }
  .w_sp_fix_150 {
    width: 150px !important;
  }
  .w_sp_fix_max_150 {
    max-width: 150px !important;
  }
  .w_sp_fix_min_150 {
    min-width: 150px !important;
  }
  .w_sp_fix_160 {
    width: 160px !important;
  }
  .w_sp_fix_max_160 {
    max-width: 160px !important;
  }
  .w_sp_fix_min_160 {
    min-width: 160px !important;
  }
  .w_sp_fix_170 {
    width: 170px !important;
  }
  .w_sp_fix_max_170 {
    max-width: 170px !important;
  }
  .w_sp_fix_min_170 {
    min-width: 170px !important;
  }
  .w_sp_fix_180 {
    width: 180px !important;
  }
  .w_sp_fix_max_180 {
    max-width: 180px !important;
  }
  .w_sp_fix_min_180 {
    min-width: 180px !important;
  }
  .w_sp_fix_190 {
    width: 190px !important;
  }
  .w_sp_fix_max_190 {
    max-width: 190px !important;
  }
  .w_sp_fix_min_190 {
    min-width: 190px !important;
  }
  .w_sp_fix_200 {
    width: 200px !important;
  }
  .w_sp_fix_max_200 {
    max-width: 200px !important;
  }
  .w_sp_fix_min_200 {
    min-width: 200px !important;
  }
  .w_sp_fix_210 {
    width: 210px !important;
  }
  .w_sp_fix_max_210 {
    max-width: 210px !important;
  }
  .w_sp_fix_min_210 {
    min-width: 210px !important;
  }
  .w_sp_fix_220 {
    width: 220px !important;
  }
  .w_sp_fix_max_220 {
    max-width: 220px !important;
  }
  .w_sp_fix_min_220 {
    min-width: 220px !important;
  }
  .w_sp_fix_230 {
    width: 230px !important;
  }
  .w_sp_fix_max_230 {
    max-width: 230px !important;
  }
  .w_sp_fix_min_230 {
    min-width: 230px !important;
  }
  .w_sp_fix_240 {
    width: 240px !important;
  }
  .w_sp_fix_max_240 {
    max-width: 240px !important;
  }
  .w_sp_fix_min_240 {
    min-width: 240px !important;
  }
  .w_sp_fix_250 {
    width: 250px !important;
  }
  .w_sp_fix_max_250 {
    max-width: 250px !important;
  }
  .w_sp_fix_min_250 {
    min-width: 250px !important;
  }
  .w_sp_fix_260 {
    width: 260px !important;
  }
  .w_sp_fix_max_260 {
    max-width: 260px !important;
  }
  .w_sp_fix_min_260 {
    min-width: 260px !important;
  }
  .w_sp_fix_270 {
    width: 270px !important;
  }
  .w_sp_fix_max_270 {
    max-width: 270px !important;
  }
  .w_sp_fix_min_270 {
    min-width: 270px !important;
  }
  .w_sp_fix_280 {
    width: 280px !important;
  }
  .w_sp_fix_max_280 {
    max-width: 280px !important;
  }
  .w_sp_fix_min_280 {
    min-width: 280px !important;
  }
  .w_sp_fix_290 {
    width: 290px !important;
  }
  .w_sp_fix_max_290 {
    max-width: 290px !important;
  }
  .w_sp_fix_min_290 {
    min-width: 290px !important;
  }
  .w_sp_fix_300 {
    width: 300px !important;
  }
  .w_sp_fix_max_300 {
    max-width: 300px !important;
  }
  .w_sp_fix_min_300 {
    min-width: 300px !important;
  }
  .w_sp_fix_310 {
    width: 310px !important;
  }
  .w_sp_fix_max_310 {
    max-width: 310px !important;
  }
  .w_sp_fix_min_310 {
    min-width: 310px !important;
  }
  .w_sp_fix_320 {
    width: 320px !important;
  }
  .w_sp_fix_max_320 {
    max-width: 320px !important;
  }
  .w_sp_fix_min_320 {
    min-width: 320px !important;
  }
  .w_sp_fix_330 {
    width: 330px !important;
  }
  .w_sp_fix_max_330 {
    max-width: 330px !important;
  }
  .w_sp_fix_min_330 {
    min-width: 330px !important;
  }
  .w_sp_fix_340 {
    width: 340px !important;
  }
  .w_sp_fix_max_340 {
    max-width: 340px !important;
  }
  .w_sp_fix_min_340 {
    min-width: 340px !important;
  }
  .w_sp_fix_350 {
    width: 350px !important;
  }
  .w_sp_fix_max_350 {
    max-width: 350px !important;
  }
  .w_sp_fix_min_350 {
    min-width: 350px !important;
  }
  .w_sp_fix_360 {
    width: 360px !important;
  }
  .w_sp_fix_max_360 {
    max-width: 360px !important;
  }
  .w_sp_fix_min_360 {
    min-width: 360px !important;
  }
  .w_sp_fix_370 {
    width: 370px !important;
  }
  .w_sp_fix_max_370 {
    max-width: 370px !important;
  }
  .w_sp_fix_min_370 {
    min-width: 370px !important;
  }
  .w_sp_fix_380 {
    width: 380px !important;
  }
  .w_sp_fix_max_380 {
    max-width: 380px !important;
  }
  .w_sp_fix_min_380 {
    min-width: 380px !important;
  }
  .w_sp_fix_390 {
    width: 390px !important;
  }
  .w_sp_fix_max_390 {
    max-width: 390px !important;
  }
  .w_sp_fix_min_390 {
    min-width: 390px !important;
  }
  .w_sp_fix_400 {
    width: 400px !important;
  }
  .w_sp_fix_max_400 {
    max-width: 400px !important;
  }
  .w_sp_fix_min_400 {
    min-width: 400px !important;
  }
}
/*-----------------------------------------
  margin
-----------------------------------------*/
.ma_no {
  margin: 0 !important;
}
.mb_no {
  margin-bottom: 0 !important;
}
.mt_no {
  margin-top: 0 !important;
}
.ml_no {
  margin-left: 0 !important;
}
.mr_no {
  margin-right: 0 !important;
}

.ma_xs {
  margin: 4px !important;
}
.mb_xs {
  margin-bottom: 4px !important;
}
.mt_xs {
  margin-top: 4px !important;
}
.ml_xs {
  margin-left: 4px !important;
}
.mr_xs {
  margin-right: 4px !important;
}

.ma_s {
  margin: 8px !important;
}
.mb_s {
  margin-bottom: 8px !important;
}
.mt_s {
  margin-top: 8px !important;
}
.ml_s {
  margin-left: 8px !important;
}
.mr_s {
  margin-right: 8px !important;
}

.ma_sm {
  margin: 12px !important;
}
.mb_sm {
  margin-bottom: 12px !important;
}
.mt_sm {
  margin-top: 12px !important;
}
.ml_sm {
  margin-left: 12px !important;
}
.mr_sm {
  margin-right: 12px !important;
}

.ma_m {
  margin: 16px !important;
}
.mb_m {
  margin-bottom: 16px !important;
}
.mt_m {
  margin-top: 16px !important;
}
.ml_m {
  margin-left: 16px !important;
}
.mr_m {
  margin-right: 16px !important;
}

.ma_ml {
  margin: 24px !important;
}
.mb_ml {
  margin-bottom: 24px !important;
}
.mt_ml {
  margin-top: 24px !important;
}
.ml_ml {
  margin-left: 24px !important;
}
.mr_ml {
  margin-right: 24px !important;
}

.ma_l {
  margin: 32px !important;
}
.mb_l {
  margin-bottom: 32px !important;
}
.mt_l {
  margin-top: 32px !important;
}
.ml_l {
  margin-left: 32px !important;
}
.mr_l {
  margin-right: 32px !important;
}

.ma_xl {
  margin: 40px !important;
}
.mb_xl {
  margin-bottom: 40px !important;
}
.mt_xl {
  margin-top: 40px !important;
}
.ml_xl {
  margin-left: 40px !important;
}
.mr_xl {
  margin-right: 40px !important;
}

.ma_2xl {
  margin: 48px !important;
}
.mb_2xl {
  margin-bottom: 48px !important;
}
.mt_2xl {
  margin-top: 48px !important;
}
.ml_2xl {
  margin-left: 48px !important;
}
.mr_2xl {
  margin-right: 48px !important;
}

.ma_3xl {
  margin: 60px !important;
}
.mb_3xl {
  margin-bottom: 60px !important;
}
.mt_3xl {
  margin-top: 60px !important;
}
.ml_3xl {
  margin-left: 60px !important;
}
.mr_3xl {
  margin-right: 60px !important;
}

.ma_4xl {
  margin: 64px !important;
}
.mb_4xl {
  margin-bottom: 64px !important;
}
.mt_4xl {
  margin-top: 64px !important;
}
.ml_4xl {
  margin-left: 64px !important;
}
.mr_4xl {
  margin-right: 64px !important;
}

.left_side {
  display: table;
  margin-inline: 0 auto !important;
}

.right_side {
  display: table;
  margin-inline: auto 0 !important;
}

.centering {
  display: table;
  margin-inline: auto auto !important;
}

/*-----------------------------------------
  padding
-----------------------------------------*/
.pa_no {
  padding: 0 !important;
}
.pb_no {
  padding-bottom: 0 !important;
}
.pt_no {
  padding-top: 0 !important;
}
.pl_no {
  padding-left: 0 !important;
}
.pr_no {
  padding-right: 0 !important;
}

.pa_xs {
  padding: 4px !important;
}
.pb_xs {
  padding-bottom: 4px !important;
}
.pt_xs {
  padding-top: 4px !important;
}
.pl_xs {
  padding-left: 4px !important;
}
.pr_xs {
  padding-right: 4px !important;
}

.pa_s {
  padding: 8px !important;
}
.pb_s {
  padding-bottom: 8px !important;
}
.pt_s {
  padding-top: 8px !important;
}
.pl_s {
  padding-left: 8px !important;
}
.pr_s {
  padding-right: 8px !important;
}

.pa_sm {
  padding: 12px !important;
}
.pb_sm {
  padding-bottom: 12px !important;
}
.pt_sm {
  padding-top: 12px !important;
}
.pl_sm {
  padding-left: 12px !important;
}
.pr_sm {
  padding-right: 12px !important;
}

.pa_m {
  padding: 16px !important;
}
.pb_m {
  padding-bottom: 16px !important;
}
.pt_m {
  padding-top: 16px !important;
}
.pl_m {
  padding-left: 16px !important;
}
.pr_m {
  padding-right: 16px !important;
}

.pa_ml {
  padding: 24px !important;
}
.pb_ml {
  padding-bottom: 24px !important;
}
.pt_ml {
  padding-top: 24px !important;
}
.pl_ml {
  padding-left: 24px !important;
}
.pr_ml {
  padding-right: 24px !important;
}

.pa_l {
  padding: 32px !important;
}
.pb_l {
  padding-bottom: 32px !important;
}
.pt_l {
  padding-top: 32px !important;
}
.pl_l {
  padding-left: 32px !important;
}
.pr_l {
  padding-right: 32px !important;
}

.pa_xl {
  padding: 40px !important;
}
.pb_xl {
  padding-bottom: 40px !important;
}
.pt_xl {
  padding-top: 40px !important;
}
.pl_xl {
  padding-left: 40px !important;
}
.pr_xl {
  padding-right: 40px !important;
}

.pa_2xl {
  padding: 48px !important;
}
.pb_2xl {
  padding-bottom: 48px !important;
}
.pt_2xl {
  padding-top: 48px !important;
}
.pl_2xl {
  padding-left: 48px !important;
}
.pr_2xl {
  padding-right: 48px !important;
}

.pa_3xl {
  padding: 60px !important;
}
.pb_3xl {
  padding-bottom: 60px !important;
}
.pt_3xl {
  padding-top: 60px !important;
}
.pl_3xl {
  padding-left: 60px !important;
}
.pr_3xl {
  padding-right: 60px !important;
}

.pa_4xl {
  padding: 64px !important;
}
.pb_4xl {
  padding-bottom: 64px !important;
}
.pt_4xl {
  padding-top: 64px !important;
}
.pl_4xl {
  padding-left: 64px !important;
}
.pr_4xl {
  padding-right: 64px !important;
}

/*-----------------------------------------
  order
-----------------------------------------*/
.flex_order_1 {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.flex_order_2 {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.flex_order_3 {
  -webkit-box-ordinal-group: 4 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
}

.flex_order_4 {
  -webkit-box-ordinal-group: 5 !important;
      -ms-flex-order: 4 !important;
          order: 4 !important;
}

.flex_order_5 {
  -webkit-box-ordinal-group: 6 !important;
      -ms-flex-order: 5 !important;
          order: 5 !important;
}

.flex_order_6 {
  -webkit-box-ordinal-group: 7 !important;
      -ms-flex-order: 6 !important;
          order: 6 !important;
}

.flex_order_7 {
  -webkit-box-ordinal-group: 8 !important;
      -ms-flex-order: 7 !important;
          order: 7 !important;
}

.flex_order_8 {
  -webkit-box-ordinal-group: 9 !important;
      -ms-flex-order: 8 !important;
          order: 8 !important;
}

.flex_order_9 {
  -webkit-box-ordinal-group: 10 !important;
      -ms-flex-order: 9 !important;
          order: 9 !important;
}

.flex_order_10 {
  -webkit-box-ordinal-group: 11 !important;
      -ms-flex-order: 10 !important;
          order: 10 !important;
}

@media screen and (max-width: 767px) {
  .flex_sp_order_1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .flex_sp_order_2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .flex_sp_order_3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .flex_sp_order_4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .flex_sp_order_5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .flex_sp_order_6 {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .flex_sp_order_7 {
    -webkit-box-ordinal-group: 8 !important;
        -ms-flex-order: 7 !important;
            order: 7 !important;
  }
  .flex_sp_order_8 {
    -webkit-box-ordinal-group: 9 !important;
        -ms-flex-order: 8 !important;
            order: 8 !important;
  }
  .flex_sp_order_9 {
    -webkit-box-ordinal-group: 10 !important;
        -ms-flex-order: 9 !important;
            order: 9 !important;
  }
  .flex_sp_order_10 {
    -webkit-box-ordinal-group: 11 !important;
        -ms-flex-order: 10 !important;
            order: 10 !important;
  }
}