@charset "UTF-8";
.tatete {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-orientation: upright;
}

.hogehoge {
  padding-top: clamp(20px, 5.3333333333vw, 40.96px);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hogehoge {
    padding-top: clamp(60px, 7.8125vw, 80px);
  }
}
@media only screen and (min-width: 1025px) {
  .hogehoge {
    padding-top: clamp(76.8px, 7.5vw, 120px);
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 80%;
  }
}

:root {
  /* Base font size */
  --font-size-base: 12px;
  /* Type scale tokens */
  --font-size-3xs: clamp(calc(var(--font-size-base) * 0.25), calc(var(--font-size-base) * 0.128 + 0.543vw), calc(var(--font-size-base) * 0.563));
  --line-height-3xs: 1.8;
  --font-size-xs: clamp(calc(var(--font-size-base) * 0.313), calc(var(--font-size-base) * 0.117 + 0.87vw), calc(var(--font-size-base) * 0.813));
  --line-height-xs: 1.8;
  --font-size-s: clamp(calc(var(--font-size-base) * 0.438), calc(var(--font-size-base) * 0.193 + 1.087vw), calc(var(--font-size-base) * 1.063));
  --line-height-s: 1.8;
  --font-size-r: clamp(calc(var(--font-size-base) * 0.688), calc(var(--font-size-base) * 0.443 + 1.087vw), calc(var(--font-size-base) * 1.313));
  --line-height-r: 1.8;
  --font-size-m: clamp(calc(var(--font-size-base) * 0.813), calc(var(--font-size-base) * 0.397 + 1.848vw), calc(var(--font-size-base) * 1.875));
  --line-height-m: 1.7;
  --font-size-l: clamp(calc(var(--font-size-base) * 1.063), calc(var(--font-size-base) * 0.5 + 2.4vw), calc(var(--font-size-base) * 2.5));
  --line-height-l: 1.5;
  --font-size-xl: clamp(calc(var(--font-size-base) * 1.438), calc(var(--font-size-base) * 0.704 + 3vw), calc(var(--font-size-base) * 3.313));
  --line-height-xl: 1.4;
}

@media screen and (max-width: 767px) {
  :root {
    --font-size-base: 22px;
  }
}
/* Utility classes */
.text-3xs {
  font-size: var(--font-size-3xs);
  line-height: var(--line-height-3xs);
}

.text-xs {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
}

.text-s {
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
}

.text-r {
  font-size: var(--font-size-r);
  line-height: var(--line-height-r);
}

.text-m, h3 {
  font-size: var(--font-size-m);
  line-height: var(--line-height-m);
}

.text-l, h2 {
  font-size: var(--font-size-l);
  line-height: var(--line-height-l);
}
@media screen and (max-width: 767px) {
  .text-l, h2 {
    font-size: 1.4rem;
  }
}

.text-xl, h1 {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
}
@media screen and (max-width: 767px) {
  .text-xl, h1 {
    font-size: 1.6rem;
  }
}

body {
  color: #1d1d1d;
  font-family: "Noto Serif JP", serif;
  font-size: var(--font-size-r);
  line-height: var(--line-height-r);
  font-weight: 400;
}

.gothic {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

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

.round {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio, input):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  text-spacing-trim: trim-start;
  text-autospace: normal;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
  width: 100%;
  vertical-align: top;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

html {
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
}
body.fix {
  overflow: hidden;
}

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

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

img {
  vertical-align: bottom;
  line-height: 1;
  width: 100%;
}

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

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

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

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

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

html.win.gecko .ro, html.win.gecko .la {
  transform: rotate(0.001deg);
}

a, img {
  outline: none !important;
}

a.txtlink {
  text-decoration: underline;
  transition: all 0.3s ease;
}
a.txtlink:hover {
  color: #4CA237;
}

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

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

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

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

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

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

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

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

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

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

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

.adelay10 {
  animation-delay: 1s !important;
}
@media screen and (max-width: 767px) {
  .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 screen and (max-width: 767px) {
  .inview.leftright {
    opacity: 1;
  }
}

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

.inview.rightleft {
  opacity: 0;
}

.inview.rightleft.active {
  animation: rightleft_anim 0.5s ease-out;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 767px) {
  .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);
}

@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 show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#intern_btn {
  opacity: 0;
  transition: none !important;
}

#entry_btn button {
  transition: none !important;
}

body {
  opacity: 0;
  transition: opacity 0.5s ease;
}

html.is-header-ready body {
  opacity: 1;
}
html.is-header-ready #intern_btn {
  opacity: 1;
}
html.is-header-ready body:has(#loading) #intern_btn {
  opacity: 0 !important;
}
html.is-header-ready body.normal #bread,
html.is-header-ready body.visual_on #bread {
  opacity: 1;
}
html.is-header-ready body.normal main,
html.is-header-ready body.visual_on main {
  opacity: 1;
}

