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

@media (max-width: 767px) {
  .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: 767px) {
  .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: rgb(46.75, 46.75, 46.75);
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: rgb(46.75, 46.75, 46.75);
}

@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: transparent;
  outline-offset: 2px;
}

body {
  background-color: #fff;
}

article,
main {
  padding-top: 100px;
}
@media (max-width: 980px) {
  article,
  main {
    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: 767px) {
  .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);
  }
}
/* 
@font-face でローカルフォントを優先 
参考：https://ics.media/entry/250718/
*/
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
html,
button {
  -webkit-font-feature-settings: "pkna" 1;
          font-feature-settings: "pkna" 1;
  font-size: 17px;
  color: #121212;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 980px) {
  html,
  button {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  html,
  button {
    font-size: 15px;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
}

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: #fff;
}
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;
  padding: 0 15px;
  padding-right: 85px;
}
@media (max-width: 980px) {
  header_main,
  .header_main {
    height: 60px;
  }
}
@media (max-width: 767px) {
  header_main,
  .header_main {
    padding-right: 65px;
  }
}
header h1,
.header h1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 413px;
          flex: 0 0 413px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 980px) {
  header h1,
  .header h1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
  }
}
@media (max-width: 767px) {
  header h1,
  .header h1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 300px;
            flex: 0 1 300px;
  }
}
header h1 .logo,
.header h1 .logo {
  display: block;
}
header h1 img,
.header h1 img {
  width: 413px;
}
@media (max-width: 980px) {
  header h1 img,
  .header h1 img {
    width: 300px;
  }
}
@media (max-width: 767px) {
  header h1 img,
  .header h1 img {
    max-width: 300px;
    width: 60vw;
  }
}
header button,
.header button {
  display: none;
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  text-align: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 18px;
  z-index: 1;
  display: block;
}
@media (max-width: 980px) {
  header button,
  .header button {
    top: 2px;
  }
}
@media (any-hover: hover) {
  header button:hover .icon span,
  .header button:hover .icon span {
    background-color: #f6ad3c;
  }
}
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: 5px;
  border-radius: 5px;
  background-color: #121212;
  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;
}
@media (max-width: 767px) {
  header button .icon span,
  .header button .icon span {
    height: 3px;
  }
}
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,
.header_nav {
  position: absolute;
  top: 115px;
  right: -300px;
  right: -100%;
  background-color: #f6ad3c;
  display: block;
  padding: 30px 20px;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header_nav_wrap,
.header_nav_wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 99%;
          flex: 0 1 99%;
}
header_nav ul,
.header_nav ul {
  display: block;
  text-align: left;
  padding: 0;
}
header_nav li,
.header_nav li {
  border-bottom: 1px dotted #fff;
  display: block;
}
header_nav li:nth-last-of-type(1),
.header_nav li:nth-last-of-type(1) {
  border: none;
}
header_nav li a,
.header_nav li a {
  display: block;
  -webkit-transition: color 0.4s, opacity 0.4s;
  transition: color 0.4s, opacity 0.4s;
  line-height: 1;
  color: #fff;
  display: block;
  text-align: left;
  padding: 0.5em 0;
  line-height: 1.5;
}
header_nav li a .label,
.header_nav li a .label {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  display: block;
}
header_nav li a small,
.header_nav li a small {
  font-weight: bold;
  display: block;
}
@media (any-hover: hover) {
  header_nav li a:hover,
  .header_nav li a:hover {
    opacity: 0.7;
  }
}
header_nav_misc,
.header_nav_misc {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 467px;
          flex: 0 0 467px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (max-width: 980px) {
  header_nav_misc,
  .header_nav_misc {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 343px;
            flex: 0 0 343px;
  }
}
@media (max-width: 767px) {
  header_nav_misc,
  .header_nav_misc {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55px;
            flex: 0 0 55px;
  }
}
header_nav_misc_insta,
.header_nav_misc_insta {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75px;
          flex: 0 0 75px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
header_nav_misc_insta img,
.header_nav_misc_insta img {
  width: 34px;
}
@media (max-width: 767px) {
  header_nav_misc_insta,
  .header_nav_misc_insta {
    display: block;
  }
}
@media (any-hover: hover) {
  header_nav_misc_insta:hover,
  .header_nav_misc_insta:hover {
    opacity: 0.7;
  }
}
header_nav_misc_contact, header_nav_misc_entry,
.header_nav_misc_contact,
.header_nav_misc_entry {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 190px;
          flex: 0 0 190px;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 0.75em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
@media (max-width: 980px) {
  header_nav_misc_contact, header_nav_misc_entry,
  .header_nav_misc_contact,
  .header_nav_misc_entry {
    font-size: 16px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8em;
            flex: 0 0 8em;
    padding: 0.65em 0.75em;
  }
}
@media (max-width: 767px) {
  header_nav_misc_contact, header_nav_misc_entry,
  .header_nav_misc_contact,
  .header_nav_misc_entry {
    position: fixed;
    bottom: 1vw;
    width: 48.5%;
    display: block;
  }
}
header_nav_misc_contact::before, header_nav_misc_entry::before,
.header_nav_misc_contact::before,
.header_nav_misc_entry::before {
  display: block;
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  right: 15px;
  top: calc(50% - 0.35em);
  rotate: 45deg;
  -webkit-transition: right 0.2s;
  transition: right 0.2s;
}
@media (any-hover: hover) {
  header_nav_misc_contact:hover::before, header_nav_misc_entry:hover::before,
  .header_nav_misc_contact:hover::before,
  .header_nav_misc_entry:hover::before {
    right: 10px;
  }
}
header_nav_misc_contact,
.header_nav_misc_contact {
  background-color: #f6ad3c;
}
@media (any-hover: hover) {
  header_nav_misc_contact:hover,
  .header_nav_misc_contact:hover {
    background-color: rgba(246, 173, 60, 0.8);
  }
}
@media (max-width: 767px) {
  header_nav_misc_contact,
  .header_nav_misc_contact {
    left: 1vw;
  }
}
header_nav_misc_entry,
.header_nav_misc_entry {
  background-color: #00a95f;
}
@media (any-hover: hover) {
  header_nav_misc_entry:hover,
  .header_nav_misc_entry:hover {
    background-color: rgba(0, 169, 95, 0.8);
  }
}
@media (max-width: 767px) {
  header_nav_misc_entry,
  .header_nav_misc_entry {
    right: 1vw;
  }
}
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: 15px;
}
.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: 100px 40px 50px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
}
@media (max-width: 767px) {
  body .footer {
    padding: 70px 40px 70px;
  }
}
@media (max-width: 600px) {
  body .footer {
    padding-top: 50px;
  }
}
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(2) 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: #121212;
}
body .footer li a:visited {
  color: #121212;
}
@media (any-hover: hover) {
  body .footer li a:hover {
    text-decoration: none;
    color: #187fc4;
  }
}
@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 #121212;
  display: inline-block;
  padding: 0 2em;
}
@media (max-width: 767px) {
  body .footer li a span {
    padding: 0 1em;
    border: none;
  }
}
body .footer li.insta {
  -webkit-transform: translateY(0.5em);
      -ms-transform: translateY(0.5em);
          transform: translateY(0.5em);
}
@media (any-hover: hover) {
  body .footer li.insta a:hover {
    opacity: 0.6;
  }
}
body .footer_copyrights {
  text-align: center;
  font-weight: normal;
}
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: 70px;
  height: 70px;
}
@media (max-width: 767px) {
  body .footer_totop {
    right: 10px;
  }
}
body .footer_totop a {
  position: relative;
  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;
  padding-top: 10%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-color: #00afec;
  border-radius: 50px;
  -webkit-transition: scale 0.2s, background 0.4s;
  transition: scale 0.2s, background 0.4s;
}
@media (any-hover: hover) {
  body .footer_totop a:hover {
    scale: 1.1;
    background-color: #187fc4;
  }
}
body .footer_totop a::before {
  display: block;
  content: "";
  position: absolute;
  width: 20%;
  height: 20%;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  rotate: 45deg;
}

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

.cmn_title {
  text-align: center;
  margin-bottom: 2em;
}
.cmn_title h3 {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  font-size: clamp(40px, 12vw, 80px);
}
.cmn_title h3 span {
  display: inline-block;
}
.cmn_title p {
  margin-top: 1em;
  font-size: clamp(16px, 3.5vw, 20px);
}
@media (max-width: 600px) {
  .cmn_title p {
    margin-top: 0.75em;
  }
}

