@charset "UTF-8";
@import url(./fonts/icon.css);
@import url("https://fonts.googleapis.com/css2?family=Mohave:wght@300..700&family=Poppins:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@500;700&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

======================================= */
body {
  min-width: 980px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  color: #2f2f2f;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  background: #fff;
  overflow-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
}

a {
  color: #00a067;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
  }
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/*-----------------------------------------
  CLEARFIX
-----------------------------------------*/
.clear:before,
.clear:after {
  content: "";
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  *zoom: 1;
}

/* =======================================

  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;
}

/* =======================================

  PLUGINS > SLICK

======================================= */
/* 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;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.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:hover,
.slick-next:hover {
  opacity: 0.6;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 16px;
  line-height: 1;
  color: white;
  opacity: 1;
  -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: 1;
}

/* 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;
}

/* =======================================

  UTILITY

======================================= */
/*-----------------------------------------
  color
-----------------------------------------*/
.color_primary {
  color: #00bc78 !important;
}

.color_emphasis {
  color: #e92a2a !important;
}

/*-----------------------------------------
  bg color
-----------------------------------------*/
.color_bg_secondary {
  background-color: #f0f9ff !important;
}

.color_bg_input {
  background-color: #f3f3f3 !important;
}

.color_bg_error {
  background-color: #feebe9 !important;
}

.color_bg_inactive {
  background-color: #f4f4f4 !important;
}

/*-----------------------------------------
  font
-----------------------------------------*/
.font_eng1 {
  font-family: "Mohave", sans-serif !important;
}

.font_eng2 {
  font-family: "Poppins", sans-serif !important;
}

/*-----------------------------------------
  font weight
-----------------------------------------*/
.weight_400 {
  font-weight: 400;
}

.weight_500 {
  font-weight: 500;
}

.weight_700 {
  font-weight: 700;
}

/*-----------------------------------------
  font_size
-----------------------------------------*/
.fs_xxl {
  font-size: 2rem;
  line-height: 1.4;
}

.fs_xl {
  font-size: 1.8rem;
  line-height: 1.5555555556;
}

.fs_l {
  font-size: 1.6rem;
  line-height: 1.5;
}

.fs_ml {
  font-size: 1.5rem;
  line-height: 1.4666666667;
}

.fs_m {
  font-size: 1.4rem;
  line-height: 1.7142857143;
}

.fs_sm {
  font-size: 1.3rem;
  line-height: 1.7692307692;
}

.fs_s {
  font-size: 1.2rem;
  line-height: 1.6666666667;
}

.fs_xs {
  font-size: 1.1rem;
  line-height: 1.8181818182;
}

.fs_xxs {
  font-size: 1rem;
  line-height: 2;
}

/*-----------------------------------------
  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;
}

/*-----------------------------------------
  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;
}

.justify_content_s {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify_content_c {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.align_item_mid {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

/*-----------------------------------------
  radius
-----------------------------------------*/
.radius_s {
  border-radius: 5px !important;
}

/*-----------------------------------------
  border
-----------------------------------------*/
.no_border {
  border: 0 !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_inline {
  display: inline-block !important;
}

.pc_flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.pc_only {
  display: block !important;
}

.pc_tab {
  display: block !important;
}

.sp {
  display: none !important;
}

.sp_inline {
  display: none !important;
}

.respon{
	display: flex;
	width: 100%;
}

@media only screen and (max-width: 979px) {
  .pc_only {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .pc_inline {
    display: none !important;
  }
  .pc_flex {
    display: none !important;
  }
  .pc_tab {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp_inline {
    display: inline-block !important;
  }
  .respon{
	display: block;
  }
}
/*-----------------------------------------
  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;
}

.full {
  width: 100% !important;
}

@media only screen and (max-width: 767px) {
  .sp_full {
    width: 100% !important;
  }
}
/*-----------------------------------------
  margin
-----------------------------------------*/
.ma_0 {
  margin: 0 !important;
}
.mb_0 {
  margin-bottom: 0 !important;
}
.mt_0 {
  margin-top: 0 !important;
}
.ml_0 {
  margin-left: 0 !important;
}
.mr_0 {
  margin-right: 0 !important;
}
.my_0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mx_0 {
  margin-right: 0 !important;
  margin-left: 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;
}
.my_xs {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}
.mx_xs {
  margin-right: 4px !important;
  margin-left: 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;
}
.my_s {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}
.mx_s {
  margin-right: 8px !important;
  margin-left: 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;
}
.my_sm {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}
.mx_sm {
  margin-right: 12px !important;
  margin-left: 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;
}
.my_m {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}
.mx_m {
  margin-right: 16px !important;
  margin-left: 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;
}
.my_ml {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
.mx_ml {
  margin-right: 24px !important;
  margin-left: 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;
}
.my_l {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}
.mx_l {
  margin-right: 32px !important;
  margin-left: 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;
}
.my_xl {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.mx_xl {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.ma_xxl {
  margin: 48px !important;
}
.mb_xxl {
  margin-bottom: 48px !important;
}
.mt_xxl {
  margin-top: 48px !important;
}
.ml_xxl {
  margin-left: 48px !important;
}
.mr_xxl {
  margin-right: 48px !important;
}
.my_xxl {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}
.mx_xxl {
  margin-right: 48px !important;
  margin-left: 48px !important;
}

@media only screen and (max-width: 767px) {
  .sp_ma_0 {
    margin: 0 !important;
  }
  .sp_mb_0 {
    margin-bottom: 0 !important;
  }
  .sp_mt_0 {
    margin-top: 0 !important;
  }
  .sp_ml_0 {
    margin-left: 0 !important;
  }
  .sp_mr_0 {
    margin-right: 0 !important;
  }
  .sp_my_0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .sp_mx_0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp_ma_xs {
    margin: 4px !important;
  }
  .sp_mb_xs {
    margin-bottom: 4px !important;
  }
  .sp_mt_xs {
    margin-top: 4px !important;
  }
  .sp_ml_xs {
    margin-left: 4px !important;
  }
  .sp_mr_xs {
    margin-right: 4px !important;
  }
  .sp_my_xs {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .sp_mx_xs {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp_ma_s {
    margin: 8px !important;
  }
  .sp_mb_s {
    margin-bottom: 8px !important;
  }
  .sp_mt_s {
    margin-top: 8px !important;
  }
  .sp_ml_s {
    margin-left: 8px !important;
  }
  .sp_mr_s {
    margin-right: 8px !important;
  }
  .sp_my_s {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .sp_mx_s {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp_ma_sm {
    margin: 12px !important;
  }
  .sp_mb_sm {
    margin-bottom: 12px !important;
  }
  .sp_mt_sm {
    margin-top: 12px !important;
  }
  .sp_ml_sm {
    margin-left: 12px !important;
  }
  .sp_mr_sm {
    margin-right: 12px !important;
  }
  .sp_my_sm {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .sp_mx_sm {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp_ma_m {
    margin: 16px !important;
  }
  .sp_mb_m {
    margin-bottom: 16px !important;
  }
  .sp_mt_m {
    margin-top: 16px !important;
  }
  .sp_ml_m {
    margin-left: 16px !important;
  }
  .sp_mr_m {
    margin-right: 16px !important;
  }
  .sp_my_m {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .sp_mx_m {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp_ma_ml {
    margin: 24px !important;
  }
  .sp_mb_ml {
    margin-bottom: 24px !important;
  }
  .sp_mt_ml {
    margin-top: 24px !important;
  }
  .sp_ml_ml {
    margin-left: 24px !important;
  }
  .sp_mr_ml {
    margin-right: 24px !important;
  }
  .sp_my_ml {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .sp_mx_ml {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp_ma_l {
    margin: 32px !important;
  }
  .sp_mb_l {
    margin-bottom: 32px !important;
  }
  .sp_mt_l {
    margin-top: 32px !important;
  }
  .sp_ml_l {
    margin-left: 32px !important;
  }
  .sp_mr_l {
    margin-right: 32px !important;
  }
  .sp_my_l {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .sp_mx_l {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp_ma_xl {
    margin: 40px !important;
  }
  .sp_mb_xl {
    margin-bottom: 40px !important;
  }
  .sp_mt_xl {
    margin-top: 40px !important;
  }
  .sp_ml_xl {
    margin-left: 40px !important;
  }
  .sp_mr_xl {
    margin-right: 40px !important;
  }
  .sp_my_xl {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .sp_mx_xl {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp_ma_xxl {
    margin: 48px !important;
  }
  .sp_mb_xxl {
    margin-bottom: 48px !important;
  }
  .sp_mt_xxl {
    margin-top: 48px !important;
  }
  .sp_ml_xxl {
    margin-left: 48px !important;
  }
  .sp_mr_xxl {
    margin-right: 48px !important;
  }
  .sp_my_xxl {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .sp_mx_xxl {
    margin-right: 48px !important;
    margin-left: 48px !important;
  }
}
/*-----------------------------------------
  padding
-----------------------------------------*/
.pa_0 {
  padding: 0 !important;
}
.pb_0 {
  padding-bottom: 0 !important;
}
.pt_0 {
  padding-top: 0 !important;
}
.pl_0 {
  padding-left: 0 !important;
}
.pr_0 {
  padding-right: 0 !important;
}
.py_0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.px_0 {
  padding-right: 0 !important;
  padding-left: 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;
}
.py_xs {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.px_xs {
  padding-right: 4px !important;
  padding-left: 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;
}
.py_s {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.px_s {
  padding-right: 8px !important;
  padding-left: 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;
}
.py_sm {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.px_sm {
  padding-right: 12px !important;
  padding-left: 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;
}
.py_m {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.px_m {
  padding-right: 16px !important;
  padding-left: 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;
}
.py_ml {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.px_ml {
  padding-right: 24px !important;
  padding-left: 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;
}
.py_l {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
.px_l {
  padding-right: 32px !important;
  padding-left: 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;
}
.py_xl {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.px_xl {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.pa_xxl {
  padding: 48px !important;
}
.pb_xxl {
  padding-bottom: 48px !important;
}
.pt_xxl {
  padding-top: 48px !important;
}
.pl_xxl {
  padding-left: 48px !important;
}
.pr_xxl {
  padding-right: 48px !important;
}
.py_xxl {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.px_xxl {
  padding-right: 48px !important;
  padding-left: 48px !important;
}

@media only screen and (max-width: 767px) {
  .sp_pa_0 {
    padding: 0 !important;
  }
  .sp_pb_0 {
    padding-bottom: 0 !important;
  }
  .sp_pt_0 {
    padding-top: 0 !important;
  }
  .sp_pl_0 {
    padding-left: 0 !important;
  }
  .sp_pr_0 {
    padding-right: 0 !important;
  }
  .sp_py_0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .sp_px_0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .sp_pa_xs {
    padding: 4px !important;
  }
  .sp_pb_xs {
    padding-bottom: 4px !important;
  }
  .sp_pt_xs {
    padding-top: 4px !important;
  }
  .sp_pl_xs {
    padding-left: 4px !important;
  }
  .sp_pr_xs {
    padding-right: 4px !important;
  }
  .sp_py_xs {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .sp_px_xs {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  .sp_pa_s {
    padding: 8px !important;
  }
  .sp_pb_s {
    padding-bottom: 8px !important;
  }
  .sp_pt_s {
    padding-top: 8px !important;
  }
  .sp_pl_s {
    padding-left: 8px !important;
  }
  .sp_pr_s {
    padding-right: 8px !important;
  }
  .sp_py_s {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .sp_px_s {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .sp_pa_sm {
    padding: 12px !important;
  }
  .sp_pb_sm {
    padding-bottom: 12px !important;
  }
  .sp_pt_sm {
    padding-top: 12px !important;
  }
  .sp_pl_sm {
    padding-left: 12px !important;
  }
  .sp_pr_sm {
    padding-right: 12px !important;
  }
  .sp_py_sm {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .sp_px_sm {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  .sp_pa_m {
    padding: 16px !important;
  }
  .sp_pb_m {
    padding-bottom: 16px !important;
  }
  .sp_pt_m {
    padding-top: 16px !important;
  }
  .sp_pl_m {
    padding-left: 16px !important;
  }
  .sp_pr_m {
    padding-right: 16px !important;
  }
  .sp_py_m {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .sp_px_m {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .sp_pa_ml {
    padding: 24px !important;
  }
  .sp_pb_ml {
    padding-bottom: 24px !important;
  }
  .sp_pt_ml {
    padding-top: 24px !important;
  }
  .sp_pl_ml {
    padding-left: 24px !important;
  }
  .sp_pr_ml {
    padding-right: 24px !important;
  }
  .sp_py_ml {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .sp_px_ml {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  .sp_pa_l {
    padding: 32px !important;
  }
  .sp_pb_l {
    padding-bottom: 32px !important;
  }
  .sp_pt_l {
    padding-top: 32px !important;
  }
  .sp_pl_l {
    padding-left: 32px !important;
  }
  .sp_pr_l {
    padding-right: 32px !important;
  }
  .sp_py_l {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .sp_px_l {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
  .sp_pa_xl {
    padding: 40px !important;
  }
  .sp_pb_xl {
    padding-bottom: 40px !important;
  }
  .sp_pt_xl {
    padding-top: 40px !important;
  }
  .sp_pl_xl {
    padding-left: 40px !important;
  }
  .sp_pr_xl {
    padding-right: 40px !important;
  }
  .sp_py_xl {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .sp_px_xl {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .sp_pa_xxl {
    padding: 48px !important;
  }
  .sp_pb_xxl {
    padding-bottom: 48px !important;
  }
  .sp_pt_xxl {
    padding-top: 48px !important;
  }
  .sp_pl_xxl {
    padding-left: 48px !important;
  }
  .sp_pr_xxl {
    padding-right: 48px !important;
  }
  .sp_py_xxl {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .sp_px_xxl {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
}
/* =======================================

  COMMON

======================================= */
#container {
  overflow: hidden;
}

/*-----------------------------------------
  layout
-----------------------------------------*/
.cont_outer {
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: 88px;
}
@media only screen and (max-width: 767px) {
  .cont_outer {
    padding-inline: 16px;
  }
}

.cont_inner {
  max-width: 1180px;
  margin-inline: auto;
}
.cont_inner.narrow {
  max-width: 680px;
}

/*-----------------------------------------
  hover
-----------------------------------------*/
.hover {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .hover:hover {
    opacity: 0.6;
  }
}

/*-----------------------------------------
  disable_link
-----------------------------------------*/
.disable_link a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

/*-----------------------------------------
  sp tel
-----------------------------------------*/
@media only screen and (max-width: 767px) {
  .tel a {
    color: #2f2f2f;
    text-decoration: none;
  }
}
/*-----------------------------------------
  font_number
-----------------------------------------*/
.font_number {
  font-family: "Poppins", sans-serif;
}

/*-----------------------------------------
  heading
-----------------------------------------*/
.primary_heading {
  font-size: 3rem;
  line-height: 1.4333333333;
  font-weight: 700;
  letter-spacing: 0.14em;
}
@media only screen and (max-width: 767px) {
  .primary_heading {
    font-size: 2.6rem;
    line-height: 1.4615384615;
    letter-spacing: 0.02em;
  }
}
.primary_heading .english {
  margin-bottom: 24px;
  display: block;
  font-family: "Mohave", sans-serif;
  color: #00bc78;
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .primary_heading .english {
    margin-bottom: 16px;
  }
}

/*-----------------------------------------
  link
-----------------------------------------*/
.text_link {
  padding-right: 8px;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.text_link.icon_arrow::after {
  content: "\e90f";
  font-family: "repro";
  margin-left: 8px;
  display: inline-block;
  color: #00bc78;
  font-size: 1.2rem;
  line-height: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.text_link.icon_arrow_down::after {
  content: "\e90f";
  font-family: "repro";
  margin-left: 8px;
  display: inline-block;
  color: #00bc78;
  font-size: 1.2rem;
  line-height: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  rotate: 90deg;
}
.text_link[target=_blank]::after {
  content: "\e910";
  font-family: "repro";
  margin-left: 8px;
  display: inline-block;
  color: #00bc78;
  font-size: 1.4rem;
  line-height: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.text_link[href$=".pdf"]::after {
  content: "\e90e";
  font-family: "repro";
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
  color: #00bc78;
  font-size: 2rem;
  line-height: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.text_link.comingsoon {
  cursor: default;
  color: #969696;
}
@media (hover: hover) and (pointer: fine) {
  .text_link.comingsoon:hover {
    opacity: 1 !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .text_link:hover {
    opacity: 0.6;
  }
  .text_link:hover:not(.no_animation).icon_arrow::after {
    margin-left: 14px;
  }
  .text_link:hover:not(.no_animation)[target=_blank]::after {
    margin-left: 14px;
  }
}

/*-----------------------------------------
  btn
-----------------------------------------*/
.btn_area {
  margin-top: 32px;
}
.btn_area.clm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 24px;
}
@media only screen and (max-width: 767px) {
  .btn_area.clm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.btn_area .btn_note {
  font-weight: 700;
  color: #969696;
}

.btn {
  min-width: 278px;
  display: inline-block;
  text-decoration: none;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .btn {
    width: 100% !important;
    min-width: 100% !important;
  }
}
.btn.min_w_336 {
  min-width: 336px;
}
.btn.min_w_414 {
  min-width: 414px;
}
.btn .inner {
  padding: 24px 56px 24px 16px;
  display: block;
  position: relative;
  z-index: 2;
}
.btn[target=_blank] .inner::before {
  content: "\e910";
  font-family: "repro";
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 18px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .btn[target=_blank] .inner:hover::before {
    color: #00bc78;
  }
}
.btn[href$=".pdf"] .inner::before {
  content: "\e911";
  font-family: "repro";
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 18px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .btn[href$=".pdf"] .inner:hover::before {
    color: #00bc78;
  }
}
.btn.icon_arrow .inner::before {
  content: "\e90f";
  font-family: "repro";
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 18px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .btn.icon_arrow .inner:hover::before {
    color: #00bc78;
  }
}
.btn.comingsoon {
  pointer-events: none;
  width: 100%;
  min-width: auto;
  padding: 24px 16px;
  color: #969696;
  background: #f4f4f4;
}
.btn.gradation {
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn.gradation::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  background: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn.gradation::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #00d6c9 0%, #11c181 100%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .btn.gradation:hover {
    color: #00bc78;
  }
  .btn.gradation:hover::after {
    opacity: 0;
  }
}
.btn.gradation .line_horizontal:before,
.btn.gradation .line_horizontal:after,
.btn.gradation .line_vertical:before,
.btn.gradation .line_vertical:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  background-color: #00bc78;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn.gradation .line_horizontal:before {
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
}
.btn.gradation .line_horizontal:after {
  top: 0;
  right: 0;
  width: 2px;
  height: 0;
}
.btn.gradation .line_vertical:before {
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
}
.btn.gradation .line_vertical:after {
  bottom: 0;
  left: 0;
  width: 2px;
  height: 0;
}
@media (hover: hover) and (pointer: fine) {
  .btn.gradation:hover .line_horizontal:before,
  .btn.gradation:hover .line_vertical:before {
    width: 100%;
    -webkit-transition: width 0.5s 0s;
    transition: width 0.5s 0s;
  }
  .btn.gradation:hover .line_horizontal:after,
  .btn.gradation:hover .line_vertical:after {
    height: 100%;
    -webkit-transition: height 0.5s 0s;
    transition: height 0.5s 0s;
  }
}

/*-----------------------------------------
  paragraph
-----------------------------------------*/
.indent {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

/*-----------------------------------------
  cardlist
-----------------------------------------*/
.cardlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cardlist .cardlist_item {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cardlist a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #2f2f2f;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .cardlist a:hover figure {
    opacity: 0.6;
  }
  .cardlist a:hover .cardlist_title::before {
    right: 0;
  }
  .cardlist a:hover .cardlist_cont {
    background: #f0f9ff;
  }
}
.cardlist figure {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.cardlist .cardlist_cont {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
.cardlist .cardlist_title {
  padding-right: 24px;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
}
.cardlist .cardlist_title::before {
  content: "\e90f";
  font-family: "repro";
  color: #00a067;
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 2px;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}
.cardlist.clm2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 24px;
}
.cardlist.clm2 > * {
  width: calc((100% - 24px) / 2);
}
@media only screen and (max-width: 767px) {
  .cardlist.clm2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }
  .cardlist.clm2 > * {
    width: calc((100% - 0px) / 1);
  }
}
.cardlist.clm2 .secondary_heading {
  color: #2f2f2f;
  font-size: 1.6rem;
  line-height: 1.4375;
  letter-spacing: 0;
}
.cardlist.clm2 .secondary_heading::before {
  color: #00bc78;
}
.cardlist.clm2 .cardlist_cont {
  padding: 24px 16px;
}
.cardlist.clm2 .cardlist_cont .description {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.07em;
}
.cardlist.clm3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  row-gap: 32px;
}
.cardlist.clm3 > * {
  width: calc((100% - 64px) / 3);
}
@media only screen and (max-width: 767px) {
  .cardlist.clm3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }
  .cardlist.clm3 > * {
    width: calc((100% - 0px) / 1);
  }
}
.cardlist.clm3 .secondary_heading {
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
.cardlist.clm3 .cardlist_cont {
  padding: 24px;
}
.cardlist.clm3 .cardlist_cont .description {
  margin-top: 16px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.07em;
}
.cardlist.clm4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 24px;
}
.cardlist.clm4 > * {
  width: calc((100% - 72px) / 4);
}
@media only screen and (max-width: 767px) {
  .cardlist.clm4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }
  .cardlist.clm4 > * {
    width: calc((100% - 0px) / 1);
  }
}
.cardlist.clm4 .secondary_heading {
  color: #2f2f2f;
  font-size: 1.6rem;
  line-height: 1.4375;
  letter-spacing: 0.02em;
}
.cardlist.clm4 .secondary_heading::before {
  color: #00bc78;
}
.cardlist.clm4 .cardlist_cont {
  padding: 16px;
}
@media only screen and (max-width: 767px) {
  .cardlist.clm4 .cardlist_cont {
    padding: 24px 16px 16px;
  }
}
.cardlist.clm4 .cardlist_cont .description {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.07em;
}

/*-----------------------------------------
  newslist
-----------------------------------------*/
.newslist {
  width: 100%;
  border-top: 1px solid #e4e4e4;
}
.newslist a {
  padding: 24px 48px 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  text-decoration: none;
  position: relative;
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .newslist a {
    padding: 16px 48px 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (hover: hover) and (pointer: fine) {
  .newslist a:hover {
    background: #f0f9ff;
  }
  .newslist a:hover .title {
    color: #00bc78;
  }
}
.newslist a::before {
  content: "\e90f";
  font-family: "repro";
  color: #00bc78;
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 30px;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .newslist a::before {
    top: auto;
    right: 6px;
    bottom: 24px;
    translate: 0 0;
  }
}
.newslist a[target=_blank]::before {
  content: "\e910";
  font-family: "repro";
  color: #00bc78;
  font-size: 1.4rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 30px;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .newslist a[target=_blank]::before {
    top: auto;
    right: 5px;
    bottom: 21px;
    translate: 0 0;
  }
}
.newslist a[href$=".pdf"]::before {
  content: "\e90e";
  font-family: "repro";
  color: #00bc78;
  font-size: 2.2rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 24px;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .newslist a[href$=".pdf"]::before {
    font-size: 2rem;
    line-height: 1;
    top: auto;
    right: 2px;
    bottom: 20px;
    translate: 0 0;
  }
}
.newslist .date {
  color: #969696;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.newslist .title {
  color: #2f2f2f;
  font-size: 1.6rem;
  line-height: 1.75;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .newslist .title {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/*-----------------------------------------
  fixed_reserve_area
-----------------------------------------*/
.fixed_reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: fixed;
  top: 50%;
  right: -392px;
  z-index: 100;
  translate: 0 -50%;
  background: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .fixed_reserve {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: static;
    translate: none;
    -webkit-transition: none;
    transition: none;
  }
}

@media only screen and (max-width: 767px) {
  .scroll .btn_reserve {
    width: 100% !important;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.btn_reserve {
  min-width: auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .btn_reserve {
    width: calc(100% - 16px) !important;
    min-width: auto !important;
    position: fixed;
    right: 8px;
    bottom: 10px;
    left: 8px;
    z-index: 11;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
}
.btn_reserve .inner {
  padding: 18px 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .btn_reserve .inner {
    display: inline-block;
  }
}
.btn_reserve .btn_title {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-family: "Mohave", sans-serif;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.btn_reserve .vertical_text {
  display: block;
  margin: 0 auto;
  padding-top: 35px;
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.25;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.22em;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .btn_reserve .vertical_text {
    display: inline-block;
    padding: 0 0 0 35px;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    letter-spacing: 0;
  }
}
.btn_reserve .vertical_text::before {
  content: "\e90c";
  font-family: "repro";
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  top: 12px;
}
@media only screen and (max-width: 767px) {
  .btn_reserve .vertical_text::before {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    left: 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn_reserve:hover::after {
    opacity: 0;
  }
  .btn_reserve:hover .btn_title {
    color: #00bc78;
  }
  .btn_reserve:hover .vertical_text {
    color: #00bc78;
  }
}

.fixed_reserve_cont {
  display: block;
  width: 390px;
  border-top: 2px solid #00bc78;
  border-bottom: 2px solid #00bc78;
}
@media only screen and (max-width: 767px) {
  .fixed_reserve_cont {
    display: none;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 102;
    border: none;
  }
}
@media only screen and (min-width: 768px) {
  .fixed_reserve_cont {
    display: block !important;
  }
}

.reservation_info {
  display: block;
  text-align: center;
  padding: 32px 8px 16px;
  background: #fff;
}
.reservation_info .phone_reserve {
  text-align: center;
}
.reservation_info .phone_reserve dt {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
.reservation_info .phone_reserve dd {
  margin-top: 16px;
}
.reservation_info .phone {
  color: #00bc78;
  font-size: 2.5rem;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.reservation_info .phone a {
  color: #00bc78;
}
.reservation_info .tel_text {
  margin-right: 8px;
  font-size: 1.4rem;
  line-height: 2;
}
.reservation_info .business_hours {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
.reservation_info .btn {
  margin-top: 32px;
  text-align: center;
}
.reservation_info .btn_close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.reservation_info .btn_close::before, .reservation_info .btn_close::after {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background: #00bc78;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: -45deg;
}
.reservation_info .btn_close::after {
  rotate: 45deg;
}

.fixed_reserve_bg_layer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(47, 47, 47, 0.6);
}
@media only screen and (min-width: 768px) {
  .fixed_reserve_bg_layer {
    display: none !important;
  }
}

.menu_open .btn_reserve {
  pointer-events: none;
}
.menu_open .btn_reserve::after {
  opacity: 0;
}
.menu_open .btn_reserve .btn_title {
  color: #00bc78;
}
.menu_open .btn_reserve .vertical_text {
  color: #00bc78;
}
.menu_open .btn_reserve .line_horizontal:before,
.menu_open .btn_reserve .line_vertical:before {
  width: 100%;
}
.menu_open .btn_reserve .line_horizontal:after,
.menu_open .btn_reserve .line_vertical:after {
  height: 100%;
}

/*-----------------------------------------
  movie_area
-----------------------------------------*/
.movie_area {
  margin-top: 32px;
  padding: 32px 0 72px 32px;
  background: #dcfff2;
}
@media only screen and (max-width: 767px) {
  .movie_area {
    margin-top: 40px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 24px 0 56px 16px;
  }
}
.movie_area .movielist {
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.movie_area .movielist_item {
  width: 520px;
  border: 1px solid #e4e4e4;
  background: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1439px) {
  .movie_area .movielist_item {
    width: 37vw;
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .movie_area .movielist_item {
    width: 75vw;
  }
}
.movie_area .movielist_item a {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 16px;
  color: #2f2f2f;
  text-decoration: none;
  position: relative;
  background: #fff;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media only screen and (max-width: 979px) {
  .movie_area .movielist_item a {
    padding: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .movie_area .movielist_item a {
    gap: 8px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .movie_area .movielist_item a:hover {
    opacity: 0.4;
  }
}
.movie_area .movielist_item a::before {
  content: "\e910";
  font-family: "repro";
  font-size: 1.2rem;
  line-height: 1;
  color: #969696;
  position: absolute;
  right: 16px;
  bottom: 16px;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .movie_area .movielist_item a::before {
    right: 8px;
    bottom: 8px;
  }
}
.movie_area .movie_img {
  width: 240px;
  -ms-flex-item-align: self-start;
      align-self: self-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  border: 1px solid #e4e4e4;
}
@media only screen and (max-width: 1439px) {
  .movie_area .movie_img {
    width: 160px;
  }
}
@media only screen and (max-width: 979px) {
  .movie_area .movie_img {
    width: 100%;
  }
}
.movie_area .movie_img::before {
  content: "";
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
  background: url(../img/common/icon_play.png) no-repeat center center/100% 100%;
}
@media only screen and (max-width: 1439px) {
  .movie_area .text_area {
    width: calc(100% - 160px);
  }
}
@media only screen and (max-width: 979px) {
  .movie_area .text_area {
    width: 100%;
  }
}
.movie_area .movie_title {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .movie_area .movie_title {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.movie_area .author_position {
  margin-top: 16px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
}
@media only screen and (max-width: 767px) {
  .movie_area .author_position {
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.4;
  }
}
.movie_area .author_name_wrap {
  margin-top: 2px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media only screen and (max-width: 767px) {
  .movie_area .author_name_wrap {
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}
.movie_area .author_name_wrap .author_name {
  margin-right: 1em;
  font-weight: 700;
}
.movie_area .movie_slider {
  margin-bottom: 0;
}
.movie_area .movie_slider .slick-track {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.movie_area .movie_slider .slick-prev,
.movie_area .movie_slider .slick-next {
  width: 40px;
  height: 40px;
  display: block;
  background: #fff;
  -webkit-transform-origin: top;
          transform-origin: top;
  z-index: 1;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .movie_area .movie_slider .slick-prev,
  .movie_area .movie_slider .slick-next {
    width: 32px;
    height: 32px;
  }
}
.movie_area .movie_slider .slick-prev::before,
.movie_area .movie_slider .slick-next::before {
  content: "\e90d";
  font-family: "repro";
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  font-size: 1.2rem;
  color: #00bc78;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .movie_area .movie_slider .slick-prev::before,
  .movie_area .movie_slider .slick-next::before {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .movie_area .movie_slider .slick-prev:hover,
  .movie_area .movie_slider .slick-next:hover {
    opacity: 1;
  }
  .movie_area .movie_slider .slick-prev:hover::before,
  .movie_area .movie_slider .slick-next:hover::before {
    opacity: 0.4;
  }
}
.movie_area .movie_slider .slick-prev {
  left: -52px;
  rotate: 180deg;
}
@media only screen and (max-width: 767px) {
  .movie_area .movie_slider .slick-prev {
    left: -8px;
  }
}
.movie_area .movie_slider .slick-next {
  right: -21px;
}
@media only screen and (max-width: 767px) {
  .movie_area .movie_slider .slick-next {
    right: 8px;
  }
}
.movie_area .movie_slider .slick-dots {
  width: calc(100% - 32px);
  bottom: -40px;
}
@media only screen and (max-width: 767px) {
  .movie_area .movie_slider .slick-dots {
    width: calc(100% - 16px);
    bottom: -32px;
  }
}
.movie_area .movie_slider .slick-dots li {
  height: 8px;
  width: 8px;
  margin: 0 4px;
}
.movie_area .movie_slider .slick-dots li.slick-active button {
  background: #00bc78;
  border-radius: 0;
}
.movie_area .movie_slider .slick-dots li button {
  height: 100%;
  width: 100%;
  padding: 0;
  background: #e4e4e4;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.movie_area .movie_slider .slick-dots li button::before {
  content: none;
}

/* =======================================

  HEADER

======================================= */
header {
  width: calc(100% - 32px);
  min-width: 980px;
  height: 104px;
  position: fixed;
  top: 16px;
  right: 16px;
  left: 16px;
  z-index: 100;
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px -5px #cfcfcf;
          box-shadow: 0px 0px 16px -5px #cfcfcf;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  header {
    width: 100%;
    min-width: auto;
    height: 62px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid #e4e4e4;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
header .cont_outer {
  height: 100%;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  header .cont_outer {
    position: static;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  header .site_logo {
    position: absolute;
    top: 14px;
    left: 8px;
  }
}
header .site_logo a {
  color: #2f2f2f;
  text-decoration: none;
}
header .logo_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
@media only screen and (max-width: 1179px) {
  header .logo_wrap {
    gap: 10px;
  }
}
header .logo_img {
  width: 240px;
}
@media only screen and (max-width: 1439px) {
  header .logo_img {
    width: 176px;
  }
}
@media only screen and (max-width: 1179px) {
  header .logo_img {
    width: 152px;
  }
}
@media only screen and (max-width: 767px) {
  header .logo_img {
    width: 144px;
  }
}
header .logo_text {
  font-size: 1.5rem;
  line-height: 1.4666666667;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1439px) {
  header .logo_text {
    font-size: 1.3rem;
    line-height: 1.3846153846;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 1179px) {
  header .logo_text {
    font-size: 1.1rem;
    line-height: 1.2727272727;
  }
}
@media only screen and (max-width: 767px) {
  header .logo_text {
    font-size: 1rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  header .nav_wrap {
    display: none;
    width: 100%;
    max-height: 90svh;
    position: absolute;
    top: 62px;
    left: 0;
    overflow: auto;
    background: #fff;
  }
}
header .global_nav ul {
  padding: 0 32px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 1439px) {
  header .global_nav ul {
    padding: 16px 24px;
  }
}
@media only screen and (max-width: 1179px) {
  header .global_nav ul {
    padding: 16px;
    gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  header .global_nav ul {
    padding: 0;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: transparent;
  }
}
header .global_nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  header .global_nav li {
    border-bottom: 1px solid #e4e4e4;
  }
}
header .global_nav li.active a {
  color: #00a067;
}
header .global_nav li.active a::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #00bc78;
}
@media only screen and (max-width: 767px) {
  header .global_nav li.active a::after {
    content: none;
  }
}
header .global_nav a {
  padding: 16px 0;
  color: #2f2f2f;
  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;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  text-decoration: none;
  position: relative;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media only screen and (max-width: 1439px) {
  header .global_nav a {
    font-size: 1.3rem;
    line-height: 1.5384615385;
  }
}
@media only screen and (max-width: 1179px) {
  header .global_nav a {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}
@media only screen and (max-width: 767px) {
  header .global_nav a {
    width: 100%;
    padding: 18px 64px 18px 24px;
    text-align: left;
    display: block;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    position: relative;
  }
  header .global_nav a::before {
    content: "\e90f";
    font-family: "repro";
    color: #00bc78;
    font-size: 1.2rem;
    line-height: 1;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 30px;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
  }
}
@media (hover: hover) and (pointer: fine) {
  header .global_nav a:hover {
    color: #00bc78;
  }
}
@media only screen and (min-width: 1439px) {
  header .global_nav .bp_1440 {
    display: none;
  }
}
@media only screen and (max-width: 1439px) {
  header .global_nav .bp_1440 {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  header .global_nav .bp_1440 {
    display: none;
  }
}
header .reservation_info {
  display: none;
}
@media only screen and (max-width: 767px) {
  header .reservation_info {
    display: block;
  }
}

/*-----------------------------------------
  scroll
-----------------------------------------*/
@media only screen and (max-width: 767px) {
  .scroll header {
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
  }
  .scroll header #sp_menu_btn {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .scroll #site_index header {
    border-bottom: 1px solid #e4e4e4;
  }
  .scroll #site_index #sp_menu_btn {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
/*-----------------------------------------
  menu_open
-----------------------------------------*/
@media only screen and (max-width: 767px) {
  .menu_open #site_index header {
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
  }
  .menu_open #site_index header #sp_menu_btn {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .menu_open {
    overflow: hidden;
  }
  .menu_open body {
    overflow: hidden;
  }
  .menu_open header {
    border-bottom: 1px solid #e4e4e4;
    background: #fff;
  }
  .menu_open header #sp_menu_btn {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .menu_open header .global_nav {
    display: block;
  }
}
/*-----------------------------------------
  site_index
-----------------------------------------*/
#site_index header {
  background: transparent;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#site_index #sp_menu_btn {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll #site_index header {
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px -5px #cfcfcf;
          box-shadow: 0px 0px 16px -5px #cfcfcf;
}
@media only screen and (max-width: 767px) {
  .scroll #site_index header {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

/*-----------------------------------------
  sp_menu_btn
-----------------------------------------*/
@media only screen and (max-width: 767px) {
  #sp_menu_btn {
    width: 62px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    border-left: 1px solid #e4e4e4;
    background: #fff;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  #sp_menu_btn .switch_btn {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
  }
  #sp_menu_btn .switch_btn span {
    width: 20px;
    height: 1.1px;
    display: block;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    left: 50%;
    translate: -50% 0;
    background: #00bc78;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  #sp_menu_btn .switch_btn span:nth-of-type(1) {
    top: calc(50% - 7px);
    rotate: 0deg;
  }
  #sp_menu_btn .switch_btn span:nth-of-type(2) {
    top: 50%;
    rotate: 0deg;
  }
  #sp_menu_btn .switch_btn span:nth-of-type(3) {
    top: calc(50% + 7px);
    rotate: 0deg;
  }
  #sp_menu_btn .switch_btn.btn_close span:nth-of-type(1) {
    top: 50%;
    rotate: -45deg;
  }
  #sp_menu_btn .switch_btn.btn_close span:nth-of-type(2) {
    opacity: 0;
    left: 70%;
  }
  #sp_menu_btn .switch_btn.btn_close span:nth-of-type(3) {
    top: 50%;
    rotate: 45deg;
  }
}
/*-----------------------------------------
  sp_menu
-----------------------------------------*/
@media only screen and (max-width: 767px) {
  .bg_layer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(47, 47, 47, 0.6);
  }
}
/*-----------------------------------------
  PC width
-----------------------------------------*/
@media only screen and (min-width: 768px) {
  .nav_wrap {
    display: block !important;
  }
  .sp_menu_btn {
    display: none;
  }
}
/* =======================================

  FOOTER

======================================= */
footer {
  /*-----------------------------------------
    clinic_field
  -----------------------------------------*/
  /*-----------------------------------------
    reserve_field
  -----------------------------------------*/
  /*-----------------------------------------
    lowerlink_field
  -----------------------------------------*/
  /*-----------------------------------------
    access_field
  -----------------------------------------*/
  /*-----------------------------------------
    facility_field
  -----------------------------------------*/
  /*-----------------------------------------
    pagetop
  -----------------------------------------*/
  /*-----------------------------------------
    footer_navi
  -----------------------------------------*/
}
footer .clinic_field {
  padding-top: 160px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  footer .clinic_field {
    padding-top: 64px;
  }
}
footer .clinic_field .clinic_slider {
  pointer-events: none;
}
footer .clinic_field .clinic_slider .slick-slide img {
  width: 100%;
  height: 235px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  footer .clinic_field .clinic_slider .slick-slide img {
    height: 100%;
    aspect-ratio: 1/1;
  }
}
footer .reserve_field {
  padding: 160px 0;
  background: #fff;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  footer .reserve_field {
    padding: 80px 0;
  }
}
footer .reserve_field .line_animation {
  width: 100%;
  position: absolute;
  top: calc(50% + 136px);
  translate: 0 -50%;
  z-index: -1;
  opacity: 0.2;
}
@media only screen and (max-width: 767px) {
  footer .reserve_field .line_animation {
    width: 300%;
    top: calc(50% - 232px);
  }
}
footer .reserve_field .primary_heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 48px 0 48px 40px;
  color: #fff;
}
@media only screen and (max-width: 1179px) {
  footer .reserve_field .primary_heading {
    padding: 48px 0;
  }
}
@media only screen and (max-width: 767px) {
  footer .reserve_field .primary_heading {
    padding: 0;
  }
}
footer .reserve_field .primary_heading .english {
  color: #fff;
}
footer .reserve_field .reserve_wrap {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  background: linear-gradient(-45deg, #00d6c9 0%, #11c181 100%);
}
@media only screen and (max-width: 767px) {
  footer .reserve_field .reserve_wrap {
    padding: 40px 16px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .reserve_field .reserve_way {
  width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 22px;
  position: relative;
  background: #fff;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  footer .reserve_field .reserve_way {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
footer .reserve_field .reserve_way::before {
  content: "";
  width: 1px;
  height: 88px;
  display: block;
  background: #e4e4e4;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: 15deg;
}
@media only screen and (max-width: 767px) {
  footer .reserve_field .reserve_way::before {
    content: none;
  }
}
footer .reserve_field .reserve_way dl {
  width: calc((100% - 22px) / 2);
  padding: 32px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  footer .reserve_field .reserve_way dl {
    width: 100%;
    padding: 24px;
  }
}
footer .reserve_field .reserve_way dl.phone {
  padding: 32px 4px;
  border-bottom: 1px solid #e4e4e4;
}
footer .reserve_field .reserve_way dt {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 700;
}
footer .reserve_field .reserve_way dd {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  footer .reserve_field .reserve_way dd {
    margin-top: 16px;
  }
}
footer .reserve_field .reserve_way .tel {
  font-size: 2.5rem;
  line-height: 1.28;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
footer .reserve_field .reserve_way .business_hours {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.07em;
}
footer .lowerlink_field {
  padding-bottom: 120px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  footer .lowerlink_field {
    padding-bottom: 80px;
  }
}
footer .lowerlink_field .type_lowerlink .cardlist_item.hidden {
  display: none;
}
footer .lowerlink_field .type_lowerlink .cardlist_item a {
  color: #2f2f2f;
}
footer .access_field {
  padding: 160px 0;
  background: #f0f9ff;
}
@media only screen and (max-width: 767px) {
  footer .access_field {
    padding: 80px 0;
  }
}
footer .access_field .access_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 88px;
     -moz-column-gap: 88px;
          column-gap: 88px;
  row-gap: 88px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
footer .access_field .access_wrap > * {
  width: calc((100% - 88px) / 2);
}
@media only screen and (max-width: 1179px) {
  footer .access_field .access_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 40px;
  }
  footer .access_field .access_wrap > * {
    width: calc((100% - 40px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  footer .access_field .access_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    row-gap: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .access_field .access_wrap > * {
    width: calc((100% - 0px) / 1);
  }
}
footer .access_field .text_area .access_title {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  footer .access_field .text_area .access_title {
    font-size: 2rem;
    line-height: 1.45;
  }
}
footer .access_field .text_area .access_title .belong {
  margin-top: 72px;
  display: block;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8571428571;
}
@media only screen and (max-width: 767px) {
  footer .access_field .text_area .access_title .belong {
    margin: 40px 0 8px;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
footer .access_field .company_info {
  width: 100%;
  margin-top: 24px;
}
footer .access_field .company_info tr {
  border-bottom: 1px solid #e4e4e4;
}
footer .access_field .company_info th,
footer .access_field .company_info td {
  padding: 16px 0;
}
@media only screen and (max-width: 767px) {
  footer .access_field .company_info th,
  footer .access_field .company_info td {
    display: block;
  }
}
footer .access_field .company_info th {
  min-width: 90px;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  footer .access_field .company_info th {
    padding: 16px 0 0;
  }
}
footer .access_field .company_info td {
  padding-left: 32px;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 767px) {
  footer .access_field .company_info td {
    padding: 8px 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  footer .access_field .map_area {
    margin-top: 40px;
  }
}
footer .access_field .map_area iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  footer .access_field .map_area iframe {
    aspect-ratio: 6/4;
  }
}
footer .facility_field {
  padding: 160px 0 40px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background: #fff url(../img/common/footer_bg.jpg) no-repeat center bottom/cover;
}
@media only screen and (max-width: 767px) {
  footer .facility_field {
    padding: 80px 0 40px;
  }
}
footer .facility_field::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.8);
}
footer .facility_field .cardlist.clm4 {
  margin-top: 72px;
}
@media only screen and (max-width: 767px) {
  footer .facility_field .cardlist.clm4 {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  footer .facility_field .cardlist.clm4 img {
    height: 132px;
    max-width: none;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
footer .facility_field .cardlist.clm2 {
  margin: 24px 0 140px;
}
@media only screen and (max-width: 767px) {
  footer .facility_field .cardlist.clm2 {
    margin: 16px 0 80px;
  }
}
footer .pagetop {
  text-align: center;
}
footer .pagetop .btn_pagetop {
  padding-right: 24px;
  font-family: "Mohave", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  position: relative;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  footer .pagetop .btn_pagetop {
    padding: 22px 0 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  footer .pagetop .btn_pagetop:hover {
    opacity: 0.6;
  }
}
footer .pagetop .btn_pagetop::before {
  content: "";
  content: "\e90f";
  font-family: "repro";
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  rotate: -90deg;
}
@media only screen and (max-width: 767px) {
  footer .pagetop .btn_pagetop::before {
    top: 0;
    right: auto;
    left: 50%;
    translate: -50% 0;
  }
}
footer .footer_navi {
  padding: 28px 0 32px;
  text-align: center;
  background: #2f2f2f;
}
@media only screen and (max-width: 767px) {
  footer .footer_navi {
    padding: 26px 0 96px;
  }
}
footer .footer_navi .linklist {
  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;
  gap: 60px;
}
@media only screen and (max-width: 767px) {
  footer .footer_navi .linklist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
footer .footer_navi .linklist li {
  position: relative;
}
footer .footer_navi .linklist li:not(:first-child)::before {
  content: "\e90c";
  font-family: "repro";
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: -32px;
}
@media only screen and (max-width: 767px) {
  footer .footer_navi .linklist li:not(:first-child)::before {
    content: none;
  }
}
footer .footer_navi .linklist li a {
  display: inline-block;
  padding-right: 28px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.07em;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  footer .footer_navi .linklist li a:hover {
    opacity: 0.6;
  }
}
footer .footer_navi .linklist li a::before {
  content: "\e910";
  font-family: "repro";
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
}
footer .footer_navi small {
  margin-top: 20px;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 767px) {
  footer .footer_navi small {
    margin-top: 20px;
  }
}

/* =======================================

  PRINT

======================================= */
/*-----------------------------------------
  print
-----------------------------------------*/
@media print {
  body {
    zoom: 0.7;
  }
}/*# sourceMappingURL=common.css.map */