@charset "UTF-8";
/*default*/
/* https://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
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;
}

/* HTML5 display-role reset for older browsers */
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;
}

.att {
  padding-left: 1em;
  text-indent: -1em;
}

.att02 {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
:root {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.bg_image {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

*::-ms-backdrop, :root {
  --move-initial: 50vw;
  --move-final: -150vw;
}

.marquee {
  width: 100vw;
  overflow: hidden;
}

.marquee__inner {
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite;
}
.marquee__inner span {
  display: block;
  width: 100vw;
  margin: 0 3rem;
  flex-shrink: 0;
}
.marquee__inner.life01 span {
  width: 80vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life01 span {
    width: 100vw;
  }
}
.marquee__inner.life02 span {
  width: 65vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life02 span {
    width: 100vw;
  }
}
.marquee__inner.rezi04 span {
  width: 50vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi04 span {
    width: 100vw;
  }
}
.marquee__inner.rezi05 span {
  width: 40vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi05 span {
    width: 80vw;
  }
}

*::-ms-backdrop, .marquee__inner {
  width: 800vw;
  margin: 0;
  animation: marquee_ie 20s linear infinite;
  -webkit-animation: marquee_ie 20s linear infinite;
}
*::-ms-backdrop span, .marquee__inner span {
  display: block;
  width: 500px;
  margin: 0;
}

@keyframes marquee_ie {
  0% {
    transform: translate3d(0vw, 0, 0);
  }
  100% {
    transform: translate3d(-150vw, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
div.insefa {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.text {
  margin: 0 1rem;
  animation: flowing 40s linear infinite;
  transform: translateX(0%); /*初期位置*/
}

@keyframes flowing {
  100% {
    transform: translateX(-100%);
  }
}
/*! locomotive-scroll v4.1.1 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-dragging .c-scrollbar, .has-scroll-scrolling .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

/*default*/
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: 1.6rem;
  line-height: 1.85;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.en {
  font-family: "Lato", sans-serif;
}

.enb {
  font-family: "Lato", sans-serif;
  font-weight: bold;
}

.ens {
  font-family: "Lato", sans-serif;
}

/**
 * @license
 *
 * Font Family: Satoshi
 * Designed by: Deni Anggara
 * URL: https://www.fontshare.com/fonts/satoshi
 * © 2022 Indian Type Foundry
 *
 * Font Styles:
 * Satoshi Light Italic
 * Satoshi Regular
 * Satoshi Italic
 * Satoshi Medium
 * Satoshi Medium Italic
 * Satoshi Bold
 * Satoshi Bold Italic
 * Satoshi Black
 * Satoshi Black Italic
 *
*/
@font-face {
  font-family: "Satoshi-LightItalic";
  src: url("/company/recruitment/assets/fonts/Satoshi-LightItalic.woff2") format("woff2"), url("/company/recruitment/assets/fonts/Satoshi-LightItalic.woff") format("woff"), url("/company/recruitment/assets/fonts/Satoshi-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Regular";
  src: url("/company/recruitment/assets/fonts/Satoshi-Regular.woff2") format("woff2"), url("/company/recruitment/assets/fonts/Satoshi-Regular.woff") format("woff"), url("/company/recruitment/assets/fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-Italic";
  src: url("/company/recruitment/assets/fonts/Satoshi-Italic.woff2") format("woff2"), url("/company/recruitment/assets/fonts/Satoshi-Italic.woff") format("woff"), url("/company/recruitment/assets/fonts/Satoshi-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Medium";
  src: url("/company/recruitment/assets/fonts/Satoshi-Medium.woff2") format("woff2"), url("/company/recruitment/assets/fonts/Satoshi-Medium.woff") format("woff"), url("/company/recruitment/assets/fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-MediumItalic";
  src: url("/company/recruitment/assets/fonts/Satoshi-MediumItalic.woff2") format("woff2"), url("/company/recruitment/assets/fonts/Satoshi-MediumItalic.woff") format("woff"), url("/company/recruitment/assets/fonts/Satoshi-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Bold";
  src: url("/company/recruitment/assets/fonts/Satoshi-Bold.woff2") format("woff2"), url("/company/recruitment/assets/fonts/Satoshi-Bold.woff") format("woff"), url("/company/recruitment/assets/fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BoldItalic";
  src: url("/company/recruitment/assets/fonts/Satoshi-BoldItalic.woff2") format("woff2"), url("/company/recruitment/assets/fonts/Satoshi-BoldItalic.woff") format("woff"), url("/company/recruitment/assets/fonts/Satoshi-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Satoshi-Black";
  src: url("/company/recruitment/assets/fonts/Satoshi-Black.woff2") format("woff2"), url("/company/recruitment/assets/fonts/Satoshi-Black.woff") format("woff"), url("/company/recruitment/assets/fonts/Satoshi-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-BlackItalic";
  src: url("/company/recruitment/assets/fonts/Satoshi-BlackItalic.woff2") format("woff2"), url("/company/recruitment/assets/fonts/Satoshi-BlackItalic.woff") format("woff"), url("/company/recruitment/assets/fonts/Satoshi-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}
.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.adelay01 {
  animation-delay: 0.1s !important;
}
@media only screen and (max-width: 768px) {
  .adelay01 {
    animation-delay: 0s !important;
  }
}

.adelay02 {
  animation-delay: 0.2s !important;
}
@media only screen and (max-width: 768px) {
  .adelay02 {
    animation-delay: 0s !important;
  }
}

.adelay03 {
  animation-delay: 0.3s !important;
}
@media only screen and (max-width: 768px) {
  .adelay03 {
    animation-delay: 0s !important;
  }
}

.adelay04 {
  animation-delay: 0.4s !important;
}
@media only screen and (max-width: 768px) {
  .adelay04 {
    animation-delay: 0s !important;
  }
}

.adelay05 {
  animation-delay: 0.5s !important;
}
@media only screen and (max-width: 768px) {
  .adelay05 {
    animation-delay: 0s !important;
  }
}

.adelay06 {
  animation-delay: 0.6s !important;
}
@media only screen and (max-width: 768px) {
  .adelay06 {
    animation-delay: 0s !important;
  }
}

.adelay07 {
  animation-delay: 0.7s !important;
}
@media only screen and (max-width: 768px) {
  .adelay07 {
    animation-delay: 0s !important;
  }
}

.adelay08 {
  animation-delay: 0.8s !important;
}
@media only screen and (max-width: 768px) {
  .adelay08 {
    animation-delay: 0s !important;
  }
}

.adelay09 {
  animation-delay: 0.9s !important;
}
@media only screen and (max-width: 768px) {
  .adelay09 {
    animation-delay: 0s !important;
  }
}

.adelay10 {
  animation-delay: 1s !important;
}
@media only screen and (max-width: 768px) {
  .adelay10 {
    animation-delay: 0s !important;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.inview.fadeInup03 {
  overflow: hidden;
}

.inview.fadeInup, .inview.fadeInup03 img, .inview.fadeInup03:after {
  opacity: 0;
}

.inview.fadeInup.active {
  animation: fadeInup 0.5s ease-out;
  animation-fill-mode: forwards;
}

.inview.fadeInup03.active img {
  animation: zoom02 2s cubic-bezier(0.61, 1, 0.88, 1);
  animation-fill-mode: forwards;
}

.inview.fadeInup03:after {
  transition: all 1s ease;
  transition-delay: 0.3s;
}

.inview.fadeInup03.active:after {
  opacity: 1;
}

.inview.leftright {
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .inview.leftright {
    opacity: 1;
  }
}

.inview.leftright.active {
  animation: leftright_anim 0.5s ease;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 768px) {
  .inview.leftright.active {
    animation: none;
  }
}

.inview.rightleft {
  opacity: 0;
}

.inview.rightleft.active {
  animation: rightleft_anim 0.5s ease-out;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 768px) {
  .inview.rightleft.active {
    animation: none;
  }
}

.inview.show {
  opacity: 0;
}

.inview.show.active {
  animation: show 1s ease-out;
  animation-fill-mode: forwards;
}

@keyframes zoom02 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.image-anime-mask {
  overflow: hidden;
  transform: translate3d(-100%, 0, 0);
  transition: all 0.5s ease;
  transform-origin: left;
}
.image-anime-mask.active {
  transform: translate3d(0, 0, 0);
}

.image-anime-main {
  display: block;
  transform: translate3d(100%, 0, 0);
  transition: all 0.5s ease;
}
.image-anime-main.active {
  transform: translate3d(0, 0, 0);
}

.anim_box span {
  position: relative;
  overflow: hidden;
  display: inline-block;
  opacity: 0;
  transition: all 0.5s ease;
  transition-delay: 0.3s;
  line-height: 1.5;
  transform: translateY(12px);
}
.anim_box span.gr:before {
  background: #31955B;
}
.anim_box span:before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 9;
  background: #31955B;
  transform: translateX(-101%);
}
.anim_box span.adelay02 {
  transition-delay: 0.6s;
}
.anim_box.is-active span {
  opacity: 1;
  transform: translateY(0);
}
.anim_box.is-active span:before {
  animation-name: copyslide;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  animation-delay: 0.1s;
}
.anim_box.is-active span.adelay02:before {
  animation-delay: 0.3s;
}
.anim_box.is-active span.adelay04:before {
  animation-delay: 0.6s;
}
.anim_box.is-active.ren span:nth-of-type(1):before {
  animation-delay: 0.3s;
}
.anim_box.is-active.ren span:nth-of-type(2):before {
  animation-delay: 0.4s;
}
.anim_box.is-active.ren span:nth-of-type(3):before {
  animation-delay: 0.5s;
}
.anim_box.is-active.ren span:nth-of-type(4):before {
  animation-delay: 0.6s;
}

@keyframes fadeInup {
  0% {
    transform: translateY(25px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes leftright_anim {
  0% {
    transform: translatex(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes rightleft_anim {
  0% {
    transform: translatex(30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mt0 {
  margin-top: 0px;
}

.mb0 {
  margin-bottom: 0px;
}

.ml0 {
  margin-left: 0px;
}

.mr0 {
  margin-right: 0px;
}

.pt0 {
  padding-top: 0px;
}

.pb0 {
  padding-bottom: 0px;
}

.pl0 {
  padding-left: 0px;
}

.pr0 {
  padding-right: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.ml5 {
  margin-left: 5px;
}

.mr5 {
  margin-right: 5px;
}

.pt5 {
  padding-top: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.pl5 {
  padding-left: 5px;
}

.pr5 {
  padding-right: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pr10 {
  padding-right: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mr15 {
  margin-right: 15px;
}

.pt15 {
  padding-top: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pl15 {
  padding-left: 15px;
}

.pr15 {
  padding-right: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mr20 {
  margin-right: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pr20 {
  padding-right: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mr25 {
  margin-right: 25px;
}

.pt25 {
  padding-top: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.pl25 {
  padding-left: 25px;
}

.pr25 {
  padding-right: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mr30 {
  margin-right: 30px;
}

.pt30 {
  padding-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pl30 {
  padding-left: 30px;
}

.pr30 {
  padding-right: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.ml35 {
  margin-left: 35px;
}

.mr35 {
  margin-right: 35px;
}

.pt35 {
  padding-top: 35px;
}

.pb35 {
  padding-bottom: 35px;
}

.pl35 {
  padding-left: 35px;
}

.pr35 {
  padding-right: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mr40 {
  margin-right: 40px;
}

.pt40 {
  padding-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pl40 {
  padding-left: 40px;
}

.pr40 {
  padding-right: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.ml45 {
  margin-left: 45px;
}

.mr45 {
  margin-right: 45px;
}

.pt45 {
  padding-top: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.pl45 {
  padding-left: 45px;
}

.pr45 {
  padding-right: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml50 {
  margin-left: 50px;
}

.mr50 {
  margin-right: 50px;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.pl50 {
  padding-left: 50px;
}

.pr50 {
  padding-right: 50px;
}

.parenthesis {
  position: relative;
}

.parenthesis::before,
.parenthesis::after {
  position: absolute;
  top: 0%;
  content: "";
  width: 10px;
  height: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}

.parenthesis::before {
  left: 0;
  border-left: 1px solid #fff;
}

.parenthesis::after {
  right: 0;
  border-right: 1px solid #fff;
}

/*スクロールバー全体*/
::-webkit-scrollbar {
  width: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.bevel {
  background: linear-gradient(45deg, transparent 0, rgba(254, 226, 0, 0.9) 0), linear-gradient(135deg, transparent 50px, rgba(254, 226, 0, 0.9) 50px), linear-gradient(225deg, transparent 0, rgba(254, 226, 0, 0.9) 0), linear-gradient(315deg, transparent 50px, rgba(254, 226, 0, 0.9) 50px);
  background-position: bottom left, top left, top right, bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.bevel.white {
  background: linear-gradient(45deg, transparent 0, #ffffff 0), linear-gradient(135deg, transparent 20px, #ffffff 20px), linear-gradient(225deg, transparent 0, #ffffff 0), linear-gradient(315deg, transparent 20px, #ffffff 20px);
}

.image100 img {
  width: 100%;
}

@keyframes masking {
  0% {
    transform: translate(0, -101%);
  }
  42%, 58% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, 101%);
  }
}
@keyframes copyslide {
  0% {
    transform: translateX(-100%);
  }
  30% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes copyslide_stop {
  0% {
    transform: translateX(-100%);
  }
  30% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
.sc_box {
  position: absolute;
  right: 0;
  bottom: 5rem;
  display: flex;
  z-index: 7000;
  width: 3em;
}
.sc_box a {
  display: block;
  position: absolute;
  width: 100%;
  height: 200%;
  top: -100%;
  left: 0;
  content: "";
  z-index: 999;
}
.sc_box p {
  color: #ffffff;
  font-size: 10px;
  font-size: 1rem;
  margin-top: -5em;
  transform: translateX(46%);
}

.scroll_btn {
  content: "";
  height: 50px;
  width: 1px;
  background: #fff;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .scroll_btn {
    height: 30px;
  }
}
.scroll_btn .in {
  width: 1px;
  height: 50px;
  background: #333;
  z-index: 999;
  animation: masking 2s ease infinite;
}
@media only screen and (max-width: 768px) {
  .scroll_btn .in {
    height: 30px;
  }
}
.scroll_btn .in2 {
  position: absolute;
  width: 1px;
  height: 50px;
  background: #000;
  z-index: 999;
  animation: masking 2s ease infinite;
}
.scroll_btn a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 2000;
}

@keyframes masking {
  0% {
    transform: translate(0, -101%);
  }
  42%, 58% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, 101%);
  }
}
@keyframes arrows {
  0% {
    top: 0%;
  }
  100% {
    top: 100%;
  }
}
.image100 img {
  width: 100%;
}

.animate_btn.rv a:after {
  color: #FEE200;
  position: absolute;
  font-family: "ionicons";
  top: 50%;
  right: 90%;
  margin-top: -0.5em;
  line-height: 1;
  content: "\f125";
  font-size: 12px;
  font-size: 1.2rem;
  z-index: 999;
  transition: all 0.3s ease;
  transform: rotate(180deg);
}
.animate_btn a {
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  padding: 1rem 3rem 1rem 3rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .animate_btn a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.animate_btn a:before {
  display: block;
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 0;
  background: #FEE200;
  transition: all 0.3s ease;
  right: 0;
  left: auto;
}
.animate_btn a:after {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  right: 2rem;
  margin-top: -0.5em;
  line-height: 1;
  content: "\f102";
  font-size: 18px;
  font-size: 1.8rem;
  z-index: 999;
  transition: all 0.3s ease;
}
.animate_btn a span {
  position: relative;
  z-index: 99;
}
@media only screen and (max-width: 768px) {
  .animate_btn a:hover {
    color: #FEE200;
  }
}
.animate_btn a:hover span {
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .animate_btn a:hover span {
    color: #ffffff;
  }
}
.animate_btn a:hover:before {
  width: 100%;
  left: 0;
}
.animate_btn a:hover:after {
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .animate_btn a:hover:after {
    color: #ffffff;
  }
}

@keyframes animate_btn_on {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes animate_btn_off {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.image_wrap {
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .image_wrap {
    width: 100%;
  }
}
.image_wrap.bg01 {
  padding: 0 5rem 0 0;
}
@media only screen and (max-width: 768px) {
  .image_wrap.bg01 {
    padding: 0;
  }
}
.image_wrap.bg01:after {
  background: #31955B;
  height: 100%;
  top: -5rem;
  left: 5rem;
}
.image_wrap.bg02 {
  padding: 0 0 0 5rem;
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  .image_wrap.bg02 {
    padding: 0;
    margin: 0;
  }
}
.image_wrap.bg02:after {
  background: #FEE200;
  height: 70%;
  bottom: -5rem;
  left: -5rem;
}
.image_wrap.bg03 {
  padding: 0 5rem 0 0;
}
@media only screen and (max-width: 768px) {
  .image_wrap.bg03 {
    padding: 0;
  }
}
.image_wrap.bg03:after {
  background: #666;
  height: 100%;
  top: -5rem;
  left: 5rem;
}

.image-mask {
  transform: translate3d(-100%, 0, 0);
  transition: 0.5s ease;
  transform-origin: left;
  overflow: hidden;
  display: block;
}
.image-mask.active {
  transform: translate3d(0, 0, 0);
}
.image-mask.active .img_main {
  transform: translate3d(0, 0, 0);
}
.image-mask .img_main {
  transform: translate3d(101%, 0, 0);
  transition: 0.8s ease;
}

@keyframes hoverElem {
  0% {
    transform: translate3D(0, 0, 0);
  }
  49% {
    transform: translate3D(100%, 0, 0);
    visibility: hidden;
  }
  50% {
    transform: translate3D(-100%, 0, 0);
    visibility: hidden;
  }
  52% {
    visibility: visible;
  }
  100% {
    transform: translate3D(0, 0, 0);
  }
}
.image_wrap {
  position: relative;
  margin: 0 0 0 0.1rem;
}

.image-mask {
  transform: translate3d(-100%, 0, 0);
  transition: 1s ease;
  transform-origin: left;
  overflow: hidden;
  display: block;
}
.image-mask.active {
  transform: translate3d(0, 0, 0);
}
.image-mask.active .img_main {
  transform: translate3d(0, 0, 0) scale(1);
}
.image-mask .image {
  position: relative;
}
.image-mask .img_main {
  transform: translate3d(101%, 0, 0) scale(1.2);
  transition: 1s ease;
}

@keyframes hoverElem {
  0% {
    transform: translate3D(0, 0, 0);
  }
  49% {
    transform: translate3D(100%, 0, 0);
    visibility: hidden;
  }
  50% {
    transform: translate3D(-100%, 0, 0);
    visibility: hidden;
  }
  52% {
    visibility: visible;
  }
  100% {
    transform: translate3D(0, 0, 0);
  }
}
@keyframes hoverElem {
  0% {
    transform: translate3D(0, 0, 0);
  }
  49% {
    transform: translate3D(100%, 0, 0);
    visibility: hidden;
  }
  50% {
    transform: translate3D(-100%, 0, 0);
    visibility: hidden;
  }
  52% {
    visibility: visible;
  }
  100% {
    transform: translate3D(0, 0, 0);
  }
}
/* perfect-scrollbar v0.8.1 */
.ps {
  touch-action: auto;
  overflow: hidden !important;
  -ms-overflow-style: none;
}

@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
.ps.ps--active-x > .ps__scrollbar-x-rail, .ps.ps--active-y > .ps__scrollbar-y-rail {
  display: block;
  background-color: transparent;
}

.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}

.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #999;
  height: 11px;
}

.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9;
}

.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #999;
  width: 11px;
}

.ps > .ps__scrollbar-x-rail {
  display: none;
  position: absolute;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  bottom: 0px;
  height: 15px;
}

.ps > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  position: absolute;
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s linear, width 0.2s ease-in-out, border-radius 0.2s ease-in-out;
  bottom: 2px;
  height: 6px;
}

.ps > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x, .ps > .ps__scrollbar-x-rail:active > .ps__scrollbar-x {
  height: 11px;
}

.ps > .ps__scrollbar-y-rail {
  display: none;
  position: absolute;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  right: 0;
  width: 15px;
}

.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  position: absolute;
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s linear, width 0.2s ease-in-out, border-radius 0.2s ease-in-out;
  right: 2px;
  width: 6px;
}

.ps > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y, .ps > .ps__scrollbar-y-rail:active > .ps__scrollbar-y {
  width: 11px;
}

.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}

.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #999;
  height: 11px;
}

.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9;
}

.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #999;
  width: 11px;
}

.ps:hover > .ps__scrollbar-x-rail, .ps:hover > .ps__scrollbar-y-rail {
  opacity: 0.6;
}

.ps:hover > .ps__scrollbar-x-rail:hover {
  background-color: #eee;
  opacity: 0.9;
}

.ps:hover > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x {
  background-color: #999;
}

.ps:hover > .ps__scrollbar-y-rail:hover {
  background-color: #eee;
  opacity: 0.9;
}

.ps:hover > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y {
  background-color: #999;
}

:root {
  --offset: 40vw;
  --move-initial: calc(-30% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.bg_image {
  --offset: 30vw;
  --move-initial: calc(-30% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

*::-ms-backdrop, :root {
  --move-initial: -40vw;
  --move-final: -150vw;
}

.marquee {
  width: 100vw;
  overflow: hidden;
}

section.lead .inner {
  padding: 0 0 3rem 0;
}

.marquee__inner {
  width: 600%;
  display: flex;
  justify-content: space-between;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite;
}

*::-ms-backdrop, .marquee__inner {
  width: 800vw;
  margin: 0;
  animation: marquee_ie 20s linear infinite;
  -webkit-animation: marquee_ie 20s linear infinite;
}
*::-ms-backdrop span, .marquee__inner span {
  display: block;
  margin: 0;
}

@keyframes marquee_ie {
  0% {
    transform: translate3d(0vw, 0, 0);
  }
  100% {
    transform: translate3d(-150vw, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
.scroll {
  content: "";
  position: relative;
  height: 100px;
  width: 1px;
  margin: auto;
  background: transparent;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .scroll {
    height: 80px;
  }
}
.scroll .in {
  position: absolute;
  width: 1px;
  height: 100px;
  background: #fff;
  z-index: 999;
  animation: masking 2s ease infinite;
}
@media only screen and (max-width: 768px) {
  .scroll .in {
    height: 80px;
  }
}
.scroll .in2 {
  position: absolute;
  width: 1px;
  height: 50px;
  background: #000;
  z-index: 999;
  animation: masking 2s ease infinite;
}
.scroll a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 2000;
}

body {
  overflow: auto;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3100;
  transition: all 0.3s ease;
  pointer-events: none;
}
header #header_wrapper .header_inner {
  padding: 16px 3%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  header #header_wrapper .header_inner {
    padding: 14px 3% 14px 5%;
  }
}
header #header_wrapper .header_inner #logo {
  width: 172px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  pointer-events: auto;
}
header #header_wrapper .header_inner #logo .image {
  width: 68px;
}
@media only screen and (max-width: 768px) {
  header #header_wrapper .header_inner #logo .image {
    width: 40px;
  }
}
header #header_wrapper .header_inner #logo .txt {
  padding-left: 24px;
}
header #header_wrapper .header_inner #header_menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header #header_wrapper .header_inner #header_menu #sns_icon {
  margin-right: 10px;
  transition: all 0.3s ease;
  pointer-events: auto;
}
header #header_wrapper .header_inner #header_menu #sns_icon a {
  display: block;
  padding: 16px;
  line-height: 0;
  width: 54px;
  height: 54px;
}
header #header_wrapper .header_inner #header_menu #sns_icon a svg {
  width: 22px;
}
header #header_wrapper .header_inner #header_menu #sns_icon a svg path {
  fill: #3E3E3E;
}
header #header_wrapper .header_inner #em_btn {
  display: flex;
  width: 346px;
  gap: 6px;
  pointer-events: auto;
}
@media only screen and (max-width: 768px) {
  header #header_wrapper .header_inner #em_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    gap: 1px;
  }
}
header #header_wrapper .header_inner #em_btn > li {
  position: relative;
  width: 50%;
}
header #header_wrapper .header_inner #em_btn > li .btn {
  display: block;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #FFDE33;
  border-radius: 4px;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
header #header_wrapper .header_inner #em_btn > li .btn.arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg) translateY(-50%);
}
header #header_wrapper .header_inner #em_btn > li .btn:hover {
  background-color: #3E3E3E;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  header #header_wrapper .header_inner #em_btn > li .btn:hover {
    background-color: #FFDE33;
    color: #3E3E3E;
  }
}
header #header_wrapper .header_inner #em_btn > li .btn:hover.arrow::after {
  border-color: #fff;
}
header #header_wrapper .header_inner #em_btn > li .child {
  display: none;
  position: absolute;
  width: 100%;
  background-color: #3E3E3E;
  border-radius: 4px;
  margin-top: 10px;
  padding-block: 15px;
}
@media only screen and (max-width: 768px) {
  header #header_wrapper .header_inner #em_btn > li .child {
    transform: translateY(calc(-100% - 54px));
    margin-top: 0;
  }
}
header #header_wrapper .header_inner #em_btn > li .child li a {
  position: relative;
  display: block;
  color: #fff;
  padding: 10px 20px;
  font-size: 1.3rem;
}
header #header_wrapper .header_inner #em_btn > li .child li a:hover {
  text-decoration: underline;
}
header #header_wrapper .header_inner #em_btn > li .child li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}

body.is-scroll header #header_wrapper .header_inner #logo {
  opacity: 0;
  visibility: hidden;
}
body.is-scroll header #header_wrapper .header_inner #logo .txt {
  color: #3E3E3E;
}
body.is-scroll header #header_wrapper .header_inner #header_menu #sns_icon {
  opacity: 0;
  visibility: hidden;
}
body.is-scroll header #header_wrapper .header_inner #header_menu #sns_icon a svg path {
  fill: #3E3E3E;
}

#gnav_wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #3E3E3E;
  color: #fff;
  padding-top: 100px;
  z-index: 3000;
}
@media only screen and (max-width: 768px) {
  #gnav_wrapper {
    height: calc(100vh - 82px);
    top: 82px;
    padding-bottom: 50px;
    padding-top: 20px;
    z-index: 2000;
  }
}
#gnav_wrapper .inner {
  position: relative;
  max-width: calc(1360px + 6%);
  margin: 0 auto;
  padding: 0 3% 10rem;
  overflow-y: scroll;
  height: calc(100vh - 88px);
  padding-right: 20px;
}
#gnav_wrapper .inner::-webkit-scrollbar {
  width: 2px;
}
#gnav_wrapper .inner #navi .sitemap_layout {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks {
  width: 18%;
  margin-bottom: 40px;
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks.wide {
  width: 38%;
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .col2 {
  display: flex;
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .col2 ul {
  width: 50%;
}
@media (max-width: 1240px) {
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks {
    width: 23%;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks.wide {
    width: 23%;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .col2 {
    display: block;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .col2 ul {
    width: 100%;
  }
}
@media (max-width: 876px) {
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks {
    width: 31%;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks.wide {
    width: 31%;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .col2 {
    display: block;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .col2 ul {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks {
    width: 100%;
    margin-bottom: 0;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks ul {
    display: none;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks.wide {
    width: 100%;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .col2 {
    display: block;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .col2 ul {
    width: 100%;
    display: none;
  }
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .title {
  position: relative;
  display: block;
  margin-bottom: 20px;
  border-bottom: 1px solid #707070;
  padding-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .title {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .title:not(.people)::before {
    content: "";
    display: block;
    position: absolute;
    top: 18px;
    right: 21px;
    height: 15px;
    width: 1px;
    background-color: #fff;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .title:not(.people)::after {
    content: "";
    display: block;
    position: absolute;
    top: 25px;
    right: 14px;
    width: 15px;
    height: 1px;
    background-color: #fff;
    border: none;
    transform: rotate(0deg);
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .title.people::after {
    right: 22px;
    top: 22px;
  }
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .title.open::before {
    opacity: 0;
  }
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .title .en {
  font-size: 1.2rem;
  color: #aaa;
}
@media only screen and (max-width: 768px) {
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .title .en {
    line-height: 1.5;
  }
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .title .jp {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .title .jp {
    font-size: 1.8rem;
    font-weight: 600;
  }
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks .title .jp small {
  font-size: 1rem;
  margin-left: 15px;
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks a.title {
  position: relative;
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks a.title::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks a.title:hover {
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks a.title:hover {
    border-bottom: 1px solid #707070;
  }
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks a.title.people {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks a.title.people {
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks ul {
    padding-bottom: 20px;
  }
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks ul li a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks ul li a {
    display: block;
    font-size: 1.4rem;
    padding: 5px 0;
  }
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks ul li a:hover {
  text-decoration: underline;
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks ul li a .label {
  display: inline-block;
  border-radius: 20px;
  line-height: 1;
  font-size: 1rem;
  background-color: #6A6A6A;
  font-weight: 600;
  padding: 3px 6px;
  margin-right: 10px;
  width: 52px;
  text-align: center;
}
#gnav_wrapper .inner #navi .sitemap_layout .sitemap_blocks ul li a .label.new {
  color: #3E3E3E;
  background-color: #fff;
}
#gnav_wrapper .inner #navi .sitemap_layout .btns {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 18%;
}
@media (max-width: 1240px) {
  #gnav_wrapper .inner #navi .sitemap_layout .btns {
    width: 23%;
  }
}
@media (max-width: 876px) {
  #gnav_wrapper .inner #navi .sitemap_layout .btns {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}
#gnav_wrapper .inner #navi .sitemap_layout .btns a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #EFEFEF;
  border-radius: 4px;
  padding: 5px 75px 5px 30px;
  margin-bottom: 10px;
  height: 98px;
  transition: all 0.3s ease;
}
#gnav_wrapper .inner #navi .sitemap_layout .btns a:hover {
  background: #FFDE33;
}
#gnav_wrapper .inner #navi .sitemap_layout .btns a::before {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background-color: #3E3E3E;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
#gnav_wrapper .inner #navi .sitemap_layout .btns a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 32px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}
#gnav_wrapper .inner #navi .sitemap_layout .btns a .jp {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
#gnav_wrapper .inner #navi .sitemap_layout .btns a .en {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.2;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.9;
  z-index: 200;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.overlay.active {
  visibility: visible;
  background: #000;
  opacity: 0.5;
}

#spmenu {
  cursor: pointer;
  pointer-events: auto;
  content: "";
  top: 1.5rem;
  right: 1.5rem;
  width: 59px;
  height: 54px;
  margin: 0 0 0 6px;
  background-color: #3E3E3E;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
#spmenu .menu-trigger {
  position: relative;
  width: 20px;
  height: 8px;
}
#spmenu .menu-trigger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 4px 0;
  transition: all 0.3s ease;
}
#spmenu p {
  font-size: 1rem;
  color: #fff;
}

body.menu-open header {
  background-color: #3E3E3E;
}
body.menu-open header #header_wrapper .header_inner #logo .txt {
  color: #fff;
}
body.menu-open header #header_wrapper .header_inner #header_menu #sns_icon a svg {
  width: 22px;
}
body.menu-open header #header_wrapper .header_inner #header_menu #sns_icon a svg path {
  fill: #fff;
}
body.menu-open header #header_wrapper .header_inner #em_btn > li .btn:hover {
  background-color: #5f5f5f;
}
body.menu-open header #header_wrapper .header_inner #em_btn > li .child {
  background-color: #5f5f5f;
}
body.menu-open #gnav_wrapper {
  display: block;
  animation: menuin 0.3s forwards;
}
body.menu-open #spmenu {
  background-color: #EFEFEF;
}
body.menu-open #spmenu .menu-trigger span {
  background-color: #3E3E3E;
}
body.menu-open #spmenu .menu-trigger span:nth-child(1) {
  position: absolute;
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(45deg);
}
body.menu-open #spmenu .menu-trigger span:nth-child(2) {
  opacity: 0;
}
body.menu-open #spmenu .menu-trigger span:nth-child(3) {
  position: absolute;
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(-45deg);
}
body.menu-open #spmenu p {
  color: #3E3E3E;
}

@keyframes menuin {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
footer#footer_wrapper {
  background-color: #3E3E3E;
}
@media only screen and (max-width: 768px) {
  footer#footer_wrapper {
    padding-bottom: 50px;
  }
}
footer#footer_wrapper .footer_inner {
  max-width: calc(1360px + 6%);
  padding: 90px 3% 30px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  footer#footer_wrapper .footer_inner {
    padding-top: 0;
  }
}
footer#footer_wrapper .sitemap_layout {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  footer#footer_wrapper .sitemap_layout {
    display: none;
  }
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks {
  width: 23%;
  margin-bottom: 40px;
}
@media (max-width: 876px) {
  footer#footer_wrapper .sitemap_layout .sitemap_blocks {
    width: 31%;
  }
  footer#footer_wrapper .sitemap_layout .sitemap_blocks.wide {
    width: 31%;
  }
  footer#footer_wrapper .sitemap_layout .sitemap_blocks .col2 {
    display: block;
  }
  footer#footer_wrapper .sitemap_layout .sitemap_blocks .col2 ul {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  footer#footer_wrapper .sitemap_layout .sitemap_blocks {
    width: 100%;
  }
  footer#footer_wrapper .sitemap_layout .sitemap_blocks.wide {
    width: 100%;
  }
  footer#footer_wrapper .sitemap_layout .sitemap_blocks .col2 {
    display: block;
  }
  footer#footer_wrapper .sitemap_layout .sitemap_blocks .col2 ul {
    width: 100%;
  }
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks .title {
  display: block;
  margin-bottom: 20px;
  border-bottom: 1px solid #707070;
  padding-bottom: 20px;
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks .title .en {
  font-size: 1.2rem;
  color: #aaa;
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks .title .jp {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks .title .jp small {
  font-size: 1rem;
  margin-left: 15px;
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks a.title {
  position: relative;
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks a.title::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks a.title:hover {
  border-bottom: 1px solid #fff;
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks a.title.people {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  footer#footer_wrapper .sitemap_layout .sitemap_blocks a.title.people {
    margin-top: 0;
  }
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks ul li a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks ul li a:hover {
  text-decoration: underline;
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks ul li a .label {
  display: inline-block;
  border-radius: 20px;
  line-height: 1;
  font-size: 1rem;
  background-color: #6A6A6A;
  font-weight: 600;
  padding: 3px 6px;
  margin-right: 10px;
  width: 52px;
  text-align: center;
}
footer#footer_wrapper .sitemap_layout .sitemap_blocks ul li a .label.new {
  color: #3E3E3E;
  background-color: #fff;
}
footer#footer_wrapper .sitemap_layout .btns {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 18%;
}
@media (max-width: 1240px) {
  footer#footer_wrapper .sitemap_layout .btns {
    width: 23%;
  }
}
@media (max-width: 876px) {
  footer#footer_wrapper .sitemap_layout .btns {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}
footer#footer_wrapper .sitemap_layout .btns a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #EFEFEF;
  border-radius: 4px;
  padding: 5px 75px 5px 30px;
  margin-bottom: 10px;
  height: 98px;
  transition: all 0.3s ease;
}
footer#footer_wrapper .sitemap_layout .btns a:hover {
  background: #FFDE33;
}
footer#footer_wrapper .sitemap_layout .btns a::before {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background-color: #3E3E3E;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
footer#footer_wrapper .sitemap_layout .btns a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 32px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}
footer#footer_wrapper .sitemap_layout .btns a .jp {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
footer#footer_wrapper .sitemap_layout .btns a .en {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.2;
}
footer#footer_wrapper .copyright .footer_layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0 0;
}
@media only screen and (max-width: 768px) {
  footer#footer_wrapper .copyright .footer_layout {
    display: block;
    padding-top: 20px;
  }
}
footer#footer_wrapper .copyright .cplink ul {
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  footer#footer_wrapper .copyright .cplink ul {
    display: block;
    margin-bottom: 30px;
  }
}
footer#footer_wrapper .copyright .cplink ul a {
  color: #fff;
  font-size: 1.1rem;
}
footer#footer_wrapper .copyright p {
  color: #fff;
  font-size: 1.3rem;
  text-align: right;
}

/*
Flaticon icon font: Flaticon
Creation date: 03/10/2020 15:15
*/
@font-face {
  font-family: "Flaticon";
  src: url("/company/recruitment/assets/fonts/Flaticon.eot");
  src: url("/company/recruitment/assets/fonts/Flaticon.eot?#iefix") format("embedded-opentype"), url("/company/recruitment/assets/fonts/Flaticon.woff2") format("woff2"), url("/company/recruitment/assets/fonts/Flaticon.woff") format("woff"), url("/company/recruitment/assets/fonts/Flaticon.ttf") format("truetype"), url("/company/recruitment/assets/fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url("/company/recruitment/assets/fonts/Flaticon.svg#Flaticon") format("svg");
  }
}
.fi:before {
  display: inline-block;
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.flaticon-menu:before {
  content: "\f100";
}

.flaticon-next:before {
  content: "\f101";
}

.flaticon-go-back:before {
  content: "\f102";
}

.flaticon-forward:before {
  content: "\f103";
}

.flaticon-down-arrow:before {
  content: "\f104";
}

.flaticon-chevron:before {
  content: "\f105";
}

.flaticon-back:before {
  content: "\f106";
}

.flaticon-undo:before {
  content: "\f107";
}

.flaticon-right-arrow:before {
  content: "\f108";
}

.flaticon-left-arrow:before {
  content: "\f109";
}

.flaticon-plus:before {
  content: "\f10a";
}

.flaticon-play-button:before {
  content: "\f10b";
}

.flaticon-play:before {
  content: "\f10c";
}

.flaticon-left-arrow-1:before {
  content: "\f10d";
}

.flaticon-right-arrow-1:before {
  content: "\f10e";
}

.flaticon-left-arrow-2:before {
  content: "\f10f";
}

.flaticon-download:before {
  content: "\f110";
}

.flaticon-down-arrow-1:before {
  content: "\f111";
}

.flaticon-checked:before {
  content: "\f112";
}

.flaticon-question:before {
  content: "\f113";
}

.flaticon-play-button-1:before {
  content: "\f114";
}

.flaticon-up-arrow:before {
  content: "\f115";
}

.flaticon-file:before {
  content: "\f116";
}

.flaticon-chat:before {
  content: "\f117";
}

.flaticon-up-arrow-1:before {
  content: "\f118";
}

.flaticon-smartphone:before {
  content: "\f119";
}

.flaticon-cloud-computing:before {
  content: "\f11a";
}

.flaticon-login:before {
  content: "\f11b";
}

.flaticon-close:before {
  content: "\f11c";
}

* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body.top {
  transition: 0 !important;
}

body {
  position: static;
  color: #3E3E3E;
}
@media only screen and (max-width: 768px) {
  body {
    overflow: auto;
    position: relative;
  }
}

body.fixed {
  overflow: hidden scroll;
  position: fixed;
}

main {
  padding-top: 100px;
}

main.blur {
  filter: blur(10px);
}

img[src$=".svg"],
img {
  width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

a {
  color: #3E3E3E;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: none !important;
}

a.txtlink {
  color: #FEE200;
}
a.txtlink:hover {
  text-decoration: underline;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.hi .image,
.hi .photo,
.hi .images {
  overflow: hidden;
}
.hi .image img,
.hi .photo img,
.hi .images img {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.hi:hover .image img {
  transform: scale(1.05);
}

.tate {
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 768px) {
  .tate {
    writing-mode: horizontal-tb;
  }
}

.tatete {
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

ul,
li {
  list-style: none;
}

ul.normal_list {
  margin: 0;
  padding: 0 0 0 1em;
}
ul.normal_list li {
  padding: 0 0 0 0;
  margin: 0 0 0 0.3em;
  position: relative;
  list-style-type: disc;
  line-height: 1.5;
}
section.visual_header {
  min-height: 500px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  section.visual_header {
    min-height: 300px;
  }
}
section.visual_header.ov::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(62, 62, 62, 0.4);
  z-index: 1;
}
section.visual_header .title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: left;
  width: 100%;
  padding: 0 0 0 5vw;
  max-width: 1400px;
  margin: auto;
}
section.visual_header .title h1 {
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  section.visual_header .title h1 {
    font-size: 2.4rem;
    white-space: nowrap;
  }
}
section.visual_header .title.center {
  text-align: center;
  padding: 0 5vw;
}
section.visual_header.wb {
  background: url("/company/recruitment/assets/img/hvisual-assets/wb.jpg") center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  section.visual_header.wb {
    background: url("/company/recruitment/assets/img/hvisual-assets/wb_sp.jpg") center center;
    background-size: cover;
  }
}
section.visual_header.wb .title {
  color: #ffffff;
}
section.visual_header.hr {
  background: url("/company/recruitment/assets/img/hr/visual.jpg") center center;
  background-size: cover;
}
section.visual_header.hr .title {
  color: #ffffff;
}
section.visual_header.training {
  background: url("/company/recruitment/assets/img/hvisual-assets/training.jpg") center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  section.visual_header.training {
    background: url("/company/recruitment/assets/img/hvisual-assets/training_sp.jpg") center center;
    background-size: cover;
  }
}
section.visual_header.training .title {
  color: #ffffff;
}

section.novisual_header .inner {
  padding: 0 3vw;
}
section.novisual_header .title {
  text-align: center;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  section.novisual_header .title {
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 768px) {
  section.novisual_header .title p.en {
    font-size: 1.2rem;
  }
}
section.novisual_header .title h1 {
  font-size: 3.6rem;
  line-height: 1.6;
  margin: 2rem 0;
}
@media only screen and (max-width: 768px) {
  section.novisual_header .title h1 {
    font-size: 2rem;
    margin: 1rem 0;
  }
}
@media only screen and (max-width: 768px) {
  section.novisual_header .lead {
    padding: 0 8vw;
    text-align: left;
  }
  section.novisual_header .lead br {
    display: none;
  }
}

section.normal_cont {
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  section.normal_cont {
    padding: 5rem 0;
  }
}
section.normal_cont .inner {
  padding: 0 3vw;
  max-width: 1200px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  section.normal_cont .inner {
    padding: 0 8vw;
  }
}
section.normal_cont h2 {
  font-size: 2.8rem;
  margin: 0 0 5rem 0;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  padding: 0 0 1rem 0;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  section.normal_cont h2 {
    font-size: 1.6rem;
    margin: 0 0 2rem 0;
  }
  section.normal_cont h2 span {
    flex: 1;
    display: block;
  }
}
section.normal_cont h2::before {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  background: #FEE200;
  margin: 0 2rem 0 0;
}
section.normal_cont .cont_block {
  margin: 0 0 15rem 0;
}
@media only screen and (max-width: 768px) {
  section.normal_cont .cont_block {
    margin: 0 0 3rem 0;
  }
}
section.normal_cont h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  section.normal_cont h3 {
    font-size: 1.6rem;
  }
}
section.normal_cont h3:before {
  content: "";
  width: 1em;
  height: 1px;
  background: #000;
  margin: 0 1rem 0 0;
  display: block;
}

.js-v-modal-bg {
  z-index: 9998 !important;
}

.js-v-modal__content {
  z-index: 9999 !important;
}

#related {
  background: #F5F5F5;
  border-top: 1px solid #333;
}
#related.index {
  background: none;
  border-top: none;
}
@media only screen and (max-width: 768px) {
  #related.index {
    display: block;
  }
}
#related.index .inner {
  padding: 0 8vw;
  margin: 0 auto 8vw auto;
}
#related.index .inner .related_flex {
  flex-wrap: wrap;
}
#related.index .inner .related_flex .box {
  width: 30%;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  #related.index .inner .related_flex .box {
    width: 100%;
  }
}
#related.index .inner .related_flex .box p.jp {
  font-size: 1.6rem;
}
#related .inner {
  padding: 8vw;
  max-width: 1400px;
  margin: auto;
}
#related .inner .title {
  text-align: center;
  margin: 0 0 5rem 0;
}
#related .inner .title p.en {
  font-weight: 500;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #related .inner .title p.en {
    font-size: 1.2rem;
  }
}
#related .inner .title p.jp {
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #related .inner .title p.jp {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  #related .inner .title {
    margin: 0 0 2rem 0;
  }
}
#related .inner .related_flex {
  display: flex;
  justify-content: space-between;
  margin: auto;
  flex-wrap: wrap;
}
#related .inner .related_flex .lead {
  padding: 2rem 0 0 0;
  font-size: 2.4rem;
  position: relative;
}
#related .inner .related_flex .lead:before {
  content: "";
  width: 10rem;
  height: 1px;
  display: block;
  background: #ccc;
  margin: 1rem 0;
}
#related .inner .related_flex.one {
  justify-content: center;
}
#related .inner .related_flex.two {
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #related .inner .related_flex.two {
    justify-content: space-between;
  }
}
#related .inner .related_flex.two .box {
  margin: 0 1.5%;
}
@media only screen and (max-width: 768px) {
  #related .inner .related_flex.two .box {
    margin: 0 0 2rem 0;
  }
}
#related .inner .related_flex .box {
  width: 30%;
  position: relative;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  #related .inner .related_flex .box {
    width: 48%;
    margin: 0 0 2rem 0;
  }
}
#related .inner .related_flex .box.coming {
  display: none !important;
}
#related .inner .related_flex .box.coming.comings {
  display: block !important;
}
#related .inner .related_flex .box.coming a {
  cursor: default;
}
#related .inner .related_flex .box.coming .image {
  position: relative;
}
#related .inner .related_flex .box.coming .image:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 30;
  background: rgba(0, 0, 0, 0.5);
}
#related .inner .related_flex .box.dummy {
  display: none;
}
#related .inner .related_flex .box a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 30;
}
#related .inner .related_flex .box .image {
  margin: 0 0 1rem 0;
}
#related .inner .related_flex .box p.en {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
#related .inner .related_flex .box p.en:before {
  content: "";
  width: 1rem;
  height: 1px;
  display: block;
  background: #000;
  margin: 0 1rem 0 0;
}
#related .inner .related_flex .box p.jp {
  line-height: 1.2;
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #related .inner .related_flex .box p.jp {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.full_visual_header {
  position: relative;
}
.full_visual_header .image {
  position: relative;
}
.full_visual_header .image:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.25);
}
.full_visual_header .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 100;
  text-align: center;
  color: #ffffff;
}
.full_visual_header .title h1 {
  font-size: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .full_visual_header .title h1 {
    font-size: 2rem;
    white-space: nowrap;
  }
}