.hero_cnt {
  text-align: center;
  position: relative;
  padding-bottom: 2vw;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .hero_cnt {
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .hero_cnt {
    margin-bottom: 30px;
  }
}
.hero_photo1, .hero_photo2, .hero_photo3 {
  position: absolute;
  width: 30vw;
}
@media (max-width: 1200px) {
  .hero_photo1, .hero_photo2, .hero_photo3 {
    width: 24vw;
  }
}
.hero_photo1 {
  top: 0;
  left: calc(50% - 15vw);
}
@media (max-width: 1200px) {
  .hero_photo1 {
    left: calc(50% - 12vw);
  }
}
@media (max-width: 1200px) {
  .hero_photo1 {
    width: 30vw;
    left: 10vw;
  }
}
@media (max-width: 600px) {
  .hero_photo1 {
    left: -3vw;
    width: 35vw;
  }
}
.hero_photo2 {
  bottom: 0;
  left: 0;
}
@media (max-width: 1200px) {
  .hero_photo2 {
    bottom: 5vw;
  }
}
@media (max-width: 600px) {
  .hero_photo2 {
    bottom: 10vw;
    width: 32vw;
  }
}
.hero_photo3 {
  bottom: 0;
  right: 0;
}
@media (max-width: 1200px) {
  .hero_photo3 {
    bottom: 5vw;
  }
}
@media (max-width: 767px) {
  .hero_photo3 {
    bottom: 40%;
  }
}
@media (max-width: 600px) {
  .hero_photo3 {
    bottom: auto;
    top: -4vw;
    width: 32vw;
  }
}
.hero_ttl {
  position: relative;
  z-index: 1;
  padding-top: 26vw;
  padding-bottom: 5vw;
}
@media (max-width: 1200px) {
  .hero_ttl {
    padding-top: 22vw;
    padding-bottom: 10vw;
  }
}
@media (max-width: 600px) {
  .hero_ttl {
    padding-top: 15vw;
    padding-bottom: 15vw;
  }
}
.hero_ttl h2 {
  font-size: clamp(43px, 6.5vw, 70px);
}
@media (max-width: 600px) {
  .hero_ttl h2 {
    font-size: 9vw;
    -webkit-text-stroke: 5px #FFF;
    text-stroke: 5px #FFF;
    paint-order: stroke;
  }
}
@media (max-width: 500px) {
  .hero_ttl h2 {
    font-size: 12vw;
  }
}
.hero_ttl h2 span:nth-of-type(1) {
  color: #f6ad3c;
}
.hero_ttl h2 span:nth-of-type(2) {
  color: #00a95f;
}
.hero_ttl h2 span:nth-of-type(3) {
  color: #e9546b;
}
.hero_ttl h2 span:nth-of-type(4) {
  color: #187fc4;
}
.hero_ttl p {
  font-weight: bold;
  font-size: clamp(17px, 2vw, 21px);
}
.hero_ttl p em {
  font-size: 200%;
}
.hero_link {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  gap: 15px;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .hero_link {
    gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (any-hover: hover) {
  .hero_link_single a:hover span {
    -webkit-transform: translate(2px, 2px);
        -ms-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
}
.hero_link_single span {
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  padding: 1em 2em;
  border-radius: 100px;
  max-width: 485px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
@media (max-width: 980px) {
  .hero_link_single span {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .hero_link_single span {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .hero_link_single span {
    padding: 0.75em 2em;
    max-width: 400px;
    width: 85%;
  }
}
.hero_link_single span::before {
  display: block;
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  right: 40px;
  top: calc(50% - 0.3em);
  rotate: 45deg;
}
@media (max-width: 600px) {
  .hero_link_single span::before {
    right: 25px;
  }
}
.hero_link_single_orange .cmn_popup {
  font-size: clamp(15px, 3vw, 20px);
  border-radius: 100px;
  border: 2px solid #121212;
  background-color: #fff;
  padding: 0.5em 1.5em;
  color: #121212;
  font-weight: bold;
  text-box: trim-both cap alphabetic;
  position: relative;
  -webkit-filter: drop-shadow(4px 6px 0 #ca7b00);
          filter: drop-shadow(4px 6px 0 #ca7b00);
  display: inline-block;
  margin-bottom: 0.1em;
  z-index: 1;
}
.hero_link_single_orange .cmn_popup::before, .hero_link_single_orange .cmn_popup:after {
  display: block;
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  width: calc(1em + 4px);
  height: calc(1em + 2px);
}
.hero_link_single_orange .cmn_popup::before {
  bottom: calc(-1em - 2px);
  background: #121212;
  left: calc(50% - 0.5em);
}
.hero_link_single_orange .cmn_popup:after {
  bottom: calc(-1em + 2px);
  background: #fff;
  left: calc(50% - 0.5em + 2px);
}
.hero_link_single_orange span {
  background-color: #f6ad3c;
  -webkit-box-shadow: 6px 8px 0 #ca7b00;
          box-shadow: 6px 8px 0 #ca7b00;
}
@media (any-hover: hover) {
  .hero_link_single_orange span:hover {
    -webkit-box-shadow: 2px 4px 0 #ca7b00;
            box-shadow: 2px 4px 0 #ca7b00;
  }
}
.hero_link_single_green .cmn_popup {
  font-size: clamp(15px, 3vw, 20px);
  border-radius: 100px;
  border: 2px solid #121212;
  background-color: #fff;
  padding: 0.5em 1.5em;
  color: #121212;
  font-weight: bold;
  text-box: trim-both cap alphabetic;
  position: relative;
  -webkit-filter: drop-shadow(4px 6px 0 #007743);
          filter: drop-shadow(4px 6px 0 #007743);
  display: inline-block;
  margin-bottom: 0.1em;
  z-index: 1;
}
.hero_link_single_green .cmn_popup::before, .hero_link_single_green .cmn_popup:after {
  display: block;
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  width: calc(1em + 4px);
  height: calc(1em + 2px);
}
.hero_link_single_green .cmn_popup::before {
  bottom: calc(-1em - 2px);
  background: #121212;
  left: calc(50% - 0.5em);
}
.hero_link_single_green .cmn_popup:after {
  bottom: calc(-1em + 2px);
  background: #fff;
  left: calc(50% - 0.5em + 2px);
}
.hero_link_single_green span {
  background-color: #00a95f;
  -webkit-box-shadow: 6px 8px 0 #007743;
          box-shadow: 6px 8px 0 #007743;
}
@media (any-hover: hover) {
  .hero_link_single_green span:hover {
    -webkit-box-shadow: 2px 4px 0 #007743;
            box-shadow: 2px 4px 0 #007743;
  }
}

.about_cnt {
  background: #f6f3ed;
  padding: 110px 0 90px;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .about_cnt {
    padding: 90px 0 80px;
  }
}
@media (max-width: 767px) {
  .about_cnt {
    padding: 70px 0 70px;
  }
}
@media (max-width: 600px) {
  .about_cnt {
    padding: 70px 0 60px;
  }
}
.about_cnt::before, .about_cnt:after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  z-index: 2;
}
.about_cnt::before {
  background: url(../img/wave_white.png) no-repeat center top;
  background-size: contain;
  height: 4vw;
  top: 0;
}
.about_cnt::after {
  background: url(../img/wave_beige.png) no-repeat center top;
  background-size: contain;
  height: 4vw;
  bottom: -4vw;
}
.about_cnt .cmn_title h3 span:nth-of-type(1)::first-letter {
  color: #e9546b;
}
.about_cnt .cmn_title h3 span:nth-of-type(2)::first-letter {
  color: #a64a97;
}
.about_cnt .cmn_title p {
  color: #e9546b;
}
.about_title {
  text-align: center;
  margin-bottom: 1em;
}
.about_title h4 {
  margin-bottom: 0.2em;
  font-size: clamp(36px, 6vw, 55px);
}
.about_title span {
  display: inline-block;
  background-color: #e9546b;
  color: #fff;
  text-box: trim-both cap alphabetic;
  border-radius: 100px;
  padding: 0.5em 1.5em;
}
.about_lead {
  margin-bottom: 2em;
  text-align: center;
  line-height: 2;
  font-size: clamp(18px, 3.5vw, 21px);
}
@media (max-width: 600px) {
  .about_lead {
    line-height: 1.8;
  }
}
.about_cap {
  margin-bottom: 1em;
  font-size: clamp(20px, 4vw, 25px);
}
.about_cap span {
  color: #a64a97;
  display: inline-block;
  background-color: #fff;
  padding: 0.5em 1.5em;
  border-radius: 50px;
  text-box: trim-both cap alphabetic;
}
.about_text {
  line-height: 1.8;
  font-weight: normal;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .about_text {
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .about_text {
    margin-bottom: 40px;
  }
}
.about_merit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 1060px) {
  .about_merit {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .about_merit {
    gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.about_merit_single {
  background-color: #fff;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .about_merit_single {
    border-radius: 20px;
  }
}
@media (max-width: 600px) {
  .about_merit_single {
    border-radius: 15px;
  }
}
.about_merit_single h5 {
  border-radius: 30px 30px 0 0;
  position: relative;
  color: #fff;
  padding: 1em 1.5em;
  text-box: trim-both cap alphabetic;
  font-size: clamp(18px, 2.5vw, 23px);
}
@media (max-width: 767px) {
  .about_merit_single h5 {
    border-radius: 20px 20px 0 0;
  }
}
.about_merit_single h5 img {
  position: absolute;
  bottom: 0;
  right: 25px;
}
@media (max-width: 1060px) {
  .about_merit_single h5 img {
    width: 8vw;
    right: 1.5vw;
  }
}
@media (max-width: 767px) {
  .about_merit_single h5 img {
    width: 16vw;
  }
}
.about_merit_single ul {
  padding: 40px;
}
@media (max-width: 980px) {
  .about_merit_single ul {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .about_merit_single ul {
    padding: 25px;
  }
}
.about_merit_single ul li {
  line-height: 1.8;
  font-weight: normal;
  padding-left: 1.5em;
  position: relative;
}
.about_merit_single ul li::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1em;
  height: 1em;
  border-radius: 50px;
}
.about_merit_single_perple h5 {
  background-color: #a64a97;
}
.about_merit_single_perple li::before {
  background-color: #a64a97;
}
.about_merit_single_red h5 {
  background-color: #e9546b;
}
.about_merit_single_red li::before {
  background-color: #e9546b;
}
.about_fx img {
  position: absolute;
}
.about_fx1 {
  left: 0;
  top: 0;
  width: 27vw;
  max-width: 420px;
}
@media (max-width: 600px) {
  .about_fx1 {
    width: 40.5vw;
  }
}
.about_fx2 {
  right: 5vw;
  top: 10vw;
  width: 24vw;
  max-width: 386px;
}
@media (max-width: 980px) {
  .about_fx2 {
    top: 20vw;
    right: 1vw;
    width: 20vw;
  }
}
@media (max-width: 600px) {
  .about_fx2 {
    top: 180px;
  }
}

.facility_cnt {
  padding: 120px 0 100px;
}
@media (max-width: 980px) {
  .facility_cnt {
    padding: 90px 0 80px;
  }
}
@media (max-width: 767px) {
  .facility_cnt {
    padding: 70px 0 70px;
  }
}
@media (max-width: 600px) {
  .facility_cnt {
    padding: 70px 0 60px;
  }
}
.facility_cnt .cmn_title h3 span:nth-of-type(1)::first-letter {
  color: #ea5532;
}
.facility_cnt .cmn_title h3 span:nth-of-type(2)::first-letter {
  color: #e9546b;
}
.facility_cnt .cmn_title p {
  color: #ea5532;
}
.facility_lead {
  text-align: center;
  margin-bottom: 2em;
  font-size: clamp(18px, 3.5vw, 21px);
}
.facility_fx {
  position: absolute;
  top: 0;
  right: 0;
  width: 27vw;
}
@media (max-width: 600px) {
  .facility_fx {
    width: 40.5vw;
  }
}
.facility_list {
  margin: 0 -40px 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 22px 1fr 22px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1200px) {
  .facility_list {
    gap: 1vw;
  }
}
@media (max-width: 980px) {
  .facility_list {
    margin: 0 -17px 100px;
  }
}
@media (max-width: 767px) {
  .facility_list {
    margin-bottom: 70px;
  }
}
@media (max-width: 600px) {
  .facility_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 50px;
  }
}
.facility_list_single {
  text-align: center;
}
@media (max-width: 600px) {
  .facility_list_single {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
}
.facility_list_single h4 {
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.facility_list_single h4 span {
  font-size: 25px;
  color: #fff;
  border-radius: 50px;
  text-box: trim-both cap alphabetic;
  min-width: 5em;
  display: inline-block;
  padding: 0.5em 1em;
}
@media (max-width: 980px) {
  .facility_list_single h4 span {
    font-size: 23px;
  }
}
@media (max-width: 980px) {
  .facility_list_single h4 span {
    font-size: 21px;
  }
}
.facility_list_single figure {
  overflow: hidden;
  margin: -1.5em auto 0;
  width: 350px;
  height: 350px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 500px;
  border: 12px solid #ccc;
}
@media (max-width: 1200px) {
  .facility_list_single figure {
    width: 30vw;
    height: 30vw;
    border-width: 1.82vw;
  }
}
@media (max-width: 600px) {
  .facility_list_single figure {
    width: 45vw;
    height: 45vw;
  }
}
.facility_list_single img {
  -webkit-transition: scale 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-filter 0.5s;
  transition: scale 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-filter 0.5s;
  transition: filter 0.5s, scale 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: filter 0.5s, scale 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-filter 0.5s;
}
.facility_list_single p {
  margin-top: -2em;
  font-size: 21px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media (max-width: 980px) {
  .facility_list_single p {
    font-size: 19px;
  }
}
@media (max-width: 600px) {
  .facility_list_single p {
    font-size: 17px;
  }
}
.facility_list_single p span {
  border: 2px solid #121212;
  background-color: #fff;
  display: inline-block;
  color: #121212;
  border-radius: 50px;
  text-box: trim-both cap alphabetic;
  padding: 0.6em 2em;
  position: relative;
}
.facility_list_single p span::before {
  display: block;
  content: "";
  position: absolute;
  width: 0.4em;
  height: 0.4em;
  border-right: 3px solid #ccc;
  border-top: 3px solid #ccc;
  rotate: 45deg;
  right: 18px;
  top: 0.72em;
}
.facility_list_single_perple {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .facility_list_single_perple {
    margin-top: 0;
  }
}
.facility_list_single_perple h4 span {
  background-color: #a64a97;
}
.facility_list_single_perple figure {
  border-color: #e4c8e0;
}
.facility_list_single_perple p span {
  -webkit-box-shadow: 4px 6px 0 #a64a97;
          box-shadow: 4px 6px 0 #a64a97;
}
.facility_list_single_perple p span:before {
  border-color: #a64a97;
}
.facility_list_single_red h4 span {
  background-color: #e9546b;
}
.facility_list_single_red figure {
  border-color: #f8cbd2;
}
.facility_list_single_red p span {
  -webkit-box-shadow: 4px 6px 0 #e9546b;
          box-shadow: 4px 6px 0 #e9546b;
}
.facility_list_single_red p span:before {
  border-color: #e9546b;
}
.facility_list_single_orange {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .facility_list_single_orange {
    margin-top: 25px;
  }
}
.facility_list_single_orange h4 span {
  background-color: #ea5532;
}
.facility_list_single_orange figure {
  border-color: #f3c4b6;
}
.facility_list_single_orange p span {
  -webkit-box-shadow: 4px 6px 0 #ea5532;
          box-shadow: 4px 6px 0 #ea5532;
}
.facility_list_single_orange p span:before {
  border-color: #ea5532;
}
@media (any-hover: hover) {
  .facility_list_single a:hover img {
    scale: 1.05;
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
  .facility_list_single a:hover h4 {
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  .facility_list_single a:hover p {
    -webkit-transform: translateY(3px);
        -ms-transform: translateY(3px);
            transform: translateY(3px);
  }
}
.facility_link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 1060px) {
  .facility_link {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.facility_link_single a {
  border-radius: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 35% 65%;
  grid-template-columns: 35% 65%;
  overflow: hidden;
  position: relative;
  color: #fff;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  max-width: 485px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .facility_link_single a {
    border-radius: 20px;
    -ms-grid-columns: 30% 70%;
    grid-template-columns: 30% 70%;
  }
}
@media (max-width: 600px) {
  .facility_link_single a {
    border-radius: 15px;
    -ms-grid-columns: 25% 75%;
    grid-template-columns: 25% 75%;
  }
}
@media (any-hover: hover) {
  .facility_link_single a:hover {
    -webkit-transform: translate(3px, 3px);
        -ms-transform: translate(3px, 3px);
            transform: translate(3px, 3px);
  }
  .facility_link_single a:hover img {
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.facility_link_single a figure {
  overflow: hidden;
}
.facility_link_single a img {
  -webkit-transition: -webkit-filter 0.4s, -webkit-transform 0.2s;
  transition: -webkit-filter 0.4s, -webkit-transform 0.2s;
  transition: filter 0.4s, transform 0.2s;
  transition: filter 0.4s, transform 0.2s, -webkit-filter 0.4s, -webkit-transform 0.2s;
}
.facility_link_single_yellow a {
  background-color: #f6ad3c;
  -webkit-box-shadow: 6px 8px 0 #ca7b00;
          box-shadow: 6px 8px 0 #ca7b00;
}
@media (any-hover: hover) {
  .facility_link_single_yellow a:hover {
    -webkit-box-shadow: 4px 6px 0 #ca7b00;
            box-shadow: 4px 6px 0 #ca7b00;
  }
}
.facility_link_single_green a {
  background-color: #00a95f;
  -webkit-box-shadow: 6px 8px 0 #007743;
          box-shadow: 6px 8px 0 #007743;
}
@media (any-hover: hover) {
  .facility_link_single_green a:hover {
    -webkit-box-shadow: 4px 6px 0 #007743;
            box-shadow: 4px 6px 0 #007743;
  }
}
.facility_link_popup {
  font-size: clamp(15px, 3vw, 20px);
  border-radius: 100px;
  border: 2px solid #121212;
  background-color: #fff;
  padding: 0.5em 1.5em;
  color: #121212;
  font-weight: bold;
  text-box: trim-both cap alphabetic;
  position: relative;
  -webkit-filter: drop-shadow(4px 6px 0 rgba(0, 0, 0, 0.2));
          filter: drop-shadow(4px 6px 0 rgba(0, 0, 0, 0.2));
  display: inline-block;
  margin-bottom: 0.1em;
  z-index: 1;
}
.facility_link_popup::before, .facility_link_popup:after {
  display: block;
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  width: calc(1em + 4px);
  height: calc(1em + 2px);
}
.facility_link_popup::before {
  bottom: calc(-1em - 2px);
  background: #121212;
  left: calc(50% - 0.5em);
}
.facility_link_popup:after {
  bottom: calc(-1em + 2px);
  background: #fff;
  left: calc(50% - 0.5em + 2px);
}
.facility_link_popup {
  position: absolute;
  right: 1.3em;
  top: 1.5em;
}
@media (max-width: 600px) {
  .facility_link_popup {
    top: 0.75em;
  }
}
.facility_link_text {
  text-align: center;
  padding: 4em 0 0;
  font-size: 25px;
}
@media (max-width: 600px) {
  .facility_link_text {
    padding-top: 3.8em;
    font-size: 4vw;
  }
}
.facility_link_text span {
  display: inline-block;
  position: relative;
  padding-right: 0.75em;
}
.facility_link_text span:after {
  display: block;
  content: "";
  position: absolute;
  width: 0.4em;
  height: 0.4em;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  right: 0;
  top: 0.45em;
  rotate: 45deg;
}

.job_cnt {
  background: #f6f3ed;
  padding: 130px 0 10px;
  position: relative;
}
@media (max-width: 980px) {
  .job_cnt {
    padding: 90px 0 10px;
  }
}
@media (max-width: 767px) {
  .job_cnt {
    padding: 80px 0 10px;
  }
}
@media (max-width: 600px) {
  .job_cnt {
    padding: 70px 0 10px;
  }
}
.job_cnt::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  z-index: 2;
  background: url(../img/wave_white.png) no-repeat center top;
  background-size: contain;
  height: 4vw;
  top: 0;
}
.job_cnt .cmn_title {
  margin-bottom: 4em;
}
.job_cnt .cmn_title h3 span:nth-of-type(1)::first-letter {
  color: #00a95f;
}
.job_cnt .cmn_title h3 span:nth-of-type(2)::first-letter {
  color: #00ada9;
}
.job_cnt .cmn_title p {
  color: #00a95f;
}
.job_fx img {
  position: absolute;
}
.job_fx1 {
  top: 0;
  left: 0;
  width: 29vw;
  max-width: 506px;
}
@media (max-width: 600px) {
  .job_fx1 {
    width: 43.5vw;
  }
}
.job_fx2 {
  top: 25%;
  right: 0;
  width: 15vw;
  max-width: 242px;
}
@media (max-width: 600px) {
  .job_fx2 {
    top: 37%;
    width: 22.5vw;
  }
}
.job_fx3 {
  top: 50%;
  left: 0;
  width: 11vw;
  max-width: 175px;
}
@media (max-width: 600px) {
  .job_fx3 {
    top: 58%;
    width: 16.5vw;
  }
}
.job_fx4 {
  top: 75%;
  right: 0;
  width: 19vw;
  max-width: 178px;
}
@media (max-width: 600px) {
  .job_fx4 {
    top: 82%;
    width: 28.5vw;
  }
}
.job_single {
  margin-bottom: 135px;
}
@media (max-width: 980px) {
  .job_single {
    margin-bottom: 115px;
  }
}
@media (max-width: 767px) {
  .job_single {
    margin-bottom: 95px;
  }
}
@media (max-width: 600px) {
  .job_single {
    margin-bottom: 65px;
  }
}
.job_single_intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3em;
}
@media (max-width: 767px) {
  .job_single_intro {
    display: block;
  }
}
@media (max-width: 600px) {
  .job_single_intro_text {
    line-height: 1.8;
  }
}
.job_single_text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  line-height: 2;
}
@media (max-width: 1200px) {
  .job_single_text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
  }
}
.job_single figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
}
@media (max-width: 1200px) {
  .job_single figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
}
@media (max-width: 767px) {
  .job_single figure {
    text-align: center;
    margin: 1.5em 0 1em;
  }
}
.job_single figure img {
  scale: 1.5;
}
@media (max-width: 1400px) {
  .job_single figure img {
    scale: 1.3;
  }
}
@media (max-width: 1200px) {
  .job_single figure img {
    scale: 1.15;
  }
}
@media (max-width: 767px) {
  .job_single figure img {
    scale: 1;
    width: 80%;
    max-width: 550px;
  }
}
.job_single_ttl {
  position: relative;
  margin-bottom: 1.2em;
  font-size: clamp(22px, 3.5vw, 25px);
}
.job_single_ttl:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  top: calc(50% - 1.5px);
}
@media (max-width: 600px) {
  .job_single_ttl:before {
    height: 2px;
    top: calc(50% - 1px);
  }
}
.job_single_ttl .box {
  color: #fff;
  border-radius: 50px;
  text-box: trim-both cap alphabetic;
  padding: 0.3em 1em;
  line-height: 1;
  position: relative;
}
.job_single_ttl .box .text2 {
  display: inline-block;
  border-left: 1px solid #fff;
  margin-left: 0.5em;
  padding-left: 0.5em;
}
.job_single_cap {
  font-size: clamp(22px, 3.5vw, 25px);
  margin: 2em 0 0.5em;
}
.job_single_note {
  line-height: 2;
}
@media (max-width: 600px) {
  .job_single_note {
    line-height: 1.8;
  }
}
.job_single_timeline {
  background-color: #fff;
  border-radius: 30px;
  padding: 35px 50px;
}
@media (max-width: 767px) {
  .job_single_timeline {
    border-radius: 20px;
    padding: 25px 40px;
  }
}
@media (max-width: 600px) {
  .job_single_timeline {
    border-radius: 15px;
    padding: 25px 20px;
  }
}
.job_single_timeline_cap {
  text-align: center;
  font-size: clamp(22px, 3.5vw, 25px);
  margin-bottom: 1em;
}
.job_single_timeline dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 12em 1fr;
  grid-template-columns: 12em 1fr;
  border-top: 2px solid #f6f3ed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 600px) {
  .job_single_timeline dl {
    -ms-grid-columns: 6.5em 1fr;
    grid-template-columns: 6.5em 1fr;
  }
}
.job_single_timeline dl.no-border {
  position: relative;
}
.job_single_timeline dl.no-border:before {
  display: block;
  content: "";
  position: absolute;
  width: 12em;
  height: 4px;
  background-color: #fff;
  top: -3px;
  left: 0;
}
@media (max-width: 600px) {
  .job_single_timeline dl.no-border:before {
    width: 6.5em;
  }
}
.job_single_timeline dt {
  padding-left: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.job_single_timeline dd {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8;
}
.job_single_timeline dd em {
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: clamp(18px, 3vw, 20px);
}
.job_single_perple h4:before {
  background-color: #a64a97;
}
.job_single_perple h4 .box {
  background-color: #a64a97;
}
.job_single_perple .job_single_cap {
  color: #a64a97;
}
.job_single_perple dt {
  color: #a64a97;
}
.job_single_perple figure img {
  translate: 25% 21%;
}
@media (max-width: 1400px) {
  .job_single_perple figure img {
    translate: 15% 20%;
  }
}
@media (max-width: 1200px) {
  .job_single_perple figure img {
    translate: 0 5%;
  }
}
@media (max-width: 767px) {
  .job_single_perple figure img {
    translate: 0 0;
  }
}
.job_single_violet .job_single_text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.job_single_violet h4:before {
  background-color: #4d4398;
}
.job_single_violet h4 .box {
  background-color: #4d4398;
}
.job_single_violet .job_single_cap {
  color: #4d4398;
}
.job_single_violet dt {
  color: #4d4398;
}
.job_single_violet figure img {
  translate: -25% 21%;
}
@media (max-width: 1400px) {
  .job_single_violet figure img {
    translate: -15% 20%;
  }
}
@media (max-width: 1200px) {
  .job_single_violet figure img {
    translate: 0 5%;
  }
}
@media (max-width: 767px) {
  .job_single_violet figure img {
    translate: 0 0;
  }
}
.job_single_red h4:before {
  background-color: #e9546b;
}
.job_single_red h4 .box {
  background-color: #e9546b;
}
.job_single_red .job_single_cap {
  color: #e9546b;
}
.job_single_red dt {
  color: #e9546b;
}
.job_single_red figure img {
  translate: 25% 21%;
}
@media (max-width: 1400px) {
  .job_single_red figure img {
    translate: 15% 20%;
  }
}
@media (max-width: 1200px) {
  .job_single_red figure img {
    translate: 0 5%;
  }
}
@media (max-width: 767px) {
  .job_single_red figure img {
    translate: 0 0;
  }
}
.job_single_orange .job_single_text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.job_single_orange h4:before {
  background-color: #ea5532;
}
.job_single_orange h4 .box {
  background-color: #ea5532;
}
.job_single_orange .job_single_cap {
  color: #ea5532;
}
.job_single_orange dt {
  color: #ea5532;
}
.job_single_orange figure img {
  translate: -25% 21%;
}
@media (max-width: 1400px) {
  .job_single_orange figure img {
    translate: -15% 20%;
  }
}
@media (max-width: 1200px) {
  .job_single_orange figure img {
    translate: 0 5%;
  }
}
@media (max-width: 767px) {
  .job_single_orange figure img {
    translate: 0 0;
  }
}

.interview_cnt {
  padding: 150px 0 110px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 980px) {
  .interview_cnt {
    padding: 90px 0 80px;
  }
}
@media (max-width: 767px) {
  .interview_cnt {
    padding: 70px 0 70px;
  }
}
@media (max-width: 600px) {
  .interview_cnt {
    padding: 70px 0 60px;
  }
}
.interview_cnt::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  z-index: 2;
  background: url(../img/wave_beige.png) no-repeat center top;
  background-size: contain;
  height: 4vw;
  top: 0;
}
.interview_cnt .cmn_title h3 span:nth-of-type(1)::first-letter {
  color: #e9546b;
}
.interview_cnt .cmn_title p {
  color: #e9546b;
}
.interview_cnt .inner {
  max-width: 1200px;
}
.interview_link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .interview_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.interview_link_single {
  text-align: center;
  color: #121212;
}
@media (max-width: 767px) {
  .interview_link_single {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}
@media (max-width: 600px) {
  .interview_link_single {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}
@media (any-hover: hover) {
  .interview_link_single:hover .fig {
    scale: 1.02;
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  .interview_link_single:hover .link {
    padding: 0.85em 2.4em;
  }
}
.interview_link_single .fig {
  margin-bottom: 0.75em;
  -webkit-transition: scale 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-filter 0.4s;
  transition: scale 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-filter 0.4s;
  transition: scale 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), filter 0.4s;
  transition: scale 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), filter 0.4s, -webkit-filter 0.4s;
}
@media (max-width: 767px) {
  .interview_link_single .fig {
    margin-bottom: 0.5em;
  }
}
@media (max-width: 600px) {
  .interview_link_single .fig {
    margin-bottom: 0.3em;
  }
}
.interview_link_single .text {
  margin-bottom: 0.5em;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .interview_link_single .text {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .interview_link_single .text {
    margin-bottom: 0.4em;
    font-size: 15px;
  }
}
.interview_link_single .text span,
.interview_link_single .text em {
  display: block;
}
.interview_link_single .text em {
  font-size: 20px;
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .interview_link_single .text em {
    font-size: 19px;
  }
}
@media (max-width: 600px) {
  .interview_link_single .text em {
    font-size: 18px;
  }
}
.interview_link_single .link {
  color: #fff;
  text-box: trim-both cap alphabetic;
  display: inline-block;
  border-radius: 5px;
  font-size: 18px;
  padding: 0.85em 2.2em;
  position: relative;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
}
@media (max-width: 767px) {
  .interview_link_single .link {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .interview_link_single .link {
    font-size: 15px;
  }
}
.interview_link_single .link::before {
  display: block;
  content: "";
  position: absolute;
  width: 0.35em;
  height: 0.35em;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  right: 13px;
  top: calc(50% - 0.25em);
  rotate: 45deg;
}
.interview_link_single:nth-of-type(even) {
  margin-top: 140px;
}
@media (max-width: 767px) {
  .interview_link_single:nth-of-type(even) {
    margin-top: 70px;
  }
}
@media (max-width: 600px) {
  .interview_link_single:nth-of-type(even) {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .interview_link_single:nth-of-type(4) {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .interview_link_single:nth-of-type(4) {
    margin-top: 30px;
  }
}
.interview_link_single_perple .link {
  background-color: #a64a97;
}
.interview_link_single_red .link {
  background-color: #e9546b;
}
.interview_link_single_orange .link {
  background-color: #ea5532;
}
.interview_fx {
  position: absolute;
  top: 1vw;
  right: -3vw;
  width: 25vw;
}
@media (max-width: 600px) {
  .interview_fx {
    width: 42.5vw;
  }
}

.environment_cnt {
  background: #f6f3ed;
  padding: 170px 0 110px;
  position: relative;
}
@media (max-width: 980px) {
  .environment_cnt {
    padding: 150px 0 90px;
  }
}
@media (max-width: 767px) {
  .environment_cnt {
    padding: 120px 0 70px;
  }
}
@media (max-width: 600px) {
  .environment_cnt {
    padding: 80px 0 70px;
  }
}
.environment_cnt::before, .environment_cnt:after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  z-index: 2;
}
.environment_cnt::before {
  background: url(../img/wave_white.png) no-repeat center top;
  background-size: contain;
  height: 4vw;
  top: 0;
}
.environment_cnt::after {
  background: url(../img/wave_beige.png) no-repeat center top;
  background-size: contain;
  height: 4vw;
  bottom: -4vw;
}
.environment_cnt .cmn_title {
  margin-bottom: 2.5em;
}
.environment_cnt .cmn_title h3 span:nth-of-type(1)::first-letter {
  color: #187fc4;
}
.environment_cnt .cmn_title p {
  color: #187fc4;
}
.environment_cap {
  text-align: center;
  line-height: 2;
  border-radius: 200px;
  margin-bottom: 50px;
}
@media (max-width: 980px) {
  .environment_cap {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .environment_cap {
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .environment_cap {
    margin-bottom: 25px;
  }
}
.environment_cap_s {
  font-size: 21px;
  padding: 1em;
}
@media (max-width: 767px) {
  .environment_cap_s {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .environment_cap_s {
    line-height: 1.8;
    font-size: 18px;
  }
}
.environment_cap_m {
  font-size: 25px;
  padding: 0.8em 1em;
}
@media (max-width: 767px) {
  .environment_cap_m {
    font-size: 23px;
  }
}
@media (max-width: 600px) {
  .environment_cap_m {
    font-size: 21px;
  }
}
.environment_cap_blue {
  background-color: #c2efff;
}
.environment_cap_blue-green {
  background-color: #c2f1e3;
}
.environment_cap_green {
  background-color: #cef1c1;
}
.environment_text {
  text-align: center;
  line-height: 2;
  margin-bottom: 3em;
  font-size: 18px;
}
@media (max-width: 767px) {
  .environment_text {
    font-size: 17px;
    margin-bottom: 2em;
  }
}
@media (max-width: 600px) {
  .environment_text {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 1.5em;
  }
}
.environment_list {
  display: -ms-grid;
  display: grid;
}
.environment_list_blue > div, .environment_list_blue-green > div, .environment_list_green > div {
  border-radius: 30px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .environment_list_blue > div, .environment_list_blue-green > div, .environment_list_green > div {
    border-radius: 25px;
  }
}
@media (max-width: 600px) {
  .environment_list_blue > div, .environment_list_blue-green > div, .environment_list_green > div {
    border-radius: 20px;
  }
}
@media (max-width: 500px) {
  .environment_list_blue > div, .environment_list_blue-green > div, .environment_list_green > div {
    border-radius: 15px;
  }
}
.environment_list_blue-green h5, .environment_list_green h5 {
  color: #fff;
  font-size: 23px;
  padding: 0.8em 0.1em;
  text-box: trim-both cap alphabetic;
  text-align: center;
}
@media (max-width: 767px) {
  .environment_list_blue-green h5, .environment_list_green h5 {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .environment_list_blue-green h5, .environment_list_green h5 {
    font-size: 20px;
  }
}
.environment_list_blue {
  margin: 85px 0 120px;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 90px 20px;
}
@media (max-width: 980px) {
  .environment_list_blue {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .environment_list_blue {
    margin-top: 65px;
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .environment_list_blue {
    margin-top: 55px;
    margin-bottom: 55px;
  }
}
@media (max-width: 980px) {
  .environment_list_blue {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .environment_list_blue {
    gap: 10vw 15px;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
.environment_list_blue > div {
  text-align: center;
  padding: 0 15px 30px;
}
@media (max-width: 600px) {
  .environment_list_blue > div {
    padding: 0 10px 25px;
  }
}
.environment_list_blue > div:nth-of-type(odd) figure {
  background-color: #00afec;
}
.environment_list_blue > div:nth-of-type(even) figure {
  background-color: #187fc4;
}
.environment_list_blue > div:nth-of-type(1) p {
  line-height: 1.3;
}
.environment_list_blue > div:nth-of-type(1) h5, .environment_list_blue > div:nth-of-type(2) h5, .environment_list_blue > div:nth-of-type(3) h5 {
  margin: 0;
}
.environment_list_blue > div:nth-of-type(2) p, .environment_list_blue > div:nth-of-type(3) p {
  min-height: 2.7em;
  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;
}
.environment_list_blue h5 {
  color: #187fc4;
  font-size: 23px;
  min-height: 2.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5em;
}
@media (max-width: 600px) {
  .environment_list_blue h5 {
    font-size: 4vw;
  }
}
.environment_list_blue p {
  font-size: 30px;
  line-height: 1;
}
@media (max-width: 600px) {
  .environment_list_blue p {
    font-size: 6.5vw;
  }
}
.environment_list_blue p em {
  font-size: 166%;
}
.environment_list_blue p small {
  font-size: 56%;
  font-weight: normal;
  display: block;
}
.environment_list_blue figure {
  width: 110px;
  height: 110px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -55px auto 20px;
}
@media (max-width: 767px) {
  .environment_list_blue figure {
    width: 15vw;
    height: 15vw;
    margin: -7vw auto 15px;
  }
  .environment_list_blue figure img {
    width: 60%;
  }
}
.environment_list_blue-green {
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 110px;
}
@media (max-width: 980px) {
  .environment_list_blue-green {
    margin-bottom: 80px;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .environment_list_blue-green {
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .environment_list_blue-green {
    gap: 15px;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 55px;
  }
}
.environment_list_blue-green > div {
  overflow: hidden;
}
.environment_list_blue-green > div:nth-of-type(3) p {
  padding-bottom: 10px;
}
.environment_list_blue-green > div h5 {
  background-color: #00ada9;
}
.environment_list_blue-green > div div,
.environment_list_blue-green > div p {
  text-align: center;
  padding: 30px 20px;
}
@media (max-width: 767px) {
  .environment_list_blue-green > div div,
  .environment_list_blue-green > div p {
    padding: 25px 15px;
  }
}
@media (max-width: 600px) {
  .environment_list_blue-green > div div,
  .environment_list_blue-green > div p {
    padding: 20px 15px;
  }
}
.environment_list_blue-green > div p {
  font-size: 18px;
}
@media (max-width: 767px) {
  .environment_list_blue-green > div p {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .environment_list_blue-green > div p {
    font-size: 16px;
  }
}
.environment_list_blue-green > div p em {
  font-size: 183%;
  line-height: 1;
}
.environment_list_blue-green > div p span {
  color: #00ada9;
}
.environment_list_blue-green > div li {
  text-align: left;
  font-size: 18px;
  padding-left: 1em;
  position: relative;
  margin: 0.5em 0;
}
@media (max-width: 767px) {
  .environment_list_blue-green > div li {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .environment_list_blue-green > div li {
    font-size: 16px;
  }
}
.environment_list_blue-green > div li::before {
  display: block;
  content: "";
  position: absolute;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50px;
  background-color: #00ada9;
  left: 0;
  top: 0.4em;
}
.environment_list_green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 110px;
}
@media (max-width: 980px) {
  .environment_list_green {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .environment_list_green {
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .environment_list_green {
    margin-bottom: 40px;
  }
}
.environment_list_green > div {
  overflow: hidden;
}
.environment_list_green > div div {
  padding: 30px 40px;
  line-height: 1.8;
}
@media (max-width: 980px) {
  .environment_list_green > div div {
    padding: 25px 35px;
  }
}
@media (max-width: 767px) {
  .environment_list_green > div div {
    padding: 20px 30px;
  }
}
@media (max-width: 600px) {
  .environment_list_green > div div {
    padding: 25px 25px;
  }
}
.environment_list_green .list_s {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  margin-bottom: 30px;
}
@media (max-width: 980px) {
  .environment_list_green .list_s {
    margin-bottom: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
  }
}
@media (max-width: 600px) {
  .environment_list_green .list_s {
    margin-bottom: 10px;
  }
}
.environment_list_green .list_m {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
}
@media (max-width: 980px) {
  .environment_list_green .list_m {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .environment_list_green .list_m {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.environment_list_green h5 {
  background-color: #00a95f;
}
.environment_list_green ul {
  padding-top: 0.5em;
}
.environment_list_green li {
  text-align: left;
  font-size: 18px;
  padding-left: 1em;
  position: relative;
}
@media (max-width: 767px) {
  .environment_list_green li {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .environment_list_green li {
    font-size: 16px;
  }
}
.environment_list_green li::before {
  display: block;
  content: "";
  position: absolute;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50px;
  background-color: #00a95f;
  left: 0;
  top: 0.4em;
}
.environment_link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 1060px) {
  .environment_link {
    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;
  }
}
@media (max-width: 767px) {
  .environment_link {
    gap: 25px;
  }
}
.environment_link_single {
  display: block;
  text-align: center;
}
@media (max-width: 1060px) {
  .environment_link_single {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}
@media (max-width: 767px) {
  .environment_link_single {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.environment_link_single .cmn_popup {
  font-size: clamp(15px, 3vw, 20px);
  border-radius: 100px;
  border: 2px solid #121212;
  background-color: #fff;
  padding: 0.5em 1.5em;
  color: #121212;
  font-weight: bold;
  text-box: trim-both cap alphabetic;
  position: relative;
  -webkit-filter: drop-shadow(4px 6px 0 rgba(0, 0, 0, 0.2));
          filter: drop-shadow(4px 6px 0 rgba(0, 0, 0, 0.2));
  display: inline-block;
  margin-bottom: 0.1em;
  z-index: 1;
}
.environment_link_single .cmn_popup::before, .environment_link_single .cmn_popup:after {
  display: block;
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  width: calc(1em + 4px);
  height: calc(1em + 2px);
}
.environment_link_single .cmn_popup::before {
  bottom: calc(-1em - 2px);
  background: #121212;
  left: calc(50% - 0.5em);
}
.environment_link_single .cmn_popup:after {
  bottom: calc(-1em + 2px);
  background: #fff;
  left: calc(50% - 0.5em + 2px);
}
.environment_link_single p {
  border-radius: 30px;
  color: #fff;
  text-align: center;
  font-size: 23px;
  padding: 2em 0.1em;
  margin: -0.5em auto 0;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  max-width: 400px;
}
@media (max-width: 1060px) {
  .environment_link_single p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .environment_link_single p {
    border-radius: 20px;
    padding: 1.7em 0.1em 1.3em;
  }
}
@media (max-width: 600px) {
  .environment_link_single p {
    border-radius: 15px;
    font-size: 18px;
    padding: 1.4em 0.1em 1em;
  }
}
.environment_link_single p span {
  display: inline-block;
  position: relative;
  padding-right: 0.8em;
}
.environment_link_single p span::before {
  display: block;
  content: "";
  position: absolute;
  width: 0.35em;
  height: 0.35em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 0;
  top: 0.5em;
  rotate: 45deg;
}
.environment_link_single_yellow p {
  background-color: #f6ad3c;
  -webkit-box-shadow: 7px 7px 0 #ca7b00;
          box-shadow: 7px 7px 0 #ca7b00;
}
@media (any-hover: hover) {
  .environment_link_single_yellow p:hover {
    -webkit-box-shadow: 3px 3px 0 #ca7b00;
            box-shadow: 3px 3px 0 #ca7b00;
  }
}
.environment_link_single_green p {
  background-color: #00a95f;
  -webkit-box-shadow: 7px 7px 0 #007743;
          box-shadow: 7px 7px 0 #007743;
}
@media (any-hover: hover) {
  .environment_link_single_green p:hover {
    -webkit-box-shadow: 3px 3px 0 #007743;
            box-shadow: 3px 3px 0 #007743;
  }
}
.environment_link_single_blue p {
  background-color: #00afec;
  -webkit-box-shadow: 7px 7px 0 #187fc4;
          box-shadow: 7px 7px 0 #187fc4;
}
@media (any-hover: hover) {
  .environment_link_single_blue p:hover {
    -webkit-box-shadow: 3px 3px 0 #187fc4;
            box-shadow: 3px 3px 0 #187fc4;
  }
}
@media (any-hover: hover) {
  .environment_link_single:hover p {
    -webkit-transform: translate(2px, 2px);
        -ms-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
}
.environment_fx img {
  position: absolute;
}
.environment_fx1 {
  top: 1vw;
  left: 0;
  width: 28vw;
}
.environment_fx2 {
  right: 0;
  top: 60%;
  width: 11vw;
}

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: 80px;
  padding-bottom: 60px;
}
.modal_single_wrap {
  position: relative;
  border-radius: 30px;
  background-color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .modal_single_wrap {
    border-radius: 20px;
    padding: 0 40px 40px;
  }
}
@media (max-width: 600px) {
  .modal_single_wrap {
    border-radius: 15px;
    padding: 0 25px 25px;
  }
}
@media (max-width: 500px) {
  .modal_single_wrap {
    padding: 0 20px 20px;
  }
}
.modal_single_wrap h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 0.75em;
  font-size: clamp(26px, 4.3vw, 32px);
}
@media (max-width: 767px) {
  .modal_single_wrap h3 {
    margin-bottom: 0.5em;
  }
}
@media (max-width: 600px) {
  .modal_single_wrap h3 {
    margin-bottom: 0.3em;
  }
}
.modal_single_wrap h3 span {
  display: inline-block;
  text-box: trim-both cap alphabetic;
  border-radius: 50px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal_single_facility h3 span {
  padding: 0.5em 2em;
}
.modal_single_facility_perple {
  background: rgba(248, 203, 210, 0.8);
}
.modal_single_facility_perple h3 span {
  background-color: #a64a97;
}
.modal_single_facility_perple h4 {
  color: #a64a97;
}
.modal_single_facility_perple .modal_single_body_facility_single_sub {
  background-color: #fdf5fc;
}
.modal_single_facility_perple .modal_single_close button {
  border-color: #a64a97;
  color: #a64a97;
}
.modal_single_facility_red {
  background: rgba(228, 200, 224, 0.8);
}
.modal_single_facility_red h3 span {
  background-color: #e9546b;
}
.modal_single_facility_red h4 {
  color: #e9546b;
}
.modal_single_facility_red .modal_single_body_facility_single_sub {
  background-color: #fdf2f4;
}
.modal_single_facility_red .modal_single_close button {
  border-color: #e9546b;
  color: #e9546b;
}
.modal_single_facility_orange {
  background: rgba(249, 204, 193, 0.8);
}
.modal_single_facility_orange h3 span {
  background-color: #ea5532;
}
.modal_single_facility_orange h4 {
  color: #ea5532;
}
.modal_single_facility_orange .modal_single_body_facility_single_sub {
  background-color: #fff6f1;
}
.modal_single_facility_orange .modal_single_close button {
  border-color: #ea5532;
  color: #ea5532;
}
.modal_single_body_facility_single {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 2px solid #fadde2;
}
@media (max-width: 767px) {
  .modal_single_body_facility_single {
    padding-top: 40px;
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .modal_single_body_facility_single {
    padding-top: 30px;
    margin-top: 30px;
  }
}
.modal_single_body_facility_single:nth-of-type(1) {
  margin-top: 0;
  padding-top: 0;
  border: none;
}
.modal_single_body_facility_single_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .modal_single_body_facility_single_main {
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .modal_single_body_facility_single_main {
    display: block;
    margin-bottom: 25px;
  }
}
.modal_single_body_facility_single_main .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 62%;
          flex: 0 0 62%;
}
.modal_single_body_facility_single_main .text h4 {
  margin-bottom: 0.75em;
  font-size: clamp(24px, 3.3vw, 28px);
}
.modal_single_body_facility_single_main .text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 600px) {
  .modal_single_body_facility_single_main .text p {
    font-size: 15px;
  }
}
.modal_single_body_facility_single_main .fig {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  position: relative;
}
@media (max-width: 600px) {
  .modal_single_body_facility_single_main .fig {
    margin-bottom: 25px;
  }
}
.modal_single_body_facility_single_main .fig img {
  width: 100%;
}
.modal_single_body_facility_single_main .fig img:nth-of-type(1) {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: photoXFade 10s infinite linear;
          animation: photoXFade 10s infinite linear;
}
.modal_single_body_facility_single_sub {
  padding: 40px 20% 40px 40px;
  position: relative;
}
@media (max-width: 767px) {
  .modal_single_body_facility_single_sub {
    padding: 30px 20% 30px 30px;
  }
}
@media (max-width: 600px) {
  .modal_single_body_facility_single_sub {
    padding: 25px 20px 25vw;
  }
}
.modal_single_body_facility_single_sub h4 {
  font-size: 20px;
  margin-bottom: 0.75em;
}
@media (max-width: 767px) {
  .modal_single_body_facility_single_sub h4 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .modal_single_body_facility_single_sub h4 {
    font-size: 17px;
  }
}
.modal_single_body_facility_single_sub p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 767px) {
  .modal_single_body_facility_single_sub p {
    font-size: 15px;
  }
}
.modal_single_body_facility_single_sub em {
  display: inline-block;
  background-color: #e9546b;
  color: #fff;
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-box: trim-both cap alphabetic;
  padding: 0.5em 1.5em;
  margin: 1em 0 0.5em;
  position: relative;
}
.modal_single_body_facility_single_sub em:before, .modal_single_body_facility_single_sub em:after {
  display: block;
  content: "";
  position: absolute;
  width: 0.5em;
  height: 100%;
  background-color: #fdf2f4;
  top: 0;
}
.modal_single_body_facility_single_sub em:before {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  left: 0;
}
.modal_single_body_facility_single_sub em:after {
  clip-path: polygon(100% 0%, 0 50%, 100% 100%);
  right: 0;
}
.modal_single_body_facility_single_sub ul {
  margin-bottom: 1em;
}
.modal_single_body_facility_single_sub li {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  padding-left: 1em;
  position: relative;
}
@media (max-width: 767px) {
  .modal_single_body_facility_single_sub li {
    font-size: 15px;
  }
}
.modal_single_body_facility_single_sub li:before {
  display: block;
  content: "";
  position: absolute;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50px;
  background-color: #e9546b;
  left: 0;
  top: 0.55em;
}
.modal_single_body_facility_single_sub .fig {
  position: absolute;
  right: 1%;
  bottom: 0;
  width: 18%;
}
@media (max-width: 600px) {
  .modal_single_body_facility_single_sub .fig {
    bottom: -3%;
    overflow: hidden;
    width: 35vw;
    height: 25vw;
    right: 5%;
  }
}
.modal_single_body_facility_single:nth-of-type(even) .modal_single_body_facility_single_sub {
  padding: 40px 40px 40px 20%;
}
@media (max-width: 600px) {
  .modal_single_body_facility_single:nth-of-type(even) .modal_single_body_facility_single_sub {
    padding: 25px 20px 25vw;
  }
}
.modal_single_body_facility_single:nth-of-type(even) .modal_single_body_facility_single_sub .fig {
  right: auto;
  left: 1%;
}
@media (max-width: 600px) {
  .modal_single_body_facility_single:nth-of-type(even) .modal_single_body_facility_single_sub .fig {
    left: 5%;
  }
}
.modal_single_staff .modal_single_head {
  margin-bottom: 20px;
}
.modal_single_staff .modal_single_head_staff_num span {
  padding: 0.6em 2em;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.modal_single_staff .modal_single_head_staff_num span em {
  display: inline-block;
  font-size: 166%;
  -webkit-transform: translateY(0.15em);
      -ms-transform: translateY(0.15em);
          transform: translateY(0.15em);
  padding-left: 0.1em;
  letter-spacing: 0.05em;
}
.modal_single_staff .modal_single_head_staff_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 600px) {
  .modal_single_staff .modal_single_head_staff_main {
    display: block;
  }
}
.modal_single_staff .modal_single_head_staff_text {
  margin-top: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
}
.modal_single_staff .modal_single_head_staff_text h4 {
  line-height: 1.5;
  margin-bottom: 0.75em;
  font-size: clamp(22px, 3.5vw, 28px);
}
@media (max-width: 980px) {
  .modal_single_staff .modal_single_head_staff_text h4 br {
    display: none;
  }
}
.modal_single_staff .modal_single_head_staff_text p {
  font-weight: 500;
}
.modal_single_staff .modal_single_head_staff_fig {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 600px) {
  .modal_single_staff .modal_single_head_staff_fig {
    text-align: center;
    margin-bottom: 25px;
  }
  .modal_single_staff .modal_single_head_staff_fig img {
    width: 62%;
    max-width: 250px;
  }
}
.modal_single_staff .modal_single_body_staff_single {
  border-radius: 5px;
  margin-top: 25px;
  padding: 30px 35px;
}
@media (max-width: 767px) {
  .modal_single_staff .modal_single_body_staff_single {
    margin-top: 20px;
    padding: 25px 30px;
  }
}
@media (max-width: 600px) {
  .modal_single_staff .modal_single_body_staff_single {
    margin-top: 17px;
    padding: 25px 20px;
  }
}
.modal_single_staff .modal_single_body_staff_single dt {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 55px 20px 1fr;
  grid-template-columns: 55px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .modal_single_staff .modal_single_body_staff_single dt {
    -ms-grid-columns: 50px 15px 1fr;
    grid-template-columns: 50px 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .modal_single_staff .modal_single_body_staff_single dt {
    -ms-grid-columns: 45px 13px 1fr;
    grid-template-columns: 45px 1fr;
    gap: 13px;
    margin-bottom: 13px;
  }
}
.modal_single_staff .modal_single_body_staff_single dt em {
  border-radius: 50px;
  font-size: 28px;
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  height: 55px;
  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: 767px) {
  .modal_single_staff .modal_single_body_staff_single dt em {
    font-size: 26px;
    height: 50px;
  }
}
@media (max-width: 600px) {
  .modal_single_staff .modal_single_body_staff_single dt em {
    font-size: 24px;
    height: 45px;
  }
}
.modal_single_staff .modal_single_body_staff_single dt span {
  font-size: 20px;
}
@media (max-width: 767px) {
  .modal_single_staff .modal_single_body_staff_single dt span {
    font-size: 19px;
  }
}
@media (max-width: 600px) {
  .modal_single_staff .modal_single_body_staff_single dt span {
    font-size: 18px;
  }
}
.modal_single_staff .modal_single_body_staff_single dd {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  padding-left: 75px;
}
@media (max-width: 767px) {
  .modal_single_staff .modal_single_body_staff_single dd {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .modal_single_staff .modal_single_body_staff_single dd {
    font-size: 15px;
    line-height: 1.8;
  }
}
.modal_single_staff .modal_single_entry {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .modal_single_staff .modal_single_entry {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .modal_single_staff .modal_single_entry {
    margin-top: 30px;
  }
}
.modal_single_staff .modal_single_entry a {
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  text-box: trim-both cap alphabetic;
  padding: 1em 2.7em;
  font-size: 20px;
  position: relative;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
}
@media (max-width: 767px) {
  .modal_single_staff .modal_single_entry a {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .modal_single_staff .modal_single_entry a {
    font-size: 17px;
  }
}
.modal_single_staff .modal_single_entry a::before {
  display: block;
  content: "";
  position: absolute;
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  rotate: 45deg;
  top: calc(50% - 0.3em);
  right: 20px;
}
@media (any-hover: hover) {
  .modal_single_staff .modal_single_entry a:hover {
    padding: 1em 3em;
  }
}
.modal_single_staff_perple {
  background: rgba(248, 203, 210, 0.8);
}
.modal_single_staff_perple h3 span {
  background-color: #a64a97;
}
.modal_single_staff_perple dt em,
.modal_single_staff_perple a {
  background-color: #a64a97;
}
.modal_single_staff_perple dt {
  color: #a64a97;
}
.modal_single_staff_perple dl {
  background-color: #fdf5fc;
}
.modal_single_staff_perple .modal_single_close button {
  border-color: #a64a97;
  color: #a64a97;
}
.modal_single_staff_red {
  background: rgba(228, 200, 224, 0.8);
}
.modal_single_staff_red h3 span {
  background-color: #e9546b;
}
.modal_single_staff_red dt em,
.modal_single_staff_red a {
  background-color: #e9546b;
}
.modal_single_staff_red dt {
  color: #e9546b;
}
.modal_single_staff_red dl {
  background-color: #fdf2f4;
}
.modal_single_staff_red .modal_single_close button {
  border-color: #e9546b;
  color: #e9546b;
}
.modal_single_staff_orange {
  background: rgba(249, 204, 193, 0.8);
}
.modal_single_staff_orange h3 span {
  background-color: #ea5532;
}
.modal_single_staff_orange dt em,
.modal_single_staff_orange a {
  background-color: #ea5532;
}
.modal_single_staff_orange dt {
  color: #ea5532;
}
.modal_single_staff_orange dl {
  background-color: #fff6f1;
}
.modal_single_staff_orange .modal_single_close button {
  border-color: #ea5532;
  color: #ea5532;
}
.modal_single_close {
  text-align: center;
  padding: 50px 0 0;
}
@media (max-width: 767px) {
  .modal_single_close {
    padding-top: 40px;
  }
}
@media (max-width: 600px) {
  .modal_single_close {
    padding-top: 30px;
  }
}
.modal_single_close button {
  background-color: transparent;
  border: none;
  font-size: 18px;
  border-radius: 5px;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  padding: 0.5em 3.65em;
  position: relative;
  border-width: 2px;
  border-style: solid;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
}
@media (max-width: 767px) {
  .modal_single_close button {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .modal_single_close button {
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  .modal_single_close button:hover {
    padding: 0.5em 4em;
  }
}
.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);
}

.modaal-inner-wrapper {
  padding: 0;
}
.modaal-container {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  max-width: 100%;
}
.modaal-content-container {
  padding: 0;
}
.modaal-close::before, .modaal-close:after {
  background-color: #121212;
}
@media (any-hover: hover) {
  .modaal-close:hover {
    opacity: 0.7;
  }
  .modaal-close:hover::before, .modaal-close:hover:after {
    background-color: #121212;
  }
}

@-webkit-keyframes photoXFade {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes photoXFade {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.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.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;
}