@charset 'UTF-8';
:root {
	--font-base: 'LINE Seed JP', sans-serif;
	--base-font-size: 16px;
	--color-black: #2e2e2e;
	--color-white: #fff;
	--color-green: #00a31b;
	--color-green-light: #acdcae;
	--color-green-dark: #007013;
	--color-cream: #f5f5ed;
	--color-cream2: #fffff7;
	--color-cream3: #fcfcf7;
	--color-gray: #e0e0d9;
	--color-gray-dark: #808080;
	--color-green-rgb: 0, 163, 27;
}

/* テキストスクロールアニメーション */

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

@keyframes marquee-reverse {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(0);
	}
}

/* 上下に浮遊するアニメーション */

@keyframes floating-y {
	0% {
		transform: translateY(-10%);
	}

	100% {
		transform: translateY(10%);
	}
}

/* =====================================================
* Base
* ================================================== */

/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/

/* Box sizing rules */

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

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Set core root defaults */

html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	min-height: 100vh;
	line-height: 1.5;
	text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */

html {
  position: relative;
  font-size: 62.5%;
}

body {
  color: var(--color-black);
  font-family: var(--font-base);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

body:not(.p-top) {
  background-color: var(--color-cream);
}

* {
  min-inline-size: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a.no-click {
  pointer-events: none;
}

img {
  display: inline-block;
  height: auto;
  vertical-align: middle;
}

address {
  font-style: normal;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

em {
  font-weight: 700;
  font-style: normal;
}

figure {
  margin: 0;
}

button {
  cursor: pointer;
  padding: 0;
  border: none;
  background-color: transparent;
  color: inherit;
}

sup {
  font-size: 50%;
}

::-moz-placeholder {
  color: #999;
}

::placeholder {
  color: #999;
}

/* =====================================================
 * Anchor Scroll Offset
 * ================================================== */

#interview,
[id] {
  scroll-margin-top: 15rem;
}

/* =====================================================
 * Flatpickr
 * ================================================== */

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekday:nth-child(7),
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay):nth-child(7n) {
  color: #25bdcf;
}

.flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekday:nth-child(7n+1),
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay):nth-child(7n+1) {
  color: red;
}

@font-face {
  font-family: 'LINE Seed JP';
  font-weight: 100;
  /* Thin */
  font-style: normal;
  src: url('../fonts/LINESeedJP_TTF_Th.ttf') format('truetype');
}

@font-face {
  font-family: 'LINE Seed JP';
  font-weight: 400;
  /* Regular */
  font-style: normal;
  src: url('../fonts/LINESeedJP_TTF_Rg.ttf') format('truetype');
}

@font-face {
  font-family: 'LINE Seed JP';
  font-weight: 700;
  /* Bold */
  font-style: normal;
  src: url('../fonts/LINESeedJP_TTF_Bd.ttf') format('truetype');
}

@font-face {
  font-family: 'LINE Seed JP';
  font-weight: 800;
  /* ExtraBold */
  font-style: normal;
  src: url('../fonts/LINESeedJP_TTF_Eb.ttf') format('truetype');
}

/* =====================================================
 * Library
 * ================================================== */

/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  top: 0;
  left: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Prevents IE11 from highlighting tiles in blue */

.leaflet-tile::-moz-selection {
  background: transparent;
}

.leaflet-tile::selection {
  background: transparent;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */

.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */

.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */

/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */

.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  width: auto;
  max-width: none !important;
  max-height: none !important;
  padding: 0;
}

.leaflet-container img.leaflet-tile {
  /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
  mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  /* Fallback for FF which doesn't support pinch-zoom */
touch-action: none;
  touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
touch-action: none;
}

.leaflet-container {
-webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
visibility: hidden;
filter: inherit;
}

.leaflet-tile-loaded {
visibility: inherit;
}

.leaflet-zoom-box {
z-index: 800;
box-sizing: border-box;
width: 0;
height: 0;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */

.leaflet-overlay-pane svg {
-moz-user-select: none;
}

.leaflet-pane {
z-index: 400;
}

.leaflet-tile-pane {
z-index: 200;
}

.leaflet-overlay-pane {
z-index: 400;
}

.leaflet-shadow-pane {
z-index: 500;
}

.leaflet-marker-pane {
z-index: 600;
}

.leaflet-tooltip-pane {
z-index: 650;
}

.leaflet-popup-pane {
z-index: 700;
}

.leaflet-map-pane canvas {
z-index: 100;
}

.leaflet-map-pane svg {
z-index: 200;
}

.leaflet-vml-shape {
width: 1px;
height: 1px;
}

.lvml {
display: inline-block;
position: absolute;
behavior: url(#default#VML);
}

/* control positioning */

.leaflet-control {
position: relative;
z-index: 800;
pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  transform-origin: 0 0;
}

svg.leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */

.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: grabbing;
}

/* marker & overlays interactivity */

.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
pointer-events: auto;
}

/* visual tweaks */

.leaflet-container {
outline-offset: 1px;
background: #ddd;
}

.leaflet-container a {
color: #0078a8;
}

.leaflet-zoom-box {
border: 2px dotted #38f;
background: rgba(255, 255, 255, 0.5);
}

/* general typography */

.leaflet-container {
font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
font-size: 12px;
font-size: 0.75rem;
line-height: 1.5;
}

/* general toolbar styles */

.leaflet-bar {
border-radius: 4px;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
}

.leaflet-bar a {
display: block;
width: 26px;
height: 26px;
border-bottom: 1px solid #ccc;
background-color: #fff;
color: black;
line-height: 26px;
text-align: center;
text-decoration: none;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
display: block;
background-repeat: no-repeat;
background-position: 50% 50%;
}

.leaflet-bar a:hover,
.leaflet-bar a:focus {
background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
border-bottom: none;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}

.leaflet-bar a.leaflet-disabled {
cursor: default;
background-color: #f4f4f4;
color: #bbb;
}

.leaflet-touch .leaflet-bar a {
width: 30px;
height: 30px;
line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
font: bold 18px 'Lucida Console', Monaco, monospace;
text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
font-size: 22px;
}

/* layers control */

.leaflet-control-layers {
border-radius: 5px;
background: #fff;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.leaflet-control-layers-toggle {
width: 36px;
height: 36px;
background-image: url(images/layers.png);
}

.leaflet-retina .leaflet-control-layers-toggle {
background-image: url(images/layers-2x.png);
background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
width: 44px;
height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
display: block;
position: relative;
}

.leaflet-control-layers-expanded {
padding: 6px 10px 6px 6px;
background: #fff;
color: #333;
}

.leaflet-control-layers-scrollbar {
overflow-x: hidden;
overflow-y: scroll;
padding-right: 5px;
}

.leaflet-control-layers-selector {
position: relative;
top: 1px;
margin-top: 2px;
}

.leaflet-control-layers label {
display: block;
font-size: 13px;
font-size: 1.08333em;
}

.leaflet-control-layers-separator {
height: 0;
margin: 5px -10px 5px -6px;
border-top: 1px solid #ddd;
}

/* Default icon URLs */

.leaflet-default-icon-path {
  /* used only in path-guessing heuristic, see L.Icon.Default */
background-image: url(images/marker-icon.png);
}

/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
margin: 0;
background: #fff;
background: rgba(255, 255, 255, 0.8);
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
padding: 0 5px;
color: #333;
line-height: 1.4;
}

.leaflet-control-attribution a {
text-decoration: none;
}

.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
text-decoration: underline;
}

.leaflet-attribution-flag {
display: inline !important;
width: 1em;
height: 0.6669em;
vertical-align: baseline !important;
}

.leaflet-left .leaflet-control-scale {
margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
margin-bottom: 5px;
}

.leaflet-control-scale-line {
box-sizing: border-box;
padding: 2px 5px 1px;
border: 2px solid #777;
border-top: none;
background: rgba(255, 255, 255, 0.8);
line-height: 1.1;
white-space: nowrap;
text-shadow: 1px 1px #fff;
}

.leaflet-control-scale-line:not(:first-child) {
margin-top: -2px;
border-top: 2px solid #777;
border-bottom: none;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
border: 2px solid rgba(0, 0, 0, 0.2);
background-clip: padding-box;
}

/* popup */

.leaflet-popup {
position: absolute;
margin-bottom: 20px;
text-align: center;
}

.leaflet-popup-content-wrapper {
padding: 1px;
border-radius: 12px;
text-align: left;
}

.leaflet-popup-content {
min-height: 1px;
margin: 13px 24px 13px 20px;
font-size: 13px;
font-size: 1.08333em;
line-height: 1.3;
}

.leaflet-popup-content p {
margin: 17px 0;
margin: 1.3em 0;
}

.leaflet-popup-tip-container {
position: absolute;
left: 50%;
overflow: hidden;
width: 40px;
height: 20px;
margin-top: -1px;
margin-left: -20px;
pointer-events: none;
}

.leaflet-popup-tip {
width: 17px;
height: 17px;
margin: -10px auto 0;
padding: 1px;
transform: rotate(45deg);
pointer-events: auto;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
background: white;
box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
color: #333;
}

.leaflet-container a.leaflet-popup-close-button {
position: absolute;
top: 0;
right: 0;
width: 24px;
height: 24px;
border: none;
background: transparent;
color: #757575;
font: 16px/24px Tahoma, Verdana, sans-serif;
text-align: center;
text-decoration: none;
}

.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
color: #585858;
}

.leaflet-popup-scrolled {
overflow: auto;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
-ms-zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
width: 24px;
margin: 0 auto;
-ms-filter: 'progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)';
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
border: 1px solid #999;
}

/* div icon */

.leaflet-div-icon {
border: 1px solid #666;
background: #fff;
}

/* Tooltip */

/* Base styles for the element that has a tooltip */

.leaflet-tooltip {
position: absolute;
padding: 6px;
border: 1px solid #fff;
border-radius: 3px;
background-color: #fff;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
color: #222;
white-space: nowrap;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
pointer-events: none;
}

.leaflet-tooltip.leaflet-interactive {
cursor: pointer;
pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
content: '';
position: absolute;
border: 6px solid transparent;
background: transparent;
pointer-events: none;
}

/* Directions */

.leaflet-tooltip-bottom {
margin-top: 6px;
}

.leaflet-tooltip-top {
margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
left: 50%;
margin-left: -6px;
}

.leaflet-tooltip-top:before {
bottom: 0;
margin-bottom: -12px;
border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
top: 0;
margin-top: -12px;
margin-left: -6px;
border-bottom-color: #fff;
}

.leaflet-tooltip-left {
margin-left: -6px;
}

.leaflet-tooltip-right {
margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
top: 50%;
margin-top: -6px;
}

.leaflet-tooltip-left:before {
right: 0;
margin-right: -12px;
border-left-color: #fff;
}

.leaflet-tooltip-right:before {
left: 0;
margin-left: -12px;
border-right-color: #fff;
}

/* Printing */

@keyframes splide-loading {
0% {
	transform: rotate(0);
}

to {
	transform: rotate(1turn);
}
}

.splide__track--draggable {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
}

.splide__track--fade > .splide__list > .splide__slide {
	z-index: 0;
	margin: 0 !important;
	opacity: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
	z-index: 1;
	opacity: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb > .splide__list {
	display: block;
}

.splide__container {
	position: relative;
	box-sizing: border-box;
}

.splide__list {
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	backface-visibility: hidden;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0;
	pointer-events: none;
}

.splide__pagination li {
	display: inline-block;
	list-style-type: none;
	margin: 0;
	line-height: 1;
	pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	visibility: hidden;
	position: relative;
}

.splide.is-initialized,
.splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	position: relative;
	list-style-type: none !important;
	flex-shrink: 0;
	box-sizing: border-box;
	margin: 0;
	backface-visibility: hidden;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 20px;
	height: 20px;
	margin: auto;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	animation: splide-loading 1s linear infinite;
	contain: strict;
}

.splide__sr {
	position: absolute;
	overflow: hidden;
	clip: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: inline;
}

.splide__track {
	position: relative;
	z-index: 0;
	overflow: hidden;
}

[data-simplebar] {
	position: relative;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
}

.simplebar-wrapper {
	overflow: hidden;
	width: inherit;
	max-width: inherit;
	height: inherit;
	max-height: inherit;
}

.simplebar-mask {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	width: auto !important;
	height: auto !important;
	margin: 0;
	padding: 0;
	direction: inherit;
}

.simplebar-offset {
	resize: none !important;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	box-sizing: inherit !important;
	margin: 0;
	padding: 0;
	direction: inherit !important;
	-webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
	display: block;
	position: relative;
	overflow: auto;
	box-sizing: border-box !important;
	width: auto;
	max-width: 100%;
	height: 100%;
	max-height: 100%;
	direction: inherit;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.simplebar-content:after,
.simplebar-content:before {
	content: ' ';
	display: table;
}

.simplebar-placeholder {
	width: 100%;
	max-width: 100%;
	max-height: 100%;
	pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
	position: relative;
	z-index: -1;
	float: left;
	overflow: hidden;
	flex-grow: inherit;
	flex-shrink: 0;
	flex-basis: 0;
	box-sizing: inherit !important;
	width: 100%;
	max-width: 1px;
	height: 100%;
	max-height: 1px;
	margin: 0;
	padding: 0;
	pointer-events: none;
}

.simplebar-height-auto-observer {
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	overflow: hidden;
	box-sizing: inherit;
	width: 1000%;
	min-width: 1px;
	height: 1000%;
	min-height: 1px;
	opacity: 0;
	pointer-events: none;
}

.simplebar-track {
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
	overflow: hidden;
	pointer-events: none;
}

[data-simplebar].simplebar-dragging {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	pointer-events: none;
	-webkit-touch-callout: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	pointer-events: none;
	-webkit-touch-callout: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
	pointer-events: all;
}

.simplebar-scrollbar {
	position: absolute;
	right: 0;
	left: 0;
	min-height: 10px;
}

.simplebar-scrollbar:before {
	content: '';
	position: absolute;
	right: 2px;
	left: 2px;
	border-radius: 7px;
	background: #000;
	opacity: 0;
	transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
	opacity: 0.5;
	transition-delay: 0s;
	transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
	top: 0;
	width: 11px;
}

.simplebar-scrollbar:before {
	top: 2px;
	right: 2px;
	bottom: 2px;
	left: 2px;
}

.simplebar-track.simplebar-horizontal {
	left: 0;
	height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
	top: 0;
	right: auto;
	bottom: 0;
	left: 0;
	width: auto;
	min-width: 10px;
	min-height: 0;
}

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
	right: auto;
	left: 0;
}

.simplebar-dummy-scrollbar-size {
	visibility: hidden;
	position: fixed;
	overflow-x: scroll;
	overflow-y: hidden;
	width: 500px;
	height: 500px;
	opacity: 0;
	direction: rtl;
	-ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
	width: 200%;
	height: 200%;
	margin: 10px 0;
}

.simplebar-hide-scrollbar {
	visibility: hidden;
	position: fixed;
	left: 0;
	overflow-y: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

/* =====================================================
 * Layout
 * ================================================== */

.l-footer {
	position: relative;
	z-index: 10;
	overflow-x: clip;
	padding-bottom: 1.6rem;
	background-color: var(--color-green);
}

.l-footer a {
	transition: opacity 0.3s;
}

.l-footer-entry {
	display: block;
	padding: 4.8rem 0;
	border-top: 2px solid var(--color-cream);
	border-bottom: 2px solid var(--color-cream);
	white-space: nowrap;
}

.l-footer-entry p {
	display: inline-block;
	padding-right: 4rem;
	font-size: 4rem;
	font-weight: 800;
	text-transform: capitalize;
	animation: marquee-reverse 10s linear infinite;
}

.l-footer-entry p span {
	display: inline-block;
	color: var(--color-cream);
}

.l-footer-entry p .arrow {
	margin-left: 0.8rem;
	font-size: 4.8rem;
	font-weight: 400;
	transform: translateY(0.8rem);
}

.l-footer-inner {
	padding: 8rem 0 0;
}

.l-footer-logo {
	display: block;
	width: 24rem;
}

.l-footer-logo img {
	width: 100%;
}

.l-footer-tiktok {
	display: flex;
	align-items: center;
	margin: 6.4rem 0;
	color: var(--color-green-light);
	font-size: 1.2rem;
	font-weight: 800;
	text-transform: uppercase;
	gap: 1.6rem;
}

.l-footer-nav {
	display: grid;
	color: var(--color-cream);
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
}

.l-footer-nav li a {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 800;
}

.l-footer-nav .sub-menu {
	display: grid;
	margin: 0.7rem 0 0 1rem;
	gap: 0.5rem;
}

.l-footer-nav .sub-menu li a,
.l-footer-nav .sub-menu li button {
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.3076923077;
}

.l-footer-nav .sub-menu li button {
	color: var(--color-cream);
}

.l-footer-copyright {
	margin: 6.4rem 0 0;
}

.l-footer-copyright small {
	display: block;
	color: var(--color-green-light);
	font-size: 1rem;
	letter-spacing: 0.05em;
}

.l-header {
	position: fixed;
	z-index: 100;
	top: 0;
	overflow-x: clip;
	width: 100%;
	transition: opacity 0.3s ease;
}

.l-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
}

.l-header-logo {
	display: flex;
	position: relative;
	z-index: 11;
	justify-content: center;
	align-items: center;
	width: 25.5rem;
	padding: 0.8rem;
	border-radius: 1rem;
	background-color: var(--color-green);
	transition: background-color 0.3s ease;
}

.l-header-logo.-active,
.l-header-logo.-cream {
	background-color: var(--color-cream);
}

.l-header-logo img {
	width: 100%;
}

.l-header-btn {
	display: flex;
	position: relative;
	z-index: 12;
	justify-content: center;
	align-items: center;
	width: 5.6rem;
	height: 5.6rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background-color: var(--color-cream);
}

.l-header-btn span {
	color: var(--color-green);
	font-size: 1rem;
	font-weight: 700;
	text-transform: capitalize;
}

.l-header-btn.-active,
.l-header-btn.-green {
	background-color: var(--color-green);
}

.l-header-btn.-active span,
.l-header-btn.-green span {
	color: var(--color-cream);
}

.l-header-sp-nav {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	overflow-y: auto;
	width: 100%;
	height: 100vh;
	background-color: var(--color-cream);
	color: var(--color-black);
	transition: transform 0.3s ease;
	transform: translateX(100%);
}

.l-header-sp-nav.-active {
	transform: translateX(0);
}

.l-header-sp-nav a.no-click::after {
	display: none;
}

.l-header-sp-nav .inner {
	padding: 10.8rem 2rem 3.2rem;
}

.l-header-sp-nav .menu > li {
	border-bottom: 1px solid var(--color-green-light);
}

.l-header-sp-nav .menu > li > a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.6rem 1rem 0;
	font-weight: 800;
}

.l-header-sp-nav .menu > li > a::after {
	content: '→';
	color: var(--color-green);
	font-weight: 700;
}

