@charset "UTF-8";
/*
 * top_layout.css
 *
 */

 /* !mainvisual
---------------------------------------------------------- */
.mainvisual {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
}

.mainvisual__clipper {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 94%;
  clip-path: url(#customClip);
  -webkit-clip-path: url(#customClip); /* Safari / iOS用 */
  z-index: 1;
}

.mainvisual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mySwiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.mainvisual__copy-container {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 10;
}

.mainvisual__copy {
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 3.2rem);
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}

.mainvisual__bg--blue {
  background-color:rgba(81, 170, 40, .7);
  padding: 0.1em 0.5em;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 0.3em;
  opacity: 0;
  animation: fade-up-copy 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.2s forwards;
}

.mainvisual__bg--green {
  background-color: rgba(10, 152, 200, .7);
  padding: 0.1em 0.5em;
  border-radius: 4px;
  display: inline-block;
  opacity: 0;
  animation: fade-up-copy 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.5s forwards;
}

@keyframes fade-up-copy {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0); 
  }
}

/* --- スクロールアニメーション --- */
.mainvisual__scroll {
  position: absolute;
  left: 5%;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.mainvisual__scroll-text {
	font-family: var(--font-family-en);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--base-font-color);
}

.mainvisual__scroll-line {
  position: relative;
  width: 3px;
  height: 90px;
  background-color: var(--color-blue);
  overflow: hidden;
}

.mainvisual__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-yellow);
  animation: scroll-line-anim 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scroll-line-anim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.mainvisual__object01 {
	position: absolute;
	display: block;
	width: 34vw;
	max-width:460px;
    top: 10%;
    left: -3.4vw;
	z-index: 9;
    transform-origin: center center;
    animation: heartbeat-four-stages 3s ease-in-out infinite;
}
@keyframes heartbeat-four-stages {
    0% {
        transform: scale(1);
    }
    7% {
        transform: scale(1.14);
    }
    14% {
        transform: scale(1);
    }
    23% {
        transform: scale(1.07);
    }
    32% {
        transform: scale(1);
    }
    41% {
        transform: scale(1.035);
    }
    50% {
        transform: scale(1);
    }
    58% {
        transform: scale(1.015); 
    }
    66% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

.mainvisual__object02 {
	position: absolute;
	display: block;
	width:20%;
	max-width:300px;
	bottom:22%;
	right:20px;
	z-index: 9;
	transform-origin: center center;
	animation: loop-rotation2 25s linear infinite;
}
@keyframes loop-rotation2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* --- 固定エントリーボタン --- */
.cta-entry-wrap {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 280px;
    height: 100px;
    background-color: #F8E5A9;
    border-radius: 50px;
    z-index: 99;
	opacity: 0;
	animation: fade-in-btn 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.8s forwards;
}

@keyframes fade-in-btn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.cta-entry-btn {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 280px;
    height: 100px;
    background-color: var(--color-orange);
    border-radius: 50px;
    display: block;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.cta-entry-wrap:hover .cta-entry-btn {
    transform: translate(10px, 10px);
}

.cta-entry-btn__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-left: 40px;
    position: relative;
}

.cta-entry-btn__text {
    color: #fff;
    line-height: 1.2;
}

.cta-entry-btn__text .en {
    display: block;
	font-family: var(--font-family-en);
    font-size: 28px;
    letter-spacing: 0.06em;
}

.cta-entry-btn__text .jp {
    display: block;
    font-size: 13px;
    text-align: center;
    margin-top: 2px;
}

.cta-entry-btn__img {
    width: 125px;
    height: 100%;
    display: flex;
    align-items: flex-end;
	margin-right: 5px;
}

.cta-entry-btn__img img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width:1039px){
.mainvisual {
  height: 750px;
}

.mainvisual__clipper {
  height: 700px;
}

/* --- 固定エントリーボタン --- */
.cta-entry-wrap {
    right: 10px;
    bottom: 0;
    width: 260px;
    height: 90px;
}

.cta-entry-btn {
    top: -8px;
    left: -8px;
    width: 260px;
    height: 90px;
}

.cta-entry-wrap:hover .cta-entry-btn {
    transform: none;
}

.cta-entry-btn__img {
    width: 110px;
}
}