body.normal #bread,
body.visual_on #bread {
  opacity: 0;
  transition: all 0.5s ease;
}
body.normal main,
body.visual_on main {
  opacity: 0;
  transition: all 0.5s ease;
}
body.normal header,
body.visual_on header {
  transition: all 0.5s ease;
}

body.visual_on header {
  opacity: 1;
}
body.visual_on #intern_btn {
  opacity: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5000;
  padding: 1rem;
  background: #ffffff;
}
header .white {
  display: block;
}
header .blue {
  display: none;
}
header #logo a {
  display: flex;
  align-items: center;
}
header #logo .image {
  width: 10rem;
}
header #logo .txt {
  font-size: 0.875rem;
  margin: 0 0 0 2rem;
}

#gnav_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
#gnav_wrap .entry_mypage_btn {
  display: block;
  width: 50%;
  margin: 0 0.5rem 0.2rem auto;
}
@media screen and (max-width: 767px) {
  #gnav_wrap .entry_mypage_btn {
    display: none;
  }
}
#gnav_wrap .entry_mypage_btn ul {
  display: flex;
  justify-content: flex-end;
}
#gnav_wrap .entry_mypage_btn ul li {
  align-self: start;
  margin: 0 0.3rem 0 0;
}
#gnav_wrap .entry_mypage_btn ul li a {
  padding: 0 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #gnav_wrap .entry_mypage_btn ul li a {
    font-size: 1rem;
    padding: 1rem 0;
  }
}
@media screen and (max-width: 1000px) {
  #gnav_wrap .entry_mypage_btn ul li a {
    line-height: 1.1;
    padding: 6px 15px;
  }
  #gnav_wrap .entry_mypage_btn ul li a span {
    display: block;
  }
}
#gnav_wrap .gran_in {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 0 0 auto;
}

#gnav {
  flex: 1;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1000px) {
  #gnav {
    display: none;
  }
}
#gnav ul {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  #gnav ul {
    display: none;
  }
}
#gnav ul li {
  margin: 0 2vw 0 0;
  position: relative;
}
#gnav ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#gnav ul li:hover .dropdown a::before {
  display: none;
}
#gnav ul li a {
  font-size: clamp(0.65rem, 1.2vw, 0.95rem);
  line-height: var(--line-height-s);
  font-weight: 500;
  position: relative;
  display: block;
}
#gnav ul li a.coming {
  opacity: 0.5;
  cursor: default;
}
#gnav ul li a.coming::before {
  display: none !important;
}
#gnav ul li a.coming:hover {
  background: #ffffff;
  color: #1d1d1d;
}
#gnav ul li a::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
  /*変形の時間*/
}
@media screen and (max-width: 767px) {
  #gnav ul li a::before {
    display: none !important;
  }
}
#gnav ul li a:hover::before {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top;
  /*左から右に向かう*/
}
#gnav ul li .dropdown {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: -1rem;
  background: #fff;
  min-width: 220px;
  padding: 0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 4px;
}
#gnav ul li .dropdown::before {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: 0;
  width: 100%;
  height: 1.2rem;
  background: transparent;
}
#gnav ul li .dropdown li {
  margin: 0;
  width: 100%;
}
#gnav ul li .dropdown li a {
  color: #1d1d1d;
  font-size: 0.85rem;
  padding: 0.8rem 1.5rem;
  display: block;
  font-weight: 400;
  white-space: nowrap;
}
#gnav ul li .dropdown li a.coming {
  opacity: 0.5;
  cursor: default;
}
#gnav ul li .dropdown li a.coming::before {
  display: none !important;
}
#gnav ul li .dropdown li a.coming:hover {
  background: #ffffff;
  color: #1d1d1d;
}
#gnav ul li .dropdown li a.outer_link:hover::after {
  color: #ffffff;
}
#gnav ul li .dropdown li a::before {
  background: #1d1d1d;
  bottom: 0;
}
#gnav ul li .dropdown li a:hover {
  background: #1d1d1d;
  color: #ffffff;
}

.sns_link {
  margin-inline: 3%;
}
.sns_link ul li a {
  display: block;
  height: 1rem;
  line-height: 0;
}
.sns_link ul li a img {
  width: 25px;
  height: 25px;
}

#sp_menu {
  display: block;
  position: relative;
  width: 3rem;
  height: 2.8rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  background: #333;
}
#sp_menu span {
  position: absolute;
  background-color: #fff;
  height: 1px;
  width: calc(100% - 2rem);
  transition: all 0.4s ease-in-out;
  transition: all 0.3s ease;
  transform-origin: center center;
  margin: auto;
}
#sp_menu:hover, #sp_menu.active {
  background: #1d1d1d !important;
}
#sp_menu:hover span, #sp_menu.active span {
  width: calc(100% - 2rem);
}
#sp_menu:hover span, #sp_menu.active span {
  background: #ffffff !important;
}

