@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
.entxt {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}

.entxt_inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.entxt_track {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

.entxt_track p {
  flex: 0 0 auto;
  margin: 0;
}

.fonts-loaded .entxt {
  visibility: visible;
}

/***
    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, select):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%;
}

/* 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 {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.168rem + 0.3vw, 1.6rem);
  line-height: 1.75;
  font-weight: 400;
  background-color: #f2f0ea;
  position: relative;
}
body.menu-open {
  overflow: hidden;
}
body .coming {
  pointer-events: none;
  opacity: 0.5;
}

.en {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

a {
  transition: all 0.3s ease;
}

a img {
  transition: all 0.3s ease;
}

a:hover {
  color: #000;
}

.inview {
  opacity: 0;
}

.inviewwrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.inview.active {
  animation: fadeInup 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.noanimation {
  opacity: 1;
  animation: none;
}

.inview.active.left {
  animation: fadeInLeft 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.fade.active {
  animation: fadeIn 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease-in;
  transition-delay: 0.3s;
  opacity: 1;
}

.inview.active.clip {
  clip-path: inset(0 0 0 0);
  animation: none;
}

.inview.clip.delay01 {
  transition-delay: 0.6s;
}

.inview.clip.delay02 {
  transition-delay: 0.9s;
}

.inview.open {
  overflow: hidden;
  opacity: 0;
  clip-path: inset(50% 50% 50% 50%);
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.inview.open img {
  display: block;
  width: 100%;
  height: auto;
}

.inview.active.open {
  opacity: 1;
  clip-path: inset(0% 0% 0% 0%);
  animation: none;
}

.inview.open.delay01 {
  transition-delay: 0.6s;
}

.inview.open.delay02 {
  transition-delay: 0.9s;
}

.inview.open.delay03 {
  transition-delay: 1.2s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.delay01 {
  animation-delay: 0.3s !important;
}

.delay02 {
  animation-delay: 0.6s !important;
}

.delay03 {
  animation-delay: 0.9s !important;
}

._spShowImportant {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .inviewwrap {
    position: static;
  }
  ._pcShowImportant {
    display: none !important;
  }
  ._spShowImportant {
    display: block !important;
  }
}
a.zoom {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 0;
  border-radius: 6px;
}
a.zoom img {
  transform-origin: center;
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

a.zoom:hover img,
a:hover .zoom img {
  transform: scale(1.05);
  opacity: 1;
}

a.blank[target=_blank]::after {
  right: 12px;
  content: "";
  background: url(//company/jp/recruit/career/assets/image/blank.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 14px;
  height: auto;
  border: none;
  transform: none;
  margin-left: 5px;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
main.no-hp {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 70px;
  }
  main p {
    font-size: 1.5rem;
  }
}
main #breadcrumb {
  position: absolute;
  padding: 20px 45px;
  z-index: 2;
}
main #breadcrumb ul {
  display: flex;
}
main #breadcrumb ul li::after {
  content: ">";
  margin: 0 1ex;
}
main #breadcrumb ul li:last-child::after {
  content: "";
}
main #breadcrumb.white {
  color: #fff;
}
main .round {
  line-height: 0;
  overflow: hidden;
  border-radius: 10px;
}
main .round-arrow-btn {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 68px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 32px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  main .round-arrow-btn {
    width: 46px;
    height: 46px;
  }
}
main .round-arrow-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background-color: #000;
  transform: translate(-50%, -50%);
}
main .round-arrow-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: translate(-50%, -50%) rotate(45deg);
}
main a:hover .round-arrow-btn {
  background-color: #000;
}
main a:hover .round-arrow-btn::before {
  background-color: #fff;
}
main a:hover .round-arrow-btn::after {
  border-color: #fff;
}

/* HEADER
================================================== */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 500;
  transition: all 0.2s ease;
  padding: 0 0 0 5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  #header {
    padding-right: 0;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  #header {
    display: flex;
    height: 70px;
    padding-left: 0;
  }
}
#header .header-layout-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  z-index: 200;
}
@media screen and (max-width: 970px) {
  #header .header-layout-main {
    padding-block: 0;
  }
}
@media screen and (max-width: 767px) {
  #header .header-layout-main {
    padding: 0 10px 0 0;
  }
}
#header .header-layout-main .header-logo {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-right: 25px;
  width: 238px;
  background: #F1F0EA;
  padding: 2rem;
  border-radius: 0 0 3rem 0;
}
@media screen and (max-width: 767px) {
  #header .header-layout-main .header-logo {
    width: 160px;
  }
}
#header .header-layout-main .header-logo .image {
  display: inline-block;
  line-height: 1;
  max-width: 200px;
  width: 140px;
}
@media screen and (max-width: 767px) {
  #header .header-layout-main .header-logo .image {
    width: 100px;
    margin-right: 10px;
    height: auto;
  }
}
#header #header-navi {
  flex: 1;
  margin-right: 25px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  #header #header-navi {
    display: none;
    padding-bottom: 0;
    flex: 1;
  }
}
#header #header-navi ul.header-mega-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3%;
  padding: 7px 2%;
  width: 100%;
  height: 100%;
}
#header #header-navi ul.header-mega-menu .parent-title {
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
}
#header #header-navi ul.header-float-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3%;
  padding: 7px 2%;
  width: 100%;
  height: 100%;
}
#header #header-navi ul.header-float-menu .parent-menu {
  position: relative;
  cursor: pointer;
}
#header #header-navi ul.header-float-menu .parent-menu:hover {
  color: #ed1d25;
}
#header #header-navi ul.header-float-menu .parent-menu .parent-title {
  font-weight: 400;
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  padding: 20px 0;
}
#header #header-navi ul.header-float-menu .parent-menu a {
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  text-align: center;
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 0 15px 0;
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu li {
  width: 100%;
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu li a {
  display: block;
  text-align: left;
  padding: 6px 14px;
  white-space: nowrap;
}
#header #header-navi .base-ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  #header #header-navi .base-ul {
    justify-content: flex-end;
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #header #header-navi .base-ul {
    width: auto;
    margin-bottom: 0;
    padding: 0;
  }
}
#header #header-navi .base-ul .mo {
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
}
#header #header-navi .base-ul .mo:focus-visible {
  outline: solid;
}
#header #header-navi .base-ul .mo:hover > span {
  color: #000;
}
#header #header-navi .base-ul .mo > span, #header #header-navi .base-ul .mo > a {
  cursor: pointer;
  font-size: clamp(1.2rem, 1vw, 1.5rem);
  display: block;
  line-height: 1.3;
  display: flex;
  align-items: center;
  height: 100%;
}
#header #header-submenu {
  width: 190px;
}
@media screen and (max-width: 1100px) {
  #header #header-submenu {
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  #header #header-submenu {
    width: 150px;
    padding-top: 0;
  }
}
#header #header-submenu .sub {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  text-align: center;
  line-height: 1;
  font-size: clamp(1.4rem, 0.936rem + 0.6vw, 1.8rem);
  color: #005587;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 5px 3% 0;
}
@media screen and (max-width: 767px) {
  #header #header-submenu .sub {
    display: none;
  }
}
#header #header-submenu a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  color: #fff;
  font-size: clamp(1.1rem, 1.056rem + 0.1vw, 1.2rem);
  font-weight: bold;
  line-height: 1;
  padding: 10px 7px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #header #header-submenu a {
    height: auto;
    font-size: 1.2rem;
  }
}
#header #header-submenu a.y1 {
  background-color: #a40000;
}
#header #header-submenu a.y2 {
  background-color: #003f7e;
}
#header #header-submenu a:hover {
  opacity: 0.8;
}