@media screen and (max-width:767px){
.mainvisual {
  height: 440px;
}

.mainvisual__clipper {
  height: 350px;
}

.mainvisual__copy {
  font-size: clamp(1.2rem, 4vw, 3.2rem);
}

.mainvisual__bg--blue {
  padding: 0.2em 0.5em;
  border-radius: 3px;
}

.mainvisual__bg--green {
  padding: 0.2em 0.5em;
  border-radius: 3px;
}

@keyframes fade-up-copy {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0); 
  }
}

/* --- スクロールアニメーション --- */
.mainvisual__scroll {
  left: 4%;
  gap: 3px;
}

.mainvisual__scroll-text {
  font-size: 11px;
}

.mainvisual__scroll-line {
  width: 2px;
  height: 70px;
}

.mainvisual__object01 {
	width: 34vw;
    top: 16%;
}

.mainvisual__object02 {
	width:28%;
	bottom:22%;
	right:15px;
}

/* --- 固定エントリーボタン --- */
.cta-entry-wrap {
    right: 10px;
    bottom: 0;
    width: 200px;
    height: 70px;
}

@keyframes fade-in-btn {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.cta-entry-btn {
    top: -5px;
    left: -5px;
    width: 200px;
    height: 70px;
}

.cta-entry-btn__content {
    padding-left: 32px;
}

.cta-entry-btn__text .en {
    font-size: 20px;
}

.cta-entry-btn__text .jp {
    font-size: 10px;
}

.cta-entry-btn__img {
    width: 84px;
}
}

@media screen and (max-width:359px){
.mainvisual__copy {
  font-size: clamp(1rem, 4vw, 3.2rem);
}
}

/* !contents
---------------------------------------------------------- */
#contents {
	width:100%;
	position:relative;
	overflow: hidden;
}

/* !仕事を知る
---------------------------------------------------------- */
.jobs {
	width:100%;
	min-height: 660px;
	padding:120px 50px 50px 50px;
	position: relative;
	/* overflow-x: hidden; */
}

.jobs__inner {
	display: flex;
	justify-content: space-between;
}

.jobs__object {
	position: absolute;
	display: block;
	width:600px;
	height: 600px;
	top:0px;
	left:-200px;
	z-index: -1;
	will-change: transform;
}

.jobs__left {
	width:30%;
}

.jobs__right {
	width:70%;
}

.jobs__c-title:before {
	border-color: var(--color-purple);
}

.jobs__accordion-container {
	width: 100%;
	max-width: 900px;
	color: var(--base-font-color);
}

.jobs__accordion-toggle {
	display: none;
}

.jobs__accordion-item {
	background-color: #F8F7F3;
	border-radius: 6px;
	overflow: hidden;
}

.jobs__accordion-item:not(:first-child) {
	margin-top: 30px;
}

.jobs__accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 30px;
	cursor: pointer;
	user-select: none;
}

.jobs__accordion-header-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.jobs__accordion-category-tag {
	background-color: var(--color-purple);
	color: #fff;
	font-weight: var(--font-weight-bold);
	padding: 8px 24px;
	border-radius: 50px;
	white-space: nowrap;
}

.jobs__accordion-title {
	font-weight: var(--font-weight-bold);
}