.l-header-sp-nav .menu > li:first-child {
	border-top: 1px solid var(--color-green-light);
}

.l-header-sp-nav .menu .sub-menu {
	display: grid;
	margin: 0 0 1rem 3rem;
	gap: 0.5rem;
}

.l-header-sp-nav .menu .sub-menu li a,
.l-header-sp-nav .menu .sub-menu li button {
	display: block;
	font-size: 1.3rem;
}

.l-header-sp-nav .btn {
	display: grid;
	margin: 3.2rem auto 0;
	gap: 0.8rem;
}

.l-header-pc-nav.-cream {
	background-color: var(--color-cream);
	color: var(--color-green);
}

.l-header-sp-entry {
	display: flex;
	position: fixed;
	z-index: 13;
	top: 8.4rem;
	right: 2rem;
	justify-content: center;
	align-items: center;
	width: 5.6rem;
	height: 5.6rem;
	padding: 0;
	border: none;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	background-color: var(--color-cream);
}

.l-header-sp-entry span {
	color: var(--color-green);
	font-size: 1rem;
	font-weight: 700;
	text-transform: capitalize;
}

.l-header-sp-entry.-green {
	border-color: var(--color-cream);
	background-color: var(--color-green);
}

.l-header-sp-entry.-green span {
	color: var(--color-cream);
}

.l-header.-cream .l-header-logo {
	background-color: var(--color-cream);
}

.l-header.-cream .l-header-btn {
	background-color: var(--color-green);
}

.l-header.-cream .l-header-btn span {
	color: var(--color-cream);
}

.l-header-pc-nav.-cream {
	background-color: var(--color-cream);
}

.l-header-pc-nav.-cream .menu a {
	color: var(--color-green);
}

.l-header-pc-nav.-cream .menu .c-btn {
	border-color: var(--color-green);
	background-color: var(--color-green);
	color: var(--color-cream);
}

.l-header-pc-nav.-cream .menu .c-btn::after {
	background-color: var(--color-cream);
}

/* トップページのみのスタイル */

.p-top .l-header-sp-entry {
	opacity: 0;
	pointer-events: none;
}

.l-main {
	position: relative;
}

.l-main.-top {
	overflow-x: clip;
}

.l-section {
	padding: 16rem 0 0;
}

.l-section-inner {
	padding-inline: 2rem;
}

.l-section-lower {
	padding: 0 0 16rem;
}

.l-section-lower-small {
	padding: 0 0 12rem;
}

/* =====================================================
 * Module
 * ================================================== */

.c-btn {
	display: flex;
	position: relative;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 6.4rem;
	padding: 1.2rem 2.8rem 1.2rem 3.2rem;
	border: 2px solid var(--color-green);
	border-radius: 100vmax;
	background-color: var(--color-green);
	color: var(--color-cream);
	font-size: 1.8rem;
	font-weight: 700;
	text-transform: capitalize;
	transition: color 0.3s ease, background-color 0.3s ease;
}

.c-btn:not(.-more)::after {
	content: '';
	display: block;
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 50%;
	background-color: var(--color-cream);
	transition: background-color 0.3s ease;
}

.c-btn.-cream {
	border-color: var(--color-cream);
	background-color: var(--color-cream);
	color: var(--color-green);
}

.c-btn.-cream::after {
	background-color: var(--color-green);
}

.c-btn.-border {
	background-color: var(--color-cream);
	color: var(--color-green);
}

.c-btn.-border::after {
	background-color: var(--color-green);
}

.c-btn.-nav {
	max-width: 24rem;
	height: 4.8rem;
	padding: 1.2rem 2.4rem;
	font-size: 1.5rem;
	font-weight: 800;
}

.c-btn.-center {
	margin-inline: auto;
}

.c-btn.-small {
	max-width: 23.9rem;
}

.c-btn.-society {
	max-width: 29.6rem;
}

.c-btn.-entry {
	max-width: 30.8rem;
}

.c-btn.-more {
	max-width: 23.9rem;
}

.c-btn.-more::after {
	content: '+';
	font-size: 2.4rem;
	font-weight: 700;
}

.c-btn.-back {
	max-width: 20.9rem;
	border-color: var(--color-black);
	background-color: var(--color-black);
}

.c-btn.-back::before {
	content: '←';
}

.c-btn.-back::after {
	display: none;
}

.c-btn.-down::after {
	content: '↓';
	width: auto;
	height: auto;
	background-color: transparent;
}

.c-checkbox {
	cursor: pointer;
}

.c-checkbox input[type=checkbox] {
	display: none;
}

.c-checkbox input[type=checkbox]:checked + span::before {
	background-image: url('data:image/svg+xml,%0A%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'15.741\' height=\'11.713\'%3E%3Cpath d=\'M5.559 11.713 0 6.154l1.531-1.531 4.028 4.028L14.21 0l1.531 1.531Z\' fill=\'%2300A31B\'/%3E%3C/svg%3E');
}

.c-checkbox input[type=checkbox] + span {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.c-checkbox input[type=checkbox] + span::before {
	content: '';
	display: block;
	width: 1.8rem;
	min-width: 1.8rem;
	height: 1.8rem;
	border: 1px solid var(--color-black);
	border-radius: 0.4rem;
	background: var(--color-white) no-repeat 50% 50%;
	background-size: 1.3rem 1rem;
	transition: background 0.3s ease;
}

.c-checkbox a {
	text-decoration: underline;
	transition: color 0.3s ease;
}

.c-environment .c-title h2.en {
	width: -moz-max-content;
	width: max-content;
}

.c-environment-list {
	display: grid;
	gap: 5.6rem 8rem;
}

.c-environment-list a {
	display: block;
	position: relative;
	transition: opacity 0.3s ease;
}

.c-environment-list a figure {
	display: block;
	overflow: hidden;
	margin: 0 0 1.6rem;
	border: 2px solid var(--color-green);
	border-radius: 4rem;
}

.c-environment-list a figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-environment-list a .col {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.6rem;
}

.c-environment-list a h3 {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.5;
}

.c-environment-list a .arrow {
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	width: 4.8rem;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	color: var(--color-green);
	font-size: 2.4rem;
	font-weight: 700;
	aspect-ratio: 1/1;
}

.c-header {
	padding: 16rem 0 8rem;
}

.c-header hgroup p {
	color: var(--color-green);
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.5;
	text-transform: capitalize;
}

.c-header hgroup h1 {
	font-size: 1.8rem;
	font-weight: 800;
}

.c-header-title.-voice {
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.c-header-title h1 {
	color: var(--color-green);
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.5;
}

.c-header-title .voice {
	display: block;
	position: absolute;
	z-index: 1;
	top: -4.5rem;
	right: -8.7rem;
	padding: 0.5rem 2.4rem;
	border-radius: 100vmax;
	background-color: var(--color-green);
	color: var(--color-cream);
	font-size: 1.3rem;
	font-weight: 800;
	line-height: 1.3076923077;
	text-align: center;
	text-transform: capitalize;
}

.c-header-title .voice::after {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	bottom: -0.6rem;
	left: 2.2rem;
	width: 2rem;
	height: 1rem;
	border-radius: 100vmax;
	background-color: var(--color-green);
	transform: rotate(135deg);
}

.c-header-title .voice span {
	display: block;
}

.c-header picture {
	display: block;
	overflow: hidden;
	max-width: 35.7rem;
	margin: 4rem 0 0;
	border: 2px solid var(--color-green);
	border-left: none;
	border-radius: 0 4rem 4rem 0;
}

.c-header picture img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-header.-interview {
	position: relative;
	z-index: 1;
}

.c-header-lead {
	margin: 5.6rem 0 0;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.c-header-lead.-wide {
	margin: 8rem 0 0;
}

.c-header-lead.-ls {
	letter-spacing: 0;
}

.c-header-nav {
	display: flex;
	flex-wrap: wrap;
	margin: 3.2rem 0 0;
	gap: 1.6rem 2rem;
}

.c-header-nav li a {
	display: flex;
	border-bottom: 2px dotted var(--color-green);
	color: var(--color-green);
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.5833333333;
	transition: opacity 0.3s ease;
	gap: 1.2rem;
}

.c-header-nav li a::after {
	content: '↓';
}

.c-icon {
	display: inline-block;
	transition: background 0.3s ease;
}

.c-icon::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: no-repeat 50% 50%/contain;
	transition: background 0.3s ease;
}

.c-icon.-target {
	width: 2.4rem;
	height: 2.4rem;
}

.c-icon.-target::before {
	background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'24\' height=\'24\'%3E%3Cg data-name=\'グループ 43803\'%3E%3Cpath fill=\'none\' d=\'M0 0h24v24H0z\' data-name=\'長方形 58505\'/%3E%3Cpath fill=\'%2300a31b\' d=\'M5.778 20a1.712 1.712 0 0 1-1.256-.522A1.712 1.712 0 0 1 4 18.222V5.778a1.712 1.712 0 0 1 .522-1.256A1.712 1.712 0 0 1 5.778 4H12v1.778H5.778v12.444h12.444V12H20v6.222a1.712 1.712 0 0 1-.522 1.256 1.712 1.712 0 0 1-1.256.522Zm4.178-4.711-1.244-1.244 8.267-8.267h-3.2V4H20v6.222h-1.778v-3.2Z\'/%3E%3C/g%3E%3C/svg%3E');
}

.c-input {
	width: 100%;
	padding: 1.6rem;
	border: none;
	border-radius: 1rem;
	background-color: var(--color-cream);
}

.c-interview {
	overflow-x: clip;
}

.c-interview-inner {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding-left: calc(50vw - 50%);
}

.c-interview .c-title-wrap {
	padding-right: 2rem;
}

.c-interview-slide .splide__slide a {
	transition: opacity 0.3s ease;
}

.c-interview-slide .splide__slide figure {
	border: 2px solid var(--color-green);
	border-radius: 50%;
	background-color: var(--color-cream);
}

.c-interview-slide .splide__slide figure img {
	border-radius: 50%;
}

.c-interview-slide .splide__slide .top {
	position: relative;
}

.c-interview-slide .splide__slide .top .copy {
	position: absolute;
	top: 0;
	left: 3.2rem;
	writing-mode: vertical-rl;
}

.c-interview-slide .splide__slide .top .copy > span {
	display: block;
	height: -moz-fit-content;
	height: fit-content;
	padding: 0.6rem 0.2rem;
	background-color: var(--color-green);
	color: var(--color-cream);
	font-weight: 700;
}

.c-interview-slide .splide__slide .top .copy > span + span {
	margin-right: 0.5rem;
}

.c-interview-slide .splide__slide .top .copy > span .dot {
	display: inline-block;
	transform: translateX(0.2rem);
}

.c-interview-slide .splide__slide .top .copy > span .kigou {
	display: inline-block;
	margin-top: -1rem;
}

.c-interview-slide .splide__slide .top .number {
	position: absolute;
	top: 1.5rem;
	right: 1rem;
	width: 5rem;
}

.c-interview-slide .splide__slide .bottom {
	margin: 0.8rem 0 0;
	text-align: center;
}

.c-interview-slide .splide__slide .bottom h3 {
	font-size: 2.4rem;
	font-weight: 800;
}

.c-interview-slide .splide__slide .bottom > div {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0.5rem 0 0;
	font-size: 1.4rem;
	gap: 0.6rem;
}

.c-interview-btns {
	display: flex;
	align-items: center;
	margin: 2.4rem 0 0;
	gap: 2.4rem;
}

.c-lead {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.75;
}

.c-radio {
	display: flex;
	overflow: hidden;
	flex-wrap: wrap;
	align-items: center;
}

.c-radio input[type=radio] + span {
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
}

.c-radio input[type=radio] + span::before {
	content: '';
	display: block;
	width: 2rem;
	min-width: 2rem;
	height: 2rem;
	margin-right: 0.8rem;
	border: 1px solid var(--color-black);
	border-radius: 50%;
	background: var(--color-white) no-repeat 50% 50%;
	background-size: 1rem 1rem;
}

.c-radio input[type=radio] {
	position: absolute;
	left: -9999px;
}

.c-radio input[type=radio]:checked + span::before {
	background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'12\' height=\'12\'%3E%3Crect width=\'12\' height=\'12\' fill=\'%2300a31b\' data-name=\'長方形 243760\' rx=\'6\'/%3E%3C/svg%3E');
}

.c-select {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 24rem;
	height: 5.6rem;
	margin: 0.8rem 0 0;
	border-radius: 1rem;
	background-color: var(--color-cream);
}

.c-select::before {
	content: '';
	display: block;
	position: absolute;
	z-index: 5;
	top: 50%;
	right: 1.6rem;
	width: 1.2rem;
	height: 0.6rem;
	background: no-repeat 50% 50%;
	background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'13.414\' height=\'7.207\'%3E%3Cpath fill=\'none\' stroke=\'%232e2e2e\' stroke-linecap=\'round\' stroke-linejoin=\'round\' d=\'m.707.707 6 6 6-6\' data-name=\'パス 35088\'/%3E%3C/svg%3E');
	background-size: contain;
	transform: translate3d(0, -50%, 0);
	pointer-events: none;
}

