@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: 14px;
  /* 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: 2;
  --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 + 2vw), 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: #0e0e0e;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: var(--font-size-r);
  line-height: var(--line-height-r);
}

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

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

/***
    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;
}

/* 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%;
}

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: #60C482;
}

* {
  -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;
  }
}
body {
  scrollbar-gutter: stable;
}

header {
  transition: none !important;
}

#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.scroll-in header,
body.normal header,
body.visual_sps header {
  background: #F4F2ED;
}
body.scroll-in header #logo,
body.normal header #logo,
body.visual_sps header #logo {
  color: #333;
}
body.scroll-in header #logo .image.dark,
body.normal header #logo .image.dark,
body.visual_sps header #logo .image.dark {
  display: block;
}
body.scroll-in header #logo .image.white,
body.normal header #logo .image.white,
body.visual_sps header #logo .image.white {
  display: none;
}
body.scroll-in header #logo .txt,
body.normal header #logo .txt,
body.visual_sps header #logo .txt {
  color: #333;
}
@media screen and (max-width: 767px) {
  body.scroll-in header #logo .txt p,
  body.normal header #logo .txt p,
  body.visual_sps header #logo .txt p {
    font-size: 0.875rem !important;
  }
}
body.scroll-in header .sns_link.white,
body.normal header .sns_link.white,
body.visual_sps header .sns_link.white {
  display: none;
}
body.scroll-in header .sns_link.black,
body.normal header .sns_link.black,
body.visual_sps header .sns_link.black {
  display: block;
}
body.scroll-in header #gnav ul li a,
body.normal header #gnav ul li a,
body.visual_sps header #gnav ul li a {
  color: #333;
}
body.scroll-in header #gnav ul li a::before,
body.normal header #gnav ul li a::before,
body.visual_sps header #gnav ul li a::before {
  background: #333;
}

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: 9000;
  padding: 1rem;
}
header .white {
  display: block;
}
header .dark {
  display: none;
}
header #logo a {
  display: flex;
  align-items: center;
}
header #logo .image {
  width: 10rem;
}
header #logo .txt {
  color: #ffffff;
  margin: 0 0 0 2rem;
}

#gnav {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1190px) {
  #gnav {
    display: none;
  }
}
#gnav ul {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  #gnav ul {
    display: none;
  }
}
#gnav ul li {
  margin: 0 1vw 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: var(--font-size-s);
  line-height: var(--line-height-s);
  font-weight: 500;
  position: relative;
  display: block;
  color: #ffffff;
  line-height: 1.5;
  white-space: nowrap;
  font-feature-settings: "palt";
}
#gnav ul li a.coming {
  opacity: 0.8;
  cursor: default;
}
#gnav ul li a.coming::before {
  display: none !important;
}
#gnav ul li a br.bp {
  display: none;
}
@media screen and (max-width: 1350px) {
  #gnav ul li a br.bp {
    display: block;
  }
}
#gnav ul li 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) {
  #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;
  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::before {
  background: #1d1d1d;
  bottom: 0;
}
#gnav ul li .dropdown li a:hover {
  background: #1d1d1d;
  color: #ffffff;
}
@media screen and (max-width: 1200px) {
  #gnav ul li {
    margin-right: 1vw;
  }
}
@media screen and (max-width: 1080px) {
  #gnav {
    display: none;
  }
}

#sp_menu {
  display: block;
  position: relative;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  background: #333;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  #sp_menu {
    width: 3rem;
    height: 3rem;
  }
}
#sp_menu span {
  position: absolute;
  background-color: #fff;
  height: 1px;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease-in-out;
  transition: all 0.3s ease;
  transform-origin: center center;
}
@media screen and (max-width: 767px) {
  #sp_menu span {
    height: 0.8px;
    width: calc(100% - 1.5rem);
  }
}
#sp_menu:hover, #sp_menu.active {
  background: #1d1d1d !important;
}
#sp_menu:hover span, #sp_menu.active span {
  background: #ffffff !important;
}

#sp_menu span:nth-of-type(1) {
  top: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sp_menu span:nth-of-type(1) {
    top: calc(1rem - 1px);
  }
}

#sp_menu span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

#sp_menu span:nth-of-type(3) {
  bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sp_menu span:nth-of-type(3) {
    bottom: 1rem;
  }
}

/* クリック時に横アイコンが斜めになる */
#sp_menu.active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

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