#overlay_menu {
  position: fixed;
  top: 0;
  left: 1%;
  width: 98%;
  background: #ffffff;
  z-index: 8000;
  border-radius: 0 0 3rem 3rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
#overlay_menu .overlay_logo {
  width: 198px;
  margin: 0 0 0 4rem;
}
@media screen and (max-width: 767px) {
  #overlay_menu .overlay_logo {
    width: 119px;
    margin: 2rem 0 0 0;
  }
}
#overlay_menu ul.gmenu {
  margin: 6rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 0 6rem;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  #overlay_menu ul.gmenu {
    margin: 2rem 0 0 0;
    grid-template-columns: 1fr;
    padding: 0;
    gap: 1rem;
  }
}
#overlay_menu ul.gmenu li {
  min-width: 0;
}
#overlay_menu ul.gmenu li a {
  display: flex;
  justify-content: space-between;
  position: relative;
  color: #000;
  width: 100%;
  border-bottom: 2px solid #d3cfc4;
  padding: 0 0 2rem 0;
  transition: all 0.3s ease;
}
#overlay_menu ul.gmenu li a:hover {
  border-bottom: 2px solid #CE4C40;
  color: #CE4C40;
}
@media screen and (max-width: 767px) {
  #overlay_menu ul.gmenu li a {
    align-items: center;
    padding: 2rem 0;
  }
}
#overlay_menu ul.gmenu li a p {
  min-width: 0;
}
#overlay_menu ul.gmenu li a:hover .gmenu_icon {
  background: rgb(194.58125, 62.14375, 49.91875);
}
#overlay_menu ul.gmenu li a .gmenu_icon {
  background: #CE4C40;
  cursor: pointer;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  margin: 0 0 0 1rem;
  transition: all 0.3s ease;
}
#overlay_menu ul.gmenu li a .gmenu_icon svg,
#overlay_menu ul.gmenu li a .gmenu_icon img {
  display: block;
  transition: transform 0.3s ease;
  transform-origin: center center;
}
#overlay_menu .corporate_link {
  padding: 0 6rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #overlay_menu .corporate_link {
    padding: 0;
    margin: 0 0 10rem 0;
  }
}
#overlay_menu .corporate_link a {
  display: block;
  color: #555;
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
#overlay_menu .corporate_link a:hover {
  color: #CE4C40;
}
#overlay_menu .corporate_link a:after {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%23000' d='M11 6a1 1 0 1 1 0 2H5v11h11v-6a1 1 0 1 1 2 0v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2zm9-3a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V6.414l-8.293 8.293a1 1 0 0 1-1.414-1.414L17.586 5H15a1 1 0 1 1 0-2Z'/%3E%3C/g%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%;
}
#overlay_menu .corporate_link a:after svg {
  line-height: 0;
}
#overlay_menu .menu_company_links {
  margin: 0 6rem;
}
@media screen and (max-width: 767px) {
  #overlay_menu .menu_company_links {
    margin: 0;
  }
}
#overlay_menu .menu_company_links .in {
  background: #f2f0ea;
  border-radius: 3rem;
  padding: 5rem;
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  #overlay_menu .menu_company_links .in {
    padding: 0;
    padding: 2rem;
    width: 100%;
    margin: 3rem 0 2rem 0;
  }
}
#overlay_menu .menu_company_links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
#overlay_menu .menu_company_links ul li a {
  display: block;
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #CE4C40;
  transition: all 0.3s ease;
}
#overlay_menu .menu_company_links ul li a:hover {
  text-decoration: underline;
}
#overlay_menu .menu_company_links ul li a:after {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%23000' d='M11 6a1 1 0 1 1 0 2H5v11h11v-6a1 1 0 1 1 2 0v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2zm9-3a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V6.414l-8.293 8.293a1 1 0 0 1-1.414-1.414L17.586 5H15a1 1 0 1 1 0-2Z'/%3E%3C/g%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%;
}
#overlay_menu .menu_company_links ul li a:after svg {
  line-height: 0;
}
#overlay_menu {
  visibility: hidden;
  color: #000;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #overlay_menu {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
  }
}
#overlay_menu .inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100vh;
  width: 100%;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
  overscroll-behavior: contain;
  padding: 2.4rem 1.15rem;
}
@media screen and (max-width: 767px) {
  #overlay_menu .inner {
    padding: 0 5vw;
  }
}
#overlay_menu .inner .footer_inner .left #logos .image {
  width: 11rem;
}
@media screen and (max-width: 767px) {
  #overlay_menu .inner .footer_inner .left #logos .image {
    width: 5rem;
  }
}
#overlay_menu .inner .footer_inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  color: #000;
  padding: 5vw;
  margin: auto 0;
  min-height: -moz-min-content;
  min-height: min-content;
}
@media screen and (max-width: 767px) {
  #overlay_menu .inner .footer_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    flex: 1;
    z-index: 9999;
    margin: 0;
  }
}
#overlay_menu .inner .footer_inner .left {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  #overlay_menu .inner .footer_inner .left {
    display: block;
    padding: 5vw 0 0 0;
    width: 100%;
  }
  #overlay_menu .inner .footer_inner .left #logos {
    margin: 0 !important;
  }
  #overlay_menu .inner .footer_inner .left #logos .image {
    width: 10rem !important;
    max-width: 10rem !important;
    min-width: 10rem !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #overlay_menu .inner .footer_inner .left #logos .image {
    width: 5rem !important;
    max-width: 5rem !important;
    min-width: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  #overlay_menu .inner .footer_inner .left #logos .image img {
    width: 100% !important;
    max-width: 10rem !important;
    height: auto !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #overlay_menu .inner .footer_inner .left #logos .image img {
    max-width: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  #overlay_menu .inner .footer_inner .left #logos .txt {
    font-size: 0.875rem;
  }
  #overlay_menu .inner .footer_inner .left .outer_links,
  #overlay_menu .inner .footer_inner .left .sns_inner {
    display: none !important;
  }
}
#overlay_menu .inner .footer_inner a::before {
  background: #000;
}
#overlay_menu .inner .footer_inner .right .icon {
  display: none !important;
}
@media screen and (max-width: 767px) {
  #overlay_menu .inner .footer_inner .right {
    width: 100%;
    padding: 0 1rem 10rem 1rem;
    margin: 0;
    gap: 2rem;
    display: block;
    flex: 1;
    padding-bottom: 20rem;
  }
  #overlay_menu .inner .footer_inner .right .icon {
    display: inline-block !important;
  }
  #overlay_menu .inner .footer_inner .right .box {
    margin: 0 !important;
    padding: 0 0 1rem 0;
  }
  #overlay_menu .inner .footer_inner .right .box ul {
    margin: 0 !important;
  }
  #overlay_menu .inner .footer_inner .right .box ul li {
    margin: 0 !important;
  }
  #overlay_menu .inner .footer_inner .right .box ul li:first-child {
    padding: 1rem 0 0 0;
  }
  #overlay_menu .inner .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 .inner .footer_inner .right .box ul li a.outerlink:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #overlay_menu .inner .footer_inner .right .box ul li a {
    font-size: 1.1rem;
    font-weight: 500;
  }
  #overlay_menu .inner .footer_inner .right .box ul li a .icon {
    margin: 0 0.5rem 0 0;
    color: #555;
  }
}
#overlay_menu .inner .footer_inner .right .title {
  border-bottom: 1px dotted #CE4C40;
  font-weight: 500;
  padding: 0 0.1rem 0.1rem 0;
}
#overlay_menu .inner .footer_inner .right .title .icon {
  display: none;
}
@media screen and (max-width: 767px) {
  #overlay_menu .inner .footer_inner .right .title {
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(206, 76, 64, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 !important;
    transition: none;
    padding: 0 0 1rem 0;
  }
  #overlay_menu .inner .footer_inner .right .title.active {
    color: #CE4C40;
  }
  #overlay_menu .inner .footer_inner .right .title.active .icon {
    transform: rotate(135deg);
    background: #CE4C40;
    color: #ffffff;
  }
  #overlay_menu .inner .footer_inner .right .title .icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #ffffff;
    color: #CE4C40;
    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 .inner .footer_inner .right .title .icon svg {
    line-height: 1;
    display: inline-block !important;
  }
}
#overlay_menu .footer_header {
  padding: 3rem 0;
  margin: 0 0 1rem 0;
}
#overlay_menu .footer_menu ul li {
  margin: 0 0 0.5rem 0;
}
#overlay_menu .footer_menu ul li a {
  font-size: clamp(1.2rem, 0.968rem + 0.3vw, 1.4rem);
  padding: 0.5rem 0;
}
#overlay_menu .footer_menu ul li a.outerlink {
  text-decoration: none !important;
}
#overlay_menu .footer_menu ul li a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  #overlay_menu .footer_menu {
    display: block !important;
  }
  #overlay_menu .footer_menu .block {
    margin: 0 0 2rem 0;
  }
  #overlay_menu .footer_menu .titles {
    position: relative;
    width: 100%;
    display: block;
    margin: 0 0 1rem 0;
  }
  #overlay_menu .footer_menu .titles:after {
    position: absolute;
    top: 30%;
    right: 0%;
    transform: translateY(-50%);
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'%3E%3Ccircle cx='12' cy='11.999' r='9'/%3E%3Cpath d='M12 9v6m-3-3h6'/%3E%3C/g%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%;
  }
  #overlay_menu .footer_menu ul li a {
    padding: 0.7rem 0;
    display: block;
    position: relative;
  }
  #overlay_menu .footer_menu ul li a:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 25%;
    right: -0.3em;
    width: 2rem;
    height: 2rem;
    color: #fff;
    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%;
  }
}
#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: #CE4C40;
  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 .sns_inner {
  margin: auto 0 3rem 0;
  width: 100%;
  padding: 0;
}
#overlay_menu .sns_inner a:hover::before {
  display: none;
}

