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

.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 {
  -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: 500px) {
  html,
  button {
    font-size: 15px;
  }
}

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;
  padding: 45px 30px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1060px) {
  header,
  .header {
    padding: 35px 25px 0;
  }
}
@media (max-width: 768px) {
  header,
  .header {
    padding: 20px 20px 0;
  }
}
@media (max-width: 600px) {
  header,
  .header {
    padding: 20px 10px 0;
  }
}
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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  box-sizing: border-box;
  width: 100%;
  padding: 0 35px;
  position: relative;
}
@media (max-width: 1060px) {
  header_main,
  .header_main {
    height: 65px;
    padding: 0 25px;
  }
}
@media (max-width: 768px) {
  header_main,
  .header_main {
    padding: 0 20px;
    height: 50px;
  }
}
header h1,
.header h1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 395px;
          flex: 0 0 395px;
  -ms-flex: 0 0 30vw;
      flex: 0 0 30vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header h1 .logo,
.header h1 .logo {
  display: block;
}
header h1 img,
.header h1 img {
  max-width: 395px;
  width: 25vw;
  min-width: 275px;
}
@media (max-width: 600px) {
  header h1 img,
  .header h1 img {
    min-width: 225px;
  }
}
header_entry,
.header_entry {
  text-align: right;
  padding-right: 80px;
}
@media (max-width: 768px) {
  header_entry,
  .header_entry {
    display: none;
  }
}
header_entry a,
.header_entry a {
  width: 180px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50px;
  display: inline-block;
  background: #048001;
  background: -webkit-gradient(linear, left top, right top, from(rgb(5, 129, 2)), color-stop(50%, rgb(70, 172, 68)));
  background: linear-gradient(90deg, rgb(5, 129, 2) 0%, rgb(70, 172, 68) 50%);
  background-size: 200% auto;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  text-align: center;
}
header_entry a::after,
.header_entry a::after {
  padding-left: 1em;
  content: "→";
}
@media (any-hover: hover) {
  header_entry a:hover,
  .header_entry a:hover {
    background-position: 100% 0;
  }
}
header button,
.header button {
  display: none;
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  text-align: center;
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: calc(50% - 30px);
  z-index: 1;
  display: block;
}
@media (max-width: 768px) {
  header button,
  .header button {
    right: 15px;
  }
}
@media (any-hover: hover) {
  header button:hover .icon span,
  .header button:hover .icon span {
    background-color: #48ad46;
  }
}
header button span,
.header button span {
  display: block;
}
header button .icon,
.header button .icon {
  width: 40px;
  height: 20px;
  position: relative;
}
header button .icon span,
.header button .icon span {
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background-color: #048001;
  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%;
}
header_nav_wrap,
.header_nav_wrap {
  position: absolute;
  top: 100px;
  right: -300px;
  right: -100%;
  background: #048001;
  background: -webkit-gradient(linear, left top, right top, from(rgb(5, 129, 2)), to(rgb(70, 172, 68)));
  background: linear-gradient(90deg, rgb(5, 129, 2) 0%, rgb(70, 172, 68) 100%);
  display: block;
  padding: 30px 20px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header_nav ul,
.header_nav ul {
  display: block;
  text-align: left;
  padding: 0;
}
header_nav li a,
.header_nav li a {
  -webkit-transition: color 0.4s, opacity 0.4s;
  transition: color 0.4s, opacity 0.4s;
  line-height: 1;
  display: block;
  color: #fff;
  text-align: left;
  padding: 1em 0;
}
header_nav li a .label,
.header_nav li a .label {
  display: block;
  padding: 0em 1.5em 0 0.5em;
  position: relative;
}
header_nav li a .label::before,
.header_nav li a .label::before {
  content: "→";
  display: inline-block;
  padding-right: 0.5em;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media (any-hover: hover) {
  header_nav li a:hover .label::before,
  .header_nav li a:hover .label::before {
    opacity: 1;
  }
}
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_wrap {
  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_wrap {
  -webkit-transition: right 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: right 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

body .footer {
  padding: 50px 50px 100px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body .footer_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 980px) {
  body .footer_main {
    display: block;
  }
}
body .footer ul {
  text-align: center;
}
@media (max-width: 980px) {
  body .footer ul {
    display: block;
    margin-bottom: 30px;
  }
}
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: #000;
}
body .footer li a:visited {
  color: #000;
}
@media (any-hover: hover) {
  body .footer li a:hover {
    color: #048001;
    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 {
  display: inline-block;
  padding: 0 1em;
}
body .footer_copyrights {
  text-align: center;
}
body .footer_totop {
  z-index: 3;
  position: fixed;
  right: 30px;
  bottom: -150px;
  border-radius: 100px;
  -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;
  transition: opacity 0.3s, bottom 0.3s, background 0.3s, -webkit-box-shadow 0.2s;
  transition: opacity 0.3s, bottom 0.3s, background 0.3s, box-shadow 0.2s;
  transition: opacity 0.3s, bottom 0.3s, background 0.3s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  width: 65px;
  height: 65px;
  background-color: #048001;
}
@media (max-width: 768px) {
  body .footer_totop {
    width: 55px;
    height: 55px;
    right: 10px;
  }
}
@media (any-hover: hover) {
  body .footer_totop:hover {
    background-color: #48ad46;
  }
}
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 a::after {
  content: "↑";
  color: #fff;
  font-size: 25px;
}
body .footer_entry {
  position: fixed;
  z-index: 2;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  left: 20px;
  bottom: 0;
  display: none;
}
@media (max-width: 768px) {
  body .footer_entry {
    display: block;
  }
}
body .footer_entry a {
  text-align: center;
  display: inline-block;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background 0.4s, -webkit-box-shadow 0.2s;
  transition: background 0.4s, -webkit-box-shadow 0.2s;
  transition: background 0.4s, box-shadow 0.2s;
  transition: background 0.4s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  background: #048001;
  background: -webkit-gradient(linear, left top, right top, from(rgb(5, 129, 2)), color-stop(50%, rgb(70, 172, 68)));
  background: linear-gradient(90deg, rgb(5, 129, 2) 0%, rgb(70, 172, 68) 50%);
  background-size: 200% auto;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  color: #fff;
  padding: 0.5em 1.5em;
  font-weight: 700;
}
body .footer_entry a::after {
  content: "→";
  font-weight: normal;
  display: inline-block;
  padding-left: 1em;
}
@media (any-hover: hover) {
  body .footer_entry a:hover {
    background-position: 100% 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: 768px) {
  .js_nav_fixed .footer_totop {
    bottom: 10px;
  }
}
.js_nav_fixed .footer_entry {
  bottom: 20px;
}

.cmn_title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cmn_title {
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .cmn_title {
    margin-bottom: 25px;
  }
}
.cmn_title h3 {
  font-size: 60px;
  line-height: 1.3;
  font-weight: 900;
  color: #048001;
  margin-bottom: 0.2em;
}
@media (max-width: 1060px) {
  .cmn_title h3 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .cmn_title h3 {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .cmn_title h3 {
    font-size: 34px;
  }
}
@media (max-width: 500px) {
  .cmn_title h3 {
    font-size: 30px;
  }
}
.cmn_title h3 span {
  display: inline-block;
  position: relative;
}
.cmn_title h3 span::before {
  display: block;
  content: "";
  position: absolute;
  width: 71px;
  height: 63px;
  background: url(../img/message_cap_fx.png) no-repeat center;
  background-size: contain;
  left: -38px;
  top: -30px;
}
@media (max-width: 1200px) {
  .cmn_title h3 span::before {
    left: -20px;
    width: 63.9px;
    height: 56.7px;
  }
}
@media (max-width: 768px) {
  .cmn_title h3 span::before {
    left: -20px;
    width: 49.7px;
    height: 44.1px;
    top: -20px;
  }
}

.cmn_cap {
  font-size: 30px;
  font-weight: 900;
  color: #ffc400;
  text-align: center;
}
@media (max-width: 1060px) {
  .cmn_cap {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .cmn_cap {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .cmn_cap {
    font-size: 20px;
  }
}
.cmn_cap span {
  display: inline-block;
  background-color: #523a0d;
  border: 5px solid #fff;
  border-radius: 50px;
  padding: 0.3em 2em 0.4em;
}
@media (max-width: 1060px) {
  .cmn_cap span {
    border-width: 4px;
  }
}
@media (max-width: 768px) {
  .cmn_cap span {
    border-width: 3px;
  }
}
@media (max-width: 600px) {
  .cmn_cap span {
    border-width: 2px;
  }
}

.hero_cnt img {
  width: 100%;
}

.message_cnt {
  padding: 150px 0;
  background: url(../img/message_bg.png) no-repeat right bottom;
  background-size: 65% auto;
}
@media (max-width: 1060px) {
  .message_cnt {
    padding: 130px 0;
  }
}
@media (max-width: 768px) {
  .message_cnt {
    padding: 90px 0;
  }
}
@media (max-width: 600px) {
  .message_cnt {
    padding: 70px 0;
  }
}
.message_main {
  font-size: 18px;
  line-height: 2;
}
@media (max-width: 768px) {
  .message_main {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .message_main {
    font-size: 16px;
  }
}
.message_main em {
  font-size: 125%;
  position: relative;
  display: inline-block;
  color: #048001;
  font-weight: 900;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, rgba(255, 196, 0, 0)), color-stop(55.1%, #ffc400), color-stop(87%, #ffc400), color-stop(87.1%, rgba(255, 196, 0, 0)));
  background: linear-gradient(180deg, rgba(255, 196, 0, 0) 55%, #ffc400 55.1%, #ffc400 87%, rgba(255, 196, 0, 0) 87.1%);
  padding: 0 0.1em;
  text-shadow: none;
}
@media (max-width: 768px) {
  .message_main em {
    font-size: 115%;
  }
}
@media (max-width: 600px) {
  .message_main em {
    font-size: 110%;
  }
}
.message_main p {
  margin-top: 2em;
  text-shadow: 0 0 3px #fff, 0 0 5px #fff, 0 0 7px #fff;
}

.about_cnt {
  margin-top: -1px;
}
.about_intro {
  padding: 120px 0 170px;
  background: url(../img/about_bg.png) no-repeat center;
  background-size: cover;
}
@media (max-width: 1060px) {
  .about_intro {
    padding: 100px 0 165px;
  }
}
@media (max-width: 768px) {
  .about_intro {
    padding: 80px 0 160px;
  }
}
@media (max-width: 600px) {
  .about_intro {
    padding: 65px 0 150px;
  }
}
.about_col {
  padding-bottom: 120px;
}
@media (max-width: 1060px) {
  .about_col {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .about_col {
    padding-bottom: 80px;
  }
}
@media (max-width: 600px) {
  .about_col {
    padding-bottom: 50px;
  }
}
.about_col .cmn_cap {
  margin-top: -70px;
}
.about_cnt .cmn_title {
  text-align: center;
}
.about_cnt .cmn_title h3 {
  color: #523a0d;
}
.about_cnt .cmn_title h3 span:after {
  content: "仕事を知る";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-text-stroke: 7px #fff;
  z-index: -1;
}
.about_cnt .cmn_title h3 span:before {
  background-image: url(../img/about_cap_fx.png);
}
.about_lead {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about_lead {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .about_lead {
    font-size: 16px;
  }
}
.about_col {
  background-color: #48ad46;
}
.about_col .cmn_cap {
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.about_tab {
  margin-bottom: 115px;
}
@media (max-width: 1060px) {
  .about_tab {
    margin-bottom: 105px;
  }
}
@media (max-width: 768px) {
  .about_tab {
    margin-bottom: 90px;
  }
}
@media (max-width: 600px) {
  .about_tab {
    margin-bottom: 80px;
  }
}
.about_tab_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media (max-width: 1060px) {
  .about_tab_head {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .about_tab_head {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.about_tab_head li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 244px;
          flex: 0 0 244px;
}
@media (max-width: 1060px) {
  .about_tab_head li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 27%;
            flex: 0 0 27%;
  }
}
@media (max-width: 768px) {
  .about_tab_head li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32.5%;
            flex: 0 0 32.5%;
  }
}
.about_tab_head button {
  border: none;
  border-radius: 16px 16px 0 0;
  background: #e5f2e5;
  font-weight: 700;
  color: #048001;
  width: 244px;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.3em 0;
  position: relative;
  outline: none;
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
}
@media (max-width: 768px) {
  .about_tab_head button {
    border-radius: 12px 12px 0 0;
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .about_tab_head button {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .about_tab_head button:hover {
    background-color: #fff;
  }
}
.about_tab_head button:after {
  content: "↓";
  position: absolute;
  right: 15px;
  top: calc(50% - 0.75em);
  font-size: 140%;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media (max-width: 980px) {
  .about_tab_head button:after {
    font-size: 120%;
    right: 10px;
  }
}
@media (max-width: 768px) {
  .about_tab_head button:after {
    right: 5px;
  }
}
@media (max-width: 600px) {
  .about_tab_head button:after {
    display: none;
  }
}
.about_tab_body {
  background: #fff;
  border-radius: 30px 0;
}
@media (max-width: 768px) {
  .about_tab_body {
    border-radius: 0 0 30px 0;
  }
}
.about_tab_body_single {
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
.about_tab[data-tab-stat="1"] [data-tab-index="1"] {
  background-color: #fff;
  color: #000;
}
.about_tab[data-tab-stat="1"] [data-tab-index="1"]:after {
  opacity: 0;
}
.about_tab[data-tab-stat="1"] [data-tab-num="1"] {
  opacity: 1;
  height: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.about_tab[data-tab-stat="2"] [data-tab-index="2"] {
  background-color: #fff;
  color: #000;
}
.about_tab[data-tab-stat="2"] [data-tab-index="2"]:after {
  opacity: 0;
}
.about_tab[data-tab-stat="2"] [data-tab-num="2"] {
  opacity: 1;
  height: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.about_tab[data-tab-stat="3"] [data-tab-index="3"] {
  background-color: #fff;
  color: #000;
}
.about_tab[data-tab-stat="3"] [data-tab-index="3"]:after {
  opacity: 0;
}
.about_tab[data-tab-stat="3"] [data-tab-num="3"] {
  opacity: 1;
  height: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.about_tab_back {
  text-align: right;
  margin-top: 2em;
}
.about_tab_back a {
  display: inline-block;
  background-color: #e5f2e5;
  color: #048001;
  border-radius: 50px;
  padding: 0.75em 1.5em;
  font-weight: 700;
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
}
.about_tab_back a:after {
  content: "↑";
  display: inline-block;
  padding-left: 0.75em;
  font-size: 120%;
}
@media (any-hover: hover) {
  .about_tab_back a:hover {
    background-color: #048001;
    color: #fff;
  }
}
.about_main {
  padding: 75px 70px 50px;
}
@media (max-width: 1060px) {
  .about_main {
    padding: 65px 55px 40px;
  }
}
@media (max-width: 768px) {
  .about_main {
    padding: 45px 35px 35px;
    border-radius: 0 0 20px 0;
  }
  .about_main.about_civil {
    padding-top: 70px;
    border-radius: 20px 0;
  }
}
.about_main.about_civil {
  background: #fff;
  border-radius: 30px 0;
}
@media (max-width: 600px) {
  .about_main {
    padding: 30px 20px 20px;
  }
  .about_main.about_civil {
    padding-top: 70px;
  }
}
.about_main_intro {
  display: -ms-grid;
  display: grid;
  gap: 60px;
  -ms-grid-columns: 45% 60px 1fr;
  grid-template-columns: 45% 1fr;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .about_main_intro {
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .about_main_intro {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}
.about_main_intro h5 {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 1em;
}
@media (max-width: 1060px) {
  .about_main_intro h5 {
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  .about_main_intro h5 {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .about_main_intro h5 {
    font-size: 19px;
  }
}
.about_main_intro p {
  line-height: 2;
}
.about_main_interview {
  background-color: #ffc400;
  padding: 30px 40px 45px;
  margin-bottom: 50px;
}
@media (max-width: 980px) {
  .about_main_interview {
    padding: 20px 30px 35px;
  }
}
@media (max-width: 768px) {
  .about_main_interview {
    padding: 20px 15px;
    margin-bottom: 40px;
  }
}
@media (max-width: 500px) {
  .about_main_interview {
    margin-left: -10px;
    margin-right: -10px;
    padding: 20px 10px;
    margin-bottom: 20px;
  }
}
.about_main_interview_cap {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 1060px) {
  .about_main_interview_cap {
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  .about_main_interview_cap {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .about_main_interview_cap {
    font-size: 19px;
    font-size: 3.8vw;
  }
}
.about_main_interview_cap span {
  position: relative;
  padding: 0 1.3em;
}
.about_main_interview_cap span:before, .about_main_interview_cap span:after {
  display: block;
  content: "";
  position: absolute;
  width: 1em;
  height: 1.3em;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
}
.about_main_interview_cap span::before {
  left: 0;
  background-image: url(../img/about_fx2.png);
}
.about_main_interview_cap span::after {
  right: 0;
  background-image: url(../img/about_fx1.png);
}
.about_main_interview_box {
  background-color: #fff;
  padding: 45px 35px;
}
@media (max-width: 768px) {
  .about_main_interview_box {
    padding: 35px 25px;
  }
}
@media (max-width: 600px) {
  .about_main_interview_box {
    padding: 25px 15px;
  }
}
.about_main_faq, .about_main_day {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 185px 35px 1fr;
  grid-template-columns: 185px 1fr;
  gap: 35px;
}
@media (max-width: 980px) {
  .about_main_faq, .about_main_day {
    -ms-grid-columns: 165px 20px 1fr;
    grid-template-columns: 165px 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .about_main_faq, .about_main_day {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.about_main_faq {
  margin-bottom: 30px;
}
.about_main_faq_fig {
  text-align: center;
}
.about_main_faq_fig img {
  border-radius: 100%;
  overflow: hidden;
}
.about_main_faq_fig figcaption {
  display: block;
  text-align: center;
  font-size: 18px;
  padding-top: 0.75em;
}
.about_main_faq_fig figcaption small {
  font-size: 70%;
  display: block;
}
.about_main_faq_text dl {
  margin-bottom: 2em;
}
.about_main_faq_text dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-weight: 700;
  color: #048001;
  font-size: 18px;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .about_main_faq_text dt {
    font-size: 17px;
    margin-bottom: 0.75em;
  }
}
@media (max-width: 600px) {
  .about_main_faq_text dt {
    font-size: 16px;
  }
}
.about_main_faq_text dd {
  line-height: 2;
  padding-left: 38px;
}
@media (max-width: 600px) {
  .about_main_faq_text dd {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .about_main_day {
    gap: 15px;
  }
}
.about_main_day_cap {
  height: 185px;
  background-color: #48ad46;
  border-radius: 100px;
  text-align: center;
  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;
}
@media (max-width: 1060px) {
  .about_main_day_cap {
    height: 165px;
  }
}
@media (max-width: 768px) {
  .about_main_day_cap {
    width: 165px;
    margin: 0 auto 0;
    position: relative;
  }
}
.about_main_day_cap span {
  display: block;
}
.about_main_day_cap .cap {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 0.75em;
}
.about_main_day_text dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 8em 1fr;
  grid-template-columns: 8em 1fr;
  border-bottom: 1px solid #ddd;
  padding: 1em;
}
@media (max-width: 500px) {
  .about_main_day_text dl {
    padding: 1em 0.5em;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.about_main_day_text dl:nth-of-type(1) {
  border-top: 1px solid #ddd;
}
.about_main_day_text dt {
  font-weight: 700;
  color: #048001;
}
@media (max-width: 500px) {
  .about_main_day_text dt br {
    display: none;
  }
}
.about_main_link {
  text-align: center;
}
.about_main_link a {
  padding: 1em 2em 1.2em 2em;
  display: inline-block;
  font-weight: 700;
  color: #048001;
  position: relative;
  border: 2px solid #048001;
  font-size: 20px;
  border-radius: 50px;
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 980px) {
  .about_main_link a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .about_main_link a {
    font-size: 17px;
    padding: 0.8em 2em 1em 2em;
  }
}
@media (max-width: 600px) {
  .about_main_link a {
    font-size: 16px;
    padding: 0.8em 0.5em 1em 0.5em;
    width: 100%;
  }
}
@media (any-hover: hover) {
  .about_main_link a:hover {
    background-color: #048001;
    color: #fff;
  }
}
.about_main_link a::after {
  content: "→";
  font-size: 25px;
  font-weight: normal;
  display: inline-block;
  padding-left: 1.5em;
}
@media (max-width: 600px) {
  .about_main_link a::after {
    font-size: 130%;
    padding-left: 0.5em;
    -webkit-transform: translateY(0.1em);
        -ms-transform: translateY(0.1em);
            transform: translateY(0.1em);
  }
}

.environment_cnt .cmn_title {
  text-align: center;
}
.environment_cnt .cmn_title h3 span:after {
  content: "働く環境";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-text-stroke: 7px #fff;
  z-index: -1;
}
.environment_cnt .cmn_title h3 span:before {
  background-image: url(../img/environment_cap_fx.png);
}
.environment_feature {
  padding: 135px 0 100px;
  background: #e5f2e5 url(../img/environment_bg.png) no-repeat center;
  background-size: 100% auto;
}
@media (max-width: 1060px) {
  .environment_feature {
    padding: 115px 0 80px;
  }
}
@media (max-width: 768px) {
  .environment_feature {
    padding: 90px 0 70px;
  }
}
@media (max-width: 600px) {
  .environment_feature {
    padding: 75px 0 55px;
  }
}
.environment_feature_single {
  background-color: #fff;
  -webkit-box-shadow: 20px 20px 0 rgba(144, 177, 144, 0.25);
          box-shadow: 20px 20px 0 rgba(144, 177, 144, 0.25);
  position: relative;
  padding: 75px 70px;
  margin-top: 85px;
  border-radius: 30px 0;
}
@media (max-width: 1060px) {
  .environment_feature_single {
    padding: 65px 60px;
    margin-top: 75px;
  }
}
@media (max-width: 768px) {
  .environment_feature_single {
    padding: 45px 40px;
    margin-top: 65px;
    border-radius: 20px 0;
    -webkit-box-shadow: 15px 15px 0 rgba(144, 177, 144, 0.25);
            box-shadow: 15px 15px 0 rgba(144, 177, 144, 0.25);
  }
}
@media (max-width: 600px) {
  .environment_feature_single {
    padding: 25px 20px;
    margin-top: 55px;
    -webkit-box-shadow: 10px 10px 0 rgba(144, 177, 144, 0.25);
            box-shadow: 10px 10px 0 rgba(144, 177, 144, 0.25);
  }
}
.environment_feature_single1 .environment_feature_fig1 {
  right: -70px;
}
@media (max-width: 1400px) {
  .environment_feature_single1 .environment_feature_fig1 {
    right: -20px;
  }
}
.environment_feature_single1 .environment_feature_fig2 {
  right: -140px;
}
@media (max-width: 1400px) {
  .environment_feature_single1 .environment_feature_fig2 {
    right: -40px;
  }
}
@media (max-width: 1060px) {
  .environment_feature_single1 .environment_feature_fig2 {
    right: -30px;
  }
}
.environment_feature_single1 .environment_feature_message_text {
  margin-left: auto;
}
.environment_feature_single1 .environment_feature_message_fig img {
  left: -70px;
}
@media (max-width: 1400px) {
  .environment_feature_single1 .environment_feature_message_fig img {
    left: -20px;
  }
}
@media (max-width: 600px) {
  .environment_feature_single1 .environment_feature_message_fig img {
    left: auto;
    right: -35px;
  }
}
.environment_feature_single2 .environment_feature_fig1 {
  left: -70px;
}
@media (max-width: 1400px) {
  .environment_feature_single2 .environment_feature_fig1 {
    left: -20px;
  }
}
.environment_feature_single2 .environment_feature_fig2 {
  left: -140px;
}
@media (max-width: 1400px) {
  .environment_feature_single2 .environment_feature_fig2 {
    left: -40px;
  }
}
@media (max-width: 1060px) {
  .environment_feature_single2 .environment_feature_fig2 {
    left: -30px;
  }
}
.environment_feature_single2 .environment_feature_intro, .environment_feature_single2 .environment_feature_message {
  margin-left: auto;
}
.environment_feature_single2 .environment_feature_message_text {
  margin-right: auto;
}
.environment_feature_single2 .environment_feature_message_fig img {
  right: -70px;
}
@media (max-width: 1400px) {
  .environment_feature_single2 .environment_feature_message_fig img {
    right: -20px;
  }
}
@media (max-width: 600px) {
  .environment_feature_single2 .environment_feature_message_fig img {
    right: -35px;
  }
}
.environment_feature_intro {
  margin-bottom: 70px;
  width: 65%;
}
@media (max-width: 600px) {
  .environment_feature_intro {
    width: 100%;
  }
}
.environment_feature_intro_cap {
  font-size: 30px;
  font-weight: 900;
  color: #048001;
  line-height: 2;
  margin-bottom: 1em;
}
@media (max-width: 980px) {
  .environment_feature_intro_cap {
    font-size: 27px;
  }
}
@media (max-width: 768px) {
  .environment_feature_intro_cap {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .environment_feature_intro_cap {
    font-size: 22px;
  }
}
.environment_feature_intro_cap em {
  position: relative;
  display: inline-block;
  color: #048001;
  font-weight: 900;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, rgba(255, 196, 0, 0)), color-stop(55.1%, #ffc400), color-stop(87%, #ffc400), color-stop(87.1%, rgba(255, 196, 0, 0)));
  background: linear-gradient(180deg, rgba(255, 196, 0, 0) 55%, #ffc400 55.1%, #ffc400 87%, rgba(255, 196, 0, 0) 87.1%);
  padding: 0 0.1em;
}
.environment_feature_intro_text {
  line-height: 2;
}
.environment_feature_message {
  padding: 0 45px 40px;
  background-color: #ffc400;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 80%;
  position: relative;
}
@media (max-width: 980px) {
  .environment_feature_message {
    width: 100%;
    padding: 0 35px 30px;
  }
}
@media (max-width: 768px) {
  .environment_feature_message {
    padding: 0 25px 20px;
  }
}
@media (max-width: 600px) {
  .environment_feature_message {
    padding: 0 20px 20px;
  }
}
.environment_feature_message_cap {
  text-align: center;
}
@media (max-width: 600px) {
  .environment_feature_message_cap {
    text-align: left;
  }
}
.environment_feature_message_cap span {
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  font-weight: 900;
  background-color: #48ad46;
  padding: 0.5em 1.4em;
  font-size: 22px;
  display: inline-block;
  border-radius: 50px;
}
@media (max-width: 980px) {
  .environment_feature_message_cap span {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .environment_feature_message_cap span {
    font-size: 19px;
  }
}
@media (max-width: 600px) {
  .environment_feature_message_cap span {
    padding: 0.5em 1em;
    font-size: 18px;
  }
}
.environment_feature_message_fig img {
  width: 246px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: calc(50% - 123px);
  border-radius: 100%;
  border: 10px solid #48ad46;
}
@media (max-width: 1400px) {
  .environment_feature_message_fig img {
    width: 16vw;
    top: calc(50% - 8vw);
    border-width: 7px;
  }
}
@media (max-width: 980px) {
  .environment_feature_message_fig img {
    width: 20vw;
    top: calc(50% - 10vw);
  }
}
@media (max-width: 600px) {
  .environment_feature_message_fig img {
    width: 18vw;
    border-width: 4px;
    top: -12vw;
  }
}
@media (max-width: 500px) {
  .environment_feature_message_fig img {
    width: 24vw;
    top: -22vw;
  }
}
.environment_feature_message_text {
  width: 72%;
  line-height: 2;
}
@media (max-width: 1060px) {
  .environment_feature_message_text {
    width: 76%;
  }
}
@media (max-width: 600px) {
  .environment_feature_message_text {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .environment_feature_fig {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
  }
}
.environment_feature_fig img {
  position: absolute;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .environment_feature_fig img {
    position: static;
    border-radius: 5px;
  }
}
.environment_feature_fig1 {
  width: 38%;
  top: -30px;
}
@media (max-width: 1400px) {
  .environment_feature_fig1 {
    width: 34%;
  }
}
@media (max-width: 600px) {
  .environment_feature_fig1 {
    width: 100%;
  }
}
.environment_feature_fig2 {
  width: 33%;
  top: 200px;
}
@media (max-width: 1400px) {
  .environment_feature_fig2 {
    width: 30%;
  }
}
@media (max-width: 600px) {
  .environment_feature_fig2 {
    width: 100%;
  }
}
.environment_charm {
  padding: 115px 0;
}
@media (max-width: 980px) {
  .environment_charm {
    padding: 95px 0;
  }
}
@media (max-width: 768px) {
  .environment_charm {
    padding: 75px 0;
  }
}
@media (max-width: 600px) {
  .environment_charm {
    padding: 55px 0;
  }
}
.environment_charm .inner {
  max-width: 1200px;
}
.environment_charm_lead {
  text-align: center;
  margin: 1.5em 0 2em;
  font-size: 18px;
}
@media (max-width: 768px) {
  .environment_charm_lead {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .environment_charm_lead {
    font-size: 16px;
  }
}
.environment_charm_lead span {
  display: inline-block;
  position: relative;
}
.environment_charm_lead span::before {
  content: "";
  width: 2.2em;
  height: 2.2em;
  background: url(../img/charm_cursor.png) no-repeat center;
  background-size: contain;
  position: static;
  display: inline-block;
  -webkit-transform: translateY(0.5em);
      -ms-transform: translateY(0.5em);
          transform: translateY(0.5em);
  margin-right: 0.4em;
}
.environment_charm_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 980px) {
  .environment_charm_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 25px 2%;
  }
  .environment_charm_list > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
  }
}
@media (max-width: 600px) {
  .environment_charm_list {
    display: block;
  }
  .environment_charm_list > div {
    margin-top: 20px;
  }
}
.environment_charm_single {
  text-align: center;
  border-radius: 30px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .environment_charm_single {
    border-radius: 20px 0;
  }
}
@media (max-width: 768px) {
  .environment_charm_single.js_hidden .environment_charm_single_normal {
    opacity: 0;
  }
}
.environment_charm_single_normal {
  cursor: pointer;
  position: absolute;
  background-color: #ffc400;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  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;
}
@media (any-hover: hover) {
  .environment_charm_single_normal:hover {
    opacity: 0;
  }
}
.environment_charm_single_normal h5 {
  color: #048001;
}
.environment_charm_single_hover {
  background-color: #048001;
  width: 100%;
  height: 100%;
  padding: 35px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .environment_charm_single_hover {
    padding: 25px 20px;
  }
}
.environment_charm_single_hover h5 {
  color: #ffc400;
}
.environment_charm_single_hover .environment_charm_text {
  margin-top: 1.5em;
  color: #fff;
  text-align: left;
  line-height: 2;
}
.environment_charm_cap h5 {
  margin: 1em 0 0;
  font-weight: 900;
  font-size: 25px;
  height: 4em;
  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;
}
@media (max-width: 980px) {
  .environment_charm_cap h5 {
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  .environment_charm_cap h5 {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .environment_charm_cap h5 {
    font-size: 19px;
  }
}
.environment_charm_fig {
  padding: 0 10px;
}
.environment_career {
  background-color: #ffc400;
  padding: 85px 0 130px;
}
.environment_career .inner {
  max-width: 1300px;
}
.environment_career_lead {
  line-height: 2;
  margin: 2em auto;
  max-width: 980px;
}
.environment_career_fig {
  text-align: center;
}
@media (max-width: 768px) {
  .environment_career_fig figure {
    overflow-x: auto;
  }
  .environment_career_fig figure img {
    max-width: 850px;
  }
}
.environment_career_fig p {
  margin-top: 1em;
  display: none;
}
@media (max-width: 768px) {
  .environment_career_fig p {
    display: block;
  }
}

.learn_cnt {
  padding: 165px 0 0;
}
@media (max-width: 980px) {
  .learn_cnt {
    padding-top: 140px;
  }
}
@media (max-width: 768px) {
  .learn_cnt {
    padding-top: 120px;
  }
}
@media (max-width: 600px) {
  .learn_cnt {
    padding-top: 70px;
  }
}
.learn_cnt .cmn_title {
  text-align: center;
}
.learn_intro {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 65px 0 150px;
}
@media (max-width: 980px) {
  .learn_intro {
    gap: 20px;
    margin: 55px 0 130px;
  }
}
@media (max-width: 600px) {
  .learn_intro {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin: 45px 0 110px;
  }
}
.learn_intro_single {
  background-color: #e5f2e5;
  border-radius: 10px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.learn_intro_single img {
  border-radius: 5px;
}
.learn_intro_single div {
  padding: 35px 20px;
}
@media (max-width: 600px) {
  .learn_intro_single div {
    padding: 25px 15px;
  }
}
.learn_intro_single h5 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 1em;
}
@media (max-width: 980px) {
  .learn_intro_single h5 {
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  .learn_intro_single h5 {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .learn_intro_single h5 {
    font-size: 19px;
  }
}
.learn_intro_single p {
  line-height: 1.8;
}
.learn_aim {
  position: relative;
  padding: 160px 0;
  margin-bottom: 200px;
}
@media (max-width: 1060px) {
  .learn_aim {
    padding: 15vw 0 10vw;
    margin-bottom: 150px;
  }
}
@media (max-width: 768px) {
  .learn_aim {
    margin-bottom: 100px;
  }
}
@media (max-width: 600px) {
  .learn_aim {
    margin-bottom: 50px;
  }
}
.learn_aim:after {
  display: block;
  content: "";
  position: absolute;
  width: 90vw;
  height: 100%;
  background: url(../img/aim_bg.jpg) no-repeat center;
  background-size: cover;
  right: 0;
  top: 0;
}
@media (max-width: 1400px) {
  .learn_aim:after {
    width: 95vw;
  }
}
@media (max-width: 1200px) {
  .learn_aim:after {
    width: 100%;
  }
}
@media (max-width: 1060px) {
  .learn_aim:after {
    height: 100%;
  }
}
.learn_aim .inner {
  position: static;
}
@media (max-width: 768px) {
  .learn_aim .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.learn_aim_box {
  padding: 70px 90px;
  border: 2px solid #523a0d;
  background-color: #fff;
  -webkit-box-shadow: 20px 20px 0 rgba(255, 179, 13, 0.5);
          box-shadow: 20px 20px 0 rgba(255, 179, 13, 0.5);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 82%;
  position: relative;
  z-index: 3;
}
@media (max-width: 980px) {
  .learn_aim_box {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .learn_aim_box {
    padding: 50px 70px;
  }
}
@media (max-width: 600px) {
  .learn_aim_box {
    padding: 50px 25px;
  }
}
.learn_aim_box h5 {
  font-size: 30px;
  font-weight: 700;
  color: #523a0d;
  margin-bottom: 1em;
  line-height: 2;
}
@media (max-width: 980px) {
  .learn_aim_box h5 {
    font-size: 27px;
  }
}
@media (max-width: 768px) {
  .learn_aim_box h5 {
    font-size: 25px;
  }
}
@media (max-width: 600px) {
  .learn_aim_box h5 {
    font-size: 22px;
  }
}
.learn_aim_box h5 span {
  display: inline-block;
  position: relative;
  padding-right: 2.5em;
}
.learn_aim_box h5 span:after {
  display: block;
  content: "";
  position: absolute;
  width: 2em;
  height: 1em;
  background: url(../img/aim_fx.png) no-repeat;
  background-size: contain;
  top: 0.25em;
  right: 0;
}
.learn_aim_box h5 em {
  position: relative;
  display: inline-block;
  color: #048001;
  font-weight: 900;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, rgba(255, 196, 0, 0)), color-stop(55.1%, #ffc400), color-stop(87%, #ffc400), color-stop(87.1%, rgba(255, 196, 0, 0)));
  background: linear-gradient(180deg, rgba(255, 196, 0, 0) 55%, #ffc400 55.1%, #ffc400 87%, rgba(255, 196, 0, 0) 87.1%);
  padding: 0 0.1em;
  color: #523a0d;
}
.learn_aim_box p {
  line-height: 2;
}
.learn_aim_fig img {
  position: absolute;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .learn_aim_fig img {
    border-radius: 5px;
  }
}
.learn_aim_fig1 {
  width: 20vw;
  top: -1vw;
  left: 5vw;
  z-index: 5;
}
@media (max-width: 980px) {
  .learn_aim_fig1 {
    left: 2vw;
    width: 23vw;
  }
}
@media (max-width: 600px) {
  .learn_aim_fig1 {
    width: 30vw;
    left: -3vw;
    top: -3vw;
  }
}
.learn_aim_fig2 {
  width: 25vw;
  bottom: -5vw;
  left: 3vw;
  z-index: 1;
}
@media (max-width: 980px) {
  .learn_aim_fig2 {
    width: 27vw;
    left: 1vw;
    bottom: -3vw;
  }
}
@media (max-width: 600px) {
  .learn_aim_fig2 {
    width: 30vw;
    left: -4vw;
  }
}
.learn_aim_fig3 {
  width: 25vw;
  top: -2vw;
  right: 7vw;
  z-index: 1;
}
@media (max-width: 980px) {
  .learn_aim_fig3 {
    width: 27vw;
  }
}
@media (max-width: 600px) {
  .learn_aim_fig3 {
    width: 32vw;
  }
}
.learn_aim_fig4 {
  width: 20vw;
  top: 15vw;
  right: 5vw;
  z-index: 5;
}
@media (max-width: 980px) {
  .learn_aim_fig4 {
    top: 11vw;
    right: 3vw;
    width: 22vw;
  }
}
@media (max-width: 600px) {
  .learn_aim_fig4 {
    width: 26vw;
    right: 1vw;
  }
}
.learn_aim_fig5 {
  width: 20vw;
  bottom: -3vw;
  right: 10vw;
  z-index: 5;
}
@media (max-width: 980px) {
  .learn_aim_fig5 {
    width: 22vw;
    right: 2vw;
    bottom: 1vw;
  }
}
@media (max-width: 600px) {
  .learn_aim_fig5 {
    width: 30vw;
  }
}
.learn_ceo {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 600px) {
  .learn_ceo {
    padding-bottom: 100px;
  }
}
@media (max-width: 500px) {
  .learn_ceo {
    padding-bottom: 80px;
  }
}
.learn_ceo::before, .learn_ceo:after {
  display: block;
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .learn_ceo::before, .learn_ceo:after {
    width: 100%;
    height: 50%;
  }
}
.learn_ceo:before {
  background-image: url(../img/ceo_bg1.jpg);
  left: 0;
}
.learn_ceo:after {
  background-image: url(../img/ceo_bg2.jpg);
  right: 0;
}
@media (max-width: 768px) {
  .learn_ceo:after {
    top: 50%;
  }
}
.learn_ceo_box {
  background-color: #fff;
  border-radius: 0 30px;
  padding: 70px 85px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1060px) {
  .learn_ceo_box {
    padding: 60px 75px;
  }
}
@media (max-width: 980px) {
  .learn_ceo_box {
    padding: 50px 55px;
  }
}
@media (max-width: 768px) {
  .learn_ceo_box {
    padding: 50px 40px 40px;
  }
}
@media (max-width: 600px) {
  .learn_ceo_box {
    padding: 45px 25px 30px;
  }
}
.learn_ceo_box figure {
  position: absolute;
  right: -5%;
  top: -15%;
}
@media (max-width: 1200px) {
  .learn_ceo_box figure {
    right: -35px;
  }
}
@media (max-width: 980px) {
  .learn_ceo_box figure {
    width: 25vw;
  }
}
@media (max-width: 768px) {
  .learn_ceo_box figure {
    right: -30px;
  }
}
@media (max-width: 600px) {
  .learn_ceo_box figure {
    top: -60px;
    right: 10px;
    width: 28vw;
  }
}
@media (max-width: 500px) {
  .learn_ceo_box figure {
    width: 34vw;
  }
}
.learn_ceo_box h5 {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .learn_ceo_box h5 {
    margin-bottom: 35px;
  }
}
@media (max-width: 600px) {
  .learn_ceo_box h5 {
    margin-bottom: 30px;
  }
}
.learn_ceo_box h5 img {
  max-width: 285px;
}
@media (max-width: 980px) {
  .learn_ceo_box h5 img {
    width: 40vw;
  }
}
.learn_ceo_box h5 span {
  position: relative;
  display: inline-block;
}
.learn_ceo_box h5 span:after {
  display: block;
  content: "";
  position: absolute;
  width: 45px;
  height: 60px;
  background: url(../img/ceo_ttl_fx.png) no-repeat center;
  background-size: contain;
  right: -60px;
  top: -10px;
}
@media (max-width: 768px) {
  .learn_ceo_box h5 span:after {
    right: -50px;
    width: 36px;
    height: 48px;
  }
}
.learn_ceo_box p {
  line-height: 2.4;
}

.search_cnt {
  padding: 150px 0 100px;
}
@media (max-width: 980px) {
  .search_cnt {
    padding: 130px 0 80px;
  }
}
@media (max-width: 768px) {
  .search_cnt {
    padding: 110px 0 60px;
  }
}
@media (max-width: 600px) {
  .search_cnt {
    padding: 90px 0 50px;
  }
}
.search_cnt .cmn_title {
  text-align: center;
}
.search_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 85px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
}
@media (max-width: 768px) {
  .search_list {
    gap: 25px;
  }
}
@media (max-width: 500px) {
  .search_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.search_list h4 {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 1em;
}
@media (max-width: 980px) {
  .search_list h4 {
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  .search_list h4 {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .search_list h4 {
    font-size: 20px;
  }
}
.search_list a {
  display: block;
  position: relative;
  border-radius: 50px;
  border: 1px solid #cdcdcd;
  background-color: #fff;
  color: #048001;
  font-size: 20px;
  font-weight: 700;
  padding: 0.75em 1.5em;
  margin-bottom: 15px;
  -webkit-transition: background 0.4s, border 0.4s, color 0.4s;
  transition: background 0.4s, border 0.4s, color 0.4s;
}
@media (max-width: 980px) {
  .search_list a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .search_list a {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .search_list a {
    font-size: 15px;
  }
}
.search_list a:after {
  display: block;
  content: "";
  position: absolute;
  content: "→";
  color: #048001;
  font-weight: normal;
  right: 30px;
  font-size: 25px;
  top: calc(50% - 0.75em);
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
@media (max-width: 980px) {
  .search_list a:after {
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  .search_list a:after {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .search_list a:after {
    font-size: 20px;
  }
}
@media (any-hover: hover) {
  .search_list a:hover {
    background-color: #048001;
    border-color: #048001;
    color: #fff;
  }
  .search_list a:hover:after {
    color: #fff;
  }
}

.profile_cnt {
  padding: 30px 0 80px;
  position: relative;
}
@media (max-width: 768px) {
  .profile_cnt {
    padding-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .profile_cnt {
    padding-bottom: 30px;
  }
}
.profile_cnt:before {
  display: block;
  content: "";
  position: absolute;
  background-color: #ffc400;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0 0 30px 0;
}
@media (max-width: 768px) {
  .profile_cnt:before {
    display: none;
  }
}
.profile_cnt .cmn_title h3 span:before {
  left: auto;
  right: -85px;
  top: -10px;
}
.profile_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .profile_box {
    display: block;
  }
}
.profile_main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.profile_main dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6.5em 25px 1fr;
  grid-template-columns: 6.5em 1fr;
  gap: 25px;
  border-bottom: 1px solid #ccc;
  padding: 1em 0;
}
.profile_main dl:nth-of-type(1) {
  border-top: 1px solid #ccc;
}
.profile_main dt {
  text-align: center;
  color: #048001;
}
.profile_map {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}
@media (max-width: 768px) {
  .profile_map {
    margin-top: 25px;
    height: 45vw;
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media (max-width: 500px) {
  .profile_map {
    margin-left: -17px;
    margin-right: -17px;
  }
}
.profile_map iframe {
  width: 100%;
  height: 100%;
}

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 {
  padding-top: 50px;
}
.modal_single_wrap {
  position: relative;
  border-radius: 30px;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .modal_single_wrap {
    border-radius: 20px;
  }
}
.modal_single_head {
  position: relative;
}
@media (max-width: 980px) {
  .modal_single_head figure {
    aspect-ratio: 16/8;
  }
  .modal_single_head figure img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    -o-object-position: 45% top;
       object-position: 45% top;
  }
}
@media (max-width: 600px) {
  .modal_single_head figure {
    aspect-ratio: 16/10;
  }
  .modal_single_head figure img {
    -o-object-position: 47% top;
       object-position: 47% top;
  }
}
.modal_single_head_text {
  position: absolute;
  left: 55%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .modal_single_head_text {
    left: 50%;
  }
}
@media (max-width: 500px) {
  .modal_single_head_text {
    left: 48%;
  }
}
.modal_single_head_text span {
  padding: 1px 15px;
}
@media (max-width: 500px) {
  .modal_single_head_text span {
    padding: 1px 10px;
  }
}
.modal_single_head_text .shop {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 2px;
}
@media (max-width: 1060px) {
  .modal_single_head_text .shop {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .modal_single_head_text .shop {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .modal_single_head_text .shop {
    font-size: 20px;
  }
}
.modal_single_head_text .pos {
  font-size: 20px;
  color: #fff;
  margin-bottom: 0.75em;
}
@media (max-width: 768px) {
  .modal_single_head_text .pos {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .modal_single_head_text .pos {
    font-size: 18px;
  }
}
.modal_single_head_text .name {
  color: #fff;
  font-size: 48px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .modal_single_head_text .name {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .modal_single_head_text .name {
    font-size: 36px;
  }
}
.modal_single_head_text .name small {
  font-size: 50%;
}
.modal_single_body {
  margin-top: -25px;
  position: relative;
}
@media (max-width: 768px) {
  .modal_single_body {
    margin-top: 30px;
  }
}
.modal_single_body dl {
  padding-right: 60px;
}
@media (max-width: 1060px) {
  .modal_single_body dl {
    padding-right: 30px;
  }
}
@media (max-width: 600px) {
  .modal_single_body dl {
    padding-right: 15px;
  }
}
.modal_single_body dt {
  color: #fff;
  padding-left: 60px;
  border-radius: 0 50px 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .modal_single_body dt {
    padding-left: 30px;
    border-radius: 0 30px 30px 0;
  }
}
@media (max-width: 600px) {
  .modal_single_body dt {
    padding-left: 15px;
    border-radius: 0 15px 15px 0;
  }
}
.modal_single_body dt em {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.5em;
          flex: 0 0 1.5em;
  text-align: center;
  padding: 0.25em 0;
  border-radius: 50px;
  line-height: 1;
  font-size: 34px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 768px) {
  .modal_single_body dt em {
    font-size: 30px;
  }
}
.modal_single_body dt span {
  font-size: 20px;
  font-weight: 700;
  padding: 0.5em 0 0.5em 0.75em;
  line-height: 1.4;
}
@media (max-width: 1060px) {
  .modal_single_body dt span {
    padding-right: 1em;
  }
}
@media (max-width: 768px) {
  .modal_single_body dt span {
    font-size: 18px;
  }
}
.modal_single_body dt small {
  font-weight: normal;
}
.modal_single_body dd {
  padding: 1.5em 0 2.5em 60px;
  line-height: 2;
}
@media (max-width: 768px) {
  .modal_single_body dd {
    padding-left: 30px;
  }
}
@media (max-width: 600px) {
  .modal_single_body dd {
    padding: 1em 0 2em 20px;
  }
}
.modal_single_close {
  text-align: center;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .modal_single_close {
    padding-top: 30px;
  }
}
@media (max-width: 600px) {
  .modal_single_close {
    padding-top: 20px;
  }
}
.modal_single_close button {
  background-color: transparent;
  border: none;
  font-size: 16px;
  border-radius: 50px;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  padding: 0.4em 2.5em;
  width: 230px;
  position: relative;
}
.modal_single_close button .label {
  color: #fff;
}
.modal_single_close button .icon {
  position: absolute;
  width: 1em;
  height: 1em;
  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: #fff;
}
.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;
  border-radius: 50px;
  border: none;
  position: absolute;
  z-index: 1;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  width: 60px;
  height: 60px;
  top: 17px;
  right: -15px;
}
.modal_single_close_top span {
  width: 40%;
  height: 40%;
  position: absolute;
  display: block;
  left: 30%;
  top: 30%;
}
.modal_single_close_top span:before, .modal_single_close_top span:after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  top: 48%;
}
.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);
  opacity: 0;
}
.add_anim.js_on {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}