#sp_menu.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

#overlay_menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(229, 228, 219, 0.8);
  z-index: 8000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-size: cover;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  visibility: visible;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  color: #000;
}
@media screen and (max-width: 767px) {
  #overlay_menu {
    top: 65px;
    padding: 5vw 0 0 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
  }
}
#overlay_menu.active {
  pointer-events: auto;
}
#overlay_menu .inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 5vw;
}
@media screen and (max-width: 767px) {
  #overlay_menu .inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 0 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 {
  border-bottom: 1px solid #333;
  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 {
  letter-spacing: 0.4em;
  margin: 0 3rem 0 0;
}
#overlay_menu .footer_inner {
  width: 100%;
  display: block;
  color: #000;
  padding: 0;
  min-width: 80vw;
}
@media screen and (max-width: 767px) {
  #overlay_menu .footer_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 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: 5vw 0 0 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 .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 {
  width: 100%;
  padding: 0;
  grid-template-columns: 1fr 1fr;
}
#overlay_menu .footer_inner .right .icon {
  display: none !important;
}
#overlay_menu .footer_inner .right .box {
  margin: 0 0 2rem 0;
}
#overlay_menu .footer_inner .right .box ul li a {
  padding: 0;
}
@media screen and (max-width: 767px) {
  #overlay_menu .footer_inner .right {
    width: 100%;
    padding: 0 1rem 10rem 1rem;
    margin: 0;
    gap: 2rem;
    display: block;
    flex: 1;
    padding-bottom: 20rem;
  }
  #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;
    padding: 0.5rem 0;
    margin: 0 !important;
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    position: relative;
    align-items: center;
    transition: none;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #overlay_menu .footer_inner .right .box ul li a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  #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-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 .icon {
  display: none;
}
@media screen and (max-width: 767px) {
  #overlay_menu .footer_inner .right .title {
    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;
}
header .sns_link {
  margin-right: 1rem;
}
@media screen and (max-width: 1190px) {
  header .sns_link {
    margin-left: auto;
  }
}
header .sns_link.white {
  display: block;
}
header .sns_link.black {
  display: none;
}
header .sns_link ul {
  display: block;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 1000px) {
  header .sns_link ul {
    flex-direction: row;
    gap: 15px;
  }
}
header .sns_link ul li {
  text-align: center;
  margin: 0;
  line-height: 0;
}
header .sns_link ul li img {
  vertical-align: initial;
}
@media screen and (max-width: 767px) {
  header .sns_link ul li:first-child {
    margin: auto;
  }
}

footer {
  width: 100vw;
  position: relative;
  z-index: 1000;
  background: #F4F3EF;
  background-size: 100%;
}

.wavy {
  transform: translateY(-79%);
}

.footer_inner {
  display: grid;
  grid-template-columns: 1fr 4fr;
  padding: 0 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::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  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;
  }
  .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;
  white-space: nowrap;
  font-feature-settings: "palt";
}
.footer_inner .left .sns_link {
  margin: 2rem 0;
}
.footer_inner .right {
  padding: 0 0 0 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
@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;
}
.footer_inner .right .title p a.nolink {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}
.footer_inner .right .title p a.coming {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
  opacity: 0.5;
}
.footer_inner .right .title p a small {
  font-size: 0.6em;
  margin-left: 0.2em;
}
.footer_inner .right .title .nav-arrow {
  display: none;
  position: absolute;
  top: 20%;
  right: 2%;
  width: 1.2rem;
  height: 1.2rem;
  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 ul li a {
  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;
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
}
.footer_inner .right .box ul li 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 ul li a::before {
    display: none !important;
  }
}
.footer_inner .right .box ul li a.coming {
  opacity: 0.5;
  cursor: default;
}
.footer_inner .right .box ul li a.coming::before {
  display: none !important;
}
.footer_inner .right .box ul li a:hover::before {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top;
  /*左から右に向かう*/
}

