@charset "UTF-8";
@import url("/css/fonts/icon.css");
@import url("https://fonts.googleapis.com/css2?family=Hurricane&family=Lusitana:wght@400;700&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;700&family=Noto+Serif+JP:wght@200..900&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 {
  display: inline-block;
  font-size: 70%;
  vertical-align: super;
  position: relative;
  inset: -0.2em auto auto;
}

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

ul {
  list-style: none;
}

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

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;
}

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 {
  box-sizing: border-box;
}

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

  BASE

======================================= */
html.menu_open,
html.menu_open body {
  overflow: hidden;
}

body {
  opacity: 0;
  visibility: hidden;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  color: #222;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  position: relative;
  background: #fff;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
@media only screen and (max-width: 767px) {
  body {
    min-width: 100%;
    padding-bottom: 60px;
    line-height: 1.6;
  }
}

p {
  font-weight: 400;
}

a {
  font-weight: 500;
  color: #5a0a32;
}
@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
  }
}

.tel a {
  color: #222;
  text-decoration: underline;
}

.no_tel a {
  pointer-events: none;
  text-decoration: none;
  color: #222;
}

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

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

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

  SCROLL HINT

======================================= */
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    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);
  box-sizing: border-box;
  width: 130px;
  height: 80px;
  border-radius: 5px;
  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;
  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 {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

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

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

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

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

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

.scroll-hint-icon:before {
  width: 30px;
  height: 30px;
}

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

  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%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  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;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  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 {
  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;
}

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

  AOS

======================================= */
[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

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

  UTILITY

======================================= */
/*-----------------------------------------
  color
-----------------------------------------*/
.color_site_primary {
  color: #5a0a32 !important;
}

.color_site_secondary {
  color: #0857a7 !important;
}

.color_emphasis {
  color: #DE0004 !important;
}

.color_text_base {
  color: #222 !important;
}

.color_text_secondary {
  color: #555 !important;
}

.color_text_white {
  color: #fff !important;
}

/*-----------------------------------------
  bg color
-----------------------------------------*/
.color_bg_site_primary {
  background-color: #5a0a32 !important;
}

.color_bg_primary {
  background-color: #f1f0f3 !important;
}

.color_bg_white {
  background-color: #fff !important;
}

/*-----------------------------------------
  font
-----------------------------------------*/
.font_family_decoration {
  font-family: "Lusitana", serif !important;
}

.font_family_mincho {
  font-family: "Shippori Mincho", serif !important;
}

.font_family_handwritten {
  font-family: "Hurricane", cursive !important;
}

/*-----------------------------------------
  font_size
-----------------------------------------*/
.fs_20 {
  font-size: 2rem !important;
}

.fs_18 {
  font-size: 1.8rem !important;
}

.fs_16 {
  font-size: 1.6rem !important;
}

.fs_15 {
  font-size: 1.5rem !important;
}

.fs_14 {
  font-size: 1.4rem !important;
}

.fs_13 {
  font-size: 1.3rem !important;
}

.fs_12 {
  font-size: 1.2rem !important;
}

.fs_11 {
  font-size: 1.1rem !important;
}

.fs_10 {
  font-size: 1rem !important;
}

/*-----------------------------------------
  font_weight
-----------------------------------------*/
.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;
}

@media only screen and (max-width: 767px) {
  .sp_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;
}

/*-----------------------------------------
  white-space
-----------------------------------------*/
.nowrap {
  white-space: nowrap;
}

/*-----------------------------------------
  border
-----------------------------------------*/
.no_border {
  border: 0 !important;
}

/*-----------------------------------------
  flex
-----------------------------------------*/
.justify_content_s {
  justify-content: flex-start;
}

.justify_content_c {
  justify-content: center;
}

.justify_content_e {
  justify-content: flex-end;
}

.align_items_s {
  align-items: flex-start;
}

.align_items_c {
  align-items: center;
}

.align_items_e {
  align-items: flex-end;
}

.row_reverse {
  flex-direction: row-reverse;
}

.column_reverse {
  flex-direction: column-reverse;
}

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

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

.display_inline {
  display: inline !important;
}

.display_flex {
  display: flex !important;
}

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

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

.pc_flex {
  display: flex !important;
}

.pc_only {
  display: block !important;
}

.pc_tablet {
  display: block !important;
}

.tablet {
  display: none !important;
}

.sp_tablet {
  display: none !important;
}

.sp {
  display: none !important;
}

.sp_inline {
  display: none !important;
}

@media only screen and (max-width: 980px) {
  .pc_only {
    display: none !important;
  }
  .tablet {
    display: block !important;
  }
  .sp_tablet {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .pc_inline {
    display: none !important;
  }
  .pc_flex {
    display: none !important;
  }
  .pc_tablet {
    display: none !important;
  }
  .tablet {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp_inline {
    display: inline-block !important;
  }
}
/*-----------------------------------------
  opacity
-----------------------------------------*/
.opacity_1 {
  opacity: 1 !important;
}

/*-----------------------------------------
  width
-----------------------------------------*/
.w_1 {
  width: 1% !important;
}

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

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

.w_2 {
  width: 2% !important;
}

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

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

.w_3 {
  width: 3% !important;
}

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

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

.w_4 {
  width: 4% !important;
}

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

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

.w_5 {
  width: 5% !important;
}

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

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

.w_6 {
  width: 6% !important;
}

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

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

.w_7 {
  width: 7% !important;
}

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

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

.w_8 {
  width: 8% !important;
}

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

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

.w_9 {
  width: 9% !important;
}

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

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

.w_10 {
  width: 10% !important;
}

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

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

.w_11 {
  width: 11% !important;
}

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

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

.w_12 {
  width: 12% !important;
}

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

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

.w_13 {
  width: 13% !important;
}

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

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

.w_14 {
  width: 14% !important;
}

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

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

.w_15 {
  width: 15% !important;
}

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

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

.w_16 {
  width: 16% !important;
}

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

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

.w_17 {
  width: 17% !important;
}

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

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

.w_18 {
  width: 18% !important;
}

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

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

.w_19 {
  width: 19% !important;
}

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

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

.w_20 {
  width: 20% !important;
}

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

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

.w_21 {
  width: 21% !important;
}

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

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

.w_22 {
  width: 22% !important;
}

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

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

.w_23 {
  width: 23% !important;
}

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

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

.w_24 {
  width: 24% !important;
}

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

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

.w_25 {
  width: 25% !important;
}

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

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

.w_26 {
  width: 26% !important;
}

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

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

.w_27 {
  width: 27% !important;
}

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

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

.w_28 {
  width: 28% !important;
}

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

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

.w_29 {
  width: 29% !important;
}

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

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

.w_30 {
  width: 30% !important;
}

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

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

.w_31 {
  width: 31% !important;
}

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

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

.w_32 {
  width: 32% !important;
}

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

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

.w_33 {
  width: 33% !important;
}

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

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

.w_34 {
  width: 34% !important;
}

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

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

.w_35 {
  width: 35% !important;
}

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

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

.w_36 {
  width: 36% !important;
}

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

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

.w_37 {
  width: 37% !important;
}

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

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

.w_38 {
  width: 38% !important;
}

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

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

.w_39 {
  width: 39% !important;
}

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

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

.w_40 {
  width: 40% !important;
}

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

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

.w_41 {
  width: 41% !important;
}

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

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

.w_42 {
  width: 42% !important;
}

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

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

.w_43 {
  width: 43% !important;
}

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

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

.w_44 {
  width: 44% !important;
}

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

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

.w_45 {
  width: 45% !important;
}

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

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

.w_46 {
  width: 46% !important;
}

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

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

.w_47 {
  width: 47% !important;
}

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

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

.w_48 {
  width: 48% !important;
}

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

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

.w_49 {
  width: 49% !important;
}

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

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

.w_50 {
  width: 50% !important;
}

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

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

.w_51 {
  width: 51% !important;
}

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

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

.w_52 {
  width: 52% !important;
}

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

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

.w_53 {
  width: 53% !important;
}

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

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

.w_54 {
  width: 54% !important;
}

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

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

.w_55 {
  width: 55% !important;
}

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

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

.w_56 {
  width: 56% !important;
}

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

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

.w_57 {
  width: 57% !important;
}

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

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

.w_58 {
  width: 58% !important;
}

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

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

.w_59 {
  width: 59% !important;
}

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

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

.w_60 {
  width: 60% !important;
}

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

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

.w_61 {
  width: 61% !important;
}

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

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

.w_62 {
  width: 62% !important;
}

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

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

.w_63 {
  width: 63% !important;
}

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

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

.w_64 {
  width: 64% !important;
}

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

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

.w_65 {
  width: 65% !important;
}

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

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

.w_66 {
  width: 66% !important;
}

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

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

.w_67 {
  width: 67% !important;
}

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

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

.w_68 {
  width: 68% !important;
}

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

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

.w_69 {
  width: 69% !important;
}

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

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

.w_70 {
  width: 70% !important;
}

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

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

.w_71 {
  width: 71% !important;
}

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

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

.w_72 {
  width: 72% !important;
}

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

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

.w_73 {
  width: 73% !important;
}

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

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

.w_74 {
  width: 74% !important;
}

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

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

.w_75 {
  width: 75% !important;
}

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

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

.w_76 {
  width: 76% !important;
}

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

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

.w_77 {
  width: 77% !important;
}

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

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

.w_78 {
  width: 78% !important;
}

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

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

.w_79 {
  width: 79% !important;
}

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

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

.w_80 {
  width: 80% !important;
}

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

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

.w_81 {
  width: 81% !important;
}

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

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

.w_82 {
  width: 82% !important;
}

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

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

.w_83 {
  width: 83% !important;
}

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

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

.w_84 {
  width: 84% !important;
}

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

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

.w_85 {
  width: 85% !important;
}

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

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

.w_86 {
  width: 86% !important;
}

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

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

.w_87 {
  width: 87% !important;
}

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

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

.w_88 {
  width: 88% !important;
}

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

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

.w_89 {
  width: 89% !important;
}

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

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

.w_90 {
  width: 90% !important;
}

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

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

.w_91 {
  width: 91% !important;
}

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

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

.w_92 {
  width: 92% !important;
}

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

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

.w_93 {
  width: 93% !important;
}

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

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

.w_94 {
  width: 94% !important;
}

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

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

.w_95 {
  width: 95% !important;
}

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

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

.w_96 {
  width: 96% !important;
}

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

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

.w_97 {
  width: 97% !important;
}

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

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

.w_98 {
  width: 98% !important;
}

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

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

.w_99 {
  width: 99% !important;
}

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

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

.w_100 {
  width: 100% !important;
}

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

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

.full {
  width: 100% !important;
}

@media only screen and (max-width: 767px) {
  .sp_full {
    width: 100% !important;
  }
}
/*-----------------------------------------
  radius
-----------------------------------------*/
.radius_0 {
  border-radius: 0 !important;
}

.radius_4 {
  border-radius: 4px !important;
}

.radius_8 {
  border-radius: 8px !important;
}

.radius_12 {
  border-radius: 12px !important;
}

.radius_16 {
  border-radius: 16px !important;
}

.radius_24 {
  border-radius: 24px !important;
}

.radius_32 {
  border-radius: 32px !important;
}

.radius_36 {
  border-radius: 36px !important;
}

.radius_40 {
  border-radius: 40px !important;
}

.radius_48 {
  border-radius: 48px !important;
}

.radius_56 {
  border-radius: 56px !important;
}

.radius_64 {
  border-radius: 64px !important;
}

.radius_72 {
  border-radius: 72px !important;
}

.radius_80 {
  border-radius: 80px !important;
}

@media only screen and (max-width: 767px) {
  .radius_0 {
    border-radius: 0 !important;
  }
  .radius_4 {
    border-radius: 4px !important;
  }
  .radius_8 {
    border-radius: 8px !important;
  }
  .radius_12 {
    border-radius: 12px !important;
  }
  .radius_16 {
    border-radius: 16px !important;
  }
  .radius_24 {
    border-radius: 24px !important;
  }
  .radius_32 {
    border-radius: 32px !important;
  }
  .radius_36 {
    border-radius: 36px !important;
  }
  .radius_40 {
    border-radius: 40px !important;
  }
  .radius_48 {
    border-radius: 48px !important;
  }
  .radius_56 {
    border-radius: 56px !important;
  }
  .radius_64 {
    border-radius: 64px !important;
  }
  .radius_72 {
    border-radius: 72px !important;
  }
  .radius_80 {
    border-radius: 80px !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_4 {
  margin: 4px !important;
}
.mb_4 {
  margin-bottom: 4px !important;
}
.mt_4 {
  margin-top: 4px !important;
}
.ml_4 {
  margin-left: 4px !important;
}
.mr_4 {
  margin-right: 4px !important;
}
.my_4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}
.mx_4 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

.ma_8 {
  margin: 8px !important;
}
.mb_8 {
  margin-bottom: 8px !important;
}
.mt_8 {
  margin-top: 8px !important;
}
.ml_8 {
  margin-left: 8px !important;
}
.mr_8 {
  margin-right: 8px !important;
}
.my_8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}
.mx_8 {
  margin-right: 8px !important;
  margin-left: 8px !important;
}

.ma_12 {
  margin: 12px !important;
}
.mb_12 {
  margin-bottom: 12px !important;
}
.mt_12 {
  margin-top: 12px !important;
}
.ml_12 {
  margin-left: 12px !important;
}
.mr_12 {
  margin-right: 12px !important;
}
.my_12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}
.mx_12 {
  margin-right: 12px !important;
  margin-left: 12px !important;
}

.ma_16 {
  margin: 16px !important;
}
.mb_16 {
  margin-bottom: 16px !important;
}
.mt_16 {
  margin-top: 16px !important;
}
.ml_16 {
  margin-left: 16px !important;
}
.mr_16 {
  margin-right: 16px !important;
}
.my_16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}
.mx_16 {
  margin-right: 16px !important;
  margin-left: 16px !important;
}

.ma_24 {
  margin: 24px !important;
}
.mb_24 {
  margin-bottom: 24px !important;
}
.mt_24 {
  margin-top: 24px !important;
}
.ml_24 {
  margin-left: 24px !important;
}
.mr_24 {
  margin-right: 24px !important;
}
.my_24 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
.mx_24 {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

.ma_32 {
  margin: 32px !important;
}
.mb_32 {
  margin-bottom: 32px !important;
}
.mt_32 {
  margin-top: 32px !important;
}
.ml_32 {
  margin-left: 32px !important;
}
.mr_32 {
  margin-right: 32px !important;
}
.my_32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}
.mx_32 {
  margin-right: 32px !important;
  margin-left: 32px !important;
}

.ma_36 {
  margin: 36px !important;
}
.mb_36 {
  margin-bottom: 36px !important;
}
.mt_36 {
  margin-top: 36px !important;
}
.ml_36 {
  margin-left: 36px !important;
}
.mr_36 {
  margin-right: 36px !important;
}
.my_36 {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}
.mx_36 {
  margin-right: 36px !important;
  margin-left: 36px !important;
}

.ma_40 {
  margin: 40px !important;
}
.mb_40 {
  margin-bottom: 40px !important;
}
.mt_40 {
  margin-top: 40px !important;
}
.ml_40 {
  margin-left: 40px !important;
}
.mr_40 {
  margin-right: 40px !important;
}
.my_40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.mx_40 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.ma_48 {
  margin: 48px !important;
}
.mb_48 {
  margin-bottom: 48px !important;
}
.mt_48 {
  margin-top: 48px !important;
}
.ml_48 {
  margin-left: 48px !important;
}
.mr_48 {
  margin-right: 48px !important;
}
.my_48 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}
.mx_48 {
  margin-right: 48px !important;
  margin-left: 48px !important;
}