.jobs__accordion-toggle-icon {
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px;
	background-image: linear-gradient(#fff, #fff), 
						linear-gradient(to right, #F27140 0%, #E8C558 25%, #2EA178 50%, #0A98C8 75%, #9999CC 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
	flex-shrink: 0;
}

.jobs__accordion-toggle-icon::before,
.jobs__accordion-toggle-icon::after {
	content: "";
	position: absolute;
	background-color: var(--base-font-color);
	transition: transform 0.4s ease, opacity 0.3s ease;
}

.jobs__accordion-toggle-icon::before {
	width: 16px;
	height: 2px;
}

.jobs__accordion-toggle-icon::after {
	width: 2px;
	height: 16px;
}

.jobs__accordion-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease, padding 0.4s ease;
	padding: 0 30px;
}

.jobs__accordion-content-inner {
	overflow: hidden;
}

.jobs__accordion-toggle:checked + .jobs__accordion-header + .jobs__accordion-content {
	grid-template-rows: 1fr;
	padding-bottom: 30px;
}

.jobs__accordion-toggle:checked + .jobs__accordion-header .jobs__accordion-toggle-icon::after {
	transform: rotate(90deg);
	opacity: 0;
}

.jobs__accordion-info-row {
	display: flex;
	margin-top: 10px;
	line-height: 1.8;
}

.jobs__accordion-label {
	font-weight: var(--font-weight-bold);
	min-width: 80px;
	flex-shrink: 0;
}

.jobs__accordion-text {
	margin: 0;
	text-align: justify;
	font-size: 14px;
}

.jobs__accordion-text + .jobs__accordion-text {
    margin-top: 12px;
}

@media screen and (max-width:1039px) {
.jobs {
	min-height: 580px;
	padding:100px 30px 40px 30px;
}

.jobs__object {
	width:540px;
	height: 540px;
	top:20px;
	left:-180px;
}

.jobs__left {
	width:26%;
}

.jobs__right {
	width:74%;
}

.jobs__accordion-item:not(:first-child) {
	margin-top: 25px;
}

.jobs__accordion-header {
	padding: 24px 20px 24px 24px;
}

.jobs__accordion-header-left {
	gap: 12px;
}

.jobs__accordion-content {
	padding: 0 25px;
}

.jobs__accordion-info-row {
	margin-top: 5px;
}

.jobs__accordion-label {
	min-width: 70px;
}
}

@media screen and (max-width:767px){
.jobs {
	min-height: 480px;
	padding:90px 25px 30px 25px;
}

.jobs__inner {
	flex-wrap: wrap;
	gap:40px;
}

.jobs__object {
	width:380px;
	height: 380px;
	top:0px;
	left:-100px;
}

.jobs__left {
	width:100%;
}

.jobs__right {
	width:100%;
}

.jobs__accordion-item {
	border-radius: 4px;
}

.jobs__accordion-item:not(:first-child) {
	margin-top: 20px;
}

.jobs__accordion-header {
	padding: 16px 12px 16px 12px;
}

.jobs__accordion-header-left {
	flex-wrap: wrap;
	gap: 10px;
}

.jobs__accordion-category-tag {
	padding: 5px 20px;
}

.jobs__accordion-title {
	width:100%;
	line-height: 1.6;
}

.jobs__accordion-toggle-icon {
	width: 40px;
	height: 40px;
}

.jobs__accordion-toggle-icon::before {
	width: 12px;
	height: 2px;
}

.jobs__accordion-toggle-icon::after {
	width: 2px;
	height: 12px;
}

.jobs__accordion-content {
	padding: 0 16px;
}

.jobs__accordion-toggle:checked + .jobs__accordion-header + .jobs__accordion-content {
	padding-bottom: 15px;
}

.jobs__accordion-label {
	min-width: 70px;
}

.jobs__accordion-text {
	font-size: 14px;
}
}

@media screen and (max-width:359px){
.about__right {
	height: 260px;
}

.about__img01 {
	width:130px;
}

.about__img02 {
	width:120px;
	top:60px;
	right:0px;
}
.about__img03 {
	width:100px;
	top:auto;
	left:50px;
	bottom:0;
}
}

/* !働く人を知る
---------------------------------------------------------- */
.member {
	width:100%;
	padding:80px 50px 70px 50px;
	position: relative;
	
}

.member__object {
	position: absolute;
	display: block;
	width:400px;
	top:-140px;
	right:-35px;
	z-index: -1;
	will-change: transform;
}

.member__c-title:before {
	border-color: var(--color-yellow);
}

.member__container {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	margin-top: 20px;
}

.member__card {
	text-decoration: none;
	color: var(--base-font-color);
	display: block;
}

.member__image-unit {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.7;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.member__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 80%;
    object-fit: contain;
    z-index: 1;
}

.member__bg--staff01 {
    animation: loop-rotation 20s linear infinite;
}

@keyframes loop-rotation {
    0% {
        transform: translate(-50%, -30%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -30%) rotate(360deg);
    }
}

.member__bg--staff02 {
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: translate(-50%, -30%) scale(1);
    }
    14% {
        transform: translate(-50%, -30%) scale(1.1);
    }
    28% {
        transform: translate(-50%, -30%) scale(1);
    }
    42% {
        transform: translate(-50%, -30%) scale(1.06);
    }
    60% {
        transform: translate(-50%, -30%) scale(1);
    }
}

