@charset "UTF-8";
@media (max-width: 1060px) {
  .hidden-xl {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hidden-mdsl {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .hidden-mds {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .hidden-md {
    display: none !important;
  }
}

@media (max-width: 500px) {
  .hidden-xs {
    display: none !important;
  }
}

.visible-mdsl,
.visible-xs,
.visible-md,
.visible-mds,
.visible-xl {
  display: none !important;
}

@media (max-width: 1060px) {
  .visible-xl {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .visible-mdsl {
    display: block !important;
  }
}

@media (max-width: 600px) {
  .visible-mds {
    display: block !important;
  }
}

@media (max-width: 980px) {
  .visible-md {
    display: block !important;
  }
}

@media (max-width: 500px) {
  .visible-xs {
    display: block !important;
  }
}

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

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  line-height: 0;
}

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

body {
  -webkit-text-size-adjust: none;
}

h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.4;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
}

h4 {
  font-size: 21px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 14px;
}

p {
  margin: 0;
}

p img {
  margin: 0;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
  color: #333;
}

small {
  font-size: 80%;
}

blockquote,
blockquote p {
  font-size: 17px;
  line-height: 24px;
  color: #777;
  font-style: italic;
}

blockquote {
  margin: 0 0 20px;
  padding: 9px 20px 0 19px;
  border-left: 1px solid #ddd;
}

blockquote cite {
  display: block;
  font-size: 12px;
  color: #555;
}

blockquote cite:before {
  content: "— ";
}

blockquote cite a,
blockquote cite a:visited,
blockquote cite a:visited {
  color: #555;
}

hr {
  border: solid #ddd;
  border-width: 1px 0 0;
  clear: both;
  margin: 10px 0 30px;
  height: 0;
}

a,
a:visited {
  text-decoration: none;
  outline: 0;
}

p a,
p a:visited {
  line-height: inherit;
}

input[type=text],
input[type=password],
input[type=email],
textarea,
select {
  border: 1px solid #ccc;
  outline: none;
  border-radius: 2px;
  margin: 0;
  max-width: 100%;
  background: #fff;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
textarea:focus {
  border: 1px solid #aaa;
  color: #444;
}

label,
legend {
  display: block;
  font-weight: bold;
  font-size: 13px;
}

input[type=checkbox] {
  display: inline;
}

button {
  cursor: pointer;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modaal-close:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
          animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
      -ms-transform: scale(0.25);
          transform: scale(0.25);
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

html {
  scroll-behavior: auto !important;
}

em {
  font-style: normal;
}

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

::-webkit-file-upload-button {
  inline-size: -webkit-fit-content;
  inline-size: fit-content;
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none;
}

.button,
::file-selector-button {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

*:focus-visible {
  outline: 2px solid cyan;
  outline-offset: 2px;
}

body {
  background-color: #fff;
}

article {
  padding-top: 100px;
}
@media (max-width: 1060px) {
  article {
    padding-top: 60px;
  }
}

.inner {
  max-width: 1060px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 500px) {
  .inner {
    padding-left: 17px;
    padding-right: 17px;
  }
}

.max_width {
  max-width: 1060px;
}

.text_center {
  text-align: center;
}

.box_center {
  margin-left: auto;
  margin-right: auto;
}

img {
  max-width: 100%;
}

.va-bottom {
  vertical-align: bottom;
}

.text-right {
  text-align: right;
}

@-webkit-keyframes mHover {
  0% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes mHover {
  0% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes mHover2 {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mHover2 {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
html,
button {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "pkna" 1;
          font-feature-settings: "pkna" 1;
  font-size: 16px;
  color: #000;
  font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 980px) {
  html,
  button {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  html,
  button {
    font-size: 14px;
  }
}

body {
  line-height: 1.5;
}

.wide-line-height {
  line-height: 2.5;
}

header,
.header {
  width: 100%;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  background-color: #e40331;
}
header_hit,
.header_hit {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
}
header_main,
.header_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1060px) {
  header_main,
  .header_main {
    height: 60px;
    display: block;
  }
}
header h1,
.header h1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
  padding: 10px 0 10px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1400px) {
  header h1,
  .header h1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
  }
}
@media (max-width: 1060px) {
  header h1,
  .header h1 {
    padding: 18px 30px;
  }
}
header h1 .logo,
.header h1 .logo {
  display: block;
}
header h1 img,
.header h1 img {
  width: 100%;
  max-width: 406px;
}
@media (max-width: 1060px) {
  header h1 img,
  .header h1 img {
    width: 250px;
  }
}
header button,
.header button {
  display: none;
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  text-align: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 2px;
  z-index: 1;
}
@media (max-width: 1060px) {
  header button,
  .header button {
    display: block;
  }
}
header button span,
.header button span {
  display: block;
}
header button .icon,
.header button .icon {
  width: 40px;
  height: 20px;
  position: relative;
  margin-bottom: 8px;
}
header button .icon span,
.header button .icon span {
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background-color: #fff;
  left: 0;
  -webkit-transition: top 0.25s, background 0.4s, opacity 0.4s, -webkit-transform 0.25s;
  transition: top 0.25s, background 0.4s, opacity 0.4s, -webkit-transform 0.25s;
  transition: top 0.25s, transform 0.25s, background 0.4s, opacity 0.4s;
  transition: top 0.25s, transform 0.25s, background 0.4s, opacity 0.4s, -webkit-transform 0.25s;
}
header button .icon span:nth-of-type(1),
.header button .icon span:nth-of-type(1) {
  top: 0;
}
header button .icon span:nth-of-type(2),
.header button .icon span:nth-of-type(2) {
  top: 50%;
}
header button .icon span:nth-of-type(3),
.header button .icon span:nth-of-type(3) {
  top: 100%;
}
@media (max-width: 1060px) {
  header_nav,
  .header_nav {
    position: absolute;
    top: 60px;
    right: -300px;
    right: -100%;
    background-color: #e40331;
    display: block;
    padding: 15px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: 6px 6px 0px #ffd861;
            box-shadow: 6px 6px 0px #ffd861;
  }
}
header_nav_wrap,
.header_nav_wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 99%;
          flex: 0 1 99%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1400px) {
  header_nav_wrap,
  .header_nav_wrap {
    padding-left: 15px;
  }
}
@media (max-width: 980px) {
  header_nav_wrap,
  .header_nav_wrap {
    padding: 15px 75px 15px 10px;
  }
}
header_nav ul,
.header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 2em;
}
@media (max-width: 1400px) {
  header_nav ul,
  .header_nav ul {
    padding-right: 1em;
  }
}
@media (max-width: 1200px) {
  header_nav ul,
  .header_nav ul {
    padding-right: 0.5em;
  }
}
@media (max-width: 980px) {
  header_nav ul,
  .header_nav ul {
    display: block;
    text-align: left;
    padding: 0;
  }
}
header_nav li,
.header_nav li {
  display: inline-block;
  text-align: center;
}
@media (max-width: 980px) {
  header_nav li,
  .header_nav li {
    display: block;
  }
}
header_nav li a,
.header_nav li a {
  display: inline-block;
  -webkit-transition: color 0.4s, opacity 0.4s;
  transition: color 0.4s, opacity 0.4s;
  line-height: 1;
  border-left: 1px solid #c70029;
  position: relative;
}
@media (max-width: 1200px) {
  header_nav li a,
  .header_nav li a {
    border: none;
  }
}
@media (max-width: 980px) {
  header_nav li a,
  .header_nav li a {
    display: block;
    text-align: left;
    padding: 1em 0;
  }
}
header_nav li a .en,
.header_nav li a .en {
  font-weight: 900;
  font-size: 18px;
  color: #ffd861;
  display: block;
  padding: 0 1em;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
@media (max-width: 1200px) {
  header_nav li a .en,
  .header_nav li a .en {
    font-size: 16px;
  }
}
header_nav li a .label,
.header_nav li a .label {
  display: block;
  color: #fff;
  font-size: 15px;
  padding: 0.7em 1.5em 0;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
@media (max-width: 1200px) {
  header_nav li a .label,
  .header_nav li a .label {
    font-size: 14px;
    padding: 0.7em 1em 0;
  }
}
@media (max-width: 980px) {
  header_nav li a .label,
  .header_nav li a .label {
    background: none;
    text-align: left;
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  header_nav li a:hover .en,
  .header_nav li a:hover .en {
    color: #fff;
  }
  header_nav li a:hover .label,
  .header_nav li a:hover .label {
    color: #ffd861;
  }
}
@media (any-hover: hover) and (max-width: 980px) {
  header_nav li a:hover,
  .header_nav li a:hover {
    opacity: 0.7;
  }
}
header_entry,
.header_entry {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  font-size: 16px;
}
@media (max-width: 1400px) {
  header_entry,
  .header_entry {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
  }
}
@media (max-width: 1200px) {
  header_entry,
  .header_entry {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
}
@media (max-width: 980px) {
  header_entry,
  .header_entry {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
  }
}
@media (max-width: 600px) {
  header_entry,
  .header_entry {
    visibility: hidden;
  }
}
header_entry a,
.header_entry a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  padding: 0.5em;
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
}
@media (max-width: 980px) {
  header_entry a,
  .header_entry a {
    padding: 0.25em 1em;
  }
}
.js_show_nav .header_nav {
  right: 0;
}
.js_show_nav .header button .icon span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg);
}
.js_show_nav .header button .icon span:nth-of-type(2) {
  opacity: 0;
  top: 50%;
}
.js_show_nav .header button .icon span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: rotate(-150deg);
      -ms-transform: rotate(-150deg);
          transform: rotate(-150deg);
}

.js_on .header_nav {
  -webkit-transition: right 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: right 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

body .footer {
  padding: 70px 40px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  background-color: #e40331;
  color: #fff;
}
@media (max-width: 768px) {
  body .footer {
    padding: 30px 20px 100px;
  }
}
@media (max-width: 600px) {
  body .footer {
    padding: 30px 20px 110px;
  }
}
body .footer ul {
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 980px) {
  body .footer ul {
    display: block;
  }
}
body .footer li {
  display: inline-block;
  float: none;
  line-height: 1;
}
@media (max-width: 500px) {
  body .footer li {
    display: block;
  }
}
body .footer li:nth-last-of-type(1) a span {
  border: none;
}
body .footer li a {
  padding: 0.5em 0;
  display: inline-block;
  -webkit-transition: color 0.4s, opacity 0.4s;
  transition: color 0.4s, opacity 0.4s;
  text-decoration: none;
  color: #fff;
}
@media (any-hover: hover) {
  body .footer li a:hover {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
  }
}
@media (max-width: 1200px) {
  body .footer li a {
    padding: 0.3em;
  }
}
@media (max-width: 500px) {
  body .footer li a {
    padding: 0.5em 0;
  }
}
body .footer li a span {
  border-right: 1px solid #000;
  display: inline-block;
  padding: 0 2em;
  border-right: 1px solid #fff;
}
@media (max-width: 768px) {
  body .footer li a span {
    padding: 0 1em;
    border: none;
  }
}
body .footer_copyrights {
  text-align: center;
}
body .footer_totop {
  z-index: 3;
  position: fixed;
  right: 30px;
  bottom: -150px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: bottom 1.5s cubic-bezier(1, 0, 0, 1);
  transition: bottom 1.5s cubic-bezier(1, 0, 0, 1);
  -webkit-transition: opacity 0.3s, bottom 0.3s, background 0.3s, -webkit-box-shadow 0.2s, -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s, bottom 0.3s, background 0.3s, -webkit-box-shadow 0.2s, -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s, bottom 0.3s, background 0.3s, box-shadow 0.2s, transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s, bottom 0.3s, background 0.3s, box-shadow 0.2s, transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-box-shadow 0.2s, -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  width: 65px;
  height: 65px;
}
@media (max-width: 1500px) {
  body .footer_totop {
    bottom: -100px;
  }
}
@media (max-width: 980px) {
  body .footer_totop {
    width: 70px;
    height: 70px;
    right: 20px;
  }
}
@media (max-width: 600px) {
  body .footer_totop {
    width: 55px;
    height: 55px;
    right: 10px;
  }
}
@media (any-hover: hover) {
  body .footer_totop:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
body .footer_totop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: bold;
}
body .footer_totop .icon {
  font-size: 1%;
}
body .footer_totop .icon img {
  width: 100%;
}
body .footer_entry {
  position: fixed;
  z-index: 2;
  bottom: 200px;
  right: -150px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
@media (max-width: 1500px) {
  body .footer_entry {
    bottom: 140px;
    right: -100px;
  }
}
@media (max-width: 980px) {
  body .footer_entry {
    left: 0;
    bottom: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
body .footer_entry a {
  text-align: center;
  display: block;
  font-size: 16px;
  padding-top: 45px;
  border-radius: 100px;
  width: 150px;
  height: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background 0.4s, box--shadow 0.2s;
  transition: background 0.4s, box--shadow 0.2s;
}
@media (max-width: 1500px) {
  body .footer_entry a {
    width: 100px;
    height: 100px;
    padding-top: 25px;
    font-size: 14px;
  }
}
@media (max-width: 980px) {
  body .footer_entry a {
    border-radius: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    height: auto;
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 7px;
  }
}
@media (any-hover: hover) {
  body .footer_entry a:hover {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }
}
@media (any-hover: hover) and (max-width: 980px) {
  body .footer_entry a:hover {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
body .footer_entry1 {
  margin-bottom: 25px;
}
@media (max-width: 1500px) {
  body .footer_entry1 {
    margin-bottom: 10px;
  }
}
@media (max-width: 980px) {
  body .footer_entry1 {
    margin-bottom: 0;
  }
}
body .footer_entry .target {
  display: block;
  letter-spacing: -0.05em;
}
@media (max-width: 980px) {
  body .footer_entry .target {
    display: inline-block;
  }
}
body .footer_entry .icon {
  display: inline-block;
  padding-left: 3px;
}
body .footer_entry .icon img {
  width: 27px;
}
@media (max-width: 1500px) {
  body .footer_entry .icon img {
    width: 18px;
    -webkit-transform: translateY(-0.2em);
        -ms-transform: translateY(-0.2em);
            transform: translateY(-0.2em);
  }
}

.js_nav_fixed .footer_totop {
  bottom: 25px;
}
@media (max-width: 980px) {
  .js_nav_fixed .footer_totop {
    bottom: 60px;
  }
}
@media (max-width: 600px) {
  .js_nav_fixed .footer_totop {
    bottom: 60px;
  }
}
.js_nav_fixed .footer_entry {
  right: 30px;
}

.cmn_title {
  color: #e40331;
  text-align: center;
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  .cmn_title {
    margin-bottom: 45px;
  }
}
@media (max-width: 600px) {
  .cmn_title {
    margin-bottom: 35px;
  }
}
.cmn_title h3 {
  font-size: 80px;
  font-family: "Alatsi", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
}
@media (max-width: 980px) {
  .cmn_title h3 {
    font-size: 70px;
  }
}
@media (max-width: 768px) {
  .cmn_title h3 {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  .cmn_title h3 {
    font-size: 40px;
  }
}
.cmn_title p {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .cmn_title p {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .cmn_title p {
    font-size: 16px;
  }
}

.hero_cnt {
  position: relative;
  z-index: 1;
}
.hero_cnt img {
  width: 100%;
}
@media (max-width: 768px) {
  .hero_cnt img:nth-of-type(1) {
    display: none;
  }
}
.hero_cnt img:nth-of-type(2) {
  display: none;
}
@media (max-width: 768px) {
  .hero_cnt img:nth-of-type(2) {
    display: block;
  }
}

.message_cnt {
  margin-top: -100px;
  position: relative;
  padding: 200px 0 150px;
}
@media (max-width: 980px) {
  .message_cnt {
    padding: 170px 0 130px;
  }
}
@media (max-width: 768px) {
  .message_cnt {
    padding: 150px 0 0;
  }
}
@media (max-width: 600px) {
  .message_cnt {
    padding: 130px 0 0;
  }
}
.message_cnt .cmn_title {
  text-align: left;
  position: relative;
}
.message_cnt .cmn_title::before {
  display: block;
  content: "";
  position: absolute;
  background: url(../img/message_fx.png) no-repeat left center;
  background-size: contain;
  width: 100%;
  height: 175%;
  top: -45%;
  left: -5%;
}
.message_main {
  width: 65%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .message_main {
    width: 70%;
    width: 100%;
  }
}
.message_main p {
  font-size: 18px;
  line-height: 2;
}
@media (max-width: 768px) {
  .message_main p {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .message_main p {
    font-size: 16px;
  }
}
.message_fig {
  position: absolute;
  right: 0;
  bottom: 0;
  height: calc(100% + 80px);
  width: 30vw;
}
@media (max-width: 768px) {
  .message_fig {
    margin-top: 25px;
    width: 100%;
    position: static;
    aspect-ratio: 1/1;
  }
}
.message_fig img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
@media (max-width: 600px) {
  .message_fig img {
    -o-object-position: 75% center;
       object-position: 75% center;
  }
}

.about_cnt {
  padding: 140px 0 250px;
  background-color: #ffeebb;
  position: relative;
  overflow: hidden;
}
@media (max-width: 980px) {
  .about_cnt {
    padding: 110px 0 230px;
  }
}
@media (max-width: 768px) {
  .about_cnt {
    padding: 100px 0 200px;
  }
}
@media (max-width: 600px) {
  .about_cnt {
    padding: 70px 0 150px;
  }
}
.about_cnt:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 13vw;
  background-color: #fff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  left: 0;
  bottom: -1px;
  z-index: 1;
}
.about_cnt .inner {
  position: relative;
  z-index: 1;
}
.about_lead {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .about_lead {
    font-size: 16px;
    padding: 0 40px;
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .about_lead {
    margin-bottom: 35px;
  }
}
.about_lead strong {
  font-weight: 700;
  color: #e40331;
  font-size: 23px;
}
@media (max-width: 768px) {
  .about_lead strong {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .about_lead strong {
    font-size: 18px;
  }
}
.about_cap {
  font-weight: 900;
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}
@media (max-width: 980px) {
  .about_cap {
    font-size: 26px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .about_cap {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .about_cap {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.about_cap span {
  position: relative;
  display: inline-block;
  padding: 1em 4em 2em;
}
@media (max-width: 768px) {
  .about_cap span {
    padding: 0.75em 2.5em 1.75em;
  }
}
@media (max-width: 600px) {
  .about_cap span {
    padding: 0.5em 2.5em 1.5em;
  }
}
.about_cap span:before, .about_cap span:after {
  display: block;
  content: "";
  position: absolute;
  width: 2.8em;
  height: 3em;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .about_cap span:before, .about_cap span:after {
    width: 2.24em;
    height: 2.4em;
  }
}
@media (max-width: 600px) {
  .about_cap span:before, .about_cap span:after {
    width: 1.68em;
    height: 1.8em;
  }
}
.about_cap span:before {
  background-image: url(../img/about_cap_fx1.png);
  left: 0;
  top: 0;
}
.about_cap span:after {
  background-image: url(../img/about_cap_fx2.png);
  right: 0;
  top: 0;
}
.about_tab_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .about_tab_head {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .about_tab_head {
    gap: 15px;
  }
}
.about_tab_head li {
  width: 50%;
  max-width: 275px;
}
.about_tab_head button {
  border: none;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 20px 30px;
  background-color: #ffd861;
  -webkit-box-shadow: 6px 6px 0px #e40331;
          box-shadow: 6px 6px 0px #e40331;
  -webkit-transition: background 0.5s, -webkit-box-shadow 0.5s;
  transition: background 0.5s, -webkit-box-shadow 0.5s;
  transition: background 0.5s, box-shadow 0.5s;
  transition: background 0.5s, box-shadow 0.5s, -webkit-box-shadow 0.5s;
}
@media (any-hover: hover) {
  .about_tab_head button:hover {
    background-color: #fff;
  }
}
@media (max-width: 768px) {
  .about_tab_head button {
    padding: 15px 20px;
  }
}
.about_tab_head button em {
  font-weight: 900;
  font-size: 25px;
}
@media (max-width: 768px) {
  .about_tab_head button em {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .about_tab_head button em {
    font-size: 20px;
  }
}
.about_tab_body {
  background-color: #fff;
  padding: 80px 60px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 6px 6px 0px #ffd861;
          box-shadow: 6px 6px 0px #ffd861;
}
@media (max-width: 980px) {
  .about_tab_body {
    padding: 60px 40px;
  }
}
@media (max-width: 768px) {
  .about_tab_body {
    padding: 50px 30px 30px;
  }
}
@media (max-width: 600px) {
  .about_tab_body {
    padding: 30px 20px 20px;
  }
}
.about_tab_body_single {
  overflow: hidden;
  height: 0;
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.about_tab[data-tab-stat="1"] [data-tab-index="1"], .about_tab[data-tab-stat="2"] [data-tab-index="2"] {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 0px rgba(228, 3, 49, 0);
          box-shadow: 0px 0px 0px rgba(228, 3, 49, 0);
}
.about_tab[data-tab-stat="1"] [data-tab-num="1"], .about_tab[data-tab-stat="2"] [data-tab-num="2"] {
  height: auto;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.about_timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 30px;
  position: relative;
  gap: 20px;
}
@media (max-width: 600px) {
  .about_timeline {
    padding: 15px 20px;
    gap: 15px;
  }
}
.about_timeline:nth-of-type(even) {
  background-color: #fff7de;
}
.about_timeline:before {
  display: block;
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  top: 35%;
  left: 4.3em;
  background-color: #e40331;
  z-index: 1;
}
@media (max-width: 600px) {
  .about_timeline:before {
    width: 2px;
    top: 15%;
    left: 3.8em;
  }
}
.about_timeline:nth-last-of-type(1)::before {
  display: none;
}
.about_timeline dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5em;
          flex: 0 0 5em;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
.about_timeline dt span {
  background-color: #e40331;
  border-radius: 50px;
  display: block;
  padding: 0.5em 0.2em;
  position: relative;
  z-index: 1;
}
.about_timeline dd h5 {
  color: #e40331;
  font-size: 20px;
  font-weight: 700;
  padding: 0.25em 0 0.5em;
}
@media (max-width: 768px) {
  .about_timeline dd h5 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .about_timeline dd h5 {
    font-size: 16px;
  }
}
.about_timeline dd h5 small {
  font-size: 18px/0.9;
}
.about_timeline dd p {
  line-height: 1.8;
}
.about_opt, .about_link {
  margin-top: 55px;
  background-color: #fff;
  -webkit-box-shadow: 6px 6px 0px #ffd861;
          box-shadow: 6px 6px 0px #ffd861;
  padding: 45px 60px;
}
@media (max-width: 980px) {
  .about_opt, .about_link {
    padding: 40px 40px;
  }
}
@media (max-width: 768px) {
  .about_opt, .about_link {
    padding: 40px 30px;
    margin-top: 45px;
  }
}
@media (max-width: 600px) {
  .about_opt, .about_link {
    padding: 50px 25px 30px;
    margin-top: 35px;
  }
}
.about_opt {
  position: relative;
}
.about_opt_cap {
  position: absolute;
  width: 30%;
}
@media (max-width: 768px) {
  .about_opt_cap {
    width: 33%;
  }
}
@media (max-width: 600px) {
  .about_opt_cap {
    width: 40%;
    top: 0;
    -webkit-transform: translateY(-30%);
        -ms-transform: translateY(-30%);
            transform: translateY(-30%);
  }
}
.about_opt_text {
  width: 70%;
  line-height: 2;
}
@media (max-width: 600px) {
  .about_opt_text {
    width: 100%;
  }
}
.about_opt1 .about_opt_cap {
  left: -40px;
}
@media (max-width: 980px) {
  .about_opt1 .about_opt_cap {
    left: -25px;
  }
}
@media (max-width: 600px) {
  .about_opt1 .about_opt_cap {
    left: -12px;
  }
}
.about_opt1 .about_opt_text {
  margin-left: auto;
}
.about_opt2 .about_opt_cap {
  right: -40px;
}
@media (max-width: 980px) {
  .about_opt2 .about_opt_cap {
    right: -25px;
  }
}
@media (max-width: 600px) {
  .about_opt2 .about_opt_cap {
    right: -12px;
  }
}
.about_link_cap {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  border-bottom: 3px solid #ffd861;
  padding-bottom: 0.75em;
  margin-bottom: 1em;
}
@media (max-width: 980px) {
  .about_link_cap {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .about_link_cap {
    font-size: 24px;
    border-width: 2px;
  }
}
@media (max-width: 600px) {
  .about_link_cap {
    font-size: 22px;
  }
}
.about_link_list {
  display: -ms-grid;
  display: grid;
  gap: 55px;
  -ms-grid-columns: 1fr 55px 1fr;
  grid-template-columns: 1fr 1fr;
  max-width: 770px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about_link_list {
    gap: 25px;
  }
}
@media (max-width: 500px) {
  .about_link_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.about_link_list a {
  display: block;
  font-size: 25px;
  font-weight: 900;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#e40430), color-stop(33%, #ff6d00), to(#ff6d00));
  background: linear-gradient(90deg, #e40430 0%, #ff6d00 33%, #ff6d00 100%);
  background-size: 300% 100%;
  padding: 0.75em 1.2em;
  position: relative;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
@media (max-width: 768px) {
  .about_link_list a {
    font-size: 23px;
  }
}
@media (max-width: 600px) {
  .about_link_list a {
    font-size: 20px;
  }
}
@media (any-hover: hover) {
  .about_link_list a:hover {
    background-position: 50% 0;
  }
}
.about_link_list a::before {
  display: block;
  content: "";
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/cmn_delta_right.png) no-repeat center;
  background-size: contain;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.about_fx img {
  position: absolute;
}
.about_fx1 {
  top: 0;
  right: 0;
  width: 27vw;
}
@media (max-width: 980px) {
  .about_fx1 {
    width: 24.3vw;
  }
}
@media (max-width: 500px) {
  .about_fx1 {
    width: 29.7vw;
  }
}
.about_fx2 {
  left: 0;
  top: 16%;
  width: 22vw;
}
@media (max-width: 980px) {
  .about_fx2 {
    width: 19.8vw;
  }
}
@media (max-width: 600px) {
  .about_fx2 {
    top: 19%;
  }
}
@media (max-width: 500px) {
  .about_fx2 {
    top: 18%;
    width: 30.8vw;
  }
}
.about_fx3 {
  right: 0;
  top: 45%;
  width: 22vw;
}
@media (max-width: 1400px) {
  .about_fx3 {
    top: auto;
    bottom: 5vw;
  }
}
@media (max-width: 768px) {
  .about_fx3 {
    top: auto;
  }
}
@media (max-width: 980px) {
  .about_fx3 {
    width: 19.8vw;
  }
}
@media (max-width: 600px) {
  .about_fx3 {
    width: 22vw;
    width: 26.4vw;
  }
}
@media (max-width: 500px) {
  .about_fx3 {
    width: 30.8vw;
  }
}
.about_fx4 {
  left: 0;
  bottom: 0;
  width: 32vw;
}
@media (max-width: 1200px) {
  .about_fx4 {
    bottom: -25vw;
  }
}
@media (max-width: 980px) {
  .about_fx4 {
    bottom: -15vw;
    width: 25.6vw;
  }
}
@media (max-width: 500px) {
  .about_fx4 {
    width: 38.4vw;
  }
}

.data_cnt {
  padding: 50px 0 200px;
}
@media (max-width: 980px) {
  .data_cnt {
    padding: 40px 0 170px;
  }
}
@media (max-width: 768px) {
  .data_cnt {
    padding: 30px 0 145px;
  }
}
@media (max-width: 600px) {
  .data_cnt {
    padding: 25px 0 135px;
  }
}
@media (max-width: 500px) {
  .data_cnt {
    -webkit-padding-after: 100px;
            padding-block-end: 100px;
  }
}
.data_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 35px 1fr 35px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 35px;
}
@media (max-width: 980px) {
  .data_list {
    gap: 35px 30px;
  }
}
@media (max-width: 768px) {
  .data_list {
    gap: 30px 25px;
    -ms-grid-columns: 1fr 25px 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .data_list {
    gap: 20px 15px;
  }
}
.data_single {
  border-width: 3px;
  border-style: solid;
}
@media (max-width: 600px) {
  .data_single {
    border-width: 2px;
  }
}
.data_single:nth-of-type(odd) {
  border-color: #e40331;
}
.data_single:nth-of-type(odd) h4:before {
  background-color: #e40331;
}
.data_single:nth-of-type(even) {
  border-color: #ff6e00;
}
.data_single:nth-of-type(even) h4:before {
  background-color: #ff6e00;
}
.data_single_cap {
  text-align: center;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  padding: 0.7em 1em 1.3em;
  position: relative;
  margin-bottom: 0.5em;
}
@media (max-width: 600px) {
  .data_single_cap {
    font-size: 20px;
    padding: 0.6em 0.7em 1.1em;
  }
}
@media (max-width: 500px) {
  .data_single_cap {
    margin-bottom: 0.3em;
  }
}
.data_single_cap::before {
  display: block;
  content: "";
  position: absolute;
  width: calc(100% + 2px);
  height: 100%;
  clip-path: polygon(0 0, 0 100%, 100% 75%, 100% 0);
  left: -1px;
  top: -1px;
}
.data_single_cap span {
  position: relative;
}
.data_single_fig {
  text-align: center;
  padding: 0 20px;
}
@media (max-width: 600px) {
  .data_single_fig {
    padding: 0 10px;
  }
}
.data_single_text {
  padding: 20px 30px 25px;
}
@media (max-width: 768px) {
  .data_single_text {
    padding: 15px 20px 20px;
  }
}
@media (max-width: 600px) {
  .data_single_text {
    padding: 10px 10px 15px;
  }
}

.staff_cnt {
  background-color: #ffecd4;
  position: relative;
  padding: 50px 0;
  z-index: 1;
}
.staff_cnt::before, .staff_cnt::after {
  display: block;
  content: "";
  position: absolute;
  background-color: #ffecd4;
  width: 100%;
  height: 10vw;
}
.staff_cnt::before {
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  left: 0;
  top: calc(-10vw + 1px);
}
.staff_cnt:after {
  clip-path: polygon(0 0, 0 100%, 100% 0);
  left: 0;
  bottom: calc(-10vw + 1px);
}
.staff_cnt .inner {
  max-width: 1160px;
}
.staff_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px 30px;
}
@media (max-width: 1200px) {
  .staff_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.staff_single {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33% - 15px);
          flex: 0 0 calc(33% - 15px);
  color: #000;
}
@media (max-width: 1200px) {
  .staff_single {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 335px;
            flex: 0 0 335px;
  }
}
@media (max-width: 980px) {
  .staff_single {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 15px);
            flex: 0 0 calc(50% - 15px);
  }
}
@media (max-width: 500px) {
  .staff_single {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90%;
            flex: 0 0 90%;
  }
}
@media (any-hover: hover) {
  .staff_single:hover img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-filter: brightness(1.05);
            filter: brightness(1.05);
  }
  .staff_single:hover h4 {
    -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
            transform: translateY(10px);
  }
  .staff_single:hover .staff_single_detail * {
    color: #e40331;
  }
  .staff_single:hover .staff_single_link {
    -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
            transform: translateX(5px);
  }
}
.staff_single_fig {
  position: relative;
}
.staff_single_fig figure {
  overflow: hidden;
  -webkit-box-shadow: 6px 6px 0 #ffd861;
          box-shadow: 6px 6px 0 #ffd861;
}
.staff_single_fig img {
  width: 100%;
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-transition: -webkit-filter 0.5s, -webkit-transform 0.3s;
  transition: -webkit-filter 0.5s, -webkit-transform 0.3s;
  transition: filter 0.5s, transform 0.3s;
  transition: filter 0.5s, transform 0.3s, -webkit-filter 0.5s, -webkit-transform 0.3s;
}
.staff_single_fig h4 {
  position: absolute;
  left: -15px;
  bottom: 30px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.staff_single_fig h4 span {
  display: inline-block;
  background-color: #ffd861;
  color: #e40331;
  font-weight: 900;
  font-size: 20px;
  margin-top: 10px;
  padding: 0.3em 0.7em;
}
@media (max-width: 980px) {
  .staff_single_fig h4 span {
    font-size: 2.4vw;
  }
}
@media (max-width: 500px) {
  .staff_single_fig h4 span {
    font-size: 4.4vw;
  }
}
.staff_single_text {
  padding-top: 20px;
}
.staff_single_detail {
  line-height: 1;
}
.staff_single_detail strong {
  font-size: 40px;
  font-family: "Alatsi", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.1em;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
@media (max-width: 768px) {
  .staff_single_detail strong {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  .staff_single_detail strong {
    font-size: 32px;
  }
}
.staff_single_detail span {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  display: inline-block;
  padding-left: 1em;
}
.staff_single_link {
  font-weight: 700;
  color: #e40331;
  text-align: right;
  display: block;
  padding-right: 2.2em;
  position: relative;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.staff_single_link:after {
  display: block;
  content: "";
  position: absolute;
  background: url(../img/cmn_delta_right_r.png) no-repeat center;
  background-size: contain;
  width: 27px;
  height: 27px;
  right: 0;
  top: 60%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq_cnt {
  background: url(../img/faq_bg.png);
  padding: 170px 0 250px;
}
@media (max-width: 980px) {
  .faq_cnt {
    padding: 130px 0 220px;
  }
}
@media (max-width: 768px) {
  .faq_cnt {
    background-size: 60px;
    padding: 110px 0 180px;
  }
}
@media (max-width: 600px) {
  .faq_cnt {
    background-size: 50px;
    padding: 80px 0 130px;
  }
}
.faq_single {
  margin-top: 35px;
  background-color: #fff;
  -webkit-box-shadow: 6px 6px 0 #ffd861;
          box-shadow: 6px 6px 0 #ffd861;
}
@media (max-width: 768px) {
  .faq_single {
    margin-top: 25px;
  }
}
@media (max-width: 600px) {
  .faq_single {
    margin-top: 20px;
  }
}
.faq_single_head {
  background-color: #ffeebb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  gap: 23px;
  padding: 25px;
  color: #e40331;
  position: relative;
  cursor: pointer;
}
@media (any-hover: hover) {
  .faq_single_head:hover {
    background-color: #fff4d5;
  }
}
@media (max-width: 768px) {
  .faq_single_head {
    gap: 20px;
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .faq_single_head {
    gap: 15px;
    padding: 15px;
  }
}
.faq_single_head_pre {
  font-family: "Alatsi", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 33px;
}
@media (max-width: 980px) {
  .faq_single_head_pre {
    font-size: 31px;
  }
}
@media (max-width: 768px) {
  .faq_single_head_pre {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .faq_single_head_pre {
    font-size: 26px;
  }
}
.faq_single_head_cap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 95%;
          flex: 0 1 95%;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 980px) {
  .faq_single_head_cap {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  .faq_single_head_cap {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .faq_single_head_cap {
    font-size: 18px;
  }
}
.faq_single_head_icon {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 2px solid #e40331;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 768px) {
  .faq_single_head_icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35px;
            flex: 0 0 35px;
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 600px) {
  .faq_single_head_icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    width: 30px;
    height: 30px;
  }
}
.faq_single_head_icon:before, .faq_single_head_icon:after {
  display: block;
  content: "";
  position: absolute;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  width: 50%;
  height: 2px;
  background-color: #e40331;
  left: 25%;
  top: calc(50% - 1px);
}
.faq_single_head_icon:after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq_single_body {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: grid-template-rows 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: grid-template-rows 0.5s cubic-bezier(0.77, 0, 0.175, 1), -ms-grid-rows 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.faq_single_body_wrap {
  overflow: hidden;
}
.faq_single_body p {
  padding: 35px 35px 35px 80px;
  line-height: 2;
}
@media (max-width: 768px) {
  .faq_single_body p {
    padding: 30px 30px 30px 70px;
  }
}
@media (max-width: 600px) {
  .faq_single_body p {
    padding: 20px;
  }
}
.faq_single.on .faq_single_head_icon:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq_single.on .faq_single_head_icon:after {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}
.faq_single.on .faq_single_body {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

.company_cnt {
  background-color: #ffeebb;
  position: relative;
  padding: 50px 0 120px;
}
.company_cnt::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #ffeebb;
  width: 100%;
  height: 10vw;
}
.company_cnt::before {
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  left: 0;
  top: calc(-10vw + 1px);
}
.company_main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 45px 1fr;
  grid-template-columns: 50% 1fr;
  gap: 45px;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .company_main {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 100px;
  }
}
@media (max-width: 600px) {
  .company_main {
    margin-bottom: 70px;
  }
}
.company_main_map iframe {
  width: 100%;
  height: 400px;
}
@media (max-width: 768px) {
  .company_main_map iframe {
    height: 40vw;
  }
}
.company_main_detail {
  padding-top: 45px;
}
@media (max-width: 768px) {
  .company_main_detail {
    padding: 0;
  }
}
.company_main_detail dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3em 30px 1fr;
  grid-template-columns: 3em 1fr;
  gap: 30px;
  border-bottom: 2px solid #e40331;
  padding: 1em;
  line-height: 1.8;
}
@media (max-width: 600px) {
  .company_main_detail dl {
    gap: 15px;
    padding: 0.5em;
  }
}
.company_main_detail dl:nth-of-type(1) {
  border-top: 2px solid #e40331;
}
.company_main_detail dt {
  text-align: center;
  color: #e40331;
  font-weight: 700;
}
.company_link a {
  max-width: 533px;
  margin: 0 auto;
  text-align: center;
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#e40430), color-stop(33%, #ff6d00), to(#ff6d00));
  background: linear-gradient(90deg, #e40430 0%, #ff6d00 33%, #ff6d00 100%);
  background-size: 300% 100%;
  padding: 0.75em 1.2em;
  position: relative;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
@media (max-width: 768px) {
  .company_link a {
    font-size: 26px;
  }
}
@media (max-width: 600px) {
  .company_link a {
    font-size: 22px;
  }
}
@media (any-hover: hover) {
  .company_link a:hover {
    background-position: 50% 0;
  }
}
.company_link a::before {
  display: block;
  content: "";
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/cmn_delta_right.png) no-repeat center;
  background-size: contain;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.company_fx {
  position: absolute;
  left: 0;
  top: -10vw;
  width: 25vw;
}

body:has(.modaal-wrapper) {
  overflow-y: hidden;
}
body:has(.modaal-wrapper.modaal-start_fade) {
  overflow-y: scroll;
}
body .modaal-wrapper.modaal-start_fade {
  overflow: hidden;
}
body .modaal-wrapper.modaal-start_fade .modaal-close {
  display: none;
}

.modal_cnt {
  display: none;
}
.modal_single_main {
  background-color: #fff;
  padding: 50px 60px;
}
@media (max-width: 980px) {
  .modal_single_main {
    padding: 40px 50px;
  }
}
@media (max-width: 768px) {
  .modal_single_main {
    padding: 30px 35px;
  }
}
@media (max-width: 600px) {
  .modal_single_main {
    padding: 20px 20px;
  }
}
.modal_single_wrap {
  position: relative;
  overflow: hidden;
}
.modal_single_head {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .modal_single_head {
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .modal_single_head {
    margin-bottom: 30px;
  }
}
.modal_single_head_photo img {
  width: 50%;
  -webkit-box-shadow: 6px 6px 0px #ffd861;
          box-shadow: 6px 6px 0px #ffd861;
}
@media (max-width: 980px) {
  .modal_single_head_photo img {
    width: 60%;
  }
}
.modal_single_head_text {
  position: absolute;
  right: 0;
  width: 55%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 980px) {
  .modal_single_head_text {
    width: 60%;
  }
}
.modal_single_head_text h2 {
  margin-bottom: 4em;
}
@media (max-width: 980px) {
  .modal_single_head_text h2 {
    margin-bottom: 2em;
  }
}
@media (max-width: 500px) {
  .modal_single_head_text h2 {
    margin-bottom: 1em;
  }
}
.modal_single_head_text h2 span {
  margin-top: 0.4em;
  display: inline-block;
  background-color: #ffd861;
  color: #e40331;
  font-weight: 900;
  font-size: 25px;
  padding: 0.3em 0.7em;
}
@media (max-width: 980px) {
  .modal_single_head_text h2 span {
    padding: 0.3em 0.5em;
    font-size: 2.7vw;
  }
}
@media (max-width: 500px) {
  .modal_single_head_text h2 span {
    font-size: 2.6vw;
  }
}
.modal_single_head_text p {
  margin-left: auto;
  width: 80%;
}
@media (max-width: 980px) {
  .modal_single_head_text p {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .modal_single_head_text p {
    width: 55%;
  }
}
.modal_single_head_text p em {
  display: block;
  font-size: 40px;
  font-family: "Alatsi", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.1em;
}
@media (max-width: 768px) {
  .modal_single_head_text p em {
    font-size: 35px;
  }
}
@media (max-width: 600px) {
  .modal_single_head_text p em {
    font-size: 32px;
  }
}
.modal_single_body {
  position: relative;
}
.modal_single_body dl {
  margin-top: 25px;
  padding: 30px 20px;
  background-color: #ffeebb;
}
@media (max-width: 768px) {
  .modal_single_body dl {
    padding: 25px 20px;
  }
}
@media (max-width: 600px) {
  .modal_single_body dl {
    margin-top: 20px;
    padding: 20px 15px;
  }
}
.modal_single_body dt {
  padding: 15px 15px 20px;
  color: #e40331;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #e40331;
}
@media (max-width: 768px) {
  .modal_single_body dt {
    padding: 10px 10px 20px;
  }
}
@media (max-width: 600px) {
  .modal_single_body dt {
    gap: 10px;
    padding: 5px 10px 15px;
  }
}
.modal_single_body dt em {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1em;
          flex: 0 0 1em;
  line-height: 1;
  font-size: 33px;
  font-family: "Alatsi", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 980px) {
  .modal_single_body dt em {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .modal_single_body dt em {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .modal_single_body dt em {
    font-size: 24px;
  }
}
.modal_single_body dt span {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .modal_single_body dt span {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  .modal_single_body dt span {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .modal_single_body dt span {
    font-size: 17px;
  }
}
.modal_single_body dd {
  padding: 20px 20px 0;
  line-height: 2;
}
@media (max-width: 600px) {
  .modal_single_body dd {
    padding: 15px 0 0;
  }
}
.modal_single_close {
  text-align: center;
  padding: 60px 0;
}
@media (max-width: 768px) {
  .modal_single_close {
    padding: 50px 0;
  }
}
@media (max-width: 600px) {
  .modal_single_close {
    padding: 40px 0;
  }
}
.modal_single_close button {
  background-color: transparent;
  border: none;
  font-size: 16px;
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
  background-color: #fff;
  padding: 1em 2.5em;
  width: 265px;
  position: relative;
  border: 2px solid #e40331;
}
@media (any-hover: hover) {
  .modal_single_close button:hover {
    background-color: #e40331;
    color: #fff;
  }
  .modal_single_close button:hover .icon::before, .modal_single_close button:hover .icon:after {
    background-color: #fff;
  }
}
.modal_single_close button .icon {
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  right: 15px;
  top: 50%;
}
.modal_single_close button .icon::before, .modal_single_close button .icon:after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 15%;
  top: 0;
  background-color: #e40331;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
.modal_single_close button .icon::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal_single_close button .icon:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal_single_close_top {
  overflow: hidden;
  text-indent: -999px;
  background-color: #fff;
  border-radius: 50px;
  border: none;
  position: absolute;
  z-index: 1;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  width: 50px;
  height: 50px;
  top: 17px;
  right: 17px;
  border: 2px solid #e40331;
}
@media (max-width: 980px) {
  .modal_single_close_top {
    top: -17px;
    right: -17px;
  }
}
@media (max-width: 768px) {
  .modal_single_close_top {
    width: 45px;
    height: 45px;
  }
}
@media (any-hover: hover) {
  .modal_single_close_top:hover {
    background-color: #e40331;
  }
  .modal_single_close_top:hover span:before, .modal_single_close_top:hover span:after {
    background-color: #fff;
  }
}
.modal_single_close_top span {
  width: 60%;
  height: 60%;
  position: absolute;
  display: block;
  left: 20%;
  top: 20%;
}
.modal_single_close_top span:before, .modal_single_close_top span:after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #e40331;
  top: 48%;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
.modal_single_close_top span:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal_single_close_top span:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modaal-container {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.modaal-content-container {
  padding: 0;
}
.modaal-close {
  display: none;
}

.add_anim {
  -webkit-transition: opacity 1.3s, -webkit-transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1.3s, -webkit-transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1.3s, transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1.3s, transform 1.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}
.add_anim .cmn_title {
  -webkit-transition: opacity 1s 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: opacity 1s 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: opacity 1s 0.3s, transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: opacity 1s 0.3s, transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}
.add_anim.js_on {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.add_anim.js_on .cmn_title {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}