.c-select select {
	outline: none;
	cursor: pointer;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	padding: 1.6rem;
	border: 0;
	border-radius: 0;
	border-radius: 1rem;
	background: none transparent;
	background-color: var(--color-cream);
	background-clip: padding-box;
	color: inherit;
	color: var(--color-black);
	font-size: inherit;
	vertical-align: middle;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.c-select select::-ms-clear {
	display: none;
}

.c-select select::-ms-reveal {
	display: none;
}

.c-select select::-ms-expand {
	display: none;
}

.c-select select.is-selected {
	color: var(--color-black);
}

.c-select option {
	color: var(--color-black);
}

.c-select.is-selected select,
.c-select.is-selected option {
	color: var(--color-black);
}

.c-slide .splide__slide img {
	width: 100%;
}

.c-slide-arrow {
	display: flex;
	position: relative;
	gap: 0.8rem;
}

.c-slide-arrow .splide__arrow {
	display: flex;
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	justify-content: center;
	align-items: center;
	width: 6.4rem;
	height: 6.4rem;
	border: 2px solid var(--color-green);
	background-color: var(--color-cream);
	opacity: 1;
	color: var(--color-green);
	font-size: 2.4rem;
	font-weight: 700;
	transform: none;
}

.c-slide-arrow .splide__arrow svg {
	display: none;
}

.c-slide-arrow .splide__arrow.splide__arrow--prev::before {
	content: '←';
	pointer-events: none;
}

.c-slide-arrow .splide__arrow.splide__arrow--next::before {
	content: '→';
	pointer-events: none;
}

.c-slide-pagination {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	justify-content: flex-start;
	padding: 0;
	transform: none;
}

.c-slide-pagination .splide__pagination__page {
	width: 3.5rem;
	height: 0.2rem;
	margin: 0;
	border-radius: 100vmax;
	background-color: var(--color-gray);
}

.c-slide-pagination .splide__pagination__page.is-active {
	background-color: var(--color-green);
	transform: scaleX(1);
}

.c-textarea {
	width: 100%;
	min-height: 13.6rem;
	padding: 1.6rem;
	border: none;
	border-radius: 1rem;
	background-color: var(--color-cream);
}

.c-title {
	position: relative;
	margin: 0 0 4.8rem;
}

.c-title.-narrow {
	margin: 0 0 3.2rem;
}

.c-title.-wide {
	margin: 0 0 6.4rem;
}

.c-title .en {
	color: var(--color-green);
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 1.25;
	text-transform: capitalize;
}

.c-title .ja {
	padding-left: 0.4rem;
	font-size: 1.8rem;
	font-weight: 800;
}

.c-title p.ja {
	margin: 0;
	text-transform: capitalize;
}

.c-title .voice {
	display: block;
	position: absolute;
	z-index: 1;
	top: -3.6rem;
	right: -3.3rem;
	padding: 0.5rem 2.4rem;
	border-radius: 100vmax;
	background-color: var(--color-green);
	color: var(--color-cream);
	font-size: 1.3rem;
	font-weight: 800;
	line-height: 1.3076923077;
	text-align: center;
	text-transform: capitalize;
}

.c-title .voice::after {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	bottom: -0.6rem;
	left: 2.2rem;
	width: 2rem;
	height: 1rem;
	border-radius: 100vmax;
	background-color: var(--color-green);
	transform: rotate(135deg);
}

.c-title .voice span {
	display: block;
}

.c-title-en {
	margin: 0 0 4.8rem;
	color: var(--color-green);
	font-size: 4.8rem;
	font-weight: 800;
	text-transform: capitalize;
}

.c-title-wrap {
	display: grid;
	margin: 0 0 4.8rem;
	gap: 3.2rem;
}

.c-title-wrap .c-title {
	flex-shrink: 0;
	margin: 0;
}

.p-404 p {
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-404 .c-btn {
	margin-top: 4rem;
}

.p-about-circle {
	position: relative;
}

.p-about-circle figure {
	width: 100%;
	border: 2px solid var(--color-green);
	border-radius: 50%;
}

.p-about-circle figure img {
	width: 100%;
}

.p-about-circle .text {
	margin: 3.2rem 0;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.75;
}

.p-about-numbers {
	position: relative;
	z-index: 1;
	overflow-x: clip;
	margin-bottom: 12rem;
	padding-bottom: 4.7rem;
}

.p-about-numbers::before {
	content: '';
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 92%;
	background-color: var(--color-green);
}

.p-about-numbers .c-title .ja {
	color: var(--color-green);
}

.p-about-numbers .c-title .en {
	color: var(--color-cream);
}

.p-about-numbers .c-title .en .black {
	color: var(--color-black);
}

.p-about-numbers figure {
	border: 2px solid var(--color-cream);
	border-radius: 50%;
}

.p-about-numbers figure img {
	width: 100%;
}

.p-about-numbers p {
	margin: 3.2rem 0;
	color: var(--color-cream);
	font-size: 1.4rem;
	font-weight: 700;
}

.p-about-numbers .c-btn {
	max-width: 29.5rem;
}

.p-about-numbers .text {
	position: absolute;
	z-index: -1;
	bottom: -0.5rem;
	left: 50%;
	width: 100%;
	white-space: nowrap;
	transform: translate(-50%, 0);
}

.p-about-numbers .text p {
	display: inline-block;
	margin: 0;
	opacity: 0.3;
	color: var(--color-green-dark);
	font-size: 8rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.05em;
	animation: marquee 40s linear infinite;
}

.p-about-numbers .text p span {
	display: inline-block;
	padding: 0 8rem 0 0;
}

.p-article {
	padding: 16rem 0;
}

.p-article-header {
	position: relative;
	padding: 2.4rem 0;
}

.p-article-header::before,
.p-article-header::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 0.2rem;
	background-image: linear-gradient(to right, var(--color-green), var(--color-green) 0.4rem, transparent 0.4rem, transparent 0.8rem);
	background-repeat: repeat-x;
	background-size: 0.8rem 0.2rem;
}

.p-article-header::before {
	top: 0;
}

.p-article-header::after {
	bottom: 0;
}

.p-article-header time {
	color: var(--color-green);
	font-size: 1.6rem;
	line-height: 1.5;
}

.p-article-header .cat {
	color: var(--color-green);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-article-header h1 {
	margin: 0.8rem 0 0;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-article .c-btn {
	margin-top: 8rem;
}

.p-benefit {
	overflow-x: clip;
}

.p-benefit-inner {
	position: relative;
	z-index: 1;
	padding: 6.4rem 0;
}

.p-benefit-inner::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 32rem;
	height: 95.4%;
	border-radius: 0 4rem 4rem 0;
	background-color: var(--color-cream3);
}

.p-benefit-lead p {
	margin: 3.2rem 0 0;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-benefit-lead p.title {
	margin: 0;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: 0;
}

.p-benefit-list {
	display: grid;
	margin: 8rem 0 0;
	gap: 6.4rem;
}

.p-benefit-list li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.p-benefit-list li figure {
	overflow: hidden;
	width: 40rem;
	margin: 0 0 0 -1rem;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.p-benefit-list li figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-benefit-list li h3 {
	margin: 3.2rem 0 2.4rem;
	color: var(--color-green);
	font-size: 2.4rem;
	font-weight: 800;
}

.p-benefit-list li p {
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-benefit-list li p + p {
	margin: 2.4rem 0 0;
}

.p-bg-dot {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 200vh;
	background: url(../img/img_dot_cream.svg) repeat top left/3rem 3rem;
	pointer-events: none;
}

.p-bg-dot.-green {
	background: url(../img/img_dot.svg) repeat top left/3rem 3rem;
}

.p-business-inner {
	position: relative;
	z-index: 1;
	padding: 6.4rem 0;
}

.p-business-inner::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 35.5rem;
	height: 100%;
	border-radius: 0 4rem 4rem 0;
	background-color: var(--color-cream3);
}

.p-business-list {
	display: grid;
	gap: 6.4rem;
}

.p-business-list li {
	display: grid;
	gap: 2.4rem;
}

.p-business-list li figure {
	overflow: hidden;
	width: 100%;
	border: 2px solid var(--color-green);
	border-radius: 4rem;
}

.p-business-list li figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-business-list li hgroup h3 {
	font-size: 2.4rem;
	font-weight: 800;
}

.p-business-list li hgroup p {
	color: var(--color-green);
	font-size: 1.6rem;
	font-weight: 800;
	text-transform: capitalize;
}

.p-business-list li h4 {
	margin: 2.4rem 0;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-business-list li .text {
	font-size: 1.4rem;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-business-list li .text p + p {
	margin-top: 2.4rem;
}

.p-career-row {
	margin: 4.8rem 0 0;
	padding: 4.8rem 0 0;
}

.p-career-row:not(:nth-child(1)) {
	border-top: 2px solid var(--color-green);
}

.p-career-row:nth-child(1) {
	margin: 5.6rem 0 0;
	padding: 0;
}

.p-career-row .header {
	display: grid;
	align-items: center;
	grid-template-columns: 10.4rem 1fr;
	gap: 2.4rem;
}

.p-career-row .header figure {
	overflow: hidden;
	width: 10.4rem;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.p-career-row .header figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-career-row .header h2 {
	font-size: 1.6rem;
	font-weight: 800;
}

.p-career-row .header h2 span {
	display: block;
}

.p-career-row .header h2 .num {
	color: var(--color-green);
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.2;
	text-transform: capitalize;
}

.p-career-row .header h2 .name {
	line-height: 1.3333333333;
}

.p-career-row .contents {
	display: grid;
	margin: 4rem 0 0;
	gap: 4rem;
}

.p-career-row .contents .table .th,
.p-career-row .contents .table .td {
	display: grid;
	align-items: center;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.7857142857;
	text-align: center;
	grid-template-columns: 23rem 1fr 1fr;
}

.p-career-row .contents .table .th {
	padding: 1.2rem 0;
	border-radius: 1rem 1rem 0 0;
	background-color: var(--color-green);
	color: var(--color-cream);
	letter-spacing: 0.05em;
}

.p-career-row .contents .table .td {
	position: relative;
}

.p-career-row .contents .table .td::before {
	content: '';
	position: absolute;
	top: 0.9rem;
	left: 1.6rem;
	width: 0.8rem;
	border-radius: 50%;
	background-color: var(--color-green);
	aspect-ratio: 1/1;
}

.p-career-row .contents .table .td + .td {
	margin: 1.6rem 0 0;
}

.p-career-row .contents .table .td .first {
	padding: 0 0 0 3.6rem;
}

.p-career-row .contents .table .td .year {
	display: block;
	color: var(--color-green);
	font-size: 1.6rem;
	font-weight: 800;
	line-height: 1.6875;
	text-align: left;
}

.p-career-row .contents .table .td .text {
	padding: 0 1.9rem 0 0;
	font-size: 1.2rem;
	line-height: 1.5;
	text-align: left;
}

.p-career-row .contents .table .line {
	position: absolute;
	top: 3.1rem;
	left: 1.9rem;
	width: 0.2rem;
	height: calc(100% - 3.1rem);
	background-color: var(--color-green-light);
}

.p-career-row .contents .table .bg {
	position: relative;
	overflow: hidden;
	padding: 2rem 0 3.2rem;
	border-radius: 0 0 2rem 2rem;
	background-color: var(--color-cream2);
}

.p-career-row .contents .table .bg::before,
.p-career-row .contents .table .bg::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	width: 0.1rem;
	height: 100%;
	background-image: linear-gradient(to bottom, var(--color-green), var(--color-green) 0.2rem, transparent 0.2rem, transparent 0.4rem);
	background-repeat: repeat-y;
	background-size: 0.1rem 0.5rem;
}

.p-career-row .contents .table .bg::before {
	right: 5.2rem;
}

.p-career-row .contents .table .bg::after {
	right: 10.4rem;
}

.p-career-row .contents .text .row + .row {
	margin: 4rem 0 0;
}

.p-career-row .contents .text .row h3 {
	color: var(--color-green);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-career-row .contents .text .row p {
	margin: 1.6rem 0 0;
	font-size: 1.4rem;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-circle {
	position: fixed;
	z-index: 3;
	top: 50%;
	left: 50%;
	width: 37.5rem;
	border: 2px solid var(--color-cream);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.3s ease, width 0.3s ease;
	transform: translate(-50%, -50%);
	pointer-events: none;
	aspect-ratio: 1/1;
}

.p-circle-2 {
	z-index: 4;
	border-color: var(--color-green) !important;
}

.p-circle-3 {
	z-index: 5;
}

.p-company-lead {
	position: relative;
	overflow-x: clip;
}

.p-company-lead-inner {
	padding: 4rem 0;
	background-color: var(--color-cream3);
}

.p-company-lead p {
	font-size: 1.6rem;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-company-lead p.p-company-lead-title {
	margin: 0 0 3.2rem;
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
}

.p-company-lead figure {
	width: 38rem;
	margin: 4rem 0 0;
	border: 2px solid var(--color-green);
	border-radius: 50%;
}

.p-company-profile-list > div {
	display: grid;
	padding: 1.2rem 0;
	border-bottom: 2px solid var(--color-green-light);
	grid-template-columns: 8rem 1fr;
	gap: 2.4rem;
}

.p-company-profile-list > div:first-child {
	border-top: 2px solid var(--color-green-light);
}

.p-company-profile-list > div dt,
.p-company-profile-list > div dd {
	font-size: 1.5rem;
}

.p-company-profile-list > div dt {
	font-weight: 700;
}

.p-company-profile-list > div dd div + div {
	margin-top: 1rem;
}

.p-crosstalk-contents .header {
	display: grid;
	gap: 3.5rem;
}

.p-crosstalk-contents .header .items {
	display: grid;
	position: relative;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.3rem;
}

.p-crosstalk-contents .header .cross {
	display: block;
	position: absolute;
	bottom: 0.3rem;
	left: 50%;
	width: 3.6rem;
	height: 3.6rem;
	transform: translateX(-50%);
}

.p-crosstalk-contents .header .cross::before,
.p-crosstalk-contents .header .cross::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 2px;
	background-color: var(--color-green);
}

.p-crosstalk-contents .header .cross::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.p-crosstalk-contents .header .cross::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.p-crosstalk-contents .header .item {
	position: relative;
}

.p-crosstalk-contents .header .item .same {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	justify-content: center;
	align-items: center;
	width: 4.7rem;
	border-radius: 50%;
	background-color: var(--color-green);
	color: var(--color-cream);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	aspect-ratio: 1/1;
}

.p-crosstalk-contents .header .item figure {
	overflow: hidden;
	width: 100%;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.p-crosstalk-contents .header .item figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-crosstalk-contents .header .item p {
	margin: 0.8rem 0 0;
}

.p-crosstalk-contents .header .item p span {
	display: block;
	text-align: center;
}

.p-crosstalk-contents .header .item p span.name {
	font-weight: 700;
	line-height: 1.5625;
}

.p-crosstalk-contents .header .item p span.year {
	font-size: 1.2rem;
}

.p-crosstalk-contents .header > p {
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-crosstalk-contents .row {
	margin: 6.4rem 0 0;
}

.p-crosstalk-contents .row h2 {
	position: relative;
	margin: 0 0 3.2rem;
	padding: 1.4rem 0;
}

.p-crosstalk-contents .row h2::before,
.p-crosstalk-contents .row h2::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 0.2rem;
	background-image: linear-gradient(to right, var(--color-green), var(--color-green) 0.4rem, transparent 0.4rem, transparent 0.8rem);
	background-repeat: repeat-x;
	background-size: 0.8rem 0.2rem;
}

.p-crosstalk-contents .row h2::before {
	top: 0;
}

.p-crosstalk-contents .row h2::after {
	bottom: 0;
}

.p-crosstalk-contents .row h2 span {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: 0.075em;
	gap: 1.6rem;
}

.p-crosstalk-contents .row h2 span::before {
	content: 'Q';
	color: var(--color-green);
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.1;
}

.p-crosstalk-contents .row .talk {
	display: grid;
	margin: 1.6rem 0 0;
	grid-template-columns: 7.2rem 1fr;
	gap: 3.2rem;
}

.p-crosstalk-contents .row .talk figure {
	overflow: hidden;
	width: 7.2rem;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.p-crosstalk-contents .row .talk figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-crosstalk-contents .row .talk p {
	position: relative;
	padding: 1.6rem;
	border: 2px solid var(--color-green);
	border-radius: 2rem;
	background-color: var(--color-cream2);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-crosstalk-contents .row .talk p::before {
	content: '';
	position: absolute;
	top: 2rem;
	left: 0;
	width: 2.2rem;
	height: 2rem;
	background: url(../img/crosstalk/ico_talk.svg) no-repeat center/contain;
	transform: translateX(-100%);
}

.p-crosstalk-contents .row > figure {
	overflow: hidden;
	width: 100%;
	margin: 6.4rem 0 0;
	border: 2px solid var(--color-green);
	border-radius: 4rem;
	aspect-ratio: 335/200;
}

.p-crosstalk-contents .row > figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-crosstalk-list {
	display: grid;
	margin: 8rem 0 0;
	gap: 6.4rem;
}

.p-crosstalk-list a {
	display: block;
	position: relative;
	transition: opacity 0.3s ease;
}

.p-crosstalk-list a .interview {
	padding: 0 0 0 1rem;
	color: var(--color-green);
	font-size: 1.4rem;
	font-weight: 700;
	text-transform: capitalize;
}

.p-crosstalk-list a .num {
	color: var(--color-green);
	font-size: 1.8rem;
	font-weight: 800;
}

.p-crosstalk-list a .same {
	display: flex;
	position: absolute;
	z-index: 1;
	top: 0;
	right: -3rem;
	justify-content: center;
	align-items: center;
	width: 9.8rem;
	border-radius: 50%;
	background-color: var(--color-green);
	color: var(--color-cream);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.125;
	text-align: center;
	letter-spacing: 0.1em;
	aspect-ratio: 1/1;
}

.p-crosstalk-list a .same::after {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	bottom: 0.8rem;
	left: 0.2rem;
	width: 4rem;
	height: 1.3rem;
	border-radius: 100vmax;
	background-color: var(--color-green);
	transform: rotate(135deg);
}

.p-crosstalk-list a figure,
.p-crosstalk-list a picture {
	display: block;
	overflow: hidden;
	margin: 1.1rem 0 1.6rem;
	border: 2px solid var(--color-green);
	border-radius: 4rem;
}

.p-crosstalk-list a figure img,
.p-crosstalk-list a picture img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-crosstalk-list a .col {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.6rem;
}

.p-crosstalk-list a h2 {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.5;
}

.p-crosstalk-list a .name {
	display: flex;
	align-items: center;
	margin: 0.4rem 0 0;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.5833333333;
	gap: 1.6rem;
}

.p-crosstalk-list a .name .cross {
	display: inline-block;
	position: relative;
	width: 1.6rem;
	height: 1.6rem;
}

.p-crosstalk-list a .name .cross::before,
.p-crosstalk-list a .name .cross::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 1px;
	background-color: var(--color-green);
}

.p-crosstalk-list a .name .cross::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.p-crosstalk-list a .name .cross::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.p-crosstalk-list a .arrow {
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	width: 4.8rem;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	color: var(--color-green);
	font-size: 2.4rem;
	font-weight: 700;
	aspect-ratio: 1/1;
}

.p-entry-form-inner {
	padding: 4.8rem 2rem;
	border-radius: 4rem;
	background-color: var(--color-white);
}

.p-entry-form-head {
	display: grid;
	gap: 3.2rem;
}

.p-entry-form-head .step {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5.8rem;
}

.p-entry-form-head .step li {
	position: relative;
	width: 4.8rem;
	text-align: center;
}

.p-entry-form-head .step li:not(:first-child)::before {
	content: '';
	position: absolute;
	top: 2.2rem;
	left: -1.6rem;
	width: 2.6rem;
	height: 0.4rem;
	border-radius: 100vmax;
	background-color: var(--color-green-light);
	transform: translateX(-100%);
}

.p-entry-form-head .step li .num {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4.8rem;
	border-radius: 50%;
	background-color: var(--color-green-light);
	color: var(--color-white);
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1;
	aspect-ratio: 1/1;
}

.p-entry-form-head .step li .text {
	display: block;
	margin: 0.4rem 0 0;
	color: var(--color-green-light);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 2.2857142857;
	letter-spacing: 0.05em;
}

.p-entry-form-head .step li.active .num {
	background-color: var(--color-green);
}

.p-entry-form-head .step li.active .text {
	color: var(--color-green);
}

.p-entry-form-head p {
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-entry-form-head p.step-3 {
	font-size: 2.4rem;
	font-weight: 700;
}

.p-entry-form-policy {
	margin: 0 0 1rem;
}

.p-entry-form-body {
	margin: 4rem 0 0;
	padding: 4rem 0 0;
	border-top: 1px solid var(--color-green-light);
}

.p-entry-form-body .btn-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 4rem 0 0;
	padding: 4rem 0 0;
	border-top: 1px solid var(--color-green-light);
	gap: 1.6rem;
}

.p-entry-form-body .btn-wrap .c-btn {
	cursor: pointer;
}

.p-entry-form-body .btn-wrap .btn-confirm {
	width: 100%;
}

.p-entry-form-body .btn-wrap .btn-reset {
	width: 100%;
	max-width: 25.8rem;
}

.p-entry-form-body .btn-wrap .btn-reset .c-btn {
	color: var(--color-black);
}

.p-entry-form-body .btn-wrap .btn-submit,
.p-entry-form-body .btn-wrap .btn-edit {
	width: 100%;
}

.p-entry-form-body .btn-wrap .btn-submit .c-btn,
.p-entry-form-body .btn-wrap .btn-edit .c-btn {
	max-width: 27.6rem;
}

.p-entry-form-body.-complete p {
	font-size: 1.5rem;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-entry-form-body.-complete .c-btn.-back {
	max-width: 21.5rem;
	margin-top: 4rem;
}

.p-entry-form-row {
	margin: 0 0 3.2rem;
}

.p-entry-form-row.-hidden {
	display: none;
}

.p-entry-form-row .label {
	font-weight: 700;
	line-height: 1.96875;
	letter-spacing: 0.075em;
}

.p-entry-form-row .sub {
	margin: 0 0 0 1.6rem;
	font-size: 1.4rem;
	font-weight: 400;
}

.p-entry-form-row .required,
.p-entry-form-row .optional {
	display: inline-block;
	margin: 0 0 0 1rem;
	padding: 0.2rem 0.8rem;
	border-radius: 0.4rem;
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.05em;
	transform: translateY(-0.2rem);
}

.p-entry-form-row .required {
	background-color: var(--color-green);
	color: var(--color-white);
}

.p-entry-form-row .optional {
	background-color: var(--color-green-light);
	color: var(--color-green);
}

.p-entry-form-row .content {
	margin: 0.8rem 0 0;
}

.p-entry-form-row .content .item {
	margin: 3.2rem 0 0;
}

.p-entry-form-row .content .item .col .c-select {
	margin: 0;
}

.p-entry-form-row .content .item span {
	display: block;
	line-height: 1.96875;
	letter-spacing: 0.075em;
}

.p-entry-form-row .note {
	margin: 0.8rem 0 0;
	font-size: 1.2rem;
	line-height: 1.5;
	letter-spacing: 0.075em;
}

.p-entry-form-row .radio-wrap {
	display: flex;
	align-items: center;
	gap: 2.4rem;
}

/* 確認画面 */

.p-entry-form.step-02 .required,
.p-entry-form.step-02 .optional,
.p-entry-form.step-02 .note {
	display: none;
}

.p-entry-form.step-02 input,
.p-entry-form.step-02 textarea,
.p-entry-form.step-02 .c-radio,
.p-entry-form.step-02 .c-select {
	padding: 0;
	background-color: transparent;
	pointer-events: none;
}

.p-entry-form.step-02 .c-textarea {
	min-height: auto;
}

.p-entry-form.step-02 .radio-wrap {
	display: block;
}

.p-entry-form.step-02 .radio-wrap .c-radio input[type=radio] + span {
	display: none;
}

.p-entry-form.step-02 .radio-wrap .c-radio input[type=radio]:checked + span {
	display: block;
}

.p-entry-form.step-02 .radio-wrap .c-radio input[type=radio]:checked + span::before {
	display: none;
}

.p-entry-form.step-02 .col {
	display: flex;
}

.p-entry-form.step-02 .col .c-input-wrap {
	flex-shrink: 0;
	width: 15rem;
}

.p-entry-form.step-02 .c-select {
	height: auto;
}

.p-entry-form.step-02 .c-select::before {
	display: none;
}

.p-entry-form.step-02 .c-select select {
	padding: 0;
	background-color: transparent;
}

.p-entry-form.step-02 .p-entry-form-policy {
	display: none;
}

.p-entry-form.step-02 ::-moz-placeholder {
	color: var(--color-black);
}

.p-entry-form.step-02 ::placeholder {
	color: var(--color-black);
}

.p-entry-modal {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.72);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.p-entry-modal-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - 4rem);
	max-width: 46.4rem;
	padding: 4rem 2rem;
	border-radius: 4rem;
	background-color: var(--color-cream);
	transform: translate(-50%, -50%);
}

.p-entry-modal-inner .title {
	text-align: center;
}

.p-entry-modal-inner .title .en {
	color: var(--color-green);
	font-size: 3.2rem;
	font-weight: 800;
	text-transform: capitalize;
}

.p-entry-modal-inner .title .ja {
	color: var(--color-black);
	font-size: 1.4rem;
	font-weight: 800;
}

.p-entry-modal-inner .btn {
	display: grid;
	margin: 3.2rem 0 0;
	gap: 1.2rem;
}

.p-entry-modal-inner .btn .c-btn {
	font-size: 2rem;
}

.p-entry-modal-inner .close {
	display: flex;
	position: absolute;
	top: -1.2rem;
	right: -1.2rem;
	justify-content: center;
	align-items: center;
	width: 5.6rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background-color: var(--color-gray-dark);
	color: var(--color-cream);
	font-size: 1rem;
	font-weight: 700;
	text-transform: capitalize;
	aspect-ratio: 1/1;
}

.p-history-inner {
	position: relative;
	z-index: 1;
	padding: 6.4rem 0;
}

.p-history-inner::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 35.5rem;
	height: 100%;
	border-radius: 0 4rem 4rem 0;
	background-color: var(--color-cream3);
}

.p-history-list {
	display: grid;
	position: relative;
	padding: 0 0 0 3rem;
	gap: 4.8rem;
}

.p-history-list::before {
	content: '';
	position: absolute;
	top: 4.3rem;
	left: 0;
	width: 0.4rem;
	height: calc(100% - 4.3rem - 91rem);
	background-color: var(--color-green-light);
}

.p-history-list li {
	display: grid;
	gap: 2.4rem;
}

.p-history-list li .year {
	position: relative;
	color: var(--color-green-light);
	font-size: 1.4rem;
	font-weight: 700;
}

.p-history-list li .year::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -2.8rem;
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	background-color: var(--color-green);
	transform: translate(-50%, -50%);
}

.p-history-list li .year .num {
	font-size: 5.6rem;
	font-weight: 800;
}

.p-history-list li h3 {
	color: var(--color-green);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.5;
}

.p-history-list li .lead {
	margin: 0.4rem 0 2.4rem;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-history-list li .text {
	font-size: 1.4rem;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-history-list li .note {
	margin: 2.4rem 0 0;
	font-size: 1.2rem;
	line-height: 1.5;
	letter-spacing: 0.075em;
}

.p-history-list li figure {
	overflow: hidden;
	width: 100%;
	border: 2px solid var(--color-green);
	border-radius: 2rem;
}

.p-history-list li figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-interview-contents-inner {
	display: grid;
	gap: 8rem;
}

.p-interview-contents .row h3 {
	margin: 0 0 4rem;
}

.p-interview-contents .row h3 span {
	background: linear-gradient(transparent 88%, var(--color-green) 0%);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.7;
}

.p-interview-contents .row figure {
	overflow: hidden;
	width: 100%;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.p-interview-contents .row figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-interview-contents .qa {
	margin: 4rem 0 0;
}

.p-interview-contents .qa h4 {
	display: flex;
	align-items: flex-start;
	color: var(--color-green);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.075em;
	gap: 1.6rem;
}

.p-interview-contents .qa h4::before {
	content: 'Q';
	font-size: 2.4rem;
}

.p-interview-contents .qa p {
	padding: 2.4rem 0 0 3.2rem;
	font-size: 1.4rem;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-interview-hero {
	overflow-x: clip;
	padding: 3.2rem 0 0;
}

.p-interview-hero figure {
	position: relative;
	z-index: -1;
	overflow: hidden;
	width: 38rem;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.p-interview-hero figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-interview-hero-contents {
	margin: -3.4rem 0 0;
}

.p-interview-hero-contents.-crosstalk {
	margin: 2.7rem 0 0;
}

.p-interview-hero h2 span {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0 0.8rem;
	background-color: var(--color-green);
	color: var(--color-cream);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.625;
}

.p-interview-hero h2 span.interview03 {
	width: -moz-max-content;
	width: max-content;
}

.p-interview-hero h2 span + span {
	margin: 0.8rem 0 0;
}

.p-interview-hero .detail {
	margin: 0.8rem 0 0;
	font-size: 1.4rem;
	line-height: 2;
}

.p-interview-hero .crosstalk-title {
	display: flex;
	position: relative;
	align-items: center;
	color: var(--color-green);
	gap: 3.4rem;
}

.p-interview-hero .crosstalk-title::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 10.3rem;
	width: 0.2rem;
	height: 1.6rem;
	background-color: var(--color-green);
	transform: translateY(-50%);
}

.p-interview-hero .crosstalk-title .number {
	display: flex;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 700;
	gap: 0.8rem;
}

.p-interview-hero .crosstalk-title .number .num {
	font-size: 1.6rem;
	font-weight: 800;
}

.p-interview-hero .crosstalk-title .same {
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.p-job-oneday {
	padding: 6.4rem 0 0;
}

.p-job-oneday .heading {
	display: flex;
	gap: 0 5.9rem;
}

.p-job-oneday .heading figure {
	width: 9.6rem;
}

.p-job-oneday .heading figure img {
	width: 100%;
}

.p-job-oneday .heading .title {
	position: relative;
	text-align: right;
}

.p-job-oneday .heading .title p {
	font-size: 1.8rem;
	font-weight: 800;
	text-transform: uppercase;
}

.p-job-oneday .heading .title h2 {
	width: -moz-max-content;
	width: max-content;
	color: var(--color-green);
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.25;
}

.p-job-oneday .heading .title .name {
	position: absolute;
	top: 0;
	left: -4.2rem;
	width: -moz-fit-content;
	width: fit-content;
	width: 11.1rem;
	height: 5.3rem;
	background: url(../img/job/sp/ico_copy.svg) no-repeat center/contain;
	color: var(--color-green);
	font-size: 1.6rem;
	font-weight: 800;
	text-align: center;
}

.p-job-oneday .heading .title .name span {
	display: block;
	position: absolute;
	top: 1rem;
	left: 50%;
	width: -moz-max-content;
	width: max-content;
	transform: translate(-50%, 0);
}

.p-job-oneday-list {
	display: grid;
	position: relative;
	margin: 6.4rem 0 0;
	padding: 0 0 0 3rem;
	gap: 4.8rem;
}

.p-job-oneday-list::before {
	content: '';
	position: absolute;
	top: 1rem;
	left: 0;
	width: 0.4rem;
	height: calc(100% - 1rem - 33rem);
	background-color: var(--color-green-light);
}

.p-job-oneday-list li {
	display: grid;
}

.p-job-oneday-list li .hour {
	position: relative;
	color: var(--color-green);
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1;
}

.p-job-oneday-list li .hour::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -2.8rem;
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	background-color: var(--color-green);
	transform: translate(-50%, -50%);
}

.p-job-oneday-list li h3 {
	margin: 0.8rem 0 0;
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1.5;
}

.p-job-oneday-list li .text {
	margin: 1.6rem 0 0;
	font-size: 1.4rem;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-job-oneday-list li figure {
	overflow: hidden;
	width: 100%;
	margin: 2.4rem 0 0;
	border: 2px solid var(--color-green);
	border-radius: 2rem;
}

.p-job-oneday-list li figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-job-tab {
	overflow-x: clip;
}

.p-job-tab-list {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 0.2rem;
	padding-inline: 2rem;
}

.p-job-tab-list .tab {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 11rem;
	height: 4.8rem;
	padding: 0.5rem 0 0;
	border-radius: 1.6rem 1.6rem 0 0;
	background-color: var(--color-green-light);
	color: var(--color-cream);
	font-weight: 700;
	line-height: 1.5625;
	letter-spacing: 0.05em;
}

.p-job-tab-list .tab.-active {
	height: 5.6rem;
	background-color: var(--color-green);
	font-size: 1.8rem;
}

.p-job-tab-panel {
	border-top: 4px solid var(--color-green);
}

.p-job-tab-panel .panel {
	display: none;
	padding: 6.4rem 0;
	background-color: var(--color-cream3);
}

.p-job-tab-panel .panel.-active {
	display: block;
}

.p-job-tab-contents {
	position: relative;
}

.p-job-tab-contents .l-section-inner {
	position: relative;
	z-index: 2;
}

.p-job-tab-contents .title p {
	font-size: 1.8rem;
	font-weight: 800;
}

.p-job-tab-contents .title h2 {
	color: var(--color-green);
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 1.25;
}

.p-job-tab-contents figure {
	overflow: hidden;
	width: 38rem;
	margin: 3.2rem 0 0;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.p-job-tab-contents figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-job-tab-contents .text {
	margin: 3.2rem 0 0;
}

.p-job-tab-contents .text h3 {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.5;
}

.p-job-tab-contents .text p {
	margin: 3.2rem 0 0;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-job-tab-contents .text .c-btn {
	max-width: 31.9rem;
	margin: 3.2rem 0 0;
}

.p-job-tab-contents .marquee {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: -3.2rem 0 0;
	white-space: nowrap;
}

.p-job-tab-contents .marquee p {
	display: inline-block;
	padding-right: 8.2rem;
	color: var(--color-cream);
	font-size: 5.6rem;
	font-weight: 700;
	animation: marquee 10s linear infinite;
}

.p-kv {
	position: fixed;
	z-index: 1;
	top: 0;
	width: 100%;
	height: 100vh;
}

.p-kv-img {
	position: absolute;
	overflow: hidden;
	border: 2px solid var(--color-cream);
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.p-kv-img.img01 {
	top: 12.4437781109vh;
	left: -2.3rem;
	width: 11.7rem;
	height: 11.7rem;
	animation: floating-y 3s ease-in-out infinite alternate-reverse;
}

.p-kv-img.img02 {
	top: 15.1424287856vh;
	right: 1.3rem;
	width: 9rem;
	height: 9rem;
	animation: floating-y 2.5s ease-in-out infinite alternate-reverse;
}

.p-kv-img.img03 {
	top: 69.8650674663vh;
	right: -1.2rem;
	width: 9.7rem;
	height: 9.7rem;
	animation: floating-y 4s ease-in-out infinite alternate-reverse;
}

.p-kv-img.img04 {
	top: 39.6666666667vh;
	left: -1.5rem;
	width: 14.1rem;
	height: 14.1rem;
	animation: floating-y 2s ease-in-out infinite alternate-reverse;
}

.p-kv-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-kv-scroll {
	display: flex;
	position: absolute;
	top: 83.808095952vh;
	right: 7.9rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 4.1rem;
	border: 2px solid var(--color-cream);
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.p-kv-scroll .en {
	display: none;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
}

.p-kv-scroll .arrow {
	font-size: 1.4rem;
	font-weight: 700;
}

.p-kv-video {
	position: fixed;
	z-index: 2;
	top: 50%;
	left: 50%;
	overflow: hidden;
	width: 33.5rem;
	border: 2px solid var(--color-cream);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transform-origin: center center;
	aspect-ratio: 1/1;
}

.p-kv-video-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
	transform: translate(-50%, -50%);
}

.p-kv-video-inner video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-kv-video picture,
.p-kv-video img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-kv-inner {
	position: relative;
	width: 100%;
	height: 100vh;
	padding-inline: 2rem;
}

.p-kv-title {
	color: var(--color-cream);
}

.p-kv-title-fixed {
	position: fixed;
	z-index: 3;
	top: 66.1169415292vh;
	left: 2rem;
	width: 100%;
}

.p-kv-title .en {
	display: block;
	font-size: 6.8rem;
	font-weight: 800;
	line-height: 1;
	text-transform: capitalize;
}

.p-kv-title .ja {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
}

.p-kv-wrap {
	position: relative;
	z-index: 3;
	width: 100%;
	opacity: 0;
}

.p-message {
	position: relative;
	overflow-x: clip;
}

.p-message .l-section-inner {
	position: relative;
	z-index: 1;
}

.p-message figure {
	overflow: hidden;
	width: 38rem;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.p-message figure img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-message h3 {
	margin: 3.2rem 0 4rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-message-text {
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-message-text p + p {
	margin-top: 4rem;
}

.p-message-name {
	display: flex;
	align-items: flex-end;
	margin: 3.2rem 0 0;
	letter-spacing: 0.075em;
	gap: 2.4rem;
}

.p-message-name .name {
	font-size: 2rem;
}

.p-news-list li {
	border-bottom: 0.1rem solid var(--color-green);
}

.p-news-list li:first-child {
	border-top: 0.1rem solid var(--color-green);
}

.p-news-list li a {
	display: grid;
	position: relative;
	padding: 2rem 4rem 2rem 0;
	transition: background-color 0.3s;
	gap: 0.4rem;
}

.p-news-list li a::after {
	content: '→';
	position: absolute;
	top: 50%;
	right: 0;
	color: var(--color-green);
	font-size: 2.4rem;
	font-weight: 700;
	transform: translateY(-50%);
}

.p-news-list li a time {
	color: var(--color-green);
	font-size: 1.4rem;
}

.p-news-list li a h2 {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6875;
}

.p-news-list + .c-btn {
	cursor: pointer;
	margin: 6.4rem auto 0;
}

.p-numbers-list {
	display: grid;
	gap: 1.6rem;
}

.p-numbers-list li {
	display: flex;
	position: relative;
	z-index: 1;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 28rem;
	padding: 4.4rem 2.5rem 2.5rem;
	border: 2px solid var(--color-green);
	border-radius: 4rem;
	background-color: var(--color-cream);
	text-align: center;
}

.p-numbers-list li:nth-child(3)::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 2.1rem;
	left: 2.8rem;
	width: 28rem;
	height: 23.8rem;
	background: url(../img/about/numbers/sp/img_03.svg) no-repeat center/contain;
}

.p-numbers-list li h2 {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.1em;
}

.p-numbers-list li .contents {
	color: var(--color-green);
}

.p-numbers-list li .contents span {
	display: inline-block;
}

.p-numbers-list li .contents .num {
	font-size: 8.6rem;
	font-weight: 800;
	line-height: 1;
}

.p-numbers-list li .contents .num.-large {
	font-size: 10.6rem;
}

.p-numbers-list li .contents .num.-small {
	font-size: 6.4rem;
}

.p-numbers-list li .contents .unit {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
}

.p-numbers-list li .contents .unit.-wm {
	font-size: 3.2rem;
	transform: translateY(0.8rem);
	writing-mode: vertical-rl;
}

.p-numbers-list li .text {
	margin: 1.5rem 0 0;
	padding: 0 2.4rem;
	border-radius: 100vmax;
	background-color: var(--color-green);
	color: var(--color-cream);
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.p-numbers-list li .note {
	width: 100%;
	margin: 1.3rem 0 0;
	color: var(--color-green);
	font-size: 1.2rem;
	text-align: right;
}

.p-numbers-list li img {
	position: absolute;
	z-index: -1;
	top: 4rem;
	right: 2rem;
	width: auto;
	height: 10rem;
}

.p-open-company-information {
	position: relative;
	z-index: 1;
	overflow-x: clip;
	margin: 0 0 8rem;
	padding: 0 0 4rem;
}

.p-open-company-information::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 4rem;
	left: 0;
	width: 100%;
	height: calc(100% - 4rem);
	background-color: var(--color-cream3);
}

.p-open-company-information-inner {
	display: grid;
	gap: 4rem;
}

.p-open-company-information figure {
	overflow: hidden;
	width: 100%;
	border: 2px solid var(--color-green);
	border-radius: 4rem;
	aspect-ratio: 335/187;
}

.p-open-company-information figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-open-company-information h2 {
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.5;
}

.p-open-company-information p {
	margin: 3.2rem 0 0;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-open-company-job figure {
	width: 100%;
}

.p-open-company-job figure img {
	width: 100%;
}

.p-open-company-job-inner {
	position: relative;
	z-index: 1;
	margin: -10rem 0 0;
	padding: 4rem 3.2rem;
	border-radius: 4rem;
	background-color: var(--color-cream2);
}

.p-open-company-job-inner > p {
	font-weight: 700;
	line-height: 1.96875;
	letter-spacing: 0.075em;
}

.p-open-company-job .c-title {
	margin: 0 0 2.4rem;
}

.p-open-company-job .c-title .en {
	font-size: 2.4rem;
}

.p-open-company-job .c-title .ja {
	padding: 0.8rem 0 0;
	font-size: 3rem;
}

.p-open-company-job .c-btn {
	max-width: 25.8rem;
	height: 10.9rem;
	margin: 2.4rem 0 0;
}

.p-open-company-slide img {
	width: 100%;
	border: 2px solid var(--color-green);
	border-radius: 50%;
}

.p-personality img {
	width: 100%;
}

.p-personality-text {
	position: relative;
	z-index: 2;
	margin: -12rem 0 0;
	padding: 4rem 2.4rem;
	border-radius: 4rem;
	background-color: var(--color-cream2);
	letter-spacing: 0.075em;
}

.p-personality-text .title {
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1.5;
}

.p-personality-text .text {
	margin: 2.4rem 0 0;
	font-size: 1.4rem;
	line-height: 1.75;
}

.p-personality-text .text p + p {
	margin-top: 3rem;
}

.p-personality-list {
	display: flex;
	width: 95rem;
	margin: 6.4rem 0 0;
}

.p-personality-list-wrap {
	padding: 0 8rem;
}

.p-personality-list li {
	width: 33.5rem;
}

.p-personality-list li:not(:first-child) {
	margin-left: -2.8rem;
}

.p-personality-list li .number {
	display: block;
	color: var(--color-green);
	font-size: 1.6rem;
	font-weight: 800;
	text-align: center;
}

.p-personality-list li .circle {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0.4rem 0 2.4rem;
	border: 2px solid var(--color-green);
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.p-personality-list li .circle img {
	width: 22.4rem;
}

.p-personality-list li p {
	max-width: 28rem;
	font-size: 1.3rem;
	line-height: 1.8846153846;
	letter-spacing: 0.075em;
	margin-inline: auto;
}

.p-philosophy-list li {
	padding: 2.4rem 0;
	border-bottom: 2px solid var(--color-green-light);
}

.p-philosophy-list li:first-child {
	border-top: 2px solid var(--color-green-light);
}

.p-philosophy-list li .title p {
	color: var(--color-green);
	font-size: 2.4rem;
	font-weight: 800;
	text-transform: capitalize;
}

.p-philosophy-list li .title h3 {
	font-size: 1.4rem;
	font-weight: 700;
}

.p-philosophy-list li > p,
.p-philosophy-list li .value {
	max-width: 26rem;
	margin: 2.4rem 0 0 auto;
}

.p-philosophy-list li > p {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.075em;
}

.p-philosophy-list li .value {
	display: flex;
	align-items: center;
	gap: 5.6rem;
}

.p-philosophy-list li .value p {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.075em;
}

.p-philosophy-list li .value p.wa {
	position: relative;
	padding-left: 3rem;
	font-size: 5.6rem;
}

.p-philosophy-list li .value p.wa::before,
.p-philosophy-list li .value p.wa::after {
	content: '';
	position: absolute;
	color: var(--color-green);
	font-size: 3.2rem;
	font-weight: 800;
}

.p-philosophy-list li .value p.wa::before {
	content: '“';
	top: 0;
	left: 0;
}

.p-philosophy-list li .value p.wa::after {
	content: '”';
	right: -1.2rem;
	bottom: -1rem;
	transform: translateX(100%);
}

.p-privacy > div + div {
	margin: 4.8rem 0 0;
}

.p-privacy dt,
.p-privacy dd {
	letter-spacing: 0.05em;
}

.p-privacy dt {
	margin: 0 0 3rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5555555556;
}

.p-privacy dd {
	font-size: 1.4rem;
	line-height: 2;
}

.p-privacy a {
	transition: color 0.3s ease;
}

.p-recruit-flow-inner {
	display: grid;
	gap: 7.4rem;
}

.p-recruit-flow-inner .item {
	position: relative;
	padding: 4.8rem 2.8rem;
	border-radius: 4rem;
	background-color: var(--color-white);
	text-align: center;
}

.p-recruit-flow-inner .item h3 {
	position: absolute;
	top: 0;
	left: 50%;
	color: var(--color-green);
	font-size: 3.2rem;
	font-weight: 800;
	transform: translate(-50%, -50%);
}

.p-recruit-flow-inner .item .list {
	display: grid;
	gap: 3rem;
}

.p-recruit-flow-inner .item .list p {
	position: relative;
	padding: 1rem;
	border-radius: 1.6rem;
	background-color: var(--color-green-light);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-recruit-flow-inner .item .list p:not(:last-child)::before {
	content: '';
	position: absolute;
	bottom: -2rem;
	left: 50%;
	width: 1.6rem;
	height: 1rem;
	background: no-repeat 50% 50%/contain;
	background-image: url('data:image/svg+xml,%0A%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'15.833\' height=\'10\'%3E%3Cpath fill=\'%2300a31b\' d=\'M0 2.083 2.084 0l5.833 5.833L13.75 0l2.083 2.083L7.917 10Z\' data-name=\'パス 35145\'/%3E%3C/svg%3E');
	transform: translateX(-50%);
}

.p-recruit-flow-inner .item .list p span {
	font-size: 1.6rem;
	font-weight: 400;
}

.p-recruit-job-type .list li {
	border-bottom: 2px solid var(--color-green);
}

.p-recruit-job-type .list li:first-child {
	border-top: 2px solid var(--color-green);
}

.p-recruit-job-type .list li .inner {
	display: grid;
	padding: 3.2rem 2rem;
	gap: 1.6rem;
}

.p-recruit-job-type .list li figure {
	overflow: hidden;
	width: 100%;
	border: 2px solid var(--color-green);
	border-radius: 4rem;
	aspect-ratio: 400/267;
}

.p-recruit-job-type .list li figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-recruit-job-type .list li h3 {
	margin: 0.8rem 0 0;
	color: var(--color-green);
	font-size: 4rem;
	font-weight: 800;
	text-align: center;
}

.p-recruit-job-type .list li .btn {
	display: grid;
	gap: 1.6rem;
}

.p-society-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 4.7rem 0;
	border: 2px solid var(--color-green);
	border-radius: 4rem;
	background-color: var(--color-cream);
}

.p-society-box .rank {
	position: relative;
}

.p-society-box .rank::before {
	content: '';
	display: block;
	position: absolute;
	top: 6.5rem;
	left: 11.5rem;
	width: 2.5rem;
	height: 1.6rem;
	background: no-repeat 50% 50%/contain;
	background-image: url('data:image/svg+xml,%0A%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'24.875\' height=\'15.766\'%3E%3Cpath fill=\'%2300a31b\' d=\'M24.656 4.044a.432.432 0 0 0-.511.062 7.859 7.859 0 0 1-4.777 1.974 5.256 5.256 0 0 1-1.3-.162c-3.147-.8-5.214-5.6-5.235-5.653a.433.433 0 0 0-.8 0c-.02.048-2.081 4.85-5.235 5.653a5.256 5.256 0 0 1-1.3.162A7.892 7.892 0 0 1 .73 4.107a.433.433 0 0 0-.72.409l2.444 10.913a.43.43 0 0 0 .422.338h19.127a.43.43 0 0 0 .422-.338l2.444-10.913a.431.431 0 0 0-.208-.471\' data-name=\'パス 35079\'/%3E%3C/svg%3E');
}

.p-society-box .title {
	position: absolute;
	top: 0;
	left: 0.8rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4444444444;
	letter-spacing: 0.1em;
}

.p-society-box .no,
.p-society-box .num {
	display: inline-block;
	color: var(--color-green);
	font-weight: 800;
	line-height: 1;
}

.p-society-box .no {
	font-size: 10.4rem;
}

.p-society-box .num {
	margin-left: -3rem;
	font-size: 17.7rem;
}

.p-society-box .text {
	margin: 2rem 0 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.75;
	text-align: center;
}

.p-society .c-lead {
	margin: 6.4rem 0 0;
}

.p-society-list {
	display: grid;
	margin: 6.4rem 0 0;
	gap: 8rem;
}

.p-society-list li figure {
	overflow: hidden;
	width: 38rem;
	margin-left: -4.5rem;
	border: 4px solid var(--color-green);
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.p-society-list li figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-society-list li .engagement {
	margin: 4rem 0 0;
	color: var(--color-green);
	font-size: 1.6rem;
	font-weight: 800;
	text-transform: uppercase;
}

.p-society-list li h3 {
	margin: 0.8rem 0 0;
	font-size: 3.2rem;
	font-weight: 800;
}

.p-society-list li .text {
	margin: 3.2rem 0 0;
}

.p-society-list li .text p {
	font-size: 1.4rem;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-society-list li .text p + p {
	margin-top: 3rem;
}

.p-society-another {
	position: relative;
	z-index: 1;
	margin: 12rem 0 0;
	padding: 6.4rem 2rem 6.4rem 0;
}

.p-society-another::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: -2rem;
	width: 35.5rem;
	height: 100%;
	border-radius: 0 4rem 4rem 0;
	background-color: var(--color-white);
}

.p-society-another h2 {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.5;
}

.p-society-another .text {
	margin: 2.4rem 0 0;
}

.p-society-another .text p {
	font-size: 1.5rem;
	line-height: 1.75;
	letter-spacing: 0.075em;
}

.p-society-another .text p + p {
	margin-top: 3rem;
}

.p-society-another figure {
	overflow: hidden;
	width: 100%;
	margin: 2.4rem 0 0;
	border: 2px solid var(--color-green);
	border-radius: 2rem;
	aspect-ratio: 315/177;
}

.p-society-another figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-spacer {
	height: 120vh;
}

.p-spacer2 {
	width: 100%;
	height: 50vh;
}

.p-spacer3 {
	width: 100%;
	height: 100vh;
}

.p-top {
	background-color: var(--color-green);
	color: var(--color-cream);
}

.p-top-overlay {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.p-top-news {
	position: absolute;
	z-index: 2;
	bottom: 2rem;
	left: 50%;
	width: 33.5rem;
	padding: 0.6rem 1.6rem;
	border-radius: 100vmax;
	background-color: var(--color-cream);
	color: var(--color-green);
	transition: opacity 0.3s ease;
	transform: translateX(-50%);
}

.p-top-news-inner {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}

.p-top-news-inner::after {
	content: '→';
	margin-left: auto;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1;
}

.p-top-news h2 {
	position: relative;
	flex-shrink: 0;
	padding: 0 1.2rem 0 0;
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.5833333333;
	text-transform: capitalize;
}

.p-top-news h2::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 0.1rem;
	height: 1.2rem;
	background-color: var(--color-green);
	transform: translateY(-50%);
}

.p-top-news h3 {
	display: -webkit-box;
	overflow: hidden;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.2727272727;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.p-top-message {
	margin: 13.7rem 0 0;
	font-size: 2rem;
	font-weight: 800;
	line-height: 2;
}

.p-top-section {
	position: relative;
	z-index: 5;
	overflow-x: clip;
	padding: 30rem 0 50rem;
	background-color: var(--color-cream);
	opacity: 0;
}

.p-top-section.-cream {
	color: var(--color-black);
}

.p-top-section.-green {
	padding: 0;
	background-color: var(--color-green);
	color: var(--color-cream);
}

.p-top-section.-green .c-title .en {
	color: var(--color-cream);
}

.p-top-section-circle {
	position: relative;
	z-index: 3;
	width: 700vw;
	height: 100vh;
	min-height: 90rem;
	border-radius: 50%;
	background-color: var(--color-cream);
	transform-origin: center center;
	margin-inline: calc(50% - 350vw);
	clip-path: circle(8vw at 50% 50%);
}

.p-top-section-circle.-green {
	background-color: var(--color-green);
}

.p-top-section-circle-wrap.-green {
	position: relative;
	z-index: 5;
}

.p-top-about {
	position: relative;
	z-index: 5;
}

.p-top-about h3 {
	margin: 4.8rem 0 4rem;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.5;
}

.p-top-about-slide img {
	width: 100%;
	border: 2px solid var(--color-green);
	border-radius: 50%;
}

.p-top-about-text {
	line-height: 2;
}

.p-top-about-text p + p {
	margin: 2.4rem 0 0;
}

.p-top-about .c-btn {
	max-width: 29.5rem;
	margin: 4rem 0 0;
}

.p-top-about-img {
	position: relative;
	width: 100%;
	height: 60rem;
	margin: 16rem 0 0;
	border-top: 0.2rem solid var(--color-green);
	border-bottom: 0.2rem solid var(--color-green);
}

.p-top-about-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-top-about-img .text {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	white-space: nowrap;
	transform: translate(-50%, -50%);
}

.p-top-about-img .text p {
	display: inline-block;
	padding-right: 8.2rem;
	color: var(--color-cream);
	font-size: 5.6rem;
	font-weight: 700;
	animation: marquee 20s linear infinite;
}

.p-top-tiktok {
	position: relative;
	z-index: 5;
}

.p-top-tiktok-inner {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding-left: calc(50vw - 50%);
}

.p-top-tiktok-slide .splide__slide {
	position: relative;
	overflow: hidden;
	min-height: 43.7rem;
	border: 2px solid var(--color-green);
	border-radius: 1.6rem;
	background-color: var(--color-cream);
}

.p-top-tiktok-slide .splide__slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 50%;
	background: #000;
	opacity: 0.6;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.p-top-tiktok-slide .splide__slide::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50.5%;
	width: 1.7rem;
	height: 2rem;
	border-radius: 0.3rem;
	background: #fff;
	transform: translate(-50%, -50%);
	pointer-events: none;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.p-top-tiktok-slide .splide__slide a {
	display: block;
	width: 100%;
	height: 100%;
	transition: opacity 0.3s ease;
}

.p-top-tiktok-slide .splide__slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-top-tiktok-btns {
	margin: 2.4rem 0 0;
}

.p-top-tiktok .c-btn {
	max-width: 19.4rem;
	margin: 4.8rem 0 0;
}

.p-top-tiktok .c-btn::after {
	display: none;
}

.p-top-voice {
	position: relative;
	z-index: 5;
	overflow-x: clip;
}

.p-top-voice-list {
	display: grid;
	position: relative;
	z-index: 1;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr min-content;
	gap: 4.8rem 1.7rem;
}

.p-top-voice-list::before {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	top: 4.8rem;
	left: 0;
	width: 100vw;
	height: calc(100% - 1.6rem);
	border-radius: 0 4rem 4rem 0;
	background-color: var(--color-green);
}

.p-top-voice-list li.top-item {
	grid-column: span 2/span 2;
}

.p-top-voice-list li.top-item a figure {
	overflow: hidden;
	border-radius: 4rem;
}

.p-top-voice-list li.top-item a figure .arrow {
	right: 2.4rem;
	bottom: 2.4rem;
	width: 3.6rem;
}

.p-top-voice-list li.top-item a .cat {
	font-size: 1.4rem;
}

.p-top-voice-list li.top-item a h3 {
	font-size: 2.4rem;
}

.p-top-voice-list li a {
	display: grid;
	color: var(--color-cream);
	transition: opacity 0.3s ease;
	gap: 1.6rem;
}

.p-top-voice-list li a figure {
	position: relative;
	overflow: hidden;
	width: 100%;
	border: 2px solid var(--color-cream);
	border-radius: 1.6rem;
	aspect-ratio: 335/252;
}

.p-top-voice-list li a figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-top-voice-list li a figure .arrow {
	display: flex;
	position: absolute;
	right: 1.2rem;
	bottom: 1.2rem;
	justify-content: center;
	align-items: center;
	width: 2.8rem;
	border-radius: 50%;
	background-color: var(--color-cream);
	color: var(--color-green);
	font-size: 1.8rem;
	font-weight: 700;
	pointer-events: none;
	aspect-ratio: 1/1;
}

.p-top-voice-list li a .cat {
	color: var(--color-green-light);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.p-top-voice-list li a h3 {
	margin: 0.3rem 0 0;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-top-voice-list li a .more {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	margin: 6rem 0 0;
	padding: 0 0 0.2rem;
	border-bottom: 0.1rem solid var(--color-cream);
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: capitalize;
}

.p-top-voice .c-btn {
	max-width: 25.1rem;
	margin: 5.6rem 0 0 auto;
}

.p-top-interview {
	position: relative;
	z-index: 5;
}

.p-top-crosstalk {
	position: relative;
	z-index: 5;
}

.p-top-crosstalk-list {
	display: grid;
	gap: 6.4rem;
}

.p-top-crosstalk-list a {
	display: block;
	position: relative;
	transition: opacity 0.3s ease;
}

.p-top-crosstalk-list a .interview {
	padding: 0 0 0 1rem;
	font-size: 1.4rem;
	font-weight: 700;
	text-transform: capitalize;
}

.p-top-crosstalk-list a .num {
	font-size: 1.8rem;
	font-weight: 800;
}

.p-top-crosstalk-list a .same {
	display: flex;
	position: absolute;
	z-index: 1;
	top: 0;
	right: -3rem;
	justify-content: center;
	align-items: center;
	width: 9.8rem;
	border-radius: 50%;
	background-color: var(--color-cream);
	color: var(--color-green);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.125;
	text-align: center;
	letter-spacing: 0.1em;
	aspect-ratio: 1/1;
}

.p-top-crosstalk-list a .same::after {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	bottom: 0.8rem;
	left: 0.2rem;
	width: 4rem;
	height: 1.3rem;
	border-radius: 100vmax;
	background-color: var(--color-cream);
	transform: rotate(135deg);
}

.p-top-crosstalk-list a figure,
.p-top-crosstalk-list a picture {
	display: block;
	overflow: hidden;
	margin: 1.1rem 0 1.6rem;
	border: 2px solid var(--color-cream);
	border-radius: 4rem;
}

.p-top-crosstalk-list a figure img,
.p-top-crosstalk-list a picture img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-top-crosstalk-list a .col {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.6rem;
}

.p-top-crosstalk-list a h3 {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.5;
}

.p-top-crosstalk-list a .arrow {
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	width: 4.8rem;
	border: 2px solid var(--color-cream);
	border-radius: 50%;
	font-size: 2.4rem;
	font-weight: 700;
	aspect-ratio: 1/1;
}

.p-top-numbers {
	position: relative;
	z-index: 5;
	padding-bottom: 4.7rem;
}

.p-top-numbers::before {
	content: '';
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 76%;
	background-color: var(--color-green-dark);
}

.p-top-numbers figure {
	border: 2px solid var(--color-cream);
	border-radius: 50%;
}

.p-top-numbers figure img {
	width: 100%;
}

.p-top-numbers p {
	margin: 3.2rem 0;
	font-size: 1.4rem;
	font-weight: 700;
}

.p-top-numbers .c-btn {
	max-width: 29.5rem;
}

.p-top-numbers .text {
	position: absolute;
	z-index: -1;
	bottom: -0.5rem;
	left: 50%;
	width: 100%;
	white-space: nowrap;
	transform: translate(-50%, 0);
}

.p-top-numbers .text p {
	display: inline-block;
	margin: 0;
	opacity: 0.3;
	color: var(--color-green);
	font-size: 8rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.05em;
	animation: marquee 40s linear infinite;
}

.p-top-numbers .text p span {
	display: inline-block;
	padding: 0 8rem 0 0;
}

.p-top-environment {
	position: relative;
	z-index: 5;
}

.p-top-environment .c-title h2.en {
	width: -moz-max-content;
	width: max-content;
}

.p-top-environment-list {
	display: grid;
	gap: 5.6rem 8rem;
}

.p-top-environment-list a {
	display: block;
	position: relative;
	transition: opacity 0.3s ease;
}

.p-top-environment-list a figure {
	display: block;
	overflow: hidden;
	margin: 1.1rem 0 1.6rem;
	border: 2px solid var(--color-cream);
	border-radius: 4rem;
}

.p-top-environment-list a figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-top-environment-list a .col {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.6rem;
}

.p-top-environment-list a h3 {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.5;
}

.p-top-environment-list a .arrow {
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	width: 4.8rem;
	border: 2px solid var(--color-cream);
	border-radius: 50%;
	font-size: 2.4rem;
	font-weight: 700;
	aspect-ratio: 1/1;
}

.p-top-join {
	display: flex;
	position: relative;
	z-index: 6;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
}

.p-top-join-circle {
	width: 6rem;
	border: 2px solid var(--color-cream);
	border-radius: 50%;
	opacity: 0;
	aspect-ratio: 1/1;
}

.p-top-join-image {
	position: relative;
	width: 16rem;
	border: 2px solid var(--color-cream);
	border-radius: 50%;
	opacity: 0;
	aspect-ratio: 1/1;
}

.p-top-join-image img {
	width: 100%;
	opacity: 0;
}

.p-top-join-image p {
	position: absolute;
	top: -2.9rem;
	left: -4rem;
	padding: 1.2rem 2.4rem;
	border-radius: 100vmax;
	background-color: var(--color-cream);
	opacity: 0;
	color: var(--color-black);
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.4;
	text-transform: capitalize;
}

.p-top-join-image p::after {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	right: 2.7rem;
	bottom: -0.6rem;
	width: 2rem;
	height: 1rem;
	border-radius: 100vmax;
	background-color: var(--color-cream);
	transform: rotate(45deg);
}

.p-voice-category {
	overflow-x: auto;
	background-color: var(--color-cream2);
}

.p-voice-category-slide {
	padding-inline: 3.6rem;
}

.p-voice-category-slide li a {
	display: inline-block;
	padding: 1.6rem 0;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.5833333333;
	letter-spacing: 0.05em;
	transition: color 0.3s ease;
}

.p-voice-category-slide li a.active {
	border-bottom: 0.2rem solid var(--color-green);
	color: var(--color-green);
}

.p-voice-category .splide__arrow {
	background: transparent;
}

.p-voice-category .splide__arrow::before {
	content: '';
	color: var(--color-green);
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.5833333333;
}

.p-voice-category .splide__arrow svg {
	display: none;
}

.p-voice-category .splide__arrow.splide__arrow--prev {
	left: 0;
}

.p-voice-category .splide__arrow.splide__arrow--prev::before {
	content: '←';
}

.p-voice-category .splide__arrow.splide__arrow--next {
	right: 0;
}

.p-voice-category .splide__arrow.splide__arrow--next::before {
	content: '→';
}

.p-voice-list {
	display: grid;
	margin: 4rem 0 0;
	gap: 4rem;
}

.p-voice-list li a {
	display: grid;
	transition: opacity 0.3s ease;
	gap: 1.6rem;
}

.p-voice-list li a figure {
	position: relative;
	overflow: hidden;
	width: 100%;
	border: 2px solid var(--color-green);
	border-radius: 4rem;
	aspect-ratio: 335/252;
}

.p-voice-list li a figure img {
	width: 100%;
	height: 100%;
	border-radius: 4rem;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-voice-list li a figure .arrow {
	display: flex;
	position: absolute;
	right: 1.2rem;
	bottom: 1.2rem;
	justify-content: center;
	align-items: center;
	width: 2.8rem;
	border-radius: 50%;
	background-color: var(--color-cream);
	color: var(--color-green);
	font-size: 1.8rem;
	font-weight: 700;
	pointer-events: none;
	aspect-ratio: 1/1;
}

.p-voice-list li a .cat {
	color: var(--color-green);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.p-voice-list li a h3 {
	margin: 0.3rem 0 0;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-voice-list + .c-btn {
	cursor: pointer;
	margin: 6.4rem auto 0;
}

.p-wysiwyg {
	margin: 8rem 0 0;
	font-size: 1.8rem;
	line-height: 1.7777777778;
	letter-spacing: 0.075em;
}

.p-wysiwyg > *:first-child {
	margin-top: 0;
}

.p-wysiwyg * {
	margin: 3rem 0 0;
}

.p-wysiwyg h1 {
	margin: 5rem 0 0;
	padding: 0.7rem 1.5rem 0.8rem;
	border-radius: 0.5rem;
	background-color: var(--color-green);
	color: #fff;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4583333333;
	letter-spacing: 0.1em;
}

.p-wysiwyg h2 {
	position: relative;
	margin: 5rem 0 0;
	padding: 0.6rem 1rem 0.7rem 1.5rem;
	border-left: 0.7rem solid var(--color-green);
	border-radius: 0.5rem;
	background-color: var(--color-green-light);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4545454545;
}

.p-wysiwyg h3 {
	position: relative;
	margin: 5rem 0 0;
	padding: 0 1rem 0.6rem 1.8rem;
	border-bottom: 1px solid var(--color-green);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4545454545;
}

.p-wysiwyg h3::before,
.p-wysiwyg h3::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	height: calc(100% - 0.5rem);
	border-radius: 0.4rem;
	background-color: var(--color-green);
}

.p-wysiwyg h3::before {
	left: 0;
	width: 0.4rem;
}

.p-wysiwyg h3::after {
	left: 0.6rem;
	width: 0.2rem;
}

.p-wysiwyg h4 {
	position: relative;
	margin: 5rem 0 0;
	padding: 0 0 0 1.5rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.45;
}

.p-wysiwyg h4::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 0.5rem;
	height: 100%;
	border-radius: 0.3rem;
	background-color: var(--color-green);
}

.p-wysiwyg h5 {
	position: relative;
	margin: 4rem 0 0;
	padding: 0 0 0.2rem 1.6rem;
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1.4210526316;
}

.p-wysiwyg h5::before,
.p-wysiwyg h5::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	height: 100%;
	border-radius: 0.4rem;
	background-color: var(--color-green);
}

.p-wysiwyg h5::before {
	left: 0;
	width: 0.2rem;
}

.p-wysiwyg h5::after {
	left: 0.4rem;
	width: 0.2rem;
}

.p-wysiwyg h6 {
	position: relative;
	margin: 4rem 0 0;
	padding: 0 0 0.2rem 1.7rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4444444444;
}

.p-wysiwyg h6::before {
	content: '';
	display: block;
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 0.2rem;
	background-color: var(--color-green);
}

.p-wysiwyg pre {
	margin: 2rem 0;
}

.p-wysiwyg table {
	width: 100%;
}

.p-wysiwyg table caption {
	margin: 1rem 0;
	font-size: 12px;
}

.p-wysiwyg table caption:first-child {
	margin-top: 0;
}

.p-wysiwyg table caption:last-child {
	margin-bottom: 0;
}

.p-wysiwyg table thead {
	background-color: var(--color-black);
}

.p-wysiwyg table thead th {
	min-width: 10rem;
	padding: 1rem;
	color: #fff;
	font-weight: 700;
	white-space: nowrap;
}

.p-wysiwyg table tbody th,
.p-wysiwyg table tbody td {
	padding: 1rem;
	border: 1px solid #fff;
	font-weight: 500;
}

.p-wysiwyg table tbody th {
	background-color: var(--color-green-light);
	text-align: left;
}

.p-wysiwyg a {
	color: var(--color-green);
	text-decoration: underline;
}

.p-wysiwyg .wp-block-image {
	margin: 3rem 0;
}

.p-wysiwyg figure {
	margin: 3rem 0;
}

.p-wysiwyg figure figcaption {
	font-size: 1.4rem;
}

.p-wysiwyg ul {
	display: flex;
	list-style-type: none;
	flex-direction: column;
	gap: 1rem 0;
}

.p-wysiwyg ul ul {
	margin-top: 1rem;
}

.p-wysiwyg ul ul li {
	padding: 0 0 0 1.2rem;
}

.p-wysiwyg ul ul li::before {
	content: '';
	display: block;
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 0.6rem;
	height: 0.6rem;
	border: 1px solid var(--color-green);
	border-radius: 50%;
	background-color: #fff;
}

.p-wysiwyg ul li {
	position: relative;
	margin: 0;
	padding: 0 0 0 1.4rem;
}

.p-wysiwyg ul li::before {
	content: '';
	display: block;
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background-color: var(--color-green);
}

.p-wysiwyg ol {
	display: flex;
	flex-direction: column;
	margin: 30px 0 0;
	padding-left: 1.5em;
	gap: 10px 0;
}

.p-wysiwyg ol ul,
.p-wysiwyg ol ol {
	margin-top: 10px;
}

.p-wysiwyg blockquote {
	position: relative;
	padding: 3.3rem 3rem 4.1rem 5.5rem;
	border-radius: 0.5rem;
	background: var(--color-gray) no-repeat 3rem 2rem;
	background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 21\'%3E%3Cpath fill=\'%235D5D5D\' d=\'M21.75 10.5H18v-3a3 3 0 0 1 3-3h.375A1.122 1.122 0 0 0 22.5 3.375v-2.25A1.122 1.122 0 0 0 21.375 0H21a7.5 7.5 0 0 0-7.5 7.5v11.25A2.251 2.251 0 0 0 15.75 21h6A2.251 2.251 0 0 0 24 18.75v-6a2.251 2.251 0 0 0-2.25-2.25Zm-13.5 0H4.5v-3a3 3 0 0 1 3-3h.375A1.122 1.122 0 0 0 9 3.375v-2.25A1.122 1.122 0 0 0 7.875 0H7.5A7.5 7.5 0 0 0 0 7.5v11.25A2.251 2.251 0 0 0 2.25 21h6a2.251 2.251 0 0 0 2.25-2.25v-6a2.251 2.251 0 0 0-2.25-2.25Z\' data-name=\'Icon awesome-quote-left\'/%3E%3C/svg%3E');
	background-size: 2rem 1.8rem;
}

.p-wysiwyg blockquote > *:first-child {
	margin-top: 0;
}

.p-wysiwyg blockquote cite {
	display: inline-block;
	margin: 2rem 0 0;
	font-size: 1.2rem;
	font-style: normal;
}

.p-wysiwyg blockquote cite a {
	color: var(--color-green);
}

.p-wysiwyg .p-col .col-2 {
	-moz-column-gap: 4rem;
	column-gap: 4rem;
}

.p-wysiwyg .p-col .col-3 {
	-moz-column-gap: 3.6rem;
	column-gap: 3.6rem;
}

.p-wysiwyg .p-col .col-4 {
	-moz-column-gap: 1.6rem;
	column-gap: 1.6rem;
}

.u-color-white {
	color: var(--color-white);
}

.u-color-black {
	color: var(--color-black);
}

.u-color-gray {
	color: var(--color-gray);
}

.u-color-red {
	color: var(--color-red);
}

.u-color-blue {
	color: var(--color-blue);
}

.u-color-green {
	color: var(--color-green);
}

.u-color-yellow {
	color: var(--color-yellow);
}

.u-color-orange {
	color: var(--color-orange);
}

.u-color-purple {
	color: var(--color-purple);
}

.u-color-pink {
	color: var(--color-pink);
}

.u-show-br-sp {
	display: none;
}

.u-show-br-pc {
	display: none;
}

.u-hide {
	display: none !important;
}

/* font-family
---------------------------------------- */

/* text-align
---------------------------------------- */

.u-al-left {
	text-align: left !important;
}

.u-al-left.sp-center {
	text-align: center !important;
}

.u-al-center {
	text-align: center !important;
}

.u-al-center.sp-left {
	text-align: left !important;
}

.u-al-right {
	text-align: right !important;
}

.u-al-right.sp-left {
	text-align: left !important;
}

/* letter spacing
---------------------------------------- */

/* writing-mode
---------------------------------------- */

.u-wm-rl {
	writing-mode: vertical-rl !important;
}

/* font-weight
---------------------------------------- */

.u-fw-regular {
	font-weight: 400 !important;
}

.u-fw-medium {
	font-weight: 500 !important;
}

.u-fw-semib {
	font-weight: 600 !important;
}

.u-fw-bold {
	font-weight: 700 !important;
}

/* text margin
---------------------------------------- */

.u-no-margin {
	margin: 0;
}

.u-link {
	color: var(--color-blue);
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	body {
		font-size: 1.6rem;
	}

	#interview,
  [id] {
		scroll-margin-top: 20rem;
	}

	.l-footer-entry {
		padding: 8rem 0;
		border-top: 4px solid var(--color-cream);
		border-bottom: 4px solid var(--color-cream);
	}

	.l-footer-entry p {
		padding-right: 9.6rem;
		font-size: 5.6rem;
		animation: marquee-reverse 20s linear infinite;
	}

	.l-footer-entry p .arrow {
		margin-left: 1.7rem;
		font-size: 6.4rem;
		transform: translateY(0.4rem);
	}

	.l-footer .l-section-inner {
		max-width: 144rem;
		margin-inline: auto;
	}

	.l-footer-inner {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	.l-footer-logo {
		width: 30.1rem;
	}

	.l-footer-nav {
		grid-template-columns: repeat(3, 1fr);
		gap: 6.4rem 5.6rem;
	}

	.l-footer-nav li a {
		font-size: 1.8rem;
	}

	.l-footer-nav .sub-menu {
		margin: 1.3rem 0 0 2.4rem;
	}

	.l-footer-nav .sub-menu li a,
  .l-footer-nav .sub-menu li button {
		font-size: 1.4rem;
	}

	.l-header {
		width: -moz-fit-content;
		width: fit-content;
	}

	.l-header-inner {
		padding: 3.2rem 4rem;
	}

	.l-header-logo {
		width: 33.5rem;
		padding: 1.2rem 1.6rem;
	}

	.l-header-btn {
		display: none;
	}

	.l-header-sp-nav {
		display: none;
	}

	.l-header-pc-nav {
		position: sticky;
		z-index: 101;
		top: 3.2rem;
		left: calc(100% - 4rem - 22.8rem);
		width: 22.8rem;
		margin: 0 0 5rem;
		padding: 2.4rem;
		border-radius: 1rem;
		background-color: var(--color-green);
		transition: background-color 0.3s ease;
	}

	.l-header-pc-nav .menu {
		display: grid;
		gap: 1.2rem;
	}

	.l-header-pc-nav .menu a {
		font-size: 1.5rem;
		font-weight: 700;
	}

	.l-header-pc-nav .menu a:not(.c-btn) {
		transition: opacity 0.3s ease;
	}

	.l-header-pc-nav .menu .c-btn {
		margin: 2.4rem auto 0;
	}

	.l-header-sp-entry {
		display: none;
	}

	.l-section {
		padding: 20rem 0 0;
	}

	.l-section-inner {
		max-width: 118rem;
		padding-inline: 8rem;
	}

	.l-section-lower {
		padding: 0 0 20rem;
	}

	.l-section-lower-small {
		padding: 0 0 16rem;
	}

	.c-environment-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.c-environment-list a figure {
		border-width: 4px;
	}

	.c-environment-list a h3 {
		font-size: 3.6rem;
	}

	.c-header {
		padding: 22.6rem 0 12rem;
	}

	.c-header hgroup p {
		font-size: 5.6rem;
	}

	.c-header hgroup h1 {
		font-size: 2.4rem;
	}

	.c-header-title h1 {
		font-size: 5.6rem;
	}

	.c-header-title .voice {
		top: -6rem;
		right: 0.7rem;
		padding: 1rem 3.2rem;
		font-size: 1.6rem;
		transform: translateX(100%);
	}

	.c-header-title .voice::after {
		bottom: -0.8rem;
		left: 2.7rem;
		width: 2.8rem;
		height: 1.4rem;
	}

	.c-header picture {
		max-width: 114.4rem;
		margin: 5.6rem 0 0;
		border-width: 4px;
		border-radius: 0 8rem 8rem 0;
	}

	.c-header.-interview {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		min-height: 100rem;
		padding-bottom: 19rem;
	}

	.c-header-lead {
		font-size: 1.6rem;
	}

	.c-header-lead.-wide {
		margin: 12rem 0 0;
	}

	.c-header-nav {
		max-width: 64.7rem;
		margin: 5.6rem 0 0;
		gap: 2.4rem 4rem;
	}

	.c-header-nav li a {
		font-size: 1.5rem;
	}

	.c-interview {
		padding: 0 0 20rem;
	}

	.c-interview .l-section-inner {
		max-width: none;
	}

	.c-interview .c-title-wrap {
		max-width: 102rem;
	}

	.c-interview-slide .splide__slide figure {
		border: 4px solid var(--color-green);
	}

	.c-interview-slide .splide__slide .top .copy {
		left: 7.2rem;
	}

	.c-interview-slide .splide__slide .top .copy > span {
		font-size: 2rem;
	}

	.c-interview-slide .splide__slide .top .copy > span + span {
		margin-right: 0.8rem;
	}

	.c-interview-slide .splide__slide .top .number {
		right: 2rem;
		width: 7.5rem;
	}

	.c-interview-slide .splide__slide .bottom {
		margin: 1.6rem 0 0;
	}

	.c-interview-slide .splide__slide .bottom h3 {
		font-size: 3.2rem;
	}

	.c-interview-slide .splide__slide .bottom > div {
		font-size: 1.6rem;
	}

	.c-interview-btns {
		margin: 4rem 0 0;
		gap: 5.6rem;
	}

	.c-lead {
		font-size: 1.6rem;
	}

	.c-slide-arrow {
		margin: 0;
	}

	.c-slide-pagination .splide__pagination__page {
		width: 16.5rem;
	}

	.c-title {
		margin: 0 0 8rem;
	}

	.c-title.-narrow {
		margin: 0 0 5.6rem;
	}

	.c-title.-wide {
		margin: 0 0 8rem;
	}

	.c-title .en {
		font-size: 9.6rem;
	}

	.c-title .en.-small {
		font-size: 8rem;
	}

	.c-title .ja {
		padding-left: 0.8rem;
		font-size: 2.4rem;
	}

	.c-title .voice {
		top: -1rem;
		right: -2.8rem;
		padding: 1rem 3.2rem;
		font-size: 1.8rem;
		transform: translateX(100%);
	}

	.c-title .voice::after {
		bottom: -0.8rem;
		left: 2.7rem;
		width: 2.8rem;
		height: 1.4rem;
	}

	.c-title-en {
		font-size: 9.6rem;
	}

	.c-title-wrap {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 0 0 8rem;
	}

	.c-title-wrap .c-lead {
		max-width: 36rem;
	}

	.p-404 .c-btn {
		margin-top: 8rem;
	}

	.p-about-circle.-career {
		padding: 0 0 24rem;
	}

	.p-about-circle figure {
		position: absolute;
		top: 40%;
		left: 73.6rem;
		width: 48rem;
		border: 4px solid var(--color-green);
		transform: translateY(-50%);
	}

	.p-about-circle figure.-career {
		top: 30%;
	}

	.p-about-circle .text {
		max-width: 55.6rem;
		margin: 0 0 5.6rem;
		font-size: 1.6rem;
	}

	.p-about-numbers {
		margin: 12rem 0 16rem;
		padding-bottom: 9rem;
	}

	.p-about-numbers::before {
		height: 85%;
	}

	.p-about-numbers .c-title {
		margin: 0 0 2.4rem;
	}

	.p-about-numbers figure {
		position: absolute;
		top: 0;
		left: 73.6rem;
		width: 48rem;
		border: 4px solid var(--color-cream);
	}

	.p-about-numbers p {
		margin: 0 0 5rem;
		font-size: 1.6rem;
	}

	.p-about-numbers .c-btn {
		max-width: 31.5rem;
	}

	.p-about-numbers .text {
		bottom: -0.8rem;
	}

	.p-about-numbers .text p {
		font-size: 12rem;
		animation: marquee 70s linear infinite;
	}

	.p-article {
		padding: 22.6rem 0 20rem;
	}

	.p-article-header {
		padding: 4rem 0;
	}

	.p-article-header h1 {
		margin: 1.6rem 0 0;
		font-size: 3.6rem;
	}

	.p-article .c-btn {
		margin-top: 12rem;
	}

	.p-benefit-inner {
		padding: 8.8rem 0;
	}

	.p-benefit-inner::before {
		width: 114rem;
		height: 96.2%;
	}

	.p-benefit-lead {
		max-width: 40rem;
	}

	.p-benefit-list {
		display: block;
		margin: -38rem 0 0;
	}

	.p-benefit-list li {
		max-width: 59.7rem;
	}

	.p-benefit-list li:nth-child(odd) {
		margin: -30rem -12rem 0 auto;
	}

	.p-benefit-list li:nth-child(even) {
		margin: -40rem auto 0 -12rem;
	}

	.p-benefit-list li:nth-child(1) {
		margin: 0 -12rem 0 auto;
	}

	.p-benefit-list li figure {
		width: 59.7rem;
	}

	.p-benefit-list li p {
		width: 35.7rem;
	}

	.p-business-inner {
		padding: 8.8rem 0;
	}

	.p-business-inner::before {
		width: 122rem;
	}

	.p-business-list {
		gap: 8rem;
	}

	.p-business-list li {
		display: flex;
		align-items: flex-start;
		gap: 8rem;
	}

	.p-business-list li figure {
		flex-shrink: 0;
		width: 40rem;
		border: 4px solid var(--color-green);
	}

	.p-business-list li hgroup h3 {
		font-size: 3.2rem;
	}

	.p-business-list li h4 {
		margin: 4rem 0 2.4rem;
	}

	.p-career-row {
		margin: 8rem 0 0;
		padding: 8rem 0 0;
	}

	.p-career-row:nth-child(1) {
		margin: 0;
	}

	.p-career-row .header {
		grid-template-columns: 17.9rem 1fr;
		gap: 6.4rem;
	}

	.p-career-row .header figure {
		width: 17.9rem;
	}

	.p-career-row .header h2 {
		font-size: 2.4rem;
	}

	.p-career-row .header h2 .num {
		font-size: 9.6rem;
	}

	.p-career-row .contents {
		grid-template-columns: 52.5rem 1fr;
		gap: 5.6rem;
	}

	.p-career-row .contents .table .th,
  .p-career-row .contents .table .td {
		font-size: 1.6rem;
		grid-template-columns: 39.2rem 1fr 1fr;
	}

	.p-career-row .contents .table .th {
		padding: 1.9rem 0 1.7rem;
		border-radius: 2rem 2rem 0 0;
	}

	.p-career-row .contents .table .td::before {
		top: 1.1rem;
		left: 11.2rem;
	}

	.p-career-row .contents .table .td + .td {
		margin: 3.2rem 0 0;
	}

	.p-career-row .contents .table .td .first {
		display: grid;
		padding: 0 0 0 1.6rem;
		grid-template-columns: 8rem 1fr;
		gap: 4rem;
	}

	.p-career-row .contents .table .td .year {
		font-size: 1.8rem;
		text-align: right;
	}

	.p-career-row .contents .table .td .text {
		padding: 0 1.7rem 0 0;
		font-size: 1.6rem;
		transform: translateY(0.3rem);
	}

	.p-career-row .contents .table .line {
		top: 4.7rem;
		left: 11.5rem;
		height: calc(100% - 4.7rem);
	}

	.p-career-row .contents .table .bg {
		padding: 3.2rem 0;
	}

	.p-career-row .contents .table .bg::before {
		right: 6.6rem;
	}

	.p-career-row .contents .table .bg::after {
		right: 13.2rem;
	}

	.p-career-row .contents .text .row h3 {
		font-size: 1.8rem;
	}

	.p-circle {
		width: 73.6rem;
		border: 4px solid var(--color-cream);
	}

	.p-company-lead-inner {
		padding: 9.45rem 0;
	}

	.p-company-lead p {
		max-width: 48.8rem;
		font-size: 1.8rem;
	}

	.p-company-lead p.p-company-lead-title {
		font-size: 4rem;
	}

	.p-company-lead figure {
		position: absolute;
		top: 30%;
		left: 73.6rem;
		width: 56rem;
		border: 4px solid var(--color-green);
		transform: translateY(-50%);
	}

	.p-company-profile-list > div {
		padding: 1.2rem 3rem;
		grid-template-columns: 20rem 1fr;
	}

	.p-company-profile-list > div dt,
  .p-company-profile-list > div dd {
		font-size: 1.8rem;
	}

	.p-crosstalk-contents {
		padding: 0 0 20rem;
	}

	.p-crosstalk-contents .header {
		display: grid;
		align-items: center;
		grid-template-columns: 1fr 50rem;
		gap: 9.6rem;
	}

	.p-crosstalk-contents .header .item .same {
		width: 5.7rem;
		font-size: 1.6rem;
	}

	.p-crosstalk-contents .header .item p {
		margin: 1.6rem 0 0;
	}

	.p-crosstalk-contents .header .item p span.name {
		font-size: 1.8rem;
	}

	.p-crosstalk-contents .header > p {
		font-size: 1.8rem;
	}

	.p-crosstalk-contents .row {
		margin: 9.6rem 0 0;
	}

	.p-crosstalk-contents .row h2 {
		margin: 0 0 6.4rem;
		padding: 2.4rem 0;
	}

	.p-crosstalk-contents .row h2 span {
		font-size: 3.2rem;
	}

	.p-crosstalk-contents .row h2 span::before {
		font-size: 4rem;
	}

	.p-crosstalk-contents .row .talk {
		margin: 3.2rem 0 0;
		grid-template-columns: 14rem 1fr;
		gap: 6.4rem;
	}

	.p-crosstalk-contents .row .talk figure {
		width: 14rem;
	}

	.p-crosstalk-contents .row .talk p {
		padding: 4rem 4.8rem;
		font-size: 1.6rem;
	}

	.p-crosstalk-contents .row .talk p::before {
		top: 3.2rem;
	}

	.p-crosstalk-contents .row > figure {
		margin: 9.6rem 0 0;
		border-radius: 8rem;
		aspect-ratio: 1020/492;
	}

	.p-crosstalk-list {
		margin: 12rem 0 0;
	}

	.p-crosstalk-list a .same {
		right: -4rem;
		width: 15rem;
		font-size: 2.4rem;
	}

	.p-crosstalk-list a .same::after {
		bottom: 2rem;
		left: -0.5rem;
		width: 6rem;
		height: 2rem;
	}

	.p-crosstalk-list a figure,
  .p-crosstalk-list a picture {
		border-width: 4px;
	}

	.p-crosstalk-list a h2 {
		font-size: 3.6rem;
	}

	.p-crosstalk-list a .name {
		font-size: 1.4rem;
	}

	.p-entry-form-inner {
		max-width: 102rem;
		margin: 0 0 0 8rem;
		padding: 8rem;
	}

	.p-entry-form-head {
		display: grid;
		align-items: center;
		grid-template-columns: 1fr 26rem;
		gap: 5.2rem;
	}

	.p-entry-form-head .step {
		order: 2;
	}

	.p-entry-form-head p.step-3 {
		font-size: 3.2rem;
	}

	.p-entry-form-body {
		margin: 4.8rem 0 0;
		padding: 5.6rem 0 0;
	}

	.p-entry-form-body .btn-wrap {
		margin: 5.6rem 0 0;
		padding: 5.6rem 0 0;
	}

	.p-entry-form-body.-complete .c-btn.-back {
		margin-top: 8rem;
	}

	.p-entry-form-row {
		display: grid;
		grid-template-columns: 26.5rem 1fr;
		gap: 2.4rem;
	}

	.p-entry-form-row.-email .label {
		transform: translateY(-1.8rem);
	}

	.p-entry-form-row.-date .label {
		transform: translateY(-14rem);
	}

	.p-entry-form-row.-question .label {
		transform: translateY(-4rem);
	}

	.p-entry-form-row .label {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.p-entry-form-row .sub {
		display: block;
		margin: -0.5rem 0 0;
	}

	.p-entry-form-row .required,
  .p-entry-form-row .optional {
		margin: 0 0 0 auto;
	}

	.p-entry-form-row .content {
		margin: 0;
	}

	.p-entry-form-row .content .item:first-child {
		margin: 1rem 0 0;
	}

	.p-entry-form-row .content .item .col {
		display: flex;
		gap: 1.6rem;
	}

	.p-entry-form.step-02 .col .c-select {
		margin: -0.2rem 0 0 !important;
	}

	.p-entry-form.step-02 .p-entry-form-row.-email .label {
		transform: translateY(0);
	}

	.p-entry-form.step-02 .p-entry-form-row.-date .label {
		transform: translateY(-9.5rem);
	}

	.p-entry-form.step-02 .p-entry-form-row.-question .label {
		transform: translateY(-1.1rem);
	}

	.p-entry-modal-inner {
		padding: 4rem 2rem 4.8rem;
	}

	.p-entry-modal-inner .btn {
		gap: 1.6rem;
	}

	.p-entry-modal-inner .btn .c-btn {
		width: 35.2rem;
		height: 7.4rem;
		font-size: 2.4rem;
	}

	.p-entry-modal-inner .close {
		top: -2.6rem;
		right: -2.6rem;
		width: 7.2rem;
		font-size: 1.4rem;
	}

	.p-history-inner {
		padding: 8.8rem 0;
	}

	.p-history-inner::before {
		width: 122rem;
	}

	.p-history-list {
		padding: 0;
	}

	.p-history-list::before {
		top: 3.5rem;
		left: 19.8rem;
		height: calc(100% - 3.5rem - 56.5rem);
	}

	.p-history-list li {
		align-items: start;
		grid-template-columns: 16.6rem 1fr 29.9rem;
		gap: 5.6rem;
	}

	.p-history-list li .year {
		line-height: 1;
		text-align: right;
	}

	.p-history-list li .year::before {
		top: 2rem;
		left: 20rem;
		transform: translate(-50%, 0);
	}

	.p-history-list li .year .num {
		display: block;
		width: -moz-fit-content;
		width: fit-content;
		margin-left: auto;
	}

	.p-history-list li .contents {
		padding: 0 0 0 0.8rem;
	}

	.p-history-list li h3 {
		font-size: 3.2rem;
	}

	.p-history-list li .lead {
		margin: 0.4rem 0 4rem;
		font-size: 2rem;
	}

	.p-history-list li .text {
		font-size: 1.6rem;
	}

	.p-history-list li .note {
		margin: 4rem 0 0;
	}

	.p-history-list li figure {
		max-width: 29.9rem;
		border: 4px solid var(--color-green);
	}

	.p-interview-contents {
		padding: 0 0 20rem;
	}

	.p-interview-contents-inner {
		gap: 12rem;
	}

	.p-interview-contents .row h3 {
		margin: 0 0 12rem;
	}

	.p-interview-contents .row h3 span {
		font-size: 3.6rem;
	}

	.p-interview-contents .row figure {
		flex-shrink: 0;
		width: 48rem;
		margin: 0 -11.7rem 0 0;
		border-width: 4px;
	}

	.p-interview-contents .row:nth-child(even) .qa-wrap {
		flex-direction: row;
	}

	.p-interview-contents .row:nth-child(even) .qa-wrap figure {
		margin: 0 0 0 -11.7rem;
	}

	.p-interview-contents .qa-wrap {
		display: flex;
		flex-direction: row-reverse;
		align-items: flex-start;
		gap: 8rem;
	}

	.p-interview-contents .qa {
		margin: 4.8rem 0 0;
	}

	.p-interview-contents .qa:nth-child(1) {
		margin: 0;
	}

	.p-interview-contents .qa h4 {
		font-size: 2.2rem;
	}

	.p-interview-contents .qa p {
		font-size: 1.6rem;
	}

	.p-interview-hero {
		padding: 23.6rem 0 0;
	}

	.p-interview-hero figure {
		position: absolute;
		top: 4rem;
		left: 41.7rem;
		width: 92rem;
		border-width: 4px;
	}

	.p-interview-hero-contents {
		margin: 0;
	}

	.p-interview-hero-contents.-crosstalk {
		margin: 0;
	}

	.p-interview-hero h2 span {
		font-size: 4.8rem;
	}

	.p-interview-hero h2 span + span {
		margin: 1.6rem 0 0;
	}

	.p-interview-hero .detail {
		margin: 2.4rem 0 0;
		font-size: 1.6rem;
	}

	.p-interview-hero .crosstalk-title {
		margin: 0 0 2.4rem 0.8rem;
		gap: 5rem;
	}

	.p-interview-hero .crosstalk-title::before {
		left: 12.4rem;
	}

	.p-interview-hero .crosstalk-title .number {
		font-size: 1.4rem;
	}

	.p-interview-hero .crosstalk-title .number .num {
		font-size: 1.8rem;
	}

	.p-interview-hero .crosstalk-title .same {
		font-size: 1.6rem;
	}

	.p-job-oneday {
		padding: 1.4rem 0 0;
	}

	.p-job-oneday .heading {
		justify-content: space-between;
		align-items: flex-end;
	}

	.p-job-oneday .heading figure {
		width: 18.7rem;
	}

	.p-job-oneday .heading .title {
		padding: 0 0 2rem;
	}

	.p-job-oneday .heading .title p {
		font-size: 2.4rem;
	}

	.p-job-oneday .heading .title h2 {
		font-size: 8rem;
	}

	.p-job-oneday .heading .title .name {
		left: -15.9rem;
		width: 15.9rem;
		height: 8.3rem;
		background: url(../img/job/ico_copy.svg) no-repeat center/contain;
	}

	.p-job-oneday .heading .title .name span {
		top: 2rem;
		font-size: 2.4rem;
	}

	.p-job-oneday-list {
		margin: 5rem 0 0;
		padding: 0;
	}

	.p-job-oneday-list::before {
		top: 3rem;
		left: 19.8rem;
		height: calc(100% - 3rem - 18rem);
	}

	.p-job-oneday-list li {
		align-items: start;
		grid-template-columns: 16rem 1fr 29.9rem;
		gap: 8rem;
	}

	.p-job-oneday-list li .hour {
		font-size: 4.8rem;
	}

	.p-job-oneday-list li .hour::before {
		top: 1.5rem;
		left: 20rem;
		transform: translate(-50%, 0);
	}

	.p-job-oneday-list li .contents {
		padding: 0 0 0 0.8rem;
	}

	.p-job-oneday-list li h3 {
		margin: 0;
		font-size: 3.2rem;
	}

	.p-job-oneday-list li .text {
		margin: 2.4rem 0 0;
		font-size: 1.6rem;
	}

	.p-job-oneday-list li figure {
		max-width: 29.9rem;
		margin: 0;
	}

	.p-job-tab {
		padding: 0 0 20rem;
	}

	.p-job-tab-list {
		justify-content: flex-start;
		max-width: 118rem;
		padding-inline: 8rem;
	}

	.p-job-tab-list .tab {
		width: 33.8rem;
		height: 6.4rem;
		padding: 0.7rem 0 0;
		font-size: 1.8rem;
	}

	.p-job-tab-list .tab.-active {
		height: 7.6rem;
		font-size: 2.4rem;
	}

	.p-job-tab-panel .panel {
		padding: 10.5rem 0 12rem;
	}

	.p-job-tab-contents .title p {
		font-size: 2.4rem;
	}

	.p-job-tab-contents .title h2 {
		font-size: 9.6rem;
	}

	.p-job-tab-contents figure {
		position: absolute;
		top: 0;
		left: 67.5rem;
		width: 56rem;
		margin: 0;
		border: 4px solid var(--color-green);
	}

	.p-job-tab-contents .text {
		max-width: 48.8rem;
		margin: 4.8rem 0 0;
	}

	.p-job-tab-contents .text h3 {
		font-size: 3.2rem;
	}

	.p-job-tab-contents .text .c-btn {
		margin: 5.6rem 0 0;
	}

	.p-job-tab-contents .marquee {
		margin: -5.6rem 0 0;
	}

	.p-job-tab-contents .marquee p {
		font-size: 11.2rem;
		animation: marquee 15s linear infinite;
	}

	.p-kv {
		left: 50%;
		max-width: 144rem;
		transform: translateX(-50%);
	}

	.p-kv-img.img01 {
		top: 17.1111111111vh;
		left: 9.9rem;
		width: 19.6rem;
		height: 19.6rem;
	}

	.p-kv-img.img02 {
		top: 4.1111111111vh;
		right: 28.4rem;
		width: 12.3rem;
		height: 12.3rem;
	}

	.p-kv-img.img03 {
		top: 60.3333333333vh;
		right: -3.1rem;
		width: 23.1rem;
		height: 23.1rem;
	}

	.p-kv-scroll {
		top: 75vh;
		right: 23.2rem;
		width: 11.9rem;
	}

	.p-kv-scroll .en {
		display: block;
	}

	.p-kv-scroll .arrow {
		font-size: 3.4rem;
	}

	.p-kv-video {
		width: 80.4rem;
	}

	.p-kv-title-fixed {
		top: 53.5555555556vh;
		left: calc(50% + 8rem);
		max-width: 144rem;
		transform: translateX(-50%);
	}

	.p-kv-title .en {
		font-size: 14.1rem;
	}

	.p-kv-title .ja {
		font-size: 3.4rem;
	}

	.p-kv-wrap .l-section-inner {
		max-width: 144rem;
		margin-inline: auto;
	}

	.p-message figure {
		position: absolute;
		z-index: -1;
		top: 1rem;
		right: -13.5rem;
		width: 56rem;
		border: 4px solid var(--color-green);
	}

	.p-message h3 {
		margin: 13.6rem 0 12.3rem;
		font-size: 3.2rem;
	}

	.p-message-text {
		font-size: 1.8rem;
	}

	.p-message-name {
		margin: 4rem 0 0;
	}

	.p-news-list li a {
		align-items: center;
		padding: 3rem 9rem 3rem 2rem;
		grid-template-columns: 10.4rem 1fr;
		gap: 4.8rem;
	}

	.p-news-list li a::after {
		right: 2rem;
	}

	.p-news-list li a time {
		font-size: 1.6rem;
	}

	.p-news-list li a h2 {
		font-size: 1.8rem;
	}

	.p-news-list + .c-btn {
		margin: 8rem auto 0;
	}

	.p-numbers-list {
		grid-template-columns: repeat(6, 1fr);
		grid-template-rows: min-content;
		gap: 2rem;
	}

	.p-numbers-list li {
		justify-content: flex-start;
		min-height: 24.8rem;
	}

	.p-numbers-list li:nth-child(1) {
		grid-column: span 3/span 3;
	}

	.p-numbers-list li:nth-child(2) {
		grid-column: span 3/span 3;
		grid-column-start: 4;
	}

	.p-numbers-list li:nth-child(3) {
		grid-column: span 3/span 3;
		grid-row-start: 2;
	}

	.p-numbers-list li:nth-child(3)::before {
		top: 2.6rem;
		left: 3.7rem;
		width: 42.7rem;
		height: 25rem;
		background: url(../img/about/numbers/img_03.svg) no-repeat center/contain;
	}

	.p-numbers-list li:nth-child(4) {
		grid-column: span 3/span 3;
		grid-column-start: 4;
		grid-row-start: 2;
	}

	.p-numbers-list li:nth-child(5) {
		grid-column: span 2/span 2;
		grid-row-start: 3;
	}

	.p-numbers-list li:nth-child(6) {
		grid-column: span 2/span 2;
		grid-column-start: 3;
		grid-row-start: 3;
	}

	.p-numbers-list li:nth-child(7) {
		grid-column: span 2/span 2;
		grid-column-start: 5;
		grid-row-start: 3;
	}

	.p-numbers-list li:nth-child(8) {
		grid-column: span 2/span 2;
		grid-row-start: 4;
	}

	.p-numbers-list li:nth-child(9) {
		grid-column: span 2/span 2;
		grid-column-start: 3;
		grid-row-start: 4;
	}

	.p-numbers-list li:nth-child(10) {
		grid-column: span 2/span 2;
		grid-column-start: 5;
		grid-row-start: 4;
	}

	.p-numbers-list li .contents .num {
		font-size: 10.6rem;
	}

	.p-open-company-information {
		margin: 0 0 16rem;
		padding: 0 0 6.5rem;
	}

	.p-open-company-information::before {
		top: 9.9rem;
		height: calc(100% - 9.9rem);
	}

	.p-open-company-information-inner {
		grid-template-columns: 48.8rem 53.2rem;
		gap: 10.7rem;
	}

	.p-open-company-information figure {
		order: 2;
		width: 53.2rem;
	}

	.p-open-company-information h2 {
		font-size: 4.4rem;
	}

	.p-open-company-job {
		min-height: 80rem;
		padding: 15.2rem 0;
		background: url(../img/open-company/img_bg.webp) no-repeat center/cover;
	}

	.p-open-company-job figure {
		display: none;
	}

	.p-open-company-job-inner {
		margin: 0;
		padding: 5.6rem 8rem;
	}

	.p-open-company-job .c-title {
		margin: 0 0 3.2rem;
	}

	.p-open-company-job .c-title .en {
		font-size: 3.2rem;
	}

	.p-open-company-job .c-title .ja {
		padding: 0;
		font-size: 5.6rem;
	}

	.p-open-company-job .c-btn {
		max-width: 39.5rem;
		height: 10.3rem;
		margin: 4.4rem 0 0;
	}

	.p-open-company-slide img {
		border: 4px solid var(--color-green);
	}

	.p-personality-text {
		margin: -56rem 0 0;
		padding: 8rem 9.6rem;
	}

	.p-personality-text .title {
		font-size: 3.2rem;
	}

	.p-personality-text .text {
		margin: 4.8rem 0 0;
		font-size: 1.6rem;
	}

	.p-personality-list {
		width: 100%;
		margin: 12rem 0 0;
	}

	.p-personality-list li {
		width: 36rem;
	}

	.p-personality-list li:not(:first-child) {
		margin-left: -3rem;
	}

	.p-personality-list li .circle {
		border: 4px solid var(--color-green);
	}

	.p-personality-list li .circle img {
		width: 24rem;
	}

	.p-personality-list li p {
		max-width: 29.6rem;
		font-size: 1.4rem;
	}

	.p-philosophy-list li {
		display: grid;
		align-items: center;
		padding: 4.8rem 0;
		grid-template-columns: 20rem 1fr;
		gap: 16rem;
	}

	.p-philosophy-list li .title p {
		font-size: 4rem;
	}

	.p-philosophy-list li .title h3 {
		font-size: 1.6rem;
	}

	.p-philosophy-list li > p,
  .p-philosophy-list li .value {
		max-width: none;
		margin: 0;
	}

	.p-philosophy-list li > p {
		font-size: 2.8rem;
	}

	.p-philosophy-list li .value {
		gap: 7.2rem;
	}

	.p-philosophy-list li .value p {
		font-size: 2rem;
	}

	.p-recruit-flow-inner {
		align-items: start;
		grid-template-columns: repeat(2, 1fr);
		gap: 5.6rem;
	}

	.p-recruit-flow-inner .item {
		padding: 6.4rem 8.1rem;
	}

	.p-recruit-flow-inner .item h3 {
		font-size: 4rem;
	}

	.p-recruit-job-type .list li .inner {
		align-items: center;
		max-width: 118rem;
		padding: 4.8rem 8rem;
		grid-template-columns: 40rem 1fr 30.8rem;
		gap: 6.4rem;
	}

	.p-recruit-job-type .list li h3 {
		margin: 0;
		font-size: 7.2rem;
		text-align: left;
	}

	.p-society-box {
		flex-direction: row;
		padding: 6rem 0;
		gap: 0 10.3rem;
	}

	.p-society-box .rank::before {
		top: 8.5rem;
		left: 14.8rem;
		width: 3.2rem;
		height: 2.1rem;
	}

	.p-society-box .title {
		font-size: 2.4rem;
	}

	.p-society-box .no {
		font-size: 13.4rem;
	}

	.p-society-box .num {
		font-size: 22.7rem;
	}

	.p-society-box .text {
		font-size: 2.4rem;
		text-align: left;
	}

	.p-society .c-lead {
		margin: 12rem 0 0;
		font-size: 1.8rem;
	}

	.p-society-list li {
		display: flex;
		align-items: flex-start;
		gap: 0 8rem;
	}

	.p-society-list li figure {
		flex-shrink: 0;
		width: 48rem;
		margin-left: -12rem;
	}

	.p-society-list li .engagement {
		margin: 0;
	}

	.p-society-list li .text {
		margin: 4rem 0 0;
	}

	.p-society-another {
		margin: 16rem 0 0;
		padding: 8rem 8rem 8rem 0;
	}

	.p-society-another::before {
		left: -8rem;
		width: 110rem;
	}

	.p-society-another .text {
		margin: 4.8rem 0 0;
	}

	.p-society-another figure {
		margin: 4.8rem 0 0;
		border-width: 4px;
		border-radius: 4rem;
	}

	.p-top-news {
		right: 4rem;
		bottom: 3.3rem;
		left: auto;
		width: 40rem;
		padding: 0.6rem 2.4rem;
		transform: translateX(0);
	}

	.p-top-news-inner::after {
		font-size: 1.4rem;
	}

	.p-top-news h2 {
		padding: 0 1.6rem 0 0;
		font-size: 1.3rem;
	}

	.p-top-news h2::after {
		height: 1.6rem;
	}

	.p-top-message {
		margin: 12rem 0 0;
		font-size: 4.2rem;
	}

	.p-top-section-circle {
		clip-path: circle(4.1666666667vw at 50% 50%);
	}

	.p-top-about h3 {
		margin: 8rem 0 5.6rem;
		font-size: 3.6rem;
	}

	.p-top-about-slide img {
		border: 4px solid var(--color-green);
	}

	.p-top-about-text {
		font-size: 2rem;
	}

	.p-top-about-text p + p {
		margin: 3.2rem 0 0;
	}

	.p-top-about .c-btn {
		margin: 5.6rem 0 0;
	}

	.p-top-about-img {
		margin: 20rem 0 0;
		border-top: 0.4rem solid var(--color-green);
		border-bottom: 0.4rem solid var(--color-green);
	}

	.p-top-about-img .text p {
		font-size: 11.2rem;
		animation: marquee 30s linear infinite;
	}

	.p-top-tiktok .l-section-inner {
		max-width: none;
	}

	.p-top-tiktok-slide .splide__slide {
		border: 4px solid var(--color-green);
	}

	.p-top-tiktok .c-slide-arrow {
		order: 2;
	}

	.p-top-tiktok-btns {
		display: flex;
		position: absolute;
		top: -12rem;
		left: 41.2rem;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		max-width: 60.8rem;
		margin: 0;
		transform: translateY(-50%);
	}

	.p-top-tiktok .c-btn {
		margin: 0;
	}

	.p-top-voice .c-title {
		width: -moz-fit-content;
		width: fit-content;
	}

	.p-top-voice-inner {
		display: grid;
		align-items: center;
		grid-template-areas: 'title btn' 'list list';
		grid-template-columns: max-content 1fr;
	}

	.p-top-voice .c-title {
		grid-area: title;
	}

	.p-top-voice-list {
		grid-area: list;
		grid-template-columns: repeat(3, 1fr);
		gap: 8rem 4rem;
	}

	.p-top-voice-list::before {
		max-width: 122rem;
		height: calc(100% + 3.2rem);
		margin: 0 0 0 -8rem;
	}

	.p-top-voice-list li.top-item {
		grid-column: span 3/span 3;
	}

	.p-top-voice-list li.top-item a {
		display: flex;
		align-items: flex-end;
		gap: 8rem;
	}

	.p-top-voice-list li.top-item a figure {
		flex-shrink: 0;
		width: 46.0784313725%;
	}

	.p-top-voice-list li.top-item a h3 {
		font-size: 3.2rem;
	}

	.p-top-voice-list li a figure {
		border-radius: 4rem;
	}

	.p-top-voice-list li a figure .arrow {
		right: 2.4rem;
		bottom: 2.4rem;
		width: 3.6rem;
	}

	.p-top-voice-list li a h3 {
		margin: 0.8rem 0 0;
		font-size: 1.8rem;
	}

	.p-top-voice-list li a .more {
		margin: 2.4rem 0;
	}

	.p-top-voice .c-btn {
		margin: 0 0 0 auto;
		grid-area: btn;
	}

	.p-top-interview {
		padding: 20rem 0 0;
	}

	.p-top-crosstalk-list a .same {
		right: -4rem;
		width: 15rem;
		font-size: 2.4rem;
	}

	.p-top-crosstalk-list a .same::after {
		bottom: 2rem;
		left: -0.5rem;
		width: 6rem;
		height: 2rem;
	}

	.p-top-crosstalk-list a figure,
  .p-top-crosstalk-list a picture {
		border-width: 4px;
	}

	.p-top-crosstalk-list a h3 {
		font-size: 3.6rem;
	}

	.p-top-numbers {
		padding-bottom: 9rem;
	}

	.p-top-numbers::before {
		height: 62%;
	}

	.p-top-numbers .c-title {
		margin: 0 0 2.4rem;
	}

	.p-top-numbers figure {
		position: absolute;
		top: 16rem;
		left: 73.6rem;
		width: 48rem;
		border: 4px solid var(--color-cream);
	}

	.p-top-numbers p {
		margin: 0 0 5rem;
		font-size: 1.6rem;
	}

	.p-top-numbers .c-btn {
		max-width: 31.5rem;
	}

	.p-top-numbers .text {
		bottom: -0.8rem;
	}

	.p-top-numbers .text p {
		font-size: 12rem;
		animation: marquee 70s linear infinite;
	}

	.p-top-environment-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.p-top-environment-list a figure {
		border-width: 4px;
	}

	.p-top-environment-list a h3 {
		font-size: 3.6rem;
	}

	.p-top-join-circle {
		width: 12rem;
	}

	.p-top-join-image {
		width: 31.2rem;
		border: 4px solid var(--color-cream);
	}

	.p-top-join-image p {
		top: -0.7rem;
		left: -2.9rem;
		padding: 1.6rem 3.2rem;
		font-size: 2rem;
	}

	.p-top-join-image p::after {
		right: 3.6rem;
		bottom: -0.8rem;
		width: 2.8rem;
		height: 1.4rem;
	}

	.p-voice-category {
		border-radius: 1.6rem;
	}

	.p-voice-category-slide {
		padding-inline: 5.6rem;
	}

	.p-voice-category-slide li a {
		padding: 2.4rem 0;
		font-size: 1.6rem;
	}

	.p-voice-category-slide li a.active {
		border-bottom: 0.4rem solid var(--color-green);
	}

	.p-voice-list {
		margin: 6.4rem 0 0;
		grid-template-columns: repeat(3, 1fr);
		gap: 9rem 4rem;
	}

	.p-voice-list li a figure .arrow {
		right: 2.4rem;
		bottom: 2.4rem;
		width: 3.6rem;
	}

	.p-voice-list li a h3 {
		margin: 0.8rem 0 0;
		font-size: 1.8rem;
	}

	.p-voice-list + .c-btn {
		margin: 8rem auto 0;
	}

	.p-wysiwyg {
		margin: 12rem 0 0;
	}

	.p-wysiwyg h2 {
		margin: 6rem 0 0;
	}

	.p-wysiwyg h3 {
		margin: 6rem 0 0;
	}

	.p-wysiwyg h4 {
		margin: 6rem 0 0;
	}

	.p-wysiwyg h5 {
		margin: 6rem 0 0;
	}

	.p-wysiwyg h6 {
		margin: 5rem 0 0;
	}

	.p-wysiwyg table caption {
		font-size: 1.4rem;
	}

	.p-wysiwyg ul {
		gap: 1.6rem 0;
	}

	.p-wysiwyg ul ul {
		margin-top: 1.6rem;
	}

	.p-wysiwyg blockquote {
		padding: 3.3rem 4rem 3rem 7rem;
		background-position: 3rem 2rem;
		background-size: 3rem 2.7re;
	}

	.u-hide-pc {
		display: none !important;
	}

	.u-show-pc {
		display: block !important;
	}

	.u-show-br-pc {
		display: inline-block !important;
	}

	.u-al-left.sp-center {
		text-align: left !important;
	}

	.u-al-center.sp-left {
		text-align: center !important;
	}

	.u-al-right.sp-left {
		text-align: right !important;
	}
}

@media screen and (min-width: 768px) and (any-hover: hover) {
	.l-header-pc-nav .menu a:not(.c-btn):hover {
		opacity: 0.8;
	}
}

@media screen and (min-width: 768px) and (min-width: 768px) {
	.p-interview-hero .crosstalk-title::before {
		height: 2rem;
	}
}

@media screen and (min-width: 1440px) {
	.p-top-section-circle {
		clip-path: circle(6rem at 50% 50%);
	}
}

@media screen and (max-width: 767px) {
	html {
		font-size: 2.6666666667vw !important;
	}

	.l-header-pc-nav {
		display: none;
	}

	.p-about-circle .c-title {
		width: -moz-max-content;
		width: max-content;
	}

	.p-business .l-section-inner {
		padding-right: 4rem;
	}

	.p-entry-form-row .content .item .col .c-input {
		max-width: 24rem;
		margin-bottom: 0.8rem;
	}

	.p-history .l-section-inner {
		padding-right: 4rem;
	}

	.p-job-oneday.-sales .p-job-oneday-list::before,
  .p-job-oneday.-maintenance .p-job-oneday-list::before {
		height: calc(100% - 1rem - 35rem);
	}

	.p-kv-img.img04 {
		display: none;
	}

	.p-personality-list-wrap {
		overflow-x: auto;
		padding: 0 2rem 0.5rem;
	}

	.p-recruit-flow-inner {
		padding-inline: 0;
	}

	.p-top-voice-list::before {
		margin-inline: calc(50% - 50vw);
	}

	.p-top-voice-list li:last-child {
		display: none;
	}

	.p-voice-category-inner {
		padding: 0;
	}

	.p-wysiwyg figure figcaption {
		font-size: 12px;
	}

	.u-hide-sp {
		display: none !important;
	}

	.u-show-sp {
		display: block !important;
	}

	.u-show-br-sp {
		display: inline-block !important;
	}

	.u-ls-narrow-sp {
		letter-spacing: -0.05em;
	}
}

@media (max-height: 667px) and (max-width: 767px) {
	.p-kv-video {
		width: 46.4767616192vh;
	}

	.p-kv-title-fixed {
		top: 59.9700149925vh;
	}

	.p-kv-img.img01 {
		width: 17.5412293853vh;
	}

	.p-kv-img.img02 {
		width: 13.4932533733vh;
	}

	.p-kv-img.img03 {
		width: 14.5427286357vh;
	}

	.p-kv-scroll {
		top: 79.4602698651vh;
	}
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
	html {
		font-size: 0.6944444444vw !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}

	*,
  *::before,
  *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}
}

@media print {
  /* Prevent printers from removing background-images of controls. */

	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}
}

@media (any-hover: hover) {
	.l-footer a:hover {
		opacity: 0.8;
	}

	.l-header-pc-nav.-cream .menu .c-btn:hover {
		background-color: var(--color-cream);
		color: var(--color-green);
	}

	.l-header-pc-nav.-cream .menu .c-btn:hover::after {
		background-color: var(--color-green);
	}

	.c-btn:not(.-more):hover {
		background-color: var(--color-cream);
		color: var(--color-green);
	}

	.c-btn:not(.-more):hover::after {
		background-color: var(--color-green);
	}

	.c-btn:not(.-more):hover .c-icon.-target::before {
		background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'24\' height=\'24\'%3E%3Cg data-name=\'グループ 43803\'%3E%3Cpath fill=\'none\' d=\'M0 0h24v24H0z\' data-name=\'長方形 58505\'/%3E%3Cpath fill=\'%23F5F5ED\' d=\'M5.778 20a1.712 1.712 0 0 1-1.256-.522A1.712 1.712 0 0 1 4 18.222V5.778a1.712 1.712 0 0 1 .522-1.256A1.712 1.712 0 0 1 5.778 4H12v1.778H5.778v12.444h12.444V12H20v6.222a1.712 1.712 0 0 1-.522 1.256 1.712 1.712 0 0 1-1.256.522Zm4.178-4.711-1.244-1.244 8.267-8.267h-3.2V4H20v6.222h-1.778v-3.2Z\'/%3E%3C/g%3E%3C/svg%3E');
	}

	.c-btn.-cream:hover {
		background-color: var(--color-green);
		color: var(--color-cream);
	}

	.c-btn.-cream:hover::after {
		background-color: var(--color-cream);
	}

	.c-btn.-border:hover {
		background-color: var(--color-green);
		color: var(--color-cream);
	}

	.c-btn.-border:hover::after {
		background-color: var(--color-cream);
	}

	.c-btn.-more:hover {
		background-color: var(--color-cream);
		color: var(--color-green);
	}

	.c-btn.-back:hover {
		background-color: var(--color-cream);
		color: var(--color-black);
	}

	.c-btn.-down:hover::after {
		background-color: transparent;
	}

	.c-checkbox a:hover {
		color: var(--color-green);
	}

	.c-environment-list a:hover {
		opacity: 0.8;
	}

	.c-header-nav li a:hover {
		opacity: 0.8;
	}

	.c-interview-slide .splide__slide a:hover {
		opacity: 0.8;
	}

	.p-crosstalk-list a:hover {
		opacity: 0.8;
	}

	.p-entry-form-body .btn-wrap .c-btn:hover {
		background-color: var(--color-white);
	}

	.p-entry-form-body .btn-wrap .btn-reset .c-btn:hover {
		background-color: var(--color-green);
		color: var(--color-cream);
	}

	.p-entry-form-body.-complete .c-btn.-back:hover {
		background-color: var(--color-white);
	}

	.p-news-list li a:hover {
		background-color: rgba(var(--color-green-rgb), 0.05);
	}

	.p-privacy a:hover {
		color: var(--color-green);
		text-decoration: underline;
	}

	.p-top-news:hover {
		opacity: 0.8;
	}

	.p-top-tiktok-slide .splide__slide a:hover {
		opacity: 0.8;
	}

	.p-top-voice-list li a:hover {
		opacity: 0.8;
	}

	.p-top-crosstalk-list a:hover {
		opacity: 0.8;
	}

	.p-top-environment-list a:hover {
		opacity: 0.8;
	}

	.p-voice-category-slide li a:hover {
		color: var(--color-green);
	}

	.p-voice-list li a:hover {
		opacity: 0.8;
	}

	.p-wysiwyg a:hover {
		text-decoration: none;
	}

	.u-link:hover {
		text-decoration: none;
	}
}