.member__bg--staff03 {
    animation: seesaw 3s ease-in-out infinite;
}

@keyframes seesaw {
    0%, 100% {
        transform: translate(-50%, -30%) rotate(0deg);
    }
    20% {
        transform: translate(-50%, -30%) rotate(-10deg);
    }
    60% {
        transform: translate(-50%, -30%) rotate(10deg);
    }
}

.member__person {
	position: relative;
	z-index: 2;
	height: 80%;
	width: auto;
	object-fit: contain;
	transition: transform .2s ease;
}
a:hover .member__person {
	transform: translateY(-8px);
}

.member__info {
	position: relative;
	padding-right: 60px;
}

.member__info-top {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 5px;
}

.member__name {
	font-family: var(--font-family-en);
	font-size: 28px;
}

.member__name--green  { color: var(--color-green); }
.member__name--blue   { color: var(--color-blue); }
.member__name--orange { color: var(--color-orange); }

.member__year {
	font-size: 14px;
}

.member__dept, .member__job {
	margin: 0;
	font-weight: var(--font-weight-bold);
	line-height: 1.6;
}

.member__btn {
	position: absolute;
	right: 0;
	bottom: 0;
}

.member__btn-icon {
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 2px;
	background-image: linear-gradient(#fff, #fff), 
						linear-gradient(to right, #F27140 0%, #E8C558 25%, #2EA178 50%, #0A98C8 75%, #9999CC 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
}

@keyframes arrowLoop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(35px);
    opacity: 0;
  }
  50% {
    transform: translateX(-35px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media screen and (max-width:1039px) {
.member {
	padding:60px 30px 50px 30px;
}

.member__object {
	width:370px;
	top:-90px;
	right:-35px;
}

.member__container {
	gap: 40px;
}

.member__image-unit {
	margin-bottom: 15px;
}

.member__bg {
	width: 84%;
}

.member__person {
	height: 84%;
}
a:hover .member__person {
	transform: none;
}

.member__info {
	padding-right: 0;
	padding-bottom:60px;
}

.member__info-top {
	margin-bottom: 0;
}

.member__name {
	font-size: 26px;
}

.member__year {
	font-size: 13px;
}

.member__btn {
	right: auto;
	left:0;
}
}

@media screen and (max-width:767px){
.member {
	padding:70px 30px 40px 30px;
}

.member__object {
	width:250px;
	top:0px;
	right:-20px;
}

.member__container {
	max-width: 300px;
	grid-template-columns: 1fr;
    gap: 40px;
	margin: 30px auto 0 auto;
}

.member__image-unit {
	aspect-ratio: 1 / 0.4;
	margin-bottom: 15px;
}

.member__bg {
	width: 60%;
}

.member__person {
	height: 90%;
}

.member__info {
	padding-right: 50px;
	padding-bottom:0;
}

.member__btn {
	right: 0;
	left:auto;
}

.member__btn-icon {
	width: 40px;
	height: 40px;
}
}

/* !働く環境を知る
---------------------------------------------------------- */
.environment {
	width:100%;
	padding:160px 50px 200px 50px;
	position: relative;
	background-color: #F0F9FC;
	z-index: 1;
}

.environment::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px; 
    background-image: url("data:image/svg+xml,%3Csvg width='1440' height='145' viewBox='0 0 1440 145' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1440 144.936C1390.19 123.116 1331.93 107.293 1266.68 99.7324C1135.05 84.475 1001.52 110.961 869.466 125.663C794.2 134.043 715.85 138.035 640.496 128.788C559.383 118.833 515.366 88.3356 448.146 62.5342C348.921 24.4517 235.019 2.48576 121.097 6.46094C80.1643 7.88984 39.289 12.8203 0 21.1465V0H1440V144.936Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: bottom;
    transform: translateY(0); 
    z-index: 2;
}

.environment::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg width='1440' height='145' viewBox='0 0 1440 145' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1440 144.936C1390.19 123.116 1331.93 107.293 1266.68 99.7324C1135.05 84.475 1001.52 110.961 869.466 125.663C794.2 134.043 715.85 138.035 640.496 128.788C559.383 118.833 515.366 88.3356 448.146 62.5342C348.921 24.4517 235.019 2.48576 121.097 6.46094C80.1643 7.88984 39.289 12.8203 0 21.1465V0H1440V144.936Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top;
	transform: scaleY(-1) scaleX(-1);
    z-index: 2;
}

.environment__inner {
	max-width:1100px;
}

.environment__c-title:before {
	border-color: var(--color-orange);
}

.environment__container {
	max-width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 80px;
	margin-top: 70px;
}

.environment__card-wrapper {
	background-color: #EFEDE0;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.environment__card {
	text-decoration: none;
	background-color: #fff;
	border-radius: 20px;
	display: block;
	overflow: hidden;
	transform: translate(-10px, -10px);
	transition: transform 0.2s ease;
}

.environment__card-wrapper:hover .environment__card {
	transform: translate(0, 0);
}

.environment__tag-wrapper {
	padding: 40px 0 30px;
	display: flex;
	justify-content: center;
}

.environment__tag {
	display: inline-block;
	color: #fff;
	font-weight: var(--font-weight-bold);
	font-size: 18px;
	padding: 6px 40px;
	border-radius: 50px;
	white-space: nowrap;
}

.loadmap .environment__tag {
	background-color: var(--color-orange);
}

.system .environment__tag {
	background-color: var(--color-purple);
}

.environment__image-unit {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 1039px) {
.environment {
	padding:140px 50px 160px 50px;
}

.environment::before {
    height: 100px;
}

.environment::after {
    height: 100px;
}

.environment__container {
	gap: 50px;
	margin-top: 60px;
}

.environment__card-wrapper {
	border-radius: 20px;
}

.environment__card {
	border-radius: 16px;
	transform: translate(-8px, -8px);
}

.environment__card-wrapper:hover .environment__card {
	transform: translate(-8px, -8px);
}

.environment__tag-wrapper {
	padding: 30px 0 30px;
}

.environment__tag {
	font-size: 16px;
	padding: 6px 30px;
}
}

@media screen and (max-width: 768px) {
.environment {
	padding:100px 25px 100px 25px;
}

.environment::before {
    height: 60px;
}

.environment::after {
    height: 60px;
}

  .environment__container {
    grid-template-columns: 1fr;
    gap: 40px;
	margin-top: 50px;
  }

.environment__card-wrapper {
	max-width:300px;
	border-radius: 16px;
	margin: 0 auto;
}

.environment__card {
	max-width:300px;
	border-radius: 12px;
	margin: 0 auto;
}

.environment__tag-wrapper {
	padding: 30px 0 20px;
}

.environment__tag {
	font-size: 14px;
	padding: 6px 26px;
}
}