.sp_menu_wrap {
  background: #F1F0EA;
  padding: 3rem;
  border-radius: 0 0 0 3rem;
}
@media screen and (max-width: 767px) {
  .sp_menu_wrap {
    padding: 1rem;
  }
}

#sp_menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9999;
  width: 64px;
  height: 64px;
  aspect-ratio: 1/1;
  align-self: center;
  flex: 0 0 64px;
  min-width: 64px;
  min-height: 64px;
  max-width: 64px;
  max-height: 64px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  background: #000;
}
@media screen and (max-width: 767px) {
  #sp_menu {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    flex: 0 0 44px;
  }
}
#sp_menu span {
  position: absolute;
  left: 50%;
  background-color: #ffffff;
  height: 2px;
  width: 28px;
  transition: all 0.3s ease;
  transform-origin: center center;
  transform: translateX(-50%);
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  #sp_menu span {
    height: 1px;
  }
}

#sp_menu span:nth-of-type(1) {
  top: calc(50% - 8px);
}

#sp_menu span:nth-of-type(2) {
  top: 50%;
}

#sp_menu span:nth-of-type(3) {
  top: calc(50% + 8px);
}

/* クリック時に横アイコンが斜めになる */
#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;
  transform: translateX(-50%) scaleX(0);
}

#sp_menu.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.scroll-in #header {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(50px);
}