#sp_menu span:nth-of-type(1) {
  top: 1rem;
}

#sp_menu span:nth-of-type(2) {
  bottom: 1.35rem;
}

#sp_menu span:nth-of-type(3) {
  bottom: 1rem;
}

/* クリック時に横アイコンが斜めになる */
#sp_menu.active span:nth-of-type(1) {
  transform: translateY(0.35rem) rotate(-30deg);
}

#sp_menu.active span:nth-of-type(2) {
  opacity: 0;
}

#sp_menu.active span:nth-of-type(3) {
  transform: translateY(-0.4rem) rotate(30deg);
}

#overlay_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  z-index: 8000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-size: cover;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  visibility: visible;
  color: #000;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  #overlay_menu {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    margin: 4.6rem 0 0 0;
    padding: 3rem 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  #overlay_menu .inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 0 5vw 10vw 5vw;
    overflow: hidden;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
  }
}
#overlay_menu #top_entry_btnss {
  margin: 2rem 0;
  position: static;
}
@media screen and (max-width: 767px) {
  #overlay_menu #top_entry_btnss {
    margin: 3rem 0 0 0;
  }
}
#overlay_menu #top_entry_btnss a {
  background: #1d1d1d;
  color: #ffffff;
  text-align: left;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
  margin: 0 0 0.1rem 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #overlay_menu #top_entry_btnss a {
    margin: 0 0 1px 0;
  }
}
#overlay_menu #top_entry_btnss a .icon {
  border-left: 1px solid #ffffff;
}
#overlay_menu #top_entry_btnss a .icon svg {
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  margin: 0 0 0 1rem;
  transition: all 0.3s ease;
}
#overlay_menu #top_entry_btnss a::before {
  display: none;
}
#overlay_menu #top_entry_btnss a:hover {
  background: #023C77;
}
#overlay_menu #top_entry_btnss a:hover .icon svg {
  transform: translateX(4px);
}
#overlay_menu .over_header {
  margin: 0 0 2rem 14vw;
  border-bottom: 1px solid #ccc;
  padding: 2rem 0 1rem 0;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  #overlay_menu .over_header {
    display: none;
  }
}
#overlay_menu .over_header p.navcopy {
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin: 0 3rem 0 0;
}
#overlay_menu .footer_inner {
  width: 100%;
  display: grid;
  grid-template-columns: 5fr 1fr;
  gap: 1rem;
  color: #000;
  padding: 0 5vw;
}
@media screen and (max-width: 767px) {
  #overlay_menu .footer_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 0 5vw 0;
    flex: 1;
    z-index: 9999;
  }
}
#overlay_menu .footer_inner .left {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  #overlay_menu .footer_inner .left {
    display: block;
    padding: 0 0 7rem 0;
    width: 100%;
  }
  #overlay_menu .footer_inner .left #logos {
    margin: 0 !important;
  }
  #overlay_menu .footer_inner .left #logos .image {
    width: 12rem !important;
  }
  #overlay_menu .footer_inner .left #logos .txt {
    font-size: 0.875rem;
  }
  #overlay_menu .footer_inner .left .outer_links,
  #overlay_menu .footer_inner .left .sns_inner {
    display: none !important;
  }
}
#overlay_menu .footer_inner a::before {
  background: #000;
}
#overlay_menu .footer_inner .right {
  padding: 0 0 0 9vw;
}
#overlay_menu .footer_inner .right .icon {
  display: none !important;
}
@media screen and (max-width: 767px) {
  #overlay_menu .footer_inner .right {
    width: 100%;
    padding: 0 1rem 0 1rem;
    margin: 0;
    gap: 2rem;
    display: block;
  }
  #overlay_menu .footer_inner .right .icon {
    display: inline-block !important;
  }
  #overlay_menu .footer_inner .right .box {
    margin: 0 !important;
    padding: 0 0 1rem 0;
  }
  #overlay_menu .footer_inner .right .box ul {
    display: none;
    margin: 0 !important;
  }
  #overlay_menu .footer_inner .right .box ul li {
    margin: 0 !important;
  }
  #overlay_menu .footer_inner .right .box ul li:first-child {
    padding: 1rem 0 0 0;
  }
  #overlay_menu .footer_inner .right .box ul li a {
    display: block;
    font-size: 1rem;
    padding: 0.5rem 0;
    margin: 0 !important;
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    position: relative;
    align-items: center;
    transition: none;
  }
  #overlay_menu .footer_inner .right .box ul li a:after {
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    color: #555;
    display: block;
    font-size: 1.2rem;
    margin: 0 0.5rem 0 0;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m10 17l5-5l-5-5'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #overlay_menu .footer_inner .right .box ul li a {
    font-size: 1.1rem;
    font-weight: 500;
  }
  #overlay_menu .footer_inner .right .box ul li a .icon {
    margin: 0 0.5rem 0 0;
    color: #555;
  }
}
#overlay_menu .footer_inner .right .title {
  border-bottom: 1px dotted #1d1d1d;
  font-weight: 500;
  padding: 0 0.1rem 0.1rem 0;
}
#overlay_menu .footer_inner .right .title.noaccordion {
  border-bottom: none;
}
#overlay_menu .footer_inner .right .title .icon {
  display: none;
}
@media screen and (max-width: 767px) {
  #overlay_menu .footer_inner .right .title {
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(29, 29, 29, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 !important;
    transition: none;
    padding: 0 0 1rem 0;
  }
  #overlay_menu .footer_inner .right .title.active {
    color: #1d1d1d;
  }
  #overlay_menu .footer_inner .right .title.active .icon {
    transform: rotate(135deg);
    background: #1d1d1d;
    color: #ffffff;
  }
  #overlay_menu .footer_inner .right .title .icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #ffffff;
    color: #1d1d1d;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    transition: all 0.3s ease;
    transform-origin: center center;
    will-change: trasnform;
  }
  #overlay_menu .footer_inner .right .title .icon svg {
    line-height: 1;
    display: inline-block !important;
  }
}
#overlay_menu .sns_inner {
  margin: auto 0 3rem 0;
  width: 100%;
  padding: 0;
}
#overlay_menu .sns_inner a:hover::before {
  display: none;
}