.ma_56 {
  margin: 56px !important;
}
.mb_56 {
  margin-bottom: 56px !important;
}
.mt_56 {
  margin-top: 56px !important;
}
.ml_56 {
  margin-left: 56px !important;
}
.mr_56 {
  margin-right: 56px !important;
}
.my_56 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}
.mx_56 {
  margin-right: 56px !important;
  margin-left: 56px !important;
}

.ma_64 {
  margin: 64px !important;
}
.mb_64 {
  margin-bottom: 64px !important;
}
.mt_64 {
  margin-top: 64px !important;
}
.ml_64 {
  margin-left: 64px !important;
}
.mr_64 {
  margin-right: 64px !important;
}
.my_64 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}
.mx_64 {
  margin-right: 64px !important;
  margin-left: 64px !important;
}

.ma_72 {
  margin: 72px !important;
}
.mb_72 {
  margin-bottom: 72px !important;
}
.mt_72 {
  margin-top: 72px !important;
}
.ml_72 {
  margin-left: 72px !important;
}
.mr_72 {
  margin-right: 72px !important;
}
.my_72 {
  margin-top: 72px !important;
  margin-bottom: 72px !important;
}
.mx_72 {
  margin-right: 72px !important;
  margin-left: 72px !important;
}

.ma_80 {
  margin: 80px !important;
}
.mb_80 {
  margin-bottom: 80px !important;
}
.mt_80 {
  margin-top: 80px !important;
}
.ml_80 {
  margin-left: 80px !important;
}
.mr_80 {
  margin-right: 80px !important;
}
.my_80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}
.mx_80 {
  margin-right: 80px !important;
  margin-left: 80px !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;
  }
  .sp_ma_4 {
    margin: 4px !important;
  }
  .sp_mb_4 {
    margin-bottom: 4px !important;
  }
  .sp_mt_4 {
    margin-top: 4px !important;
  }
  .sp_ml_4 {
    margin-left: 4px !important;
  }
  .sp_mr_4 {
    margin-right: 4px !important;
  }
  .sp_my_4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .sp_mx_4 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  .sp_ma_8 {
    margin: 8px !important;
  }
  .sp_mb_8 {
    margin-bottom: 8px !important;
  }
  .sp_mt_8 {
    margin-top: 8px !important;
  }
  .sp_ml_8 {
    margin-left: 8px !important;
  }
  .sp_mr_8 {
    margin-right: 8px !important;
  }
  .sp_my_8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .sp_mx_8 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  .sp_ma_12 {
    margin: 12px !important;
  }
  .sp_mb_12 {
    margin-bottom: 12px !important;
  }
  .sp_mt_12 {
    margin-top: 12px !important;
  }
  .sp_ml_12 {
    margin-left: 12px !important;
  }
  .sp_mr_12 {
    margin-right: 12px !important;
  }
  .sp_my_12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .sp_mx_12 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
  .sp_ma_16 {
    margin: 16px !important;
  }
  .sp_mb_16 {
    margin-bottom: 16px !important;
  }
  .sp_mt_16 {
    margin-top: 16px !important;
  }
  .sp_ml_16 {
    margin-left: 16px !important;
  }
  .sp_mr_16 {
    margin-right: 16px !important;
  }
  .sp_my_16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .sp_mx_16 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  .sp_ma_24 {
    margin: 24px !important;
  }
  .sp_mb_24 {
    margin-bottom: 24px !important;
  }
  .sp_mt_24 {
    margin-top: 24px !important;
  }
  .sp_ml_24 {
    margin-left: 24px !important;
  }
  .sp_mr_24 {
    margin-right: 24px !important;
  }
  .sp_my_24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .sp_mx_24 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  .sp_ma_32 {
    margin: 32px !important;
  }
  .sp_mb_32 {
    margin-bottom: 32px !important;
  }
  .sp_mt_32 {
    margin-top: 32px !important;
  }
  .sp_ml_32 {
    margin-left: 32px !important;
  }
  .sp_mr_32 {
    margin-right: 32px !important;
  }
  .sp_my_32 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .sp_mx_32 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }
  .sp_ma_36 {
    margin: 36px !important;
  }
  .sp_mb_36 {
    margin-bottom: 36px !important;
  }
  .sp_mt_36 {
    margin-top: 36px !important;
  }
  .sp_ml_36 {
    margin-left: 36px !important;
  }
  .sp_mr_36 {
    margin-right: 36px !important;
  }
  .sp_my_36 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .sp_mx_36 {
    margin-right: 36px !important;
    margin-left: 36px !important;
  }
  .sp_ma_40 {
    margin: 40px !important;
  }
  .sp_mb_40 {
    margin-bottom: 40px !important;
  }
  .sp_mt_40 {
    margin-top: 40px !important;
  }
  .sp_ml_40 {
    margin-left: 40px !important;
  }
  .sp_mr_40 {
    margin-right: 40px !important;
  }
  .sp_my_40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .sp_mx_40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .sp_ma_48 {
    margin: 48px !important;
  }
  .sp_mb_48 {
    margin-bottom: 48px !important;
  }
  .sp_mt_48 {
    margin-top: 48px !important;
  }
  .sp_ml_48 {
    margin-left: 48px !important;
  }
  .sp_mr_48 {
    margin-right: 48px !important;
  }
  .sp_my_48 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .sp_mx_48 {
    margin-right: 48px !important;
    margin-left: 48px !important;
  }
  .sp_ma_56 {
    margin: 56px !important;
  }
  .sp_mb_56 {
    margin-bottom: 56px !important;
  }
  .sp_mt_56 {
    margin-top: 56px !important;
  }
  .sp_ml_56 {
    margin-left: 56px !important;
  }
  .sp_mr_56 {
    margin-right: 56px !important;
  }
  .sp_my_56 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .sp_mx_56 {
    margin-right: 56px !important;
    margin-left: 56px !important;
  }
  .sp_ma_64 {
    margin: 64px !important;
  }
  .sp_mb_64 {
    margin-bottom: 64px !important;
  }
  .sp_mt_64 {
    margin-top: 64px !important;
  }
  .sp_ml_64 {
    margin-left: 64px !important;
  }
  .sp_mr_64 {
    margin-right: 64px !important;
  }
  .sp_my_64 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .sp_mx_64 {
    margin-right: 64px !important;
    margin-left: 64px !important;
  }
  .sp_ma_72 {
    margin: 72px !important;
  }
  .sp_mb_72 {
    margin-bottom: 72px !important;
  }
  .sp_mt_72 {
    margin-top: 72px !important;
  }
  .sp_ml_72 {
    margin-left: 72px !important;
  }
  .sp_mr_72 {
    margin-right: 72px !important;
  }
  .sp_my_72 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .sp_mx_72 {
    margin-right: 72px !important;
    margin-left: 72px !important;
  }
  .sp_ma_80 {
    margin: 80px !important;
  }
  .sp_mb_80 {
    margin-bottom: 80px !important;
  }
  .sp_mt_80 {
    margin-top: 80px !important;
  }
  .sp_ml_80 {
    margin-left: 80px !important;
  }
  .sp_mr_80 {
    margin-right: 80px !important;
  }
  .sp_my_80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .sp_mx_80 {
    margin-right: 80px !important;
    margin-left: 80px !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_4 {
  padding: 4px !important;
}
.pb_4 {
  padding-bottom: 4px !important;
}
.pt_4 {
  padding-top: 4px !important;
}
.pl_4 {
  padding-left: 4px !important;
}
.pr_4 {
  padding-right: 4px !important;
}
.py_4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.px_4 {
  padding-right: 4px !important;
  padding-left: 4px !important;
}

.pa_8 {
  padding: 8px !important;
}
.pb_8 {
  padding-bottom: 8px !important;
}
.pt_8 {
  padding-top: 8px !important;
}
.pl_8 {
  padding-left: 8px !important;
}
.pr_8 {
  padding-right: 8px !important;
}
.py_8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.px_8 {
  padding-right: 8px !important;
  padding-left: 8px !important;
}

.pa_12 {
  padding: 12px !important;
}
.pb_12 {
  padding-bottom: 12px !important;
}
.pt_12 {
  padding-top: 12px !important;
}
.pl_12 {
  padding-left: 12px !important;
}
.pr_12 {
  padding-right: 12px !important;
}
.py_12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.px_12 {
  padding-right: 12px !important;
  padding-left: 12px !important;
}

.pa_16 {
  padding: 16px !important;
}
.pb_16 {
  padding-bottom: 16px !important;
}
.pt_16 {
  padding-top: 16px !important;
}
.pl_16 {
  padding-left: 16px !important;
}
.pr_16 {
  padding-right: 16px !important;
}
.py_16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.px_16 {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

.pa_24 {
  padding: 24px !important;
}
.pb_24 {
  padding-bottom: 24px !important;
}
.pt_24 {
  padding-top: 24px !important;
}
.pl_24 {
  padding-left: 24px !important;
}
.pr_24 {
  padding-right: 24px !important;
}
.py_24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.px_24 {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

.pa_32 {
  padding: 32px !important;
}
.pb_32 {
  padding-bottom: 32px !important;
}
.pt_32 {
  padding-top: 32px !important;
}
.pl_32 {
  padding-left: 32px !important;
}
.pr_32 {
  padding-right: 32px !important;
}
.py_32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
.px_32 {
  padding-right: 32px !important;
  padding-left: 32px !important;
}

.pa_36 {
  padding: 36px !important;
}
.pb_36 {
  padding-bottom: 36px !important;
}
.pt_36 {
  padding-top: 36px !important;
}
.pl_36 {
  padding-left: 36px !important;
}
.pr_36 {
  padding-right: 36px !important;
}
.py_36 {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}
.px_36 {
  padding-right: 36px !important;
  padding-left: 36px !important;
}

.pa_40 {
  padding: 40px !important;
}
.pb_40 {
  padding-bottom: 40px !important;
}
.pt_40 {
  padding-top: 40px !important;
}
.pl_40 {
  padding-left: 40px !important;
}
.pr_40 {
  padding-right: 40px !important;
}
.py_40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.px_40 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.pa_48 {
  padding: 48px !important;
}
.pb_48 {
  padding-bottom: 48px !important;
}
.pt_48 {
  padding-top: 48px !important;
}
.pl_48 {
  padding-left: 48px !important;
}
.pr_48 {
  padding-right: 48px !important;
}
.py_48 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.px_48 {
  padding-right: 48px !important;
  padding-left: 48px !important;
}

.pa_56 {
  padding: 56px !important;
}
.pb_56 {
  padding-bottom: 56px !important;
}
.pt_56 {
  padding-top: 56px !important;
}
.pl_56 {
  padding-left: 56px !important;
}
.pr_56 {
  padding-right: 56px !important;
}
.py_56 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}
.px_56 {
  padding-right: 56px !important;
  padding-left: 56px !important;
}

.pa_64 {
  padding: 64px !important;
}
.pb_64 {
  padding-bottom: 64px !important;
}
.pt_64 {
  padding-top: 64px !important;
}
.pl_64 {
  padding-left: 64px !important;
}
.pr_64 {
  padding-right: 64px !important;
}
.py_64 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}
.px_64 {
  padding-right: 64px !important;
  padding-left: 64px !important;
}

.pa_72 {
  padding: 72px !important;
}
.pb_72 {
  padding-bottom: 72px !important;
}
.pt_72 {
  padding-top: 72px !important;
}
.pl_72 {
  padding-left: 72px !important;
}
.pr_72 {
  padding-right: 72px !important;
}
.py_72 {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}
.px_72 {
  padding-right: 72px !important;
  padding-left: 72px !important;
}

.pa_80 {
  padding: 80px !important;
}
.pb_80 {
  padding-bottom: 80px !important;
}
.pt_80 {
  padding-top: 80px !important;
}
.pl_80 {
  padding-left: 80px !important;
}
.pr_80 {
  padding-right: 80px !important;
}
.py_80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.px_80 {
  padding-right: 80px !important;
  padding-left: 80px !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_4 {
    padding: 4px !important;
  }
  .sp_pb_4 {
    padding-bottom: 4px !important;
  }
  .sp_pt_4 {
    padding-top: 4px !important;
  }
  .sp_pl_4 {
    padding-left: 4px !important;
  }
  .sp_pr_4 {
    padding-right: 4px !important;
  }
  .sp_py_4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .sp_px_4 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  .sp_pa_8 {
    padding: 8px !important;
  }
  .sp_pb_8 {
    padding-bottom: 8px !important;
  }
  .sp_pt_8 {
    padding-top: 8px !important;
  }
  .sp_pl_8 {
    padding-left: 8px !important;
  }
  .sp_pr_8 {
    padding-right: 8px !important;
  }
  .sp_py_8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .sp_px_8 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .sp_pa_12 {
    padding: 12px !important;
  }
  .sp_pb_12 {
    padding-bottom: 12px !important;
  }
  .sp_pt_12 {
    padding-top: 12px !important;
  }
  .sp_pl_12 {
    padding-left: 12px !important;
  }
  .sp_pr_12 {
    padding-right: 12px !important;
  }
  .sp_py_12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .sp_px_12 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
  .sp_pa_16 {
    padding: 16px !important;
  }
  .sp_pb_16 {
    padding-bottom: 16px !important;
  }
  .sp_pt_16 {
    padding-top: 16px !important;
  }
  .sp_pl_16 {
    padding-left: 16px !important;
  }
  .sp_pr_16 {
    padding-right: 16px !important;
  }
  .sp_py_16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .sp_px_16 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .sp_pa_24 {
    padding: 24px !important;
  }
  .sp_pb_24 {
    padding-bottom: 24px !important;
  }
  .sp_pt_24 {
    padding-top: 24px !important;
  }
  .sp_pl_24 {
    padding-left: 24px !important;
  }
  .sp_pr_24 {
    padding-right: 24px !important;
  }
  .sp_py_24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .sp_px_24 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  .sp_pa_32 {
    padding: 32px !important;
  }
  .sp_pb_32 {
    padding-bottom: 32px !important;
  }
  .sp_pt_32 {
    padding-top: 32px !important;
  }
  .sp_pl_32 {
    padding-left: 32px !important;
  }
  .sp_pr_32 {
    padding-right: 32px !important;
  }
  .sp_py_32 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .sp_px_32 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
  .sp_pa_36 {
    padding: 36px !important;
  }
  .sp_pb_36 {
    padding-bottom: 36px !important;
  }
  .sp_pt_36 {
    padding-top: 36px !important;
  }
  .sp_pl_36 {
    padding-left: 36px !important;
  }
  .sp_pr_36 {
    padding-right: 36px !important;
  }
  .sp_py_36 {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .sp_px_36 {
    padding-right: 36px !important;
    padding-left: 36px !important;
  }
  .sp_pa_40 {
    padding: 40px !important;
  }
  .sp_pb_40 {
    padding-bottom: 40px !important;
  }
  .sp_pt_40 {
    padding-top: 40px !important;
  }
  .sp_pl_40 {
    padding-left: 40px !important;
  }
  .sp_pr_40 {
    padding-right: 40px !important;
  }
  .sp_py_40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .sp_px_40 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .sp_pa_48 {
    padding: 48px !important;
  }
  .sp_pb_48 {
    padding-bottom: 48px !important;
  }
  .sp_pt_48 {
    padding-top: 48px !important;
  }
  .sp_pl_48 {
    padding-left: 48px !important;
  }
  .sp_pr_48 {
    padding-right: 48px !important;
  }
  .sp_py_48 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .sp_px_48 {
    padding-right: 48px !important;
    padding-left: 48px !important;
  }
  .sp_pa_56 {
    padding: 56px !important;
  }
  .sp_pb_56 {
    padding-bottom: 56px !important;
  }
  .sp_pt_56 {
    padding-top: 56px !important;
  }
  .sp_pl_56 {
    padding-left: 56px !important;
  }
  .sp_pr_56 {
    padding-right: 56px !important;
  }
  .sp_py_56 {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .sp_px_56 {
    padding-right: 56px !important;
    padding-left: 56px !important;
  }
  .sp_pa_64 {
    padding: 64px !important;
  }
  .sp_pb_64 {
    padding-bottom: 64px !important;
  }
  .sp_pt_64 {
    padding-top: 64px !important;
  }
  .sp_pl_64 {
    padding-left: 64px !important;
  }
  .sp_pr_64 {
    padding-right: 64px !important;
  }
  .sp_py_64 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .sp_px_64 {
    padding-right: 64px !important;
    padding-left: 64px !important;
  }
  .sp_pa_72 {
    padding: 72px !important;
  }
  .sp_pb_72 {
    padding-bottom: 72px !important;
  }
  .sp_pt_72 {
    padding-top: 72px !important;
  }
  .sp_pl_72 {
    padding-left: 72px !important;
  }
  .sp_pr_72 {
    padding-right: 72px !important;
  }
  .sp_py_72 {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .sp_px_72 {
    padding-right: 72px !important;
    padding-left: 72px !important;
  }
  .sp_pa_80 {
    padding: 80px !important;
  }
  .sp_pb_80 {
    padding-bottom: 80px !important;
  }
  .sp_pt_80 {
    padding-top: 80px !important;
  }
  .sp_pl_80 {
    padding-left: 80px !important;
  }
  .sp_pr_80 {
    padding-right: 80px !important;
  }
  .sp_py_80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .sp_px_80 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
}
/* =======================================

  COMMON

======================================= */
/*-----------------------------------------
  layout
-----------------------------------------*/
.cont_outer {
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: 48px;
}
@media only screen and (max-width: 980px) {
  .cont_outer {
    padding-inline: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .cont_outer {
    padding-inline: 16px;
  }
}
.cont_outer.size_l {
  max-width: 1280px;
}
.cont_outer.bg_site_primary_color {
  padding-block: 64px;
  position: relative;
  background: #5a0a32;
}
@media only screen and (max-width: 767px) {
  .cont_outer.bg_site_primary_color {
    padding-block: 56px;
  }
}
.cont_outer.bg_layer_white {
  margin-top: 64px;
  padding-block: 64px;
  color: #222;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cont_outer.bg_layer_white {
    margin-top: 56px;
    padding-block: 56px;
  }
}
.cont_outer.bg_layer_white::before {
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
  background: #fff;
}
@media only screen and (max-width: 1320px) {
  .cont_outer.bg_layer_white::before {
    width: calc(100% - 24px);
  }
}
@media only screen and (max-width: 767px) {
  .cont_outer.bg_layer_white::before {
    width: 100%;
  }
}
.cont_outer.bg_layer_white.position_right::before {
  right: 0;
}
.cont_outer.bg_layer_white.position_left::before {
  left: 0;
}

.cont_inner {
  max-width: 1072px;
  margin-inline: auto;
}
@media only screen and (max-width: 980px) {
  .cont_inner {
    padding-inline: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .cont_inner {
    padding-inline: 0;
  }
}
.cont_inner.size_m {
  max-width: 1152px;
}
.cont_inner.size_l {
  max-width: 1280px;
}

/*-----------------------------------------
  tab
-----------------------------------------*/
.tab_contents .tablist {
  display: flex;
  gap: 2px;
}
@media only screen and (max-width: 767px) {
  .tab_contents .tablist {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .tab_contents .tablist.scroll {
    overflow-x: auto;
    padding-inline: 16px;
    margin-inline: -16px;
  }
}
.tab_contents .tablist > li:not(:first-child) .tab::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  right: 100%;
  width: 2px;
  height: 2px;
  background-color: #5a0a32;
}
.tab_contents .tablist .tab {
  min-width: 80px;
  height: 100%;
  padding: 6px 10px;
  text-align: center;
  font-size: 1.5rem;
  color: #5a0a32;
  text-decoration: none;
  position: relative;
  border-bottom: 2px solid #5a0a32;
  border-radius: 8px 8px 0 0;
  background: #f1f0f3;
  transition: border 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .tab_contents .tablist .tab {
    width: 100%;
    white-space: nowrap;
  }
}
@media (any-hover: hover) {
  .tab_contents .tablist .tab:hover::before {
    opacity: 1;
  }
}
.tab_contents .tablist .tab.current, .tab_contents .tablist .tab[aria-selected=true] {
  color: #fff;
  background: #5a0a32;
  transition: all 0.3s ease-out;
}
@media (any-hover: hover) {
  .tab_contents .tablist .tab.current:hover, .tab_contents .tablist .tab[aria-selected=true]:hover {
    opacity: 0.7;
  }
}
.tab_contents .tablist .tab::before {
  content: "";
  opacity: 0;
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #5a0a32;
  transition: opacity 0.3s ease-out;
}
.tab_contents .tabpanel_wrap .tabpanel {
  opacity: 0;
  transition: opacity 1s ease-out;
}
.tab_contents .tabpanel_wrap .tabpanel.active {
  opacity: 1;
}

/*-----------------------------------------
  btn
-----------------------------------------*/
.btn {
  min-width: 290px;
  padding: 14px 48px;
  display: inline-block;
  gap: 16px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  position: relative;
  background: #5a0a32;
  border: 1px solid #5a0a32;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .btn {
    min-width: 100%;
  }
}
.btn .circle_arrow::before {
  border: 1px solid #fff;
}
.btn .circle_arrow::after {
  color: #fff;
}
@media (any-hover: hover) {
  .btn:hover {
    color: #5a0a32;
    background: #fff;
  }
  .btn:hover .circle_arrow::before {
    border: 1px solid #5a0a32;
    scale: 1.25;
  }
  .btn:hover .circle_arrow::after {
    color: #5a0a32;
  }
}
.btn.sub_color {
  color: #5a0a32;
  background: #fff;
  border: 1px solid #fff;
}
.btn.sub_color .circle_arrow::before {
  border: 1px solid #5a0a32;
}
.btn.sub_color .circle_arrow::after {
  color: #5a0a32;
}
@media (any-hover: hover) {
  .btn.sub_color:hover {
    color: #fff;
    background: #5a0a32;
  }
  .btn.sub_color:hover .circle_arrow::before {
    border: 1px solid #fff;
    scale: 1.25;
  }
  .btn.sub_color:hover .circle_arrow::after {
    color: #fff;
  }
}
.btn.another_color {
  color: #5a0a32;
  background: #fff;
  border: 1px solid #5a0a32;
}
.btn.another_color .circle_arrow::before {
  border: 1px solid #5a0a32;
}
.btn.another_color .circle_arrow::after {
  color: #5a0a32;
}
@media (any-hover: hover) {
  .btn.another_color:hover {
    color: #fff;
    background: #5a0a32;
  }
  .btn.another_color:hover .circle_arrow::before {
    border: 1px solid #fff;
  }
  .btn.another_color:hover .circle_arrow::after {
    color: #fff;
  }
}
.btn.size_l {
  min-width: 356px;
}
@media only screen and (max-width: 767px) {
  .btn.size_l {
    min-width: 100%;
  }
}
.btn .circle_arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
.btn[target=_blank]::after {
  content: "\e902";
  font-family: "simul_ac";
  font-size: 1.85rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 14px;
}
.btn[target=_blank] .circle_arrow {
  display: none;
}
.btn[href$=".pdf"]::after {
  content: "\e907";
  font-family: "simul_ac";
  font-size: 1.85rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 14px;
}
.btn[href$=".pdf"] .circle_arrow {
  display: none;
}
.btn.back {
  position: relative;
  border-color: #f1f0f3;
  background-color: #f1f0f3;
  color: #5a0a32;
  transition: all 0.3s ease-out;
}
.btn.back::before {
  content: "\e901";
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: 28px;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "simul_ac";
  color: inherit;
  scale: -1 1;
  transition: all 0.3s ease-out;
}
@media (any-hover: hover) {
  .btn.back:hover {
    border-color: #5a0a32;
    background-color: #5a0a32;
    color: #f1f0f3;
  }
  .btn.back:hover::before {
    left: 20px;
  }
}
.btn.next {
  position: relative;
  border-color: #f1f0f3;
  background-color: #f1f0f3;
  color: #5a0a32;
  transition: all 0.3s ease-out;
}
.btn.next::after {
  content: "\e901";
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 28px;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "simul_ac";
  color: inherit;
  scale: -1 1;
  transform: scaleX(-1);
  transition: all 0.3s ease-out;
}
@media (any-hover: hover) {
  .btn.next:hover {
    border-color: #5a0a32;
    background-color: #5a0a32;
    color: #f1f0f3;
  }
  .btn.next:hover::after {
    right: 20px;
  }
}
.btn.back2top .circle_arrow {
  right: auto;
  left: 14px;
}
.btn.back2top .circle_arrow::after {
  left: 9px;
  transform: translateY(-50%) rotateZ(180deg);
}
.btn.icon_arrow_down::after {
  content: "\e901";
  font-family: "simul_ac";
  position: absolute;
  top: 50%;
  right: 24px;
  translate: 0 -50%;
  font-size: 1.4rem;
  line-height: 1;
  rotate: 90deg;
}
.btn br {
  line-height: 0;
}

.btn_clm.clm2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .btn_clm li {
    width: 100%;
  }
}

/*-----------------------------------------
  text_link_icon
-----------------------------------------*/
.text_link.icon_arrow::after {
  content: "\e901";
  font-family: "simul_ac";
  margin-inline: 8px;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
}
.text_link.icon_arrow_down::after {
  content: "\e901";
  font-family: "simul_ac";
  margin-inline: 8px;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  rotate: 90deg;
}
.text_link.icon_circle_arrow {
  padding-bottom: 4px;
  display: inline-flex;
  gap: 16px;
  text-decoration: none;
  align-items: center;
  color: #5a0a32;
  border-bottom: 1px solid #5a0a32;
  transition: color 0.3s, border 0.3s ease-out;
}
.text_link.icon_circle_arrow.no_underline {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (any-hover: hover) {
  .text_link.icon_circle_arrow:hover {
    color: rgba(90, 10, 50, 0.8);
  }
  .text_link.icon_circle_arrow:hover .circle_arrow::before {
    scale: 1.25;
  }
}
.text_link[target=_blank]::after {
  content: "\e902";
  font-family: "simul_ac";
  margin-inline: 8px;
  display: inline-block;
  line-height: 1;
}
.text_link[href$=".pdf"]::after {
  content: "\e907";
  font-family: "simul_ac";
  margin-inline: 8px;
  display: inline-block;
  line-height: 1;
}

/*-----------------------------------------
  circle_arrow
-----------------------------------------*/
.circle_arrow {
  display: inline-block;
  position: relative;
  line-height: 1;
}
.circle_arrow::before {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
  border: 1px solid #5a0a32;
  border-radius: 100px;
  position: relative;
  transition: scale 0.3s ease-out;
}
.circle_arrow::after {
  content: "\e900";
  font-family: "simul_ac";
  display: inline-block;
  color: #5a0a32;
  line-height: 1;
  position: absolute;
  top: 48%;
  left: -9px;
  transform: translateY(-50%);
}
.circle_arrow.sub_color::before {
  border: 1px solid #fff;
}
.circle_arrow.sub_color::after {
  color: #fff;
}

/*-----------------------------------------
  news
-----------------------------------------*/
.news_tablink {
  display: flex;
  justify-content: center;
  gap: 2px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .news_tablink.scroll {
    overflow-x: auto;
    padding-inline: 16px;
    margin-inline: -16px;
  }
}
@media only screen and (max-width: 767px) {
  .news_tablink > li {
    white-space: nowrap;
  }
}
.news_tablink > li:not(:first-child) > .tablink::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  right: 100%;
  width: 2px;
  height: 2px;
  background-color: #5a0a32;
}
.news_tablink > li > .tablink {
  display: inline-block;
  position: relative;
  min-width: 80px;
  min-height: 44px;
  padding: 8px 25px;
  border-bottom: 2px solid #5a0a32;
  border-radius: 8px 8px 0 0;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  background-color: #f1f0f3;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .news_tablink > li > .tablink {
    padding: 8px 10px;
  }
}
.news_tablink > li > .tablink.current {
  color: #fff;
  background: #5a0a32;
}
@media (any-hover: hover) {
  .news_tablink > li > .tablink.current:hover {
    opacity: 0.7;
  }
}
@media (any-hover: hover) {
  .news_tablink > li > .tablink::before {
    content: "";
    opacity: 0;
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #5a0a32;
    transition: opacity 0.3s ease-out;
  }
  .news_tablink > li > .tablink:hover::before {
    opacity: 1;
  }
}

.news_list li {
  border-top: 1px solid #e6e6e6;
}
.news_list li:last-child {
  border-bottom: 1px solid #e6e6e6;
}
.news_list a {
  padding: 14px 8px;
  display: flex;
  align-items: center;
  gap: 32px;
  text-decoration: none;
  transition: background 0.3s ease-out;
}
@media (any-hover: hover) {
  .news_list a:hover {
    background: #f1f0f3;
  }
}
@media only screen and (max-width: 767px) {
  .news_list a {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
}
.news_list .date {
  min-width: 83px;
  flex-shrink: 0;
  font-family: "Lusitana", serif;
  color: rgba(34, 34, 34, 0.5);
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  .news_list .date {
    line-height: 1.6;
  }
}
.news_list .label {
  min-width: 80px;
  flex-shrink: 0;
  text-align: center;
  padding: 4px 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #fff;
  border: 1px solid #5a0a32;
  background: #5a0a32;
  border-radius: 100vmax;
}
.news_list .title {
  color: #000;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .news_list .title:hover {
    color: #5a0a32;
  }
}
@media only screen and (max-width: 767px) {
  .news_list .title {
    width: 100%;
    line-height: 1.7;
  }
}

/*-----------------------------------------
  fixed_item
-----------------------------------------*/
@media only screen and (max-width: 767px) {
  .fixed_items {
    width: 100%;
    height: 0;
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 8;
    transition: height 0.3s ease-out;
  }
}

@media only screen and (max-width: 767px) {
  .scroll .fixed_items {
    height: 62px;
  }
}
@media only screen and (max-width: 767px) {
  .fixed_item.level_check {
    height: 100%;
    flex: 1;
  }
  .fixed_item.level_check a {
    min-height: 62px;
    padding-top: 37px;
    display: block;
    font-size: 1.4rem;
    line-height: 1.1;
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    background: #5a0a32;
    border: 1px solid #5a0a32;
  }
  .fixed_item.level_check a::before {
    content: "\e903";
    font-family: "simul_ac";
    font-size: 1.8rem;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 767px) {
  .fixed_item.level_check {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .fixed_item.mail_request {
    height: 100%;
    flex: 1;
  }
  .fixed_item.mail_request a {
    min-height: 62px;
    padding-top: 37px;
    display: block;
    letter-spacing: -0.04em;
    font-size: 1.4rem;
    line-height: 1.1;
    text-align: center;
    color: #5a0a32;
    text-decoration: none;
    position: relative;
    background: #fff;
    border: 1px solid #e6e6e6;
  }
  .fixed_item.mail_request a::before {
    content: "\e904";
    font-family: "simul_ac";
    font-size: 1.4rem;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 767px) {
  .fixed_item.mail_request {
    display: none;
  }
}
.fixed_item.page_top {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  position: fixed;
  right: 36px;
  bottom: 36px;
  z-index: 5;
  background: #f1f0f3;
}
@media only screen and (max-width: 767px) {
  .fixed_item.page_top {
    opacity: 1 !important;
    display: flex !important;
    width: 62px;
    height: 62px;
    position: relative;
    right: auto;
    bottom: auto;
    border-top: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
  }
}
@media (any-hover: hover) {
  .fixed_item.page_top:hover::before {
    top: 54%;
  }
}
.fixed_item.page_top::before {
  content: "\e900";
  font-family: "simul_ac";
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #5a0a32;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  rotate: -90deg;
  transform-origin: top left;
  transition: top 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .fixed_item.page_top::before {
    font-size: 1rem;
    top: 58%;
  }
}
.fixed_item.page_top::after {
  content: "";
  width: 17px;
  height: 1px;
  display: block;
  background: #5a0a32;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .fixed_item.page_top::after {
    top: 20px;
  }
}
.fixed_item.page_top button {
  width: 100%;
  height: 100%;
  display: block;
}

/*-----------------------------------------
  nav_layer
-----------------------------------------*/
.nav_layer {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s ease-out;
}

body:has(.global_nav_item.hovered .mdd) .nav_layer {
  opacity: 1;
  pointer-events: auto;
}

html.menu_open .nav_layer {
  opacity: 1;
  pointer-events: auto;
}

/*-----------------------------------------
  news.two_lines
-----------------------------------------*/
.news_list_area .empty {
  padding: 24px 8px;
  border-width: 1px 0;
  border-color: #e6e6e6;
  border-style: solid;
  margin-top: 0;
}

.news_list.two_lines a {
  position: relative;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding: 24px 8px;
}
@media only screen and (max-width: 767px) {
  .news_list.two_lines a {
    gap: 8px 12px;
  }
}
.news_list.two_lines a::after {
  content: "\e901";
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 8px;
  margin-inline: 8px;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "simul_ac";
  color: inherit;
}
.news_list.two_lines a[target=_blank]:not([href$=pdf])::after {
  content: "\e902";
  margin-inline: 3px;
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.3);
}
.news_list.two_lines a[href$=pdf]::after {
  content: "\e907";
  margin-inline: 2.75px;
  font-size: 1.85rem;
  color: #DE0004;
}
@media only screen and (max-width: 767px) {
  .news_list.two_lines a[href$=pdf]::after {
    top: 28px;
  }
}
.news_list.two_lines .date {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #555;
}
.news_list.two_lines .label {
  padding: 4px;
}
.news_list.two_lines .title {
  width: calc(100% - 32px);
  font-size: 1.5rem;
  line-height: 1.2;
  color: #222;
}
.news_list.two_lines .size {
  display: block;
  position: absolute;
  right: 40px;
  top: calc(50% - 0.6em);
  font-size: 1.4rem;
  line-height: 1.2;
  color: rgba(34, 34, 34, 0.5);
}
@media only screen and (max-width: 767px) {
  .news_list.two_lines .size {
    top: 28px;
  }
}

/*-----------------------------------------
  pagination
-----------------------------------------*/
.pagination {
  margin-top: 64px;
}
.pagination > ul {
  display: flex;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.pagination > ul > li {
  width: 24px;
  height: 24px;
}
.pagination > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #5a0a32;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 24px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease-out;
}
@media (any-hover: hover) {
  .pagination > ul > li:not(.pn_current, .pn_first, .pn_prev, .pn_next, .pn_last) > a:hover {
    background-color: #f1f0f3;
  }
  .pagination > ul > li.pn_first > a:hover, .pagination > ul > li.pn_prev > a:hover, .pagination > ul > li.pn_next > a:hover, .pagination > ul > li.pn_last > a:hover {
    background-color: rgba(90, 10, 50, 0.7);
  }
}
.pagination > ul .pn_current > a,
.pagination > ul .pn_disabled > a {
  pointer-events: none;
}
.pagination > ul .pn_current > a {
  border-bottom: none;
  background-color: #f1f0f3;
}
.pagination > ul .pn_disabled > a {
  opacity: 0.3;
}
.pagination > ul .pn_prev {
  margin-right: 16px;
}
.pagination > ul .pn_next {
  margin-left: 16px;
}
.pagination > ul .pn_first > a,
.pagination > ul .pn_prev > a,
.pagination > ul .pn_next > a,
.pagination > ul .pn_last > a {
  border-bottom: none;
  background-color: #5a0a32;
  color: #fff;
}
.pagination > ul .pn_first > a::before,
.pagination > ul .pn_prev > a::before,
.pagination > ul .pn_next > a::before,
.pagination > ul .pn_last > a::before {
  display: block;
  font-size: inherit;
  line-height: 24px;
  font-family: "simul_ac";
}
.pagination > ul .pn_first > a::before,
.pagination > ul .pn_last > a::before {
  content: "\e908";
}
.pagination > ul .pn_prev > a::before,
.pagination > ul .pn_next > a::before {
  content: "\e901";
}
.pagination > ul .pn_first > a::before,
.pagination > ul .pn_prev > a::before {
  scale: -1 1;
}

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

  HEADER

======================================= */
header {
  width: 100%;
  height: 88px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  header {
    min-width: auto;
    height: 48px;
  }
}
header .cont_outer {
  padding-inline: 16px 0;
}
@media only screen and (max-width: 767px) {
  header .cont_outer {
    padding-inline: 0;
  }
}
header .cont_inner {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 980px) {
  header .cont_inner {
    padding-inline: 0;
  }
}
header .site_logo {
  width: 269px;
}
@media only screen and (max-width: 980px) {
  header .site_logo {
    width: 20vw;
  }
}
@media only screen and (max-width: 767px) {
  header .site_logo {
    width: 235px;
  }
}
header .site_logo img {
  display: block;
}
header .global_nav {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  header .global_nav {
    width: 100%;
    max-height: calc(100svh - 44px);
    overflow-y: auto;
    justify-content: center;
    flex-wrap: wrap;
    position: absolute;
    top: 48px;
    left: 0;
    background: #fff;
  }
}
header .global_nav_item {
  margin-left: 16px;
}
@media only screen and (max-width: 980px) {
  header .global_nav_item {
    margin-left: 1.5vw;
  }
}
@media only screen and (max-width: 767px) {
  header .global_nav_item {
    width: 100%;
    margin: 0 16px;
  }
}
header .global_nav_item:has(.toggle_btn) {
  display: flex;
}
@media only screen and (max-width: 767px) {
  header .global_nav_item:has(.toggle_btn) {
    flex-direction: column;
  }
}
header .global_nav_item.hovered .global_nav_link, header .global_nav_item:focus-within .global_nav_link {
  color: #5a0a32;
}
header .global_nav_item.hovered .global_nav_link::before, header .global_nav_item:focus-within .global_nav_link::before {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  header .global_nav_item.hovered .global_nav_link::before, header .global_nav_item:focus-within .global_nav_link::before {
    width: 0;
  }
}
header .global_nav_item.hovered .mdd, header .global_nav_item:focus-within .mdd {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  translate: 0 0;
}
header .global_nav_item.active .toggle_btn span {
  background: #fff;
}
header .global_nav_item.active .toggle_btn span::after {
  background: #5a0a32;
  rotate: 0deg;
}
header .global_nav_item .global_nav_link {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #222;
  text-decoration: none;
  position: relative;
}
@media only screen and (max-width: 1280px) {
  header .global_nav_item .global_nav_link {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 980px) {
  header .global_nav_item .global_nav_link {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
  }
}
@media only screen and (max-width: 767px) {
  header .global_nav_item .global_nav_link {
    padding: 16px 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #5a0a32;
    border-top: 1px solid #f0f0f0;
  }
}
@media only screen and (max-width: 767px) {
  header .global_nav_item .global_nav_link:has(+ .toggle_btn) {
    padding: 16px 48px 16px 0;
  }
}
header .global_nav_item .global_nav_link::before {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 10;
  transform: translateX(-50%);
  background: #5a0a32;
  transition: width 0.3s ease-out;
}
@media only screen and (min-width: 1140px) {
  header .global_nav_item .global_nav_link .rsp {
    display: none;
  }
}
@media only screen and (max-width: 1140px) {
  header .global_nav_item .global_nav_link .rsp {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  header .global_nav_item .global_nav_link .rsp {
    display: none;
  }
}
header .global_nav_item.level_check {
  width: 120px;
  height: 100%;
  margin-left: 32px;
}
@media only screen and (max-width: 1280px) {
  header .global_nav_item.level_check {
    width: 96px;
  }
}
@media only screen and (max-width: 1140px) {
  header .global_nav_item.level_check {
    margin-left: 16px;
  }
}
@media only screen and (max-width: 980px) {
  header .global_nav_item.level_check {
    width: 10vw;
    margin-left: 1.5vw;
  }
}
@media only screen and (max-width: 767px) {
  header .global_nav_item.level_check {
    width: 50%;
    margin: 8px 0 0 0;
  }
}
header .global_nav_item.level_check a {
  height: 88px;
  padding: 38px 0 12px;
  display: block;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 10;
  background: #5a0a32;
  border-top: 1px solid #5a0a32;
  border-right: 1px solid #5a0a32;
  border-bottom: 1px solid #5a0a32;
  border-left: 1px solid #5a0a32;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1280px) {
  header .global_nav_item.level_check a {
    padding: 42px 0 12px;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 980px) {
  header .global_nav_item.level_check a {
    font-size: 1.3vw;
  }
}
@media only screen and (max-width: 767px) {
  header .global_nav_item.level_check a {
    font-size: 1.3rem;
  }
}
@media (any-hover: hover) {
  header .global_nav_item.level_check a:hover {
    color: #5a0a32;
    border-top: 1px solid #f1f0f3;
    border-right: 1px solid #f1f0f3;
    border-left: 1px solid #f1f0f3;
    background: #f1f0f3;
  }
}
header .global_nav_item.level_check a::before {
  content: "\e903";
  font-family: "simul_ac";
  font-size: 2rem;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}
header .global_nav_item.mail_request {
  width: 120px;
  height: 100%;
  margin-left: 0;
}
@media only screen and (max-width: 1280px) {
  header .global_nav_item.mail_request {
    width: 96px;
  }
}
@media only screen and (max-width: 980px) {
  header .global_nav_item.mail_request {
    width: 10vw;
  }
}
@media only screen and (max-width: 767px) {
  header .global_nav_item.mail_request {
    width: 50%;
    margin: 8px 0 0 0;
  }
}
header .global_nav_item.mail_request a {
  height: 88px;
  padding: 38px 0 12px;
  display: block;
  line-height: 1.2;
  text-align: center;
  color: #5a0a32;
  text-decoration: none;
  position: relative;
  z-index: 10;
  background: #fff;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1280px) {
  header .global_nav_item.mail_request a {
    padding: 42px 0 12px;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 980px) {
  header .global_nav_item.mail_request a {
    font-size: 1.3vw;
  }
}
@media only screen and (max-width: 767px) {
  header .global_nav_item.mail_request a {
    font-size: 1.3rem;
  }
}
@media (any-hover: hover) {
  header .global_nav_item.mail_request a:hover {
    color: #5a0a32;
    background: #f1f0f3;
    border-top: 1px solid #f1f0f3;
    border-right: 1px solid #f1f0f3;
    border-bottom: 1px solid #5a0a32;
    border-left: 1px solid #f1f0f3;
  }
}
header .global_nav_item.mail_request a::before {
  content: "\e904";
  font-family: "simul_ac";
  font-size: 1.6rem;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}
header .toggle_btn_wrap {
  position: relative;
}
@media only screen and (max-width: 767px) {
  header .toggle_btn_wrap {
    flex: 1;
  }
}
header .toggle_btn {
  width: 48px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
header .toggle_btn span {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #5a0a32;
  border: 1px solid #5a0a32;
  transition: background 0.3s ease-out;
}
header .toggle_btn span::before, header .toggle_btn span::after {
  content: "";
  width: 9px;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: top left;
  background: #fff;
  transition: rotate 0.3s ease-out;
}
header .toggle_btn span::after {
  rotate: 90deg;
}
header .mdd {
  opacity: 0;
  pointer-events: none;
  width: 100%;
  position: absolute;
  inset: 88px 0 auto;
  z-index: 9;
  background: #fff;
  transition: all 0.3s ease-out;
  translate: 0 -16px;
  border-top: 1px solid #f0f0f0;
}
@media only screen and (max-width: 767px) {
  header .mdd {
    opacity: 1;
    pointer-events: auto;
    position: static;
    transition: none;
    translate: none;
    border: none;
  }
}
header .mdd_outer {
  max-width: 1920px;
  margin-inline: auto;
}
header .mdd_inner {
  display: flex;
  justify-content: flex-end;
  padding: 56px 80px;
  position: relative;
}
@media only screen and (max-width: 1360px) {
  header .mdd_inner {
    padding: 56px 80px 96px;
  }
}
@media only screen and (max-width: 767px) {
  header .mdd_inner {
    padding: 0;
  }
}
header .mdd_catch {
  font-size: 10rem;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  color: rgba(90, 10, 50, 0.2);
  position: absolute;
  left: 0;
  bottom: -17px;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  header .mdd_catch {
    display: none;
  }
}
header .mdd_cont {
  width: 900px;
}
@media only screen and (max-width: 767px) {
  header .mdd_cont {
    width: 100%;
  }
}
header .mdd_lower_title {
  margin: 32px 0 16px;
  padding-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #5a0a32;
  border-bottom: 1px solid #5a0a32;
}
@media only screen and (max-width: 767px) {
  header .mdd_lower_title {
    margin: 0 0 8px;
    border-bottom: 1px solid rgba(90, 10, 50, 0.2);
  }
}
header .mdd_lower_title:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  header .mdd_lower_title:first-child {
    margin: 0 0 8px;
  }
}
header .mdd_lower_list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
@media only screen and (max-width: 767px) {
  header .mdd_lower_list {
    padding-bottom: 16px;
    flex-direction: column;
    gap: 12px 24px;
  }
}
header .mdd_lower_list > * {
  width: calc((100% - 48px) / 3);
  display: flex;
}
@media only screen and (max-width: 767px) {
  header .mdd_lower_list > * {
    width: 100%;
  }
}
header .mdd_lower_link {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 8px 24px 8px 0;
  font-size: 1.5rem;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  color: #5a0a32;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s, border 0.3s ease-out;
}
@media only screen and (max-width: 980px) {
  header .mdd_lower_link {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  header .mdd_lower_link {
    padding: 0;
    border-bottom: none;
  }
}
header .mdd_lower_link::before {
  content: "\e901";
  font-family: "simul_ac";
  font-size: 1.3rem;
  line-height: 1;
  color: #5a0a32;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  transition: right 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  header .mdd_lower_link::before {
    content: none;
  }
}
@media (any-hover: hover) {
  header .mdd_lower_link:hover {
    color: rgba(90, 10, 50, 0.7);
    border-bottom: 1px solid #5a0a32;
  }
}
@media only screen and (any-hover: hover) and (max-width: 767px) {
  header .mdd_lower_link:hover {
    border-bottom: none;
  }
}
@media (any-hover: hover) {
  header .mdd_lower_link:hover::before {
    right: 0;
  }
}

/*-----------------------------------------
  sp_menu_btn
-----------------------------------------*/
#sp_menu_btn {
  width: 40px;
  height: 40px;
  display: block;
  position: fixed;
  top: 4px;
  right: 8px;
  background: #fff;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  #sp_menu_btn {
    display: block !important;
  }
}
#sp_menu_btn .switch_btn {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
#sp_menu_btn .switch_btn span {
  width: 24px;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 50%;
  translate: -50% 0;
  background: #5a0a32;
  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;
}

/*-----------------------------------------
  tab_view
-----------------------------------------*/
.tab_view header {
  min-width: auto;
  height: 48px;
}
.tab_view header .cont_outer {
  padding-inline: 0;
}
.tab_view header .cont_inner {
  padding-inline: 0;
}
.tab_view header .site_logo {
  width: 235px;
}
.tab_view header .global_nav {
  width: 100%;
  max-height: calc(100svh - 44px);
  overflow-y: auto;
  justify-content: center;
  flex-wrap: wrap;
  position: absolute;
  top: 48px;
  left: 0;
  background: #fff;
}
.tab_view header .global_nav_item {
  width: 100%;
  margin: 0 16px;
}
.tab_view header .global_nav_item:has(.toggle_btn) {
  flex-direction: column;
}
.tab_view header .global_nav_item .global_nav_link {
  padding: 16px 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #5a0a32;
  border-top: 1px solid #f0f0f0;
}
.tab_view header .global_nav_item .global_nav_link:has(+ .toggle_btn) {
  padding: 16px 48px 16px 0;
}
.tab_view header .global_nav_item .global_nav_link::before {
  width: 0;
}
.tab_view header .global_nav_item .global_nav_link .rsp {
  display: none;
}
.tab_view header .global_nav_item.level_check {
  width: 50%;
  margin: 8px 0 0 0;
}
.tab_view header .global_nav_item.level_check a {
  padding: 42px 0 12px;
  font-size: 1.3rem;
}
.tab_view header .global_nav_item.mail_request {
  width: 50%;
  margin: 8px 0 0 0;
}
.tab_view header .global_nav_item.mail_request a {
  padding: 42px 0 12px;
  font-size: 1.3rem;
}
.tab_view header .toggle_btn_wrap {
  flex: 1;
}
.tab_view header .mdd {
  display: none;
  opacity: 1;
  pointer-events: auto;
  position: static;
  background: #fff;
  transition: none;
  translate: none;
  border: none;
}
.tab_view header .mdd_inner {
  padding: 0;
}
.tab_view header .mdd_catch {
  display: none;
}
.tab_view header .mdd_cont {
  width: 100%;
}
.tab_view header .mdd_lower_title {
  margin: 0 0 8px;
  padding-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #5a0a32;
  border-bottom: 1px solid rgba(90, 10, 50, 0.2);
}
.tab_view header .mdd_lower_title:first-child {
  margin: 0 0 8px;
}
.tab_view header .mdd_lower_list {
  padding-bottom: 16px;
  flex-direction: column;
  gap: 12px 24px;
}
.tab_view header .mdd_lower_list > * {
  width: 100%;
}
.tab_view header .mdd_lower_link {
  padding: 0;
  font-size: 1.4rem;
  border-bottom: none;
}
.tab_view header .mdd_lower_link::before {
  content: none;
}

/*-----------------------------------------
  tab_viewがついていない768px以上
-----------------------------------------*/
@media only screen and (min-width: 768px) {
  body:not(.tab_view) header .global_nav {
    display: flex !important;
  }
}
@media only screen and (min-width: 768px) {
  body:not(.tab_view) header .global_nav .global_nav_item .toggle_btn {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  body:not(.tab_view) header .global_nav .mdd {
    height: auto !important;
    display: block !important;
  }
}
body:not(.tab_view) header #sp_menu_btn {
  display: none;
}

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

  FOOTER

======================================= */
footer {
  background: #33071d;
}
footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
footer .logo_field {
  padding-top: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  footer .logo_field {
    padding-top: 56px;
    flex-direction: column;
    gap: 32px;
  }
}
footer .logo_field a {
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  footer .logo_field a:hover {
    opacity: 0.7;
  }
}
footer .logo_field .footer_logo {
  width: 239px;
}
footer .logo_field .sns_logo {
  display: flex;
  gap: 24px;
}
footer .logo_field .sns_logo img {
  vertical-align: middle;
}
footer .sitemap_field {
  margin-top: 88px;
}
@media only screen and (max-width: 767px) {
  footer .sitemap_field {
    margin-top: 56px;
  }
}
footer .sitemap_field .primary_area {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}
@media only screen and (max-width: 980px) {
  footer .sitemap_field .primary_area {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  footer .sitemap_field .primary_area {
    flex-direction: column;
    gap: 24px;
  }
}
footer .sitemap_field .primary_area > * {
  width: calc((100% - 192px) / 4);
}
@media only screen and (max-width: 980px) {
  footer .sitemap_field .primary_area > * {
    width: calc((100% - 120px) / 4);
  }
}
@media only screen and (max-width: 767px) {
  footer .sitemap_field .primary_area > * {
    width: 100%;
  }
}
footer .sitemap_field .primary_area .primary_list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
footer .sitemap_field .primary_area .primary_item:has(.secondary_list) .primary_link {
  padding: 4px 0;
}
footer .sitemap_field .primary_area .primary_item.active .toggle_btn span {
  background: #33071d;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
footer .sitemap_field .primary_area .primary_item.active .toggle_btn span::after {
  background: rgba(255, 255, 255, 0.5);
  rotate: 0deg;
}
footer .sitemap_field .primary_area .primary_link {
  padding-bottom: 5px;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  transition: all 0.3s ease-out;
}
footer .sitemap_field .primary_area .primary_link::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-out;
}
footer .sitemap_field .primary_area .primary_link[target=_blank] {
  padding-right: 24px;
}
footer .sitemap_field .primary_area .primary_link[target=_blank]::after {
  content: "\e902";
  font-family: "simul_ac";
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  footer .sitemap_field .primary_area .primary_link:hover {
    color: #fff;
  }
  footer .sitemap_field .primary_area .primary_link:hover::before {
    content: "";
    height: 2px;
    background: #fff;
  }
  footer .sitemap_field .primary_area .primary_link:hover[target=_blank]::after {
    color: #fff;
  }
}
footer .sitemap_field .primary_area .toggle_btn_wrap {
  position: relative;
}
@media only screen and (max-width: 767px) {
  footer .sitemap_field .primary_area .toggle_btn {
    width: 48px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media only screen and (min-width: 768px) {
  footer .sitemap_field .primary_area .toggle_btn {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  footer .sitemap_field .primary_area .toggle_btn span {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #fff;
    transition: background 0.3s ease-out;
  }
}
@media only screen and (max-width: 767px) {
  footer .sitemap_field .primary_area .toggle_btn span::before, footer .sitemap_field .primary_area .toggle_btn span::after {
    content: "";
    width: 9px;
    height: 1px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: top left;
    background: #5a0a32;
    transition: rotate 0.3s ease-out;
  }
  footer .sitemap_field .primary_area .toggle_btn span::after {
    rotate: 90deg;
  }
}
footer .sitemap_field .primary_area .secondary_list {
  display: flex;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  footer .sitemap_field .primary_area .secondary_list {
    margin-top: 16px;
  }
}
@media only screen and (min-width: 768px) {
  footer .sitemap_field .primary_area .secondary_list {
    display: flex !important;
  }
}
footer .sitemap_field .primary_area .secondary_link {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease-out;
}
footer .sitemap_field .primary_area .secondary_link[target=_blank] {
  padding-right: 24px;
  position: relative;
}
footer .sitemap_field .primary_area .secondary_link[target=_blank]::after {
  content: "\e902";
  font-family: "simul_ac";
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  footer .sitemap_field .primary_area .secondary_link:not(span):hover {
    color: #fff;
  }
  footer .sitemap_field .primary_area .secondary_link:not(span):hover[target=_blank]::after {
    color: #fff;
  }
}
footer .sitemap_field .primary_area .tertiary_list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .sitemap_field .primary_area .tertiary_link {
  display: block;
  padding-left: 16px;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.4;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  footer .sitemap_field .primary_area .tertiary_link:hover {
    color: #fff;
  }
  footer .sitemap_field .primary_area .tertiary_link:hover::before {
    content: "";
    width: 8px;
  }
  footer .sitemap_field .primary_area .tertiary_link:hover[target=_blank]::after {
    color: #fff;
  }
}
footer .sitemap_field .primary_area .tertiary_link::before {
  content: "";
  width: 6px;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.3s ease-out;
}
footer .sitemap_field .primary_area .tertiary_link[target=_blank]::after {
  margin-left: 8px;
  content: "\e902";
  font-family: "simul_ac";
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease-out;
}
footer .sitemap_field .secondary_area {
  margin-top: 72px;
}
@media only screen and (max-width: 767px) {
  footer .sitemap_field .secondary_area {
    margin-top: 32px;
  }
}
footer .sitemap_field .secondary_area .sub_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
@media only screen and (max-width: 767px) {
  footer .sitemap_field .secondary_area .sub_list {
    flex-direction: column;
    gap: 12px;
  }
}
footer .sitemap_field .secondary_area .sub_link {
  font-size: 1.4rem;
  line-height: 1.4;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  footer .sitemap_field .secondary_area .sub_link:hover {
    color: #fff;
  }
  footer .sitemap_field .secondary_area .sub_link:hover[target=_blank]::after {
    color: #fff;
  }
}
footer .sitemap_field .secondary_area .sub_link[target=_blank]::after {
  content: "\e902";
  font-family: "simul_ac";
  margin-left: 8px;
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease-out;
}
footer .copyright_field {
  margin-top: 56px;
  padding: 16px 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  background: #050505;
}
@media only screen and (max-width: 767px) {
  footer .copyright_field {
    margin-top: 28px;
  }
}

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

  PRINT

======================================= */
/*-----------------------------------------
  print
-----------------------------------------*/
@media print {
  body {
    zoom: 0.8;
  }
}/*# sourceMappingURL=common.css.map */