/* Mega menu
==================== */
#megamenu-overflow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.megamenu-block {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 200vh;
  left: 0;
  width: 100%;
  background-color: #2b3a42;
  z-index: 101;
  padding: 40px 0;
  white-space: wrap;
}
.megamenu-block.show {
  animation: mmFadeIn 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes mmFadeIn {
  0% {
    display: block;
    visibility: hidden;
    opacity: 0;
    top: 130px;
  }
  100% {
    display: block;
    visibility: visible;
    opacity: 1;
    top: 100px;
  }
}
.megamenu-block .inner {
  display: flex;
}
.megamenu-block h2 {
  width: 20%;
  color: #fff;
  margin-bottom: 30px;
  font-size: clamp(1.3rem, 1.024rem + 0.4vw, 1.6rem);
  font-weight: 500;
  padding-right: 2%;
}
.megamenu-block .col {
  width: 25%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-inline: 2%;
}
.megamenu-block .col h3 {
  color: #fff;
  font-weight: 500;
}
.megamenu-block .col h3 a {
  color: #fff;
}
.megamenu-block .col h3 a:hover {
  color: #fff;
  text-decoration: underline;
}
.megamenu-block .col ul {
  margin-bottom: 2rem;
}
.megamenu-block .col ul li {
  padding-left: 15px;
}
.megamenu-block .col ul li a {
  display: block;
  color: #fff;
  font-size: clamp(1.1rem, 0.824rem + 0.4vw, 1.4rem);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.megamenu-block .col ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
.megamenu-block .col ul li a[target=_blank]::after {
  right: 12px;
  content: "";
  background: url(/assets/image/blank-w.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 14px;
  aspect-ratio: 9/7;
  height: auto;
  border: none;
  transform: none;
  margin-left: 5px;
}
.megamenu-block .col2 {
  flex: 1;
}
.megamenu-block .layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.megamenu-block .layout a {
  max-width: 31.33%;
  height: auto;
  padding: 0 0 15px;
  font-size: clamp(1.1rem, 0.636rem + 0.6vw, 1.5rem);
}
.megamenu-block .layout a figure span {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  line-height: 0;
}
.megamenu-block .layout a figure figcaption {
  padding: 0 0;
  color: #fff;
  font-size: clamp(1.1rem, 0.824rem + 0.4vw, 1.4rem);
  white-space: wrap;
  display: block;
  line-height: 1.3;
  margin-top: 0.5rem;
}
/* FOOTER
================================================== */
#footer {
  background-color: #000;
  padding: 5rem;
}
#footer #footer_top {
  margin: 0 0 10rem 0;
}
#footer #footer_top .logo {
  margin: 0 0 2rem 0;
  width: 260px;
}
#footer .links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
#footer .links ul li a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
}
#footer .links ul li a:hover {
  opacity: 0.6;
}
#footer .links ul li a.outer:after {
  margin: 0 0 0 0.2em;
  content: "";
  background: #ffffff;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  --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='2' d='M10 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-4M14 4h6m0 0v6m0-6L10 14'/%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%;
  line-height: 0;
}
#footer .corporate_link {
  margin: 5rem 0 0 0;
}
@media screen and (max-width: 767px) {
  #footer .corporate_link {
    padding: 0;
    margin: 5rem 0 10rem 0;
  }
}
#footer .corporate_link a {
  display: block;
  color: #555;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  color: #ffffff;
}
#footer .corporate_link a:hover {
  opacity: 0.6;
}
#footer .corporate_link a:after {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%23000' d='M11 6a1 1 0 1 1 0 2H5v11h11v-6a1 1 0 1 1 2 0v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2zm9-3a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V6.414l-8.293 8.293a1 1 0 0 1-1.414-1.414L17.586 5H15a1 1 0 1 1 0-2Z'/%3E%3C/g%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%;
}
#footer .corporate_link a:after svg {
  line-height: 0;
}