header #sp_menu {
  z-index: 9001;
}

.menuoverlay {
  content: "";
  width: 10vw;
  height: 100%;
  display: block;
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
}
.menuoverlay.is-active {
  animation: fadeInss 0.3s ease-in 0s forwards;
  display: block;
}
@media screen and (max-width: 767px) {
  .menuoverlay.is-active {
    display: none;
  }
}
@keyframes fadeInss {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

footer {
  position: relative;
  z-index: 1000;
  background: #ffffff;
}

.footer_inner {
  display: grid;
  grid-template-columns: 10rem 4fr;
  padding: 8vw 5vw 0 5vw;
}
@media screen and (max-width: 767px) {
  .footer_inner {
    display: block;
  }
}
.footer_inner a {
  position: relative;
  padding: 0 0 0.3rem 0;
}
.footer_inner a.noborder::before {
  display: none !important;
}
.footer_inner a::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
  /*変形の時間*/
}
@media screen and (max-width: 767px) {
  .footer_inner a::before {
    display: none !important;
  }
}
.footer_inner a:hover::before {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top;
  /*左から右に向かう*/
}
.footer_inner .left #logos {
  margin: 0 0 5rem 0;
}
@media screen and (max-width: 767px) {
  .footer_inner .left #logos {
    align-items: flex-start;
    margin-bottom: 2rem;
  }
}
.footer_inner .left #logos .image {
  width: 10rem;
  margin: 0 0 2rem 0;
}
@media screen and (max-width: 767px) {
  .footer_inner .left #logos .image {
    width: 8rem;
  }
}
.footer_inner .left #logos .txt {
  line-height: 1.4;
  margin: 0 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .footer_inner .left #logos .txt {
    white-space: nowrap;
    font-size: 0.8rem;
  }
  .footer_inner .left #logos .txt p {
    margin: 0;
    padding: 0;
    line-height: 1;
  }
}
.footer_inner .left svg {
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
  position: relative;
  font-size: 1em;
  margin: 0rem 0 0 0.4rem;
}
.footer_inner .left .copys {
  letter-spacing: 0.1em;
}
.footer_inner .left .sns_link {
  margin: 2rem 0;
}
.footer_inner .right {
  padding: 0 0 0 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .footer_inner .right {
    display: none;
  }
}
.footer_inner .right .title {
  position: relative;
  margin: 0 0 1rem 0;
  width: 100%;
}
.footer_inner .right .title p {
  width: 100%;
}
.footer_inner .right .title p a {
  display: block;
  font-size: var(--font-size-r);
}
@media screen and (max-width: 767px) {
  .footer_inner .right .title p a {
    font-size: 1.2rem;
  }
}
.footer_inner .right .title .nav-arrow {
  display: none;
  position: absolute;
  top: 20%;
  right: 2%;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #1d1d1d;
  border-right: 1px solid #1d1d1d;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .footer_inner .right .title .nav-arrow {
    display: inline-block;
  }
}
.footer_inner .right .box {
  margin: 0 0 3rem 0;
}
.footer_inner .right .box a {
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
  padding: 0;
  display: inline-block;
  margin: 0 0 0.5rem 0;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: relative;
}
.footer_inner .right .box a::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #1d1d1d;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
  /*変形の時間*/
}
@media screen and (max-width: 767px) {
  .footer_inner .right .box a::before {
    display: none !important;
  }
}
.footer_inner .right .box a.coming {
  opacity: 0.5;
  cursor: default;
}
.footer_inner .right .box a.coming::before {
  display: none !important;
}
.footer_inner .right .box a:hover::before {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top;
  /*左から右に向かう*/
}