.sns_link ul {
  display: flex;
}
.sns_link ul li {
  height: 1.2rem;
  width: auto;
  margin: 0 1rem 0 0;
}
.sns_link ul li img {
  height: 100%;
  width: auto;
}

.entry_mypage_btn ul li {
  margin: 0 0 0.5rem 0;
}
.entry_mypage_btn ul li a {
  display: block;
  background: #60C482;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-align: center;
  border-radius: 3px;
}
.entry_mypage_btn ul li a.intern {
  background: #6280A3;
}

.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;
}
.footer_bottom .cplink ul li::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .footer_bottom .cplink ul li {
    font-size: 0.8rem;
  }
}
a.outer_link span:after,
p.outer_link span:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("/recruit/mid-career/assets/image/common/blank_icon.svg") no-repeat bottom right;
  position: relative;
  margin: 0.3em 0 0 0.3em;
}

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

body.bgon {
  background: #F4F2ED;
}

main {
  width: 100vw;
  overflow: hidden;
}
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);
}

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 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;
  }
}
#visual_header {
  padding: 8vw 8vw 0 8vw;
}
#visual_header.voice {
  background: url("/recruit/mid-career/assets/image/voice/visual_bg.png") no-repeat;
  background-size: cover;
}
#visual_header.voice.faq {
  margin: 0 0 5rem 0;
}
@media screen and (max-width: 767px) {
  #visual_header.voice.faq {
    padding-top: 6rem;
  }
}
#visual_header.project {
  background: url("/recruit/mid-career/assets/image/project/index/visual_bg.png") no-repeat;
  background-size: cover;
}
#visual_header.faq {
  background: url("/recruit/mid-career/assets/image/faq/visualbg.png") no-repeat;
  background-size: cover;
}
#visual_header.kubun {
  background: url("/recruit/mid-career/assets/image/kubun/visualbg.png") no-repeat;
  background-size: cover;
}
#visual_header.saiyou {
  background: url("/recruit/mid-career/assets/image/career/visualbg.png") no-repeat;
  background-size: cover;
}
#visual_header.single .in_flex {
  display: block;
  position: relative;
}
#visual_header.single .in_flex .txt {
  width: 100%;
  position: relative;
  z-index: 3;
}
#visual_header.single .in_flex .txt .jp_title {
  margin: 0 0 0 0;
}
#visual_header.single .in_flex .image {
  margin: -18vw auto 10vw auto;
  width: 70%;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  #visual_header.single .in_flex .image {
    margin: -5vw auto 5vw auto;
  }
}
#visual_header.single .in_flex .image.narrow {
  width: 50%;
}
#visual_header.single .in_flex .image.right {
  width: 60%;
  margin: -18vw 0 0vw auto;
}
#visual_header .in_flex {
  display: flex;
  justify-content: space-between;
  z-index: 30;
}
@media screen and (max-width: 767px) {
  #visual_header .in_flex {
    display: block;
  }
}
#visual_header .in_flex .txt {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #visual_header .in_flex .txt {
    width: 100%;
  }
}
#visual_header .in_flex .txt .entitle {
  font-size: 6rem;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #visual_header .in_flex .txt .entitle {
    color: #60C482;
    line-height: 1.2;
    margin: 0 0 1rem 0;
  }
}
#visual_header .in_flex .txt .jp_title {
  margin: 0 0 4rem 0;
}
@media screen and (max-width: 767px) {
  #visual_header .in_flex .txt .jp_title {
    margin: 0 0 2rem 0;
  }
}
#visual_header .in_flex .image {
  width: 48%;
  padding: 8vw 0 0 0;
}
@media screen and (max-width: 767px) {
  #visual_header .in_flex .image {
    padding: 3rem 0 0 0;
    width: 70%;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  #visual_header {
    margin: 76px 0 0 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: #60C482;
  border-bottom: 1px solid #60C482;
}
#sticky_cont .left .menu ul li.active a {
  color: #60C482;
  border-bottom: 1px solid #60C482;
}
#sticky_cont .right {
  flex: 1;
}