#footer_copyright {
  border-top: 1px solid #ffffff;
  margin: 5rem 0 0 0;
  padding: 5rem 0 0 0;
  text-align: center;
  color: #ffffff;
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
}

#pagetop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2000;
}
@media screen and (max-width: 767px) {
  #pagetop {
    right: 3%;
  }
}
#pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  #pagetop a {
    width: 50px;
    height: 50px;
  }
}

@keyframes pagetop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  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;
}

section#under_kv {
  background: #ffffff;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 15rem 0 0 0;
  border-radius: 3rem;
  margin: 0 0 10rem 0;
}
@media screen and (max-width: 767px) {
  section#under_kv {
    padding: 10rem 0 0 0;
    margin: 0 0 2rem 0;
  }
}
section#under_kv #pan {
  margin: 0 4rem 3rem 0;
}
@media screen and (max-width: 767px) {
  section#under_kv #pan {
    display: none;
  }
}
section#under_kv #pan ul {
  display: flex;
  justify-content: flex-end;
}
section#under_kv #pan ul li:first-child::after {
  content: "／";
  color: #eee;
}
section#under_kv #pan ul li {
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
}
section#under_kv #pan ul li a {
  color: #000;
}
section#under_kv .inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  section#under_kv .inner {
    display: block;
  }
}
section#under_kv img {
  vertical-align: baseline;
  line-height: 0;
  margin: 0;
  padding: 0;
  display: block;
}
section#under_kv .copy {
  padding: 0 0 0 5vw;
}
@media screen and (max-width: 767px) {
  section#under_kv .copy {
    text-align: center;
  }
}
section#under_kv .copy .about_title {
  display: flex;
}
@media screen and (max-width: 767px) {
  section#under_kv .copy .about_title {
    justify-content: center;
  }
}
section#under_kv .copy .about_title p.en {
  color: #CE4C40;
  position: relative;
  display: inline-flex;
  align-items: center;
}
section#under_kv .copy .about_title p.en:after {
  content: "";
  width: 3rem;
  height: 1px;
  display: block;
  background: #000;
  margin: 0 1rem;
}
section#under_kv .copy .about_title p.jp {
  font-weight: 500;
  font-size: clamp(1.1rem, 1.056rem + 0.1vw, 1.2rem);
}
section#under_kv .copy h1 {
  font-size: clamp(2rem, -1.016rem + 3.9vw, 4.6rem);
  font-weight: bold;
}
section#under_kv .copy h1 span {
  color: #CE4C40;
}
section#under_kv .illust {
  width: 35%;
  margin: 0 10rem 0 auto;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  section#under_kv .illust {
    margin: auto;
    width: 70%;
  }
}
section#under_kv .entxt {
  font-size: clamp(6rem, -0.816rem + 8.9vw, 12rem);
  color: rgba(206, 76, 64, 0.06);
  position: absolute;
  bottom: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  section#under_kv .entxt {
    font-size: 100rem;
  }
}