#recruit_footer .sns_link ul li {
  height: 1.5rem;
}
@media screen and (max-width: 767px) {
  #recruit_footer .sns_link ul li {
    height: 40px;
  }
}
#recruit_footer .sns_link ul li a {
  height: 100%;
}
@media screen and (max-width: 767px) {
  #recruit_footer .sns_link ul li a {
    height: 40px;
  }
  #recruit_footer .sns_link ul li a img {
    height: 100%;
    width: auto;
  }
}

.sns_link ul {
  display: flex;
}
.sns_link ul li {
  height: 1.5rem;
  width: auto;
  margin: 0 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .sns_link ul li a {
    height: 1.5rem;
  }
}
.sns_link ul li a img {
  height: 100%;
  width: auto;
}

.entry_mypage_btn ul li {
  margin: 0 0 0.5rem 0;
}
.entry_mypage_btn ul li a {
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
  display: block;
  background: #4CA237;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-align: center;
  border-radius: 3px;
}
.entry_mypage_btn ul li a.intern {
  background: #6280A3;
}
@media screen and (max-width: 767px) {
  .entry_mypage_btn ul li a {
    padding: 1rem 0;
    font-size: 1rem;
  }
}

.footer_bottom {
  border-top: 1px solid #eee;
  padding: 2rem 0;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
}
.footer_bottom .inner {
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer_bottom .inner {
    align-items: flex-end;
  }
}
.footer_bottom .cplink ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer_bottom .cplink ul {
    flex-direction: column;
  }
}
.footer_bottom .cplink ul li {
  margin: 0 2rem 0 0;
}
@media screen and (max-width: 767px) {
  .footer_bottom .cplink ul li {
    margin: 0 0 1rem 0;
  }
}
.footer_bottom .cplink ul li a {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.footer_bottom .cplink ul li a:hover {
  opacity: 0.7;
}
.footer_bottom .cplink ul li a::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .footer_bottom .cplink ul li a {
    font-size: 0.8rem;
  }
}
a.outer_link span,
p.outer_link span {
  display: inline-block;
}
a.outer_link span:after,
p.outer_link span:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0 0 0 0.5em;
  vertical-align: middle;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 20h12.23v-9.384H4zm13.23-5.616v-1H20V4H7.77v5.616h-1V3H21v11.385zM3 21V9.616h14.23V21zm7.116-5.692'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

#pagetop {
  position: absolute;
  top: 1rem;
  right: 2rem;
  z-index: 4000;
  text-align: center;
  border-top: 1px solid #999;
  color: #999;
}
#pagetop .icon {
  font-size: 1.5em;
  line-height: 1;
  color: #666;
}
#pagetop p {
  font-size: 0.6rem;
  color: #666;
}
#pagetop:hover .icon {
  color: #1d1d1d;
}
#pagetop:hover p {
  color: #1d1d1d;
}

body {
  overflow-y: auto;
}

main {
  width: 100vw;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  left: 0;
  right: 0;
}
main.bgon {
  background: #F7F7F7;
}
main #sticky_cont {
  overflow-x: visible !important;
  overflow-y: visible !important;
}

body:has(#sticky_cont),
html:has(#sticky_cont) {
  overflow-x: visible !important;
}

main:has(#sticky_cont) {
  overflow-x: visible !important;
}

.hi .image,
.hi .images {
  overflow: hidden !important;
  line-height: 1;
}

.hi .image img,
.hi .images img {
  transition: all 0.5s ease;
  will-change: transform;
}

.hi.slow .image img,
.hi.slow .images img {
  transition: all 1.5s ease;
  will-change: transform;
}

.hi:hover .image img,
.hi:hover .images img {
  transform: scale(1.05);
}

.hi.slow:hover .image img,
.hi.slow:hover .images img {
  transform: scale(1.1);
}

.global-wrapper {
  position: relative;
  z-index: 1;
  padding: 82px 0 0 0;
}
@media screen and (max-width: 767px) {
  .global-wrapper {
    padding: 61px 0 0 0;
  }
}

.fixed_bgimage {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .fixed_bgimage {
    display: none;
  }
}
.fixed_bgimage img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
}
.fixed_bgimage::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