.normal_lead {
  text-align: center;
  padding: 5rem 0 0 0;
  font-weight: 500;
}

#pan {
  padding: 2rem 3vw;
  background: #fafafa;
  position: relative;
}
#pan.top {
  position: absolute;
  background: none;
  top: 0;
  left: 0;
  color: #ffffff;
}
#pan.top ul li a,
#pan.top ul li p {
  color: #ffffff;
}
#pan.top ul li a:hover,
#pan.top ul li p:hover {
  color: #ffffff;
}
#pan.under {
  position: absolute;
  background: none;
  top: 10rem;
  left: 0;
  color: #ffffff;
  z-index: 2;
}
#pan.under ul li a,
#pan.under ul li p {
  color: #ffffff;
}
#pan.under ul li a:hover,
#pan.under ul li p:hover {
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  #pan {
    display: none;
  }
}
#pan ul {
  display: flex;
}
#pan ul li {
  position: relative;
  margin: 0 1rem 0 0;
  font-size: 1.2rem;
}
#pan ul li:last-child:after {
  display: none;
}
#pan ul li a {
  display: inline-block;
  padding: 0 2rem 0 0;
}
#pan ul li a:hover {
  text-decoration: underline;
}
#pan ul li p {
  padding: 0 2rem 0 0;
}
#pan ul li:after {
  position: absolute;
  font-family: "Flaticon";
  top: 50%;
  right: 0rem;
  line-height: 1;
  content: "\f101";
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 999;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(-50%);
  display: block;
}

section.novisual_header {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  section.novisual_header {
    padding: 3rem 0 0 0;
  }
}
section.novisual_header h1 {
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  section.novisual_header h1 {
    font-size: 2.4rem;
  }
}
section.novisual_header .inner {
  padding: 0 3vw;
}
section.novisual_header.bg {
  background: #efefef;
  padding: 10rem 0;
}
section.novisual_header .title {
  text-align: center;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  section.novisual_header .title {
    padding: 3rem 0;
  }
}
section.novisual_header .title h1 {
  font-size: 3rem;
}
section.novisual_header.nom .title {
  padding: 5rem 0 0 0;
}

.spdetail {
  margin: 0 0 1rem 0;
}

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}