section#group_link_panel {
  padding: 2rem 0 0 0;
  position: relative;
  --group-panel-bg: #CE4C40;
  --group-panel-canvas-bg: #f1f0ea;
  --group-panel-flare-size: 2rem;
  --group-panel-flare-radius: 3rem;
}
section#group_link_panel .entxt {
  position: absolute;
  top: 4rem;
  left: 0;
  z-index: 2;
}
section#group_link_panel .entxt p {
  position: relative;
}
section#group_link_panel .entxt p::after {
  content: "/";
  margin: 0 0 0 1em;
  color: #ccc;
}
section#group_link_panel .group_panel {
  position: relative;
  z-index: 2;
}
section#group_link_panel .group_panel h2 {
  position: relative;
  z-index: 3;
  background: var(--group-panel-bg);
  display: inline-block;
  color: #ffffff;
  padding: 1rem 3.2rem;
  border-radius: 3rem 3rem 0 0;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  section#group_link_panel .group_panel h2 {
    border-radius: 1rem 1rem 0 0;
  }
}
section#group_link_panel .group_panel h2::before {
  content: "";
  position: absolute;
  right: calc(var(--group-panel-flare-size) * -1);
  bottom: 0;
  width: var(--group-panel-flare-size);
  height: 100%;
  background: var(--group-panel-bg);
  z-index: 1;
}
section#group_link_panel .group_panel h2::after {
  content: "";
  position: absolute;
  right: calc(var(--group-panel-flare-size) * -1);
  bottom: 0;
  width: var(--group-panel-flare-size);
  height: 100%;
  background: var(--group-panel-canvas-bg);
  border-bottom-left-radius: var(--group-panel-flare-radius);
  z-index: 2;
  pointer-events: none;
}
section#group_link_panel .company_panel {
  border-radius: 0 3rem 3rem 3rem;
  padding: 3rem;
  margin: 0 0 10rem 0;
}
@media screen and (max-width: 767px) {
  section#group_link_panel .company_panel {
    border-radius: 0 1rem 1rem 1rem;
    padding: 1rem;
    margin: 0 0 3rem 0;
  }
}
section#group_link_panel .company_panel .in {
  background: #ffffff;
  border-radius: 3rem;
  padding: 3rem;
  margin: 0 0 3rem 0;
}
@media screen and (max-width: 767px) {
  section#group_link_panel .company_panel .in {
    padding: 1rem;
    border-radius: 1rem;
  }
}
section#group_link_panel .company_panel .in:last-child {
  margin: 0;
}
section#group_link_panel.c01 .group_panel h2 {
  background: #6E6CAA;
}
section#group_link_panel.c01 .group_panel h2::before {
  background: #6E6CAA;
}
section#group_link_panel.c01 .company_panel {
  background: #6E6CAA;
}
section#group_link_panel.c01 .company_panel .in:last-child {
  margin: 0;
}
section#group_link_panel.c01 .company_panel .in h3,
section#group_link_panel.c01 .company_panel .in h4 {
  color: #6E6CAA;
}
section#group_link_panel.c01 .company_panel .in .detail_btn a {
  background: #6E6CAA;
}
section#group_link_panel.c01 .company_panel .in .detail_btn a:hover {
  background: rgb(94.6875, 92.5107758621, 159.9892241379);
}
section#group_link_panel.c02 .group_panel h2 {
  background: #4871A8;
}
section#group_link_panel.c02 .group_panel h2::before {
  background: #4871A8;
}
section#group_link_panel.c02 .company_panel {
  background: #4871A8;
}
section#group_link_panel.c02 .company_panel .in:last-child {
  margin: 0;
}
section#group_link_panel.c02 .company_panel .in h3,
section#group_link_panel.c02 .company_panel .in h4 {
  color: #4871A8;
}
section#group_link_panel.c02 .company_panel .in .detail_btn a {
  background: #4871A8;
}
section#group_link_panel.c02 .company_panel .in .detail_btn a:hover {
  background: rgb(64.35, 100.99375, 150.15);
}
section#group_link_panel.c03 .group_panel h2 {
  background: #D9846A;
}
section#group_link_panel.c03 .group_panel h2::before {
  background: #D9846A;
}
section#group_link_panel.c03 .company_panel {
  background: #D9846A;
}
section#group_link_panel.c03 .company_panel .in:last-child {
  margin: 0;
}
section#group_link_panel.c03 .company_panel .in h3,
section#group_link_panel.c03 .company_panel .in h4 {
  color: #D9846A;
}
section#group_link_panel.c03 .company_panel .in .detail_btn a {
  background: #D9846A;
}
section#group_link_panel.c03 .company_panel .in .detail_btn a:hover {
  background: rgb(211.8181818182, 115.2272727273, 85.6818181818);
}
section#group_link_panel.c04 .group_panel h2 {
  background: #CE4C40;
}
section#group_link_panel.c04 .group_panel h2::before {
  background: #CE4C40;
}
section#group_link_panel.c04 .company_panel {
  background: #CE4C40;
}
section#group_link_panel.c04 .company_panel .in:last-child {
  margin: 0;
}
section#group_link_panel.c04 .company_panel .in h3,
section#group_link_panel.c04 .company_panel .in h4 {
  color: #CE4C40;
}
section#group_link_panel.c04 .company_panel .in .detail_btn a {
  background: #CE4C40;
}
section#group_link_panel.c04 .company_panel .in .detail_btn a:hover {
  background: rgb(194.58125, 62.14375, 49.91875);
}
section#group_link_panel .group_link_grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
  background: var(--group-panel-bg);
  border-radius: 0 3rem 3rem 3rem;
  padding: 3rem;
}
@media (max-width: 1200px) {
  section#group_link_panel .group_link_grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  section#group_link_panel .group_link_grid {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}
section#group_link_panel .group_link_grid a {
  display: block;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  border-radius: 1rem;
  align-items: center;
  padding: 1.2rem;
  position: relative;
}
section#group_link_panel .group_link_grid a .icon {
  width: 25%;
  flex: 0 0 25%;
  display: flex;
  align-items: center;
  margin: 0 0.5em 0 0;
}
section#group_link_panel .group_link_grid a .icon img {
  display: block;
  width: 100%;
  height: auto;
}
section#group_link_panel .group_link_grid a .txts {
  flex: 1;
  line-height: 1.5;
}
section#group_link_panel .group_link_grid a .txts p {
  font-size: clamp(1.2rem, 0.968rem + 0.3vw, 1.4rem);
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0em;
}
section#group_link_panel .group_link_grid a .arrows {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
  display: flex;
  align-items: center;
  line-height: 0;
  font-size: 0;
  border-left: 1px solid #CE4C40;
  width: 3.6rem;
  height: 3.6rem;
  overflow: hidden;
}
section#group_link_panel .group_link_grid a .arrows:after, section#group_link_panel .group_link_grid a .arrows:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  --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='M7 7h10m0 0v10m0-10L7 17'/%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: #CE4C40;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  transform-origin: center center;
}
section#group_link_panel .group_link_grid a .arrows:after {
  transform: translate(-50%, -50%) translateY(0) rotate(0deg);
  opacity: 1;
}
section#group_link_panel .group_link_grid a .arrows:before {
  transform: translate(-50%, -50%) translateY(140%) rotate(-18deg);
  opacity: 0;
}
section#group_link_panel .group_link_grid a:hover .arrows:after, section#group_link_panel .group_link_grid a:focus-visible .arrows:after {
  transform: translate(-50%, -50%) translateY(-140%) rotate(18deg);
  opacity: 0;
}
section#group_link_panel .group_link_grid a:hover .arrows:before, section#group_link_panel .group_link_grid a:focus-visible .arrows:before {
  transform: translate(-50%, -50%) translateY(0) rotate(0deg);
  opacity: 1;
}