#visual_header {
  position: relative;
  z-index: 100;
  padding: 5rem 0;
}
#visual_header .enbig {
  position: absolute;
  top: 0;
  right: 2rem;
  z-index: 300;
  mix-blend-mode: difference;
  text-align: right;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #visual_header .enbig {
    top: 2vw;
    display: none;
  }
}
#visual_header .enbig p.eng {
  color: #fff;
  font-size: 3rem;
  font-weight: 200;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  #visual_header .enbig p.eng {
    font-size: 6vw;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  #visual_header {
    padding: 0;
  }
}
#visual_header .bg01 {
  content: "";
  display: block;
  position: absolute;
  width: 80%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 0;
  background: rgba(237, 243, 248, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
#visual_header .bg01.white {
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  #visual_header .bg01 {
    display: none;
  }
}
#visual_header.normal .image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}
@media screen and (max-width: 767px) {
  #visual_header.normal .image img {
    height: 160px;
  }
}
#visual_header.normal .bg01 {
  background: #fff;
}
#visual_header.normal .entxt,
#visual_header.normal .jp_txt {
  background: #fff;
}
#visual_header.normal .jp_txt {
  background: #fff;
}
#visual_header.normal .jp_txt:after {
  background: #fff;
}
#visual_header .visual-frame {
  position: relative;
  width: 80vw;
  margin: auto;
  z-index: 5;
  position: relative;
}
#visual_header .image {
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #visual_header .image {
    width: 100%;
  }
}
#visual_header .entxt {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 1rem;
  z-index: 5;
  background: rgba(237, 243, 248, 0.8);
}
@media screen and (max-width: 767px) {
  #visual_header .entxt {
    position: static;
    z-index: 1000;
    background: none;
    margin: 2rem 0 0 0;
    padding: 0 0 0 0;
  }
}
#visual_header .jp_txt {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  line-height: 1;
  z-index: 5;
  padding: 1rem;
}
#visual_header .jp_txt span {
  position: relative;
  display: inline-block;
  z-index: 5;
}
#visual_header .jp_txt:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 0;
  background: rgba(237, 243, 248, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (max-width: 767px) {
  #visual_header .jp_txt {
    position: static;
    width: 100%;
    padding: 0 0 5vw 0;
  }
  #visual_header .jp_txt::after {
    display: none;
  }
}