.lead {
  text-align: center;
}
.lead p {
  margin: 0 0 1em 0;
}

.next_btn {
  position: relative;
  margin: 10rem auto 10rem auto;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .next_btn {
    margin: 5rem auto 2rem auto;
  }
}
.next_btn .illust {
  position: absolute;
}
.next_btn .illust01 {
  left: -5rem;
  bottom: 0;
  display: block;
  width: 16%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .next_btn .illust01 {
    display: none;
  }
}
.next_btn .illust02 {
  right: 0;
  bottom: 0;
  width: 20%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .next_btn .illust02 {
    display: none;
  }
}
.next_btn .entitle {
  text-align: center;
  font-size: clamp(4.7rem, 3.264rem + 1.9vw, 6rem);
  line-height: 1;
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(206, 76, 64, 0.2);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .next_btn .entitle {
    font-size: clamp(2.45rem, 1.848rem + 0.8vw, 3rem);
    top: -20%;
  }
}
.next_btn .nextwrap {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  text-align: left;
  align-items: center;
  padding: 2rem;
  border-radius: 2rem;
  position: relative;
  z-index: 10;
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .next_btn .nextwrap {
    display: block;
    width: 100%;
  }
}
.next_btn .nextwrap .image {
  width: 30%;
  background: #F1F0EA;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .next_btn .nextwrap .image {
    width: 100%;
  }
}
.next_btn .nextwrap .txt {
  flex: 1;
  padding: 0 0 0 3rem;
}
@media screen and (max-width: 767px) {
  .next_btn .nextwrap .txt {
    padding: 2rem 0 0 0;
  }
}
.next_btn .nextwrap .txt h4 {
  font-weight: bold;
  font-size: clamp(2rem, 1.536rem + 0.6vw, 2.4rem);
  margin: 0 0 1rem 0;
}
@media screen and (max-width: 767px) {
  .next_btn .nextwrap .txt h4 {
    font-size: clamp(1.4rem, 1.168rem + 0.3vw, 1.6rem);
  }
}
.next_btn .nextwrap .detail_btn {
  text-align: left;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .next_btn .nextwrap .detail_btn {
    text-align: center;
    margin: 0 auto 3rem auto;
  }
}
.next_btn .nextwrap .detail_btn a {
  background: #CE4C40;
  color: #ffffff;
  display: inline-flex;
  padding: 1rem 1rem 1rem 2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.next_btn .nextwrap .detail_btn a:hover {
  background: rgb(194.58125, 62.14375, 49.91875);
}
.next_btn .nextwrap .detail_btn a p {
  margin: 0 4rem 0 0;
}
.next_btn .nextwrap .detail_btn a .icon {
  border-left: 1px solid #ffffff;
  padding: 0 0 0 0.2em;
}
.next_btn .nextwrap .detail_btn a .icon svg {
  display: block;
  line-height: 0;
}