section.cont {
  padding: 8vw 0;
  position: relative;
}
section.cont.mb {
  margin: 0 0 10rem 0;
}
@media screen and (max-width: 767px) {
  section.cont.mb {
    margin: 0 0 0 0;
  }
}
section.cont.green_bg {
  background: #EDF5ED;
}
section.cont.bgon {
  background: rgba(237, 243, 248, 0.8);
}
section.cont.project {
  margin: 0 0 10rem 0;
}
@media screen and (max-width: 767px) {
  section.cont.project {
    margin: 0 0 1rem 0;
  }
}
section.cont.short .bginner {
  height: 80%;
}
section.cont .bginner {
  display: block;
  position: absolute;
  width: 95%;
  height: calc(100% + 5rem);
  top: 0;
  left: 5%;
  content: "";
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (max-width: 767px) {
  section.cont .bginner {
    display: none;
  }
}
section.cont .bginner.green {
  background: rgba(237, 245, 237, 0.9);
}
section.cont .bginner.right {
  left: 0;
}
section.cont .bginner.center {
  left: 3%;
}
section.cont .bginner.full {
  left: 0;
  width: 100%;
}
section.cont .bginner_right {
  display: block;
  position: absolute;
  width: 95%;
  height: calc(100% + 5rem);
  top: 0;
  right: 5%;
  content: "";
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
section.cont .bginner_right.green {
  background: rgba(237, 245, 237, 0.9);
}
section.cont .cont_inner {
  margin: auto;
  position: relative;
  padding: 0 5vw 0 15vw;
  z-index: 10;
}
section.cont .cont_inner.padd-even {
  padding: 0 8vw;
}
@media screen and (max-width: 767px) {
  section.cont .cont_inner {
    padding: 0 5vw;
  }
}

.under_titles {
  margin: 0 auto 8rem auto;
  position: relative;
  z-index: 4000;
}
@media screen and (max-width: 767px) {
  .under_titles {
    margin: 0 auto 3rem auto;
  }
}
.under_titles .line {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: #4CA237;
  position: absolute;
  top: 3rem;
}
@media screen and (max-width: 767px) {
  .under_titles .line {
    top: 2.6rem;
  }
}
.under_titles p.en {
  padding: 0 0 1rem 0;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .under_titles p.en {
    padding: 0 0 0rem 0;
  }
}
.under_titles h2 {
  padding: 1rem 0 0 0;
  position: relative;
  font-size: var(--font-size-m);
  line-height: var(--line-height-m);
}
.under_titles h2::before {
  content: "";
  width: 50px;
  height: 3px;
  background: #4CA237;
  display: block;
  margin: -1rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .under_titles h2::before {
    margin: -0.51rem 0 0 0;
  }
}

.entry_btn_flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.entry_btn_flex.one {
  grid-template-columns: 1fr;
  justify-items: center;
}
.entry_btn_flex.one > * {
  width: 50%;
}
.entry_btn_flex .box {
  display: flex;
  background: #ffffff;
  align-items: center;
  padding: 1rem;
}
.entry_btn_flex .box .icon {
  width: 3em;
  margin: 0 0rem 0 0;
}
.entry_btn_flex .box p {
  flex: 1;
  color: #4CA237;
  line-height: 1.5;
}

.link_banner a {
  background: #4CA237;
  border-radius: 5px;
  padding: 1rem 0;
  min-height: 5em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .link_banner a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.link_banner a p.small {
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
}
.link_banner a .icon {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
.link_banner a:hover {
  background: #3F932A;
}
.link_banner a:after {
  font-size: 200%;
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  display: inline-block;
  width: 2em;
  height: 2em;
  z-index: 30;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' d='m12 19l7-7l-7-7m7 7H5' stroke-width='1'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  color: #ffffff;
}
.link_banner.blue a {
  background: #6280A3;
}
.link_banner.blue a:hover {
  background: #4b6788;
}

.arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-size: 2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0 0 0;
  background: #000;
  z-index: 200;
  transition: all 0.5s ease;
}
.arrow .icons {
  position: relative;
  width: 4rem;
  height: 4rem;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 300;
}

span.c-icon {
  position: absolute;
  font-size: 2rem;
  display: inline-block;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0, 1, 0.25, 1);
  background: #ffffff;
  color: #ffffff;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  width: 1em;
  height: 1em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' d='m12 19l7-7l-7-7m7 7H5' stroke-width='1'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
span.c-icon.afters {
  transform: translateX(-100%);
  opacity: 0;
  background: #ffffff;
}

a:hover .arrow {
  background: #4CA237;
  transform: scale(1.2);
}
a:hover span.c-icon.befores {
  animation-name: transformRightLeft;
}
a:hover span.c-icon.afters {
  animation-name: transformLeftRight;
  /* 修正: hover時のアニメーションを指定 */
  animation-delay: 0.2s;
}

@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
#sticky_cont {
  margin: 0 auto 10rem;
  padding: 0 8vw;
  display: flex;
  gap: 4rem;
  position: relative;
  overflow: visible;
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  #sticky_cont {
    margin: 0 auto 2rem;
  }
}
#sticky_cont .left {
  width: 12rem;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-start;
}
@media screen and (max-width: 767px) {
  #sticky_cont .left {
    display: none;
  }
}
#sticky_cont .left .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sticky_cont .left .menu ul li {
  margin-bottom: 1rem;
}
#sticky_cont .left .menu ul li a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
  transition: all 0.3s ease;
}
#sticky_cont .left .menu ul li a:hover {
  color: #6280A3;
  border-bottom: 1px solid #6280A3;
}
#sticky_cont .left .menu ul li.active a {
  color: #6280A3;
  border-bottom: 1px solid #6280A3;
}
#sticky_cont .right {
  flex: 1;
}

.matrix_zu {
  position: relative;
  z-index: 1000;
  margin: auto;
  padding: 0 5vw 0 15vw;
}
@media screen and (max-width: 767px) {
  .matrix_zu {
    padding: 0 5vw;
    overflow: hidden;
    width: 100%;
  }
  .matrix_zu .in {
    overflow-x: scroll;
  }
  .matrix_zu .in .ins {
    width: 800px;
  }
}
.matrix_zu svg {
  max-width: 100%;
  height: auto;
}
.matrix_zu .detail {
  font-size: 1rem;
}

.sp_chui {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_chui {
    display: block;
    font-size: 0.775rem;
    margin: 0 0 1rem 0;
    color: #333;
  }
}

/* MicroModal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal.jobmodals .modal__container {
  max-width: 85%;
}
@media screen and (max-width: 767px) {
  .modal.jobmodals .modal__container {
    width: 100%;
  }
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 3rem 1rem;
}

.modal__container {
  padding: 0 8vw;
  max-width: 1200px;
  width: 100%;
  height: auto;
  background-size: cover;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__close {
  content: "";
  display: block;
  position: absolute;
  top: -2rem;
  right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  color: #ffffff;
  z-index: 9001;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .modal__close {
    top: -2.5rem;
    right: 0;
    position: fixed;
  }
}

.modal__content {
  margin-top: 0;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  min-height: 100vh;
  padding: 0 5vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .modal__content {
    padding-bottom: 10rem;
  }
}
.modal__content .in {
  position: relative;
  z-index: 30;
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.8);
}

.modal_conts {
  position: relative;
  z-index: 9000;
  color: #ffffff;
}
.modal_conts .slideshow {
  margin: 0 auto 5rem auto;
  width: 100%;
}
.modal_conts .swiper-main {
  margin-bottom: 1rem;
}
.modal_conts .swiper-main .swiper-wrapper {
  display: flex;
}
.modal_conts .swiper-main .swiper-slide {
  width: 100%;
}
.modal_conts .swiper-main .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal_conts .swiper-thumbs .swiper-wrapper {
  display: flex;
  justify-content: flex-start;
}
.modal_conts .swiper-thumbs .swiper-slide {
  width: 80px !important;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}
.modal_conts .swiper-thumbs .swiper-slide img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  height: 50px;
  width: 80px;
}
.modal_conts .swiper-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.modal_conts .txt {
  margin: 0 0 5rem 0;
}
.modal_conts .txt h2 {
  margin: 0 0 3rem 0;
}
.modal_conts .txt h3 {
  margin: 0 0 1rem 0;
}
.modal_conts .table_cont dl {
  display: flex;
  margin: 0 0 1rem 0;
}
.modal_conts .table_cont dl dt {
  width: 10em;
}
.modal_conts .table_cont dl dd {
  flex: 1;
}

.credit_text {
  font-size: 0.6rem !important;
}
.credit_text.right {
  text-align: right;
}
.credit_text.center {
  text-align: center;
}

.matrix_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  font-family: "Noto Sans JP", sans-serif;
}
.matrix_table thead tr th {
  background-color: #535353;
  color: #fff;
  padding: 12px 4px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  font-size: clamp(0.6em, 1vw, 0.8rem);
  white-space: nowrap;
}
.matrix_table thead tr th.label-cell {
  background-color: transparent;
}
.matrix_table tbody tr td {
  background-color: #f7f7f7;
  text-align: center;
  vertical-align: middle;
  border-radius: 2px;
  width: 10%;
}
.matrix_table tbody tr td.label-cell {
  padding: 12px 16px;
  font-weight: 500;
  vertical-align: middle;
  white-space: nowrap;
  font-size: clamp(0.6em, 1vw, 0.8rem);
}
.matrix_table tbody tr td.label-cell span {
  display: block;
  margin-top: 4px;
}
.matrix_table tbody tr td .matrix-link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  line-height: 1;
  font-family: monospace;
  transition: all 0.2s ease;
  /*
  &::after {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    background-color: currentColor;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  &:hover::after {
    transform: scale(1.2);
  }
  */
}
.matrix_table tbody tr td a.matrix-link:hover {
  transform: scale(1.2);
}
.matrix_table tbody tr.job-row#tr-job01 .matrix-link {
  color: #C74D4D;
}
.matrix_table tbody tr.job-row#tr-job01 .label-cell {
  background-color: #C74D4D;
  color: #fff;
}
.matrix_table tbody tr.job-row#tr-job02 .matrix-link {
  color: #C74D4D;
}
.matrix_table tbody tr.job-row#tr-job02 .label-cell {
  background-color: #C74D4D;
  color: #fff;
}
.matrix_table tbody tr.job-row#tr-job03 .matrix-link {
  color: #C1AA33;
}
.matrix_table tbody tr.job-row#tr-job03 .label-cell {
  background-color: #C1AA33;
  color: #fff;
}
.matrix_table tbody tr.job-row#tr-job04 .matrix-link {
  color: #4378B1;
}
.matrix_table tbody tr.job-row#tr-job04 .label-cell {
  background-color: #4378B1;
  color: #fff;
}
.matrix_table tbody tr.job-row#tr-job05 .matrix-link {
  color: #6EA762;
}
.matrix_table tbody tr.job-row#tr-job05 .label-cell {
  background-color: #6EA762;
  color: #fff;
}
.matrix_table tbody tr.job-row#tr-job06 .matrix-link {
  color: #2F9F9A;
}
.matrix_table tbody tr.job-row#tr-job06 .label-cell {
  background-color: #2F9F9A;
  color: #fff;
}
.matrix_table tbody tr.job-row#tr-job07 .matrix-link {
  color: #D6802C;
}
.matrix_table tbody tr.job-row#tr-job07 .label-cell {
  background-color: #D6802C;
  color: #fff;
}
.matrix_table tbody tr.job-row#tr-job08 .matrix-link {
  color: #857BA8;
}
.matrix_table tbody tr.job-row#tr-job08 .label-cell {
  background-color: #857BA8;
  color: #fff;
}