@charset "UTF-8";
/*====================================================
////webフォント読み込み
====================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/futura-book");
/*====================================================
////フォントサイズ設定
====================================================*/
html {
  font-size: 62.5%;
}

@media screen and (min-width: 1151px) and (max-width: 1980px) {
  .inner {
    font-size: 0.5050505051vw;
  }
}
@media (max-width: 375px) {
  .inner {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1151px) {
  .inner {
    font-size: 0.8680555556vw;
  }
}
/*====================================================
////アニメーション設定
====================================================*/
/*====================================================
////アニメーション設定
====================================================*/
@keyframes loadingAnime {
  0% {
    clip-path: circle(0 at 50% 50%);
  }
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes company-Fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn-left {
  0% {
    opacity: 0;
    transform: translateX(-30%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn-right {
  from {
    opacity: 0;
    transform: translateX(30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes flash {
  0% {
    top: -5rem;
  }
  50% {
    top: -2rem;
  }
  100% {
    top: -5rem;
  }
}
@keyframes flash02 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes FadeInDown {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateY(-30%);
  }
  to {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateY(0);
  }
}
@keyframes FadeOut {
  from {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  to {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}
@keyframes FadeInUp {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateY(30%);
  }
  to {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateY(0);
  }
}
@keyframes float-anime04 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-3px, -15px);
  }
}
@keyframes asInUp {
  from {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateY(0);
  }
}
@keyframes UpMove {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateY(10rem);
  }
  to {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateY(0);
  }
}
@keyframes DownMove {
  from {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateY(0);
  }
  to {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateY(10rem);
  }
}
@keyframes scrollIn-x {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scrollOut-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100vw);
  }
}
@keyframes float-anime01 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(5px, -10px);
  }
}
@keyframes float-anime02 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-5px, 10px);
  }
}
@keyframes float-anime03 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(5px, 15px);
  }
}
@keyframes float-anime04 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-3px, -15px);
  }
}
@keyframes slidein-right {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slidein-left {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes line-fade {
  from {
    transform: translateY(0);
    height: 100%;
  }
  to {
    transform: translateY(100%);
    height: 0;
  }
}
.wrapper {
  height: 0;
  height: 100vh;
  width: 100vw;
  position: absolute;
  left: 0;
  top: 0;
}

.wrapper.active {
  animation: loadingAnime 1s cubic-bezier(0.22, 0.6, 0.35, 1) 0s 1 forwards;
  overflow: hidden;
}

.fadeIn {
  opacity: 0;
}

.fadeIn.isActive {
  animation-name: FadeIn;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-duration: 1s;
}

.fadeIn-left {
  opacity: 0;
}

.fadeIn-left.isActive {
  animation-name: fadeIn-left;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.fadeIn-right {
  opacity: 0;
}

.fadeIn-right.isActive {
  animation-name: fadeIn-right;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.asInUp {
  opacity: 0;
  display: block;
}

.asInUp.isActive {
  animation-name: asInUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.fadeInDown {
  opacity: 0;
}

.fadeInDown.isActive {
  animation-name: FadeInDown;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.scrollIn-x {
  opacity: 0;
}

.scrollIn-x.isActive {
  animation-name: scrollIn-x;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.fadeInUp {
  opacity: 0;
}

.fadeInUp.isActive {
  animation-name: FadeInUp;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.rotateY {
  opacity: 0;
}

.rotateY.isActive {
  -webkit-animation: rotateY 0.5s ease-out forwards;
  animation: rotateY 0.5s ease-out forwards;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.UpMove {
  -webkit-animation: UpMove 0.5s ease-out forwards;
  animation: UpMove 0.5s ease-out forwards;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.DownMove {
  -webkit-animation: DownMove 0.5s ease-out forwards;
  animation: DownMove 0.5s ease-out forwards;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.delay01 {
  animation-delay: 0.3s !important;
}

.delay02 {
  animation-delay: 0.6s !important;
}

.delay03 {
  animation-delay: 0.9s !important;
}

/*====================================================
////common
====================================================*/
/* ---------- カラーコード ----------*/
:root {
  --main-color: #00B2EE;
  --gray: #E2E2E2;
  --txt-color: #312f2f;
  --grd: linear-gradient(90deg, rgba(229, 162, 198, 1) 0%, rgba(182, 184, 219, 1) 50%, rgba(141, 207, 208, 1) 100%);
  --pink: #f6bcb8;
}

/* ---------- 基本設定 ----------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--txt-color);
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
  }
}
/* ---------- レスポンシブ切り替え ----------*/
.only-sp {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
}
.only-pc {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .only-pc {
    display: block !important;
  }
}
/* ---------- inner ----------*/
.inner {
  margin: 0 auto;
  width: 90.6666666667%;
}

@media screen and (min-width: 768px) {
  .inner {
    max-width: 102.7rem;
  }
}
.inner-wide {
  margin: 0 auto;
  width: 92.5333333333%;
}

@media screen and (min-width: 768px) {
  .inner-wide {
    max-width: 130rem;
  }
}
/* ---------- 背景 ----------*/
.bg-yellow {
  background-color: #FFCB00;
}

.bg-gray {
  background-color: #E2E2E2;
}

.bg-white {
  background-color: #ffffff;
}

/* ---------- パンくず ----------*/
.breadcrumb {
  background-color: #e6e6e6;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  padding: 0.3rem 3rem;
  width: 95%;
  margin: auto;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
}

.breadcrumb__list--item {
  color: #9a9a9a;
  font-size: 1.2rem;
  line-height: 1.8333333333;
  letter-spacing: 0.025em;
}

.breadcrumb__list--item a::after {
  content: ">";
  display: inline-block;
  margin: 0 1rem;
}

.breadcrumb__list--item:last-of-type a::after {
  content: none;
}

@media screen and (min-width: 768px) {
  .breadcrumb {
    margin: 0 4.2rem;
    padding: 0.3rem 3rem;
  }
}
/* ---------- カーソル ----------*/
/*
#cursor {
position: fixed;
z-index: 99;
left: 0;
top: 0;
pointer-events: none;
will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
.cursor__circle {
  width: 30px;
  height: 30px;
  margin-top: -50%;
  margin-left: -50%;
  border-radius: 50%;
}
#cursor.arrow .cursor__circle {
  width: 45px;
  height: 45px;
  background-color: #FFCB00;
  border: 1px solid #ccc;
  opacity: 0.8;
}
#cursor.arrow::after {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/cursor-icon.png");
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
#cursor.subtle .cursor__circle {
  opacity: 0.5;
}
#cursor.overlay .cursor__circle {
  width: 48px;
  height: 48px;
  background-color: rgba(227, 222, 193, 0.08);
  border-color: transparent;
}
}
*/
/* ---------- 外部リンク ----------*/
.external-wh,
.external-bk {
  position: relative;
}

.external-wh::after,
.external-bk::after {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  margin-left: 1rem;
}

.external-wh::after {
  background: url(../img/common/external-wh.svg) no-repeat;
}

.external-bk::after {
  background: url(../img/common/external-bk.svg) no-repeat;
}

.no-transition {
  transition: none !important;
}

/*====================================================
////loading
====================================================*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(90deg, #e5a2c6, #b6b8db 51%, #8dcfd0);
  z-index: 99999;
}

.loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 80%;
  margin: auto;
  max-width: 30rem;
}

/*====================================================
////TOP
====================================================*/
.bg-imgGray {
  background-image: url(../img/top/top-bg_gray.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.home-heading {
  font-size: 2.8rem;
  line-height: 0.75;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: var(--txt-color);
  animation-duration: 1s;
}

.home-heading span {
  display: block;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .home-heading {
    font-size: 5rem;
    line-height: 1.54;
    letter-spacing: 0.2em;
  }
  .home-heading span {
    margin-top: 0;
  }
}
.homeBtn-more {
  background-color: var(--pink);
  color: #818284;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: 400;
  border-radius: 5rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  -o-border-radius: 5rem;
  animation-duration: 0.5s;
}

.homeBtn-more a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--txt-color);
}

.homeBtn-more a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .homeBtn-more {
    font-size: 1.55rem;
    line-height: 0.9032258065;
    letter-spacing: 0.2em;
  }
}
/* FV
----------------------------------------------------*/
.first-view {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.first-view__movie {
  width: 100%;
  height: 100%;
  position: relative;
}

.first-view__movie video {
  object-fit: cover;
  width: 100%;
  object-position: 50% 100%;
  font-family: "object-fit: cover; object-position: 50% 100%", sans-serif;
  height: 100%;
}

.first-view__movie::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.first-view__block {
  overflow: hidden;
  font-size: clamp(26px, 6.9333333333vw, 46px);
  line-height: 1.75;
  letter-spacing: 0.2em;
  font-weight: 300;
  width: fit-content;
}

.first-view__block span {
  display: block;
  animation-duration: 1s;
}

.first-view__block:first-of-type span {
  animation-delay: 2s;
}

.first-view__block:nth-of-type(2) span {
  animation-delay: 2.3s;
}

.first-view__block:last-of-type span {
  animation-delay: 2.6s;
}

.first-view__text {
  width: 100%;
  color: #fff;
  position: absolute;
  top: 35%;
  left: 5%;
  z-index: 2;
}

.first-view__text--title {
  width: fit-content;
}

.first-view__text--body {
  font-size: clamp(16px, 4.2666666667vw, 20px);
  line-height: 1.5625;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-top: 2.5rem;
  animation-duration: 1s;
  animation-delay: 3.2s;
  width: fit-content;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .first-view {
    width: 100%;
    height: 95.9rem;
    max-height: 100vh;
    position: relative;
  }
  .first-view__movie {
    width: 100%;
    height: 100%;
  }
  .first-view__movie img {
    object-fit: cover;
    width: 100%;
    object-position: 50% 100%;
    font-family: "object-fit: cover; object-position: 50% 100%", sans-serif;
    height: 100%;
  }
  .first-view__block {
    font-size: 5.326rem;
    line-height: 1.7461509576;
    letter-spacing: 0.175em;
  }
  .first-view__text {
    color: #fff;
    position: absolute;
    top: 29.5%;
    left: 35.1%;
    width: fit-content;
  }
  .first-view__text--body {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.1em;
    margin-top: 4.5rem;
  }
}
/* About Us
----------------------------------------------------*/
.home-about {
  padding: 7rem 0 6.5rem 0;
  position: relative;
}

.home-about::before,
.home-about::after {
  content: "";
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

.home-about::before {
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
}

.home-about.isActive::before {
  -webkit-animation: scrollOut-x 1s ease-out forwards;
  animation: scrollOut-x 1s ease-out forwards;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.home-about .home-heading {
  animation-delay: 1s;
}

.home-about__text {
  color: var(--txt-color);
}

.home-about__text--body {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.12em;
  font-weight: 300;
  margin-top: 3rem;
  animation-delay: 1.3s;
  animation-duration: 1s;
}

.home-about .homeBtn-more {
  margin: 5rem auto 0 auto;
  aspect-ratio: 152.168/34.7814;
  max-width: 14.2168rem;
  animation-delay: 1.6s;
  z-index: 3;
  position: relative;
}

.home-about__logo {
  width: 60.3147058824%;
  max-width: 16.507rem;
  margin: 20vh auto 4rem auto;
  animation-duration: 1s;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .home-about {
    padding: 0 0 0 0;
    display: flex;
    align-items: center;
    height: 100vh;
  }
  .home-about__text--body {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0em;
    font-weight: 400;
    margin-top: 2rem;
  }
  .home-about .inner {
    position: relative;
  }
  .home-about .homeBtn-more {
    margin-top: 8rem;
    aspect-ratio: 210/48;
    width: 21rem;
    position: absolute;
    left: 0;
    bottom: -4.8rem;
  }
  .home-about .inner {
    display: flex;
    flex-wrap: nowrap;
    gap: space-between;
    justify-content: center;
    margin-top: -2rem;
  }
  .home-about__logo {
    width: 35.6111002921%;
    max-width: 36.5726rem;
    margin: 0 7.7896786758% 0 auto;
    animation-delay: 2s;
  }
}
/* Business
----------------------------------------------------*/
.home-business {
  padding: 7.5rem 0 4rem 0;
  overflow-x: hidden;
  background: url(../img/top/top-bg_grd.jpg) no-repeat;
  background-size: cover;
}

.home-business .home-heading {
  color: #fff;
}

.home-business__lead {
  font-size: 1.5rem;
  line-height: 1.7333333333;
  letter-spacing: 0.12em;
  font-weight: 400;
  animation-duration: 1s;
  margin-top: 1.5rem;
  animation-delay: 0.5s;
}

.home-business__list {
  margin-top: 3.8rem;
  animation-duration: 1s;
  animation-delay: 1s;
}

.home-business__list--item {
  border-top: 1px solid #000;
  padding: 1.7rem 0;
}

.home-business__list--title {
  font-size: clamp(1.2rem, 6vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 300;
  position: relative;
  color: #fff;
}

.home-business__list--title span {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: 400;
  display: block;
  margin-top: 0.2rem;
}

.home-business__list--title::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 1px var(--txt-color);
  border-right: solid 1px var(--txt-color);
  position: absolute;
  right: 1.2rem;
  top: 1.7rem;
  transform: rotate(45deg);
}

.home-business__list--title.external {
  position: relative;
}

.home-business__list--title.external::after {
  content: none;
}

.home-business__list--title.external::before {
  content: "";
  background: url(../img/common/external-wh.svg) no-repeat;
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  top: 35%;
  right: 0;
}

.home-business__box {
  padding: 2.7rem 0 2.2rem 0;
  position: relative;
  width: 88.8%;
  margin: 0 auto 0 11.2%;
}

.home-business__box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.home-business__box--img {
  overflow: hidden;
  aspect-ratio: 665/555;
}

.home-business__box--img img {
  object-fit: cover;
  width: 100%;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: 50% 50%", sans-serif;
}

.home-business__box--title,
.home-business__box--text {
  color: #ffffff;
  position: absolute;
  left: 2rem;
}

.home-business__box--title {
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  font-size: clamp(1.8rem, 6.35vw, 2.4rem);
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 100;
  display: flex;
  align-items: center;
  top: 2rem;
}

.home-business__box--title span {
  font-size: clamp(5rem, 18.6666666667vw, 7rem);
  line-height: 1.4857142857;
  letter-spacing: 0em;
  display: block;
  margin-right: 0.7rem;
}

.home-business__box--text {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: clamp(1.1rem, 3.7333333333vw, 1.4rem);
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: 300;
  bottom: 6rem;
  text-shadow: 0px 0px 6px rgb(0, 0, 0);
  font-weight: 500;
}

.home-business__box.active {
  overflow: hidden;
}

.home-business__box.active .home-business__box--title,
.home-business__box.active .home-business__box--text {
  -webkit-animation: FadeIn 1s ease-out forwards;
  animation: FadeIn 1s ease-out forwards;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}

.home-business__box.active .home-business__box--title {
  animation-delay: 0.3s;
}

.home-business__box.active .home-business__box--text {
  animation-delay: 0.6s;
}

.home-business .homeBtn-more {
  animation-delay: 1s;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .home-business {
    padding: 10rem 0 10.5rem 0;
    overflow: visible;
    min-height: 100vh;
    height: auto;
  }
  .home-business__head {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    align-items: flex-start;
  }
  .home-business .homeBtn-more {
    background-color: #fff;
    aspect-ratio: 210/48;
    width: 21rem;
    margin-top: 2.5rem;
    animation-delay: 1s;
  }
  .home-business__lead {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.12em;
    margin-top: 2.2rem;
    color: #fff;
  }
  .home-business__list {
    margin: 6.5rem auto 0 auto;
    width: 90.6666666667%;
    max-width: 102.7rem;
    position: relative;
  }
  .home-business__list--item {
    border-top: none;
    padding: 0;
    position: static;
    transition: 0.5s;
    display: flex;
    align-items: center;
  }
  .home-business__list--item:last-of-type .home-business__list--title {
    border-bottom: 1px solid #fff;
  }
  .home-business__list--title {
    border-top: 1px solid #fff;
    padding: 1rem 0;
    margin-right: 57%;
    font-size: 2.7rem;
    line-height: 1;
    letter-spacing: 0.15em;
    width: 43% !important;
    position: relative;
    margin: 0 auto 0 0 !important;
  }
  .home-business__list--title span {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.2em;
    display: block;
    margin-top: 0.2rem;
  }
  .home-business__list--title::after {
    content: none;
  }
  .home-business__list--title.external::before {
    right: 1.5rem;
  }
  .home-business__list--title.external:hover::before {
    background: url(../img/common/external-bk.svg) no-repeat;
  }
  .home-business__list--title a {
    display: block;
    transition: 0.3s;
    padding: 1rem 0;
  }
  .home-business__list--title a::before,
  .home-business__list--title a::after {
    content: "";
    position: absolute;
    opacity: 0;
    top: 50%;
    transition: 0.3s;
  }
  .home-business__list--title a::after {
    background-color: var(--pink);
    width: 4.38281rem;
    aspect-ratio: 100/100;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 5rem;
    z-index: 1;
  }
  .home-business__list--title a::before {
    width: 15px;
    height: 15px;
    border-top: solid 1px var(--txt-color);
    border-right: solid 1px var(--txt-color);
    right: 6rem;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
  }
  .home-business__list--title.external a::before {
    content: none;
  }
  .home-business__list--title.external a::after {
    content: none;
  }
  .home-business__list--title.active,
  .home-business__list--title:hover {
    background-color: #fff;
  }
  .home-business__list--title.active a,
  .home-business__list--title:hover a {
    opacity: 1;
    padding-left: 3rem;
    color: var(--txt-color);
  }
  .home-business__list--title.active a::before,
  .home-business__list--title.active a::after,
  .home-business__list--title:hover a::before,
  .home-business__list--title:hover a::after {
    opacity: 1;
  }
  .home-business__list--title.active a::after,
  .home-business__list--title:hover a::after {
    right: 3rem;
  }
  .home-business__list--title.active a::before,
  .home-business__list--title:hover a::before {
    right: 4.7rem;
  }
  .home-business__box {
    opacity: 0;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 47.3165530672%;
    max-width: 48.5941rem;
    transition: 0.3s;
    overflow: hidden;
  }
  .home-business__box.active {
    opacity: 1;
    right: 0;
    top: 0;
  }
  .home-business__box--img {
    overflow: hidden;
  }
  .home-business__box--img img {
    object-fit: cover;
    width: 100%;
    object-position: 50% 50%;
    font-family: "object-fit: cover; object-position: 50% 50%", sans-serif;
  }
  .home-business__box--title {
    font-size: 3rem;
    line-height: 1.4;
    letter-spacing: 0.15em;
    align-items: center;
    left: 3rem;
    top: 0.5rem;
  }
  .home-business__box--title span {
    font-size: 8.636rem;
    line-height: 1.1579434924;
    letter-spacing: 0.1em;
    margin-right: 1.8rem;
  }
  .home-business__box--text {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0em;
    bottom: auto;
    top: 71%;
    left: 5.3rem;
  }
  .home-business__box.active .home-business__box--title,
  .home-business__box.active .home-business__box--text {
    -webkit-animation: FadeIn 0.3s ease-out forwards;
    animation: FadeIn 0.3s ease-out forwards;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .home-business__list--title {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.15em;
  }
  .home-business__box--title {
    font-size: 2.4rem;
    line-height: 1.4166666667;
    letter-spacing: 0.15em;
    align-items: center;
    left: 2rem;
    top: 0.5rem;
  }
  .home-business__box--title span {
    font-size: 7rem;
    line-height: 1.1428571429;
    letter-spacing: 0.1em;
    margin-right: 0.5rem;
  }
  .home-business__box--text {
    font-size: 1.4rem;
    line-height: 2.1428571429;
    letter-spacing: 0em;
    bottom: auto;
    top: 71%;
    left: 1.5rem;
  }
}
/* Recruit
----------------------------------------------------*/
.home-recruit {
  padding: 6.8rem 0 7.7rem 0;
}

.home-recruit__list {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 4rem;
  width: 55.3rem;
}

@media screen and (max-width: 767px) {
  .home-recruit__list {
    -webkit-animation: scroll-x 30s infinite linear 0.5s both;
    animation: scroll-x 30s infinite linear 0.5s both;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
}
.home-recruit__list--item {
  width: 17.8742rem;
  aspect-ratio: 178/176;
  animation-duration: 1s;
}

.home-recruit__list--item img {
  width: 100%;
}

.home-recruit__container {
  display: flex;
  gap: 1rem;
  overflow-x: hidden;
}

.home-recruit .homeBtn-more {
  margin: 4.3rem auto 0 auto;
  aspect-ratio: 210/48;
  max-width: 21rem;
  animation-delay: 1s;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .home-recruit {
    padding: 13rem 0 13.5rem 0;
  }
  .home-recruit .home-heading span {
    margin-top: -1rem;
  }
  .home-recruit .home-business__lead {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.12em;
  }
  .home-recruit__list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 5.7rem;
    width: 100%;
  }
  .home-recruit__list--item {
    width: calc((100% - 2rem) / 3);
    opacity: 0;
  }
  .home-recruit__list--item.isActive {
    animation-name: FadeInDown;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
  }
  .home-recruit__list--item:nth-of-type(2) {
    animation-delay: 0.3s;
  }
  .home-recruit__list--item:last-of-type {
    animation-delay: 0.6s;
  }
  .home-recruit__list:last-of-type {
    display: none;
  }
  .home-recruit__container {
    display: block;
    overflow-x: auto;
    width: 90.6666666667%;
    max-width: 102.7rem;
    margin: auto;
  }
  .home-recruit .homeBtn-more {
    margin: 7rem auto 0 0;
    aspect-ratio: 210/48;
    max-width: 21rem;
  }
}
/* Media
----------------------------------------------------*/
.home-media {
  border-top: 1px solid #A1A2A3;
  padding: 8.7rem 0 1rem 0;
}

.home-media__block {
  padding-top: 3.2rem;
  padding-bottom: 7rem;
  border-bottom: 1px solid #A1A2A3;
  animation-duration: 1s;
}

.home-media__block:last-of-type {
  border-bottom: none;
}

.home-media__block--title {
  font-size: 2.4rem;
  line-height: 1.625;
  letter-spacing: 0.13em;
  font-weight: 700;
}

.home-media__block--lead {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-top: 1.5rem;
}

.home-media__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.home-media__list--item {
  width: calc((100% - 1rem) / 2);
  aspect-ratio: 226/133;
  overflow: hidden;
  border-radius: 1.2rem;
  -webkit-border-radius: 1.2rem;
  -moz-border-radius: 1.2rem;
  -ms-border-radius: 1.2rem;
  -o-border-radius: 1.2rem;
}

.home-media__list--item img {
  object-fit: cover;
  width: 100%;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: 50% 50%", sans-serif;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .home-media {
    border-top: none;
    padding: 10rem 0 6.5rem 0;
  }
  .home-media .home-heading span {
    margin-top: -1rem;
  }
  .home-media__block {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 0;
    margin-top: 7rem;
    padding-bottom: 8rem;
    border-bottom: 1px solid #A1A2A3;
  }
  .home-media__block:last-of-type {
    border-bottom: none;
  }
  .home-media__block--text {
    width: 48%;
    padding-top: 1rem;
  }
  .home-media__block--title {
    font-size: 2.4rem;
    line-height: 1.625;
    letter-spacing: 0.13em;
  }
  .home-media__block--lead {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0.05em;
    margin-top: 3rem;
  }
  .home-media__list {
    gap: 3.5rem 4rem;
    margin-top: 0;
    width: 52%;
  }
  .home-media__list--item {
    width: calc((100% - 8rem) / 2);
  }
}
/* News
----------------------------------------------------*/
.home-news {
  padding: 8rem 0 6rem 0;
}

.home-news__list {
  margin-top: 2rem;
}

.home-news__list--item {
  padding: 0.7rem 0 2rem 0.3rem;
  border-top: 1px solid #a5a5a6;
  animation-duration: 1s;
}

.home-news__list--item:last-of-type {
  border-bottom: 1px solid #a5a5a6;
}

.home-news__list--item a:hover {
  text-decoration: underline;
}

.home-news__list--title {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.home-news__list--date {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-right: 1rem;
}

.home-news .homeBtn-more {
  margin: 3rem auto 0 auto;
  aspect-ratio: 210/48;
  max-width: 21rem;
  animation-delay: 0.5s;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .home-news {
    padding: 10rem 0 10.5rem 0;
  }
  .home-news .home-heading span {
    margin-top: -0.8rem;
  }
  .home-news .inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .home-news__block {
    width: 32.8140214216%;
  }
  .home-news__list {
    margin-top: 3.2rem;
    width: 67.1859785784%;
    max-width: 69rem;
  }
  .home-news__list--item {
    padding: 2.5rem 0 2rem 0;
  }
  .home-news__list--title {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.1em;
    display: inline;
  }
  .home-news__list--date {
    font-size: 1.4rem;
    line-height: 2;
    font-weight: 300;
    letter-spacing: 0.1em;
    display: inline;
  }
  .home-news .homeBtn-more {
    margin: 3.5rem auto 0 0;
    max-width: 21rem;
  }
}
/*====================================================
////事業紹介
====================================================*/
.business-fv {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
}

.business-fv.active::after {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.business-fv .asInUp {
  display: block;
  opacity: 0;
  animation-duration: 1s;
}

.business-fv__img {
  width: 100%;
  height: 100%;
}

.business-fv__img img {
  object-fit: cover;
  width: 100%;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: 50% 50%", sans-serif;
  height: 100%;
}

.business-fv__text {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  width: 95%;
  margin: auto;
}

.business-fv__text--lead {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.3em;
  font-weight: 300;
  margin-top: 2rem;
  overflow: hidden;
}

.business-fv__text--lead span {
  animation-delay: 0.6s;
}

.business-fv__title--en {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 400;
  overflow: hidden;
}

.business-fv__title--jp {
  font-size: 1.6rem;
  line-height: 2.75;
  letter-spacing: 0.2em;
  font-weight: 300;
  overflow: hidden;
}

.business-fv__title--jp span {
  animation-delay: 0.3s;
}

.business-body {
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin-top: 100vh;
}

.business-body .scrolldown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: -7rem;
  z-index: 1;
}

.business-body .scrolldown span a {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 5rem;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  z-index: 1;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.8333333333;
  letter-spacing: 0.15em;
  -webkit-animation: flash 1.5s ease-in-out infinite;
  animation: flash 1.5s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.business-body .scrolldown span a::after {
  content: "";
  width: 52px;
  height: 52px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  left: 5px;
  top: 8px;
  transform: rotate(135deg);
}

.business-lead {
  padding: 1rem 0 3.5rem 0;
  position: relative;
  background-image: linear-gradient(90deg, #e5a2c6, #b6b8db 51%, #8dcfd0);
  color: #fff;
}

.business-lead {
  color: var(--txt-color) !important;
}

.business-lead.no-bg {
  background: transparent !important;
  border-top: 3px solid #484848;
}

.business-lead .breadcrumb.bg-white {
  background-color: #fff;
}

.business-lead .fadeIn,
.business-lead .fadeInDown {
  animation-duration: 1s;
}

.business-lead .fadeIn {
  animation-delay: 0.5s;
}

.business-lead__title {
  margin-top: 5.5rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 350;
  letter-spacing: 0.3em;
  color: #fff;
}

.business-lead__body {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 2rem;
  color: #fff;
}

#page-amusement .business-lead__title,
#page-amusement .business-lead__body {
  color: var(--txt-color);
}

.business-lead__img {
  display: block;
  margin-top: 2rem;
}

.business-list {
  padding: 7rem 0 3rem 0;
}

.business-list.solar-pawer__img {
  padding: 5rem 0;
}

.business-list .fadeIn {
  animation-duration: 1s;
}

.business-list.business-bg_gray {
  background-color: #D9D9D9;
}

.business-list.business-bg_gray .business-list__title {
  margin-top: 4rem;
}

.business-list.business-bg_gray .business-list__title span {
  color: #fff;
}

.business-list__title {
  font-size: 2.6rem;
  line-height: 2.3846153846;
  font-weight: 400;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
}

.business-list__title ruby {
  letter-spacing: 0;
}

.business-list__title rt {
  font-size: 1.2rem;
}

.business-list__title--num01,
.business-list__title--num02,
.business-list__title--num03,
.business-list__title--num04 {
  width: 9.2rem;
  position: absolute;
  z-index: -1;
}

.business-list__title--num01 {
  left: -1.5rem;
  top: -5rem;
}

.business-list__title--num01 img {
  max-width: 12.25rem;
}

.business-list__title--num02,
.business-list__title--num03 {
  left: -1.5rem;
  top: -3.5rem;
  max-width: 13.15rem;
}

.business-list__lead--head {
  font-size: 1.8rem;
  line-height: 1.7222222222;
  font-weight: 350;
  letter-spacing: 0.3em;
  margin-top: 1rem;
  animation-delay: 0.3s;
}

.business-list__lead--body {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 2rem;
  animation-delay: 0.6s;
}

.business-list__img {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  overflow: hidden;
  margin-top: 5rem;
}

.business-list__img img {
  object-fit: cover;
  object-position: 50% 50%;
  height: 100%;
}

.business-list__img.solar-pawer__img {
  margin-top: 0;
}

.business-list__imglist {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  -webkit-animation: scroll-x 15s infinite linear 0.5s both;
  animation: scroll-x 15s infinite linear 0.5s both;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.business-list__imglist.list02 {
  animation-duration: 25s;
}

.business-list__imglist--item {
  width: 62.5vw;
  overflow: hidden;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  aspect-ratio: 1333/889;
  transform: scale(0.95);
  transition: 0.3s;
}

.business-list__imglist--item img {
  transition: 0.3s;
}

.business-list__about {
  margin-top: 3.5rem;
}

.business-list__about--name {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.15em;
}

.business-list__about--add {
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0.15em;
}

.business-list__btn {
  background-color: var(--pink);
  text-align: center;
  aspect-ratio: 254/48;
  min-width: 25.4rem;
  margin: 3.5rem auto 7rem auto;
  border-radius: 5rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  -o-border-radius: 5rem;
}

.business-list__btn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1.3125;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--txt-color);
  position: relative;
}

.business-list__btn a.external::after {
  content: url(../img/common/external-bk.svg);
  display: inline-block;
  width: 1.8rem;
  margin-left: 1rem;
}

.business-body .business-lead .business-lead__title {
  margin-top: 5rem;
}

.business-agri__btn a {
  display: block;
  width: fit-content;
  border: 2px solid #e6e6e6;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  padding: 0 5rem 0 2.5rem;
  color: #383737;
  position: relative;
  background-color: #fff;
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 3.0625;
}
.business-agri__btn a::after {
  content: "";
  background-image: url(../img/common/download.svg);
  background-repeat: no-repeat;
  width: 2.2rem;
  aspect-ratio: 22/21.99;
  background-size: cover;
  position: absolute;
  right: 2rem;
  top: 1.3rem;
}

.modal-content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999999;
}

.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content .swiper-wrapper {
  width: fit-content !important;
}

.bisiness-gallery {
  width: 90%;
  max-width: 110rem;
  margin: auto;
  position: relative;
}

.close a {
  position: absolute;
  right: 1rem;
  top: 18rem;
  width: 5rem;
  height: 5rem;
  z-index: 9999;
}

.close a::before,
.close a::after {
  content: "";
  width: 3rem;
  height: 3px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}

.close a::before {
  transform: rotate(45deg);
}

.close a::after {
  transform: rotate(-45deg);
}

.swiper-slide.swiper-slide-prev,
.swiper-slide.swiper-slide-next {
  opacity: 0;
}

.swiper-slide-active {
  border-radius: 1rem;
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
  z-index: 10;
}

.swiper-button-next::before,
.swiper-button-prev::before {
  content: "";
  background-color: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.swiper-button-prev::before {
  left: 0;
}

.swiper-button-next::before {
  right: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.8rem;
  margin-top: -1.3rem;
}

.swiper-pagination-bullet {
  background: #FFCB00;
  border: 1px solid #fff;
  width: 1.5rem;
  height: 1.5rem;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -3rem !important;
}

.body-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.fadeIn {
  opacity: 1 !important;
}

@media screen and (min-width: 768px) {
  .close a {
    right: 5rem;
    top: 10rem;
  }
  .swiper-button-next {
    right: -7rem;
  }
  .swiper-button-prev {
    left: -7rem;
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    opacity: 0.8;
  }
  .swiper-button-next::before,
  .swiper-button-prev::before {
    width: 5rem;
    height: 5rem;
    top: 0;
    z-index: -1;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 2.5rem;
    margin-top: 0.6rem;
  }
  .swiper-button-next::after {
    margin-right: 2rem;
  }
  .swiper-button-prev::after {
    margin-left: 2rem;
  }
}
/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .business-fv__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    width: 95%;
    margin: auto;
  }
  .business-fv__text--lead {
    font-size: 3rem;
    line-height: 1.7333333333;
    font-weight: 100;
    letter-spacing: 0.3em;
    margin-top: 2rem;
    overflow: hidden;
  }
  .business-fv__text--lead span {
    animation-delay: 0.6s;
  }
  .business-fv__title--en {
    font-size: 6rem;
    line-height: 1.1666666667;
    font-weight: 100;
    letter-spacing: 0.15em;
  }
  .business-fv__title--jp {
    font-size: 3rem;
    line-height: 2;
    font-weight: 100;
    letter-spacing: 0.2em;
  }
  .business-fv__title--jp span {
    animation-delay: 0.3s;
  }
  .business-body .scrolldown span a {
    font-size: 1.8rem;
    line-height: 1.8333333333;
    font-weight: 100;
    letter-spacing: 0.15em;
  }
  .business-lead {
    padding: 2rem 0 10.3rem 0;
  }
  .business-lead__title {
    text-align: center;
    font-size: 2.8rem;
    line-height: 1.75;
    font-weight: 300;
    letter-spacing: 0.3em;
  }
  .business-lead__body {
    font-size: 1.6rem;
    line-height: 1.875;
    font-weight: 300;
    letter-spacing: 0em;
    text-align: center;
    margin-top: 6.1rem;
  }
  .business-lead__img {
    display: block;
    margin: 5rem auto;
    max-width: 94.4rem;
  }
  .business-lead__img object {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .business-list {
    padding: 7rem 0 3rem 0;
  }
  .business-list__title {
    font-size: 5rem;
    line-height: 1.74;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 1;
    margin-top: 2.5rem;
  }
  .business-list__title--num01 {
    left: -13rem;
    top: -5.5rem;
    width: 14rem;
  }
  .business-list__title--num02 {
    left: -11.5rem;
    top: -3rem;
    width: 17rem;
  }
  .business-list__title--num03 {
    left: -10.5rem;
    top: -3rem;
    width: 17rem;
  }
  .business-list__title--num04 {
    left: -1.5rem;
    top: -4rem;
    width: 20.5733rem;
  }
  .business-list__lead {
    position: relative;
    z-index: 1;
  }
  .business-list__lead--head {
    font-size: 3rem;
    line-height: 1.7333333333;
    letter-spacing: 0.3em;
    margin-top: 0;
  }
  .business-list__lead--body {
    font-size: 1.6rem;
    line-height: 1.875;
    margin-top: 1.8rem;
  }
  .business-list__img {
    margin-top: 7.5rem;
  }
  .business-list__imglist {
    animation-duration: 30s;
  }
  .business-list__imglist.list02 {
    animation-duration: 33s;
  }
  .business-list__imglist.list03 {
    animation-duration: 33s;
  }
  .business-list__imglist--item {
    width: 33.3333333333vw;
    max-width: 66.6rem;
    aspect-ratio: 1333/889;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
  }
  .business-list__imglist--item img {
    object-fit: cover;
    width: 100%;
    object-position: 50% 50%;
    font-family: "object-fit: cover; object-position: 50% 50%", sans-serif;
  }
  .business-list__about {
    margin-top: 5rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .business-list__about--name {
    font-size: 2.4rem;
    line-height: 1.25;
    letter-spacing: 0.15em;
  }
  .business-list__about--add {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0.15em;
    margin-top: 1rem;
  }
  .business-list__btn {
    text-align: center;
    aspect-ratio: 254/48;
    max-width: 25.4rem;
    margin: 0 0 7rem auto;
  }
  .business-list__btn a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1.3125;
    letter-spacing: 0.2em;
    font-weight: 400;
  }
  .business-list__btn.wide01 {
    aspect-ratio: 320/48;
    max-width: 32rem;
  }
  .business-list__btn.wide02 {
    aspect-ratio: 420/48;
    max-width: 42rem;
  }
}
.c-store-list {
  padding: 0 0 7rem 0;
  text-align: center;
}

.c-store-list__title {
  font-size: 3rem;
  line-height: 1.7333333333;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.c-store-list__list {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2rem;
  justify-content: flex-start;
  align-items: flex-start;
}

.c-store-list__list--item {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  text-align: left;
}

.c-store-list__list--item::before {
  content: "●";
  display: inline-block;
  color: var(--pink);
  margin-right: 1rem;
}

.c-store-list__text {
  margin-top: 3rem;
  font-size: 1.8rem;
  line-height: 1.9444444444;
  letter-spacing: 0.3em;
}

@media screen and (min-width: 768px) {
  .c-store-list {
    padding: 0 0 7rem 0;
    text-align: center;
  }
  .c-store-list__title {
    font-size: 3rem;
    line-height: 1.7333333333;
    letter-spacing: 0.3em;
  }
  .c-store-list__list {
    gap: 1rem 2rem;
    width: 85%;
    margin: 3rem auto 0 auto;
  }
  .c-store-list__list--item {
    font-size: 1.7rem;
    line-height: 1.7647058824;
    width: calc((100% - 3rem) / 2);
  }
  .c-store-list__text {
    font-size: 2rem;
    line-height: 1.75;
    letter-spacing: 0.3em;
  }
}
.modaal-container {
  background-color: transparent !important;
  width: 100%;
  height: 100%;
}

.modaal-gallery-item-wrap {
  overflow: hidden;
}

.modaal-gallery-item {
  width: 100%;
  height: 100%;
}

.modaal-gallery-item img {
  object-fit: contain;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.modaal-gallery-control {
  bottom: 18%;
}

.modaal-gallery-item-wrap {
  position: relative;
}

.modaal-gallery-next {
  right: 0;
}

.modaal-gallery-prev {
  left: 0;
}

@media screen and (min-width: 768px) {
  .modaal-gallery-item img {
    object-fit: cover;
  }
  .modaal-gallery-prev {
    left: -80px;
  }
}
/* 事業一覧
----------------------------------------------------*/
.business-index {
  margin-top: 1.5rem;
  padding: 0 0 2rem 0;
  margin-top: 9rem;
}

.business-index__title {
  text-align: center;
  margin-top: 6rem;
}

.business-index__title--en,
.business-index__title--jp {
  overflow: hidden;
}

.business-index__title--en.asInUp,
.business-index__title--jp.asInUp {
  animation-duration: 1s;
}

.business-index__title--jp.asInUp {
  animation-delay: 1s;
}

.business-index__title--en {
  font-size: 4.4rem;
  line-height: 1.2272727273;
  letter-spacing: 0.1em;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .business-index__title--en {
    font-size: 5.8rem;
    line-height: 1.5862068966;
    letter-spacing: 0.15em;
  }
}
.business-index__title--jp {
  font-size: 2.2rem;
  line-height: 2.7272727273;
  letter-spacing: 0.2em;
  font-weight: 300;
  animation-delay: 1s;
}

@media screen and (min-width: 768px) {
  .business-index__title--jp {
    font-size: 3rem;
    line-height: 2;
    letter-spacing: 0.2em;
  }
}
.business-index__list {
  margin-top: 4.5rem;
}

.business-index__list__img {
  object-fit: cover;
  width: 100%;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: 50% 50%", sans-serif;
  height: 100%;
}

.business-index__list--item {
  width: 100%;
  aspect-ratio: 693/441;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0;
  animation-duration: 1s;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  overflow: hidden;
}

.business-index__list--item:last-of-type {
  margin-bottom: 0;
}

.business-index__text {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  padding: 2rem 0 2rem 2rem;
}

.business-index__text--title {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.business-index__text--title span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.2em;
  font-weight: 300;
}

.business-index__body--midashi {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-top: 1rem;
}

.business-index__body--text {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.15em;
  font-weight: 300;
  padding-right: 2rem;
  margin-top: 0.5rem;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .business-index {
    margin-top: 10rem;
    padding: 0 0 5rem 0;
  }
  .business-index__img {
    aspect-ratio: 1300/400;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  .business-index__img img {
    object-fit: cover;
    width: 100%;
    object-position: 50% 50%;
    font-family: "object-fit: cover; object-position: 50% 50%", sans-serif;
    height: 100%;
    transform: scale(1);
    transition: 0.3s;
  }
  .business-index__img::after {
    content: "";
    background-image: linear-gradient(90deg, #e5a2c6, #b6b8db 51%, #8dcfd0);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    transition: 0.3s;
  }
  .business-index__text {
    transition: 0.3s;
  }
  .business-index__list {
    border-top: 2px solid #B8B8B8;
    padding-top: 2.5rem;
    margin-top: 8rem;
  }
  .business-index__list--item {
    aspect-ratio: 1300/400;
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: 3rem;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    -ms-border-radius: 3rem;
    -o-border-radius: 3rem;
  }
  .business-index__list--item:last-of-type {
    margin-bottom: 0;
  }
  .business-index__list--item:hover .business-index__img::after {
    left: 0;
  }
  .business-index__list--item:hover .business-index__img img {
    transform: scale(1.1);
  }
  .business-index__list--item:hover .business-index__text .external-wh::after {
    background: url(../img/common/external-wh.svg) no-repeat;
  }
  .business-index__text {
    padding: 2rem 0 2rem 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .business-index__text--title {
    font-size: clamp(3.2rem, 4.4247787611vw, 5rem);
    line-height: 1.2;
    letter-spacing: 0.07em;
    font-weight: 300;
    margin-left: 8.8495575221%;
    width: 45%;
  }
  .business-index__text--title span {
    display: block;
    font-size: clamp(1.8rem, 2.6548672566vw, 3rem);
    line-height: 1;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
  }
  .business-index__body {
    width: 50%;
    margin-right: 6.1946902655%;
  }
  .business-index__body--midashi {
    font-size: clamp(1.6rem, 1.8vw, 2.6rem);
    line-height: 1.7307692308;
    letter-spacing: 0.2em;
    width: 100%;
  }
  .business-index__body--text {
    font-size: clamp(0.9rem, 1.1vw, 1.8rem);
    line-height: 2.5;
    letter-spacing: 0.2em;
    margin-top: 2rem;
    width: 100%;
  }
}
/* AMUSEMENT
----------------------------------------------------*/
.amusement-shop .inner {
  width: 85%;
  margin: auto;
}

.amusement-shop__head {
  background: url(../img/business/amusement/shop-bg.jpg) no-repeat;
  color: #fff;
  padding: 3rem 0;
}

.amusement-shop__head--text {
  font-size: 3rem;
  line-height: 1.3333333333;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.amusement-shop__headmenu {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.amusement-shop__headmenu--item {
  font-size: 1.6rem;
  line-height: 2.3125;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.amusement-shop__headmenu--item:hover {
  cursor: pointer;
  opacity: 0.8;
  color: var(--txt-color);
}

.amusement-shop__list-wrap {
  background-color: #E4E4E4;
  position: relative;
}

.amusement-shop__block {
  margin: 0 auto;
  padding: 2rem 0;
  width: 93.5%;
  height: 46rem;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}

.amusement-shop__block::-webkit-scrollbar {
  width: 0;
}

.amusement-shop__erea {
  font-size: 2rem;
  line-height: 2.2;
  letter-spacing: 0.2em;
  font-weight: 400;
  padding-left: 2rem;
}

.amusement-shop__list {
  margin-top: 2rem;
}

.amusement-shop__list--item {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
}

.amusement-shop__list--img {
  width: 40%;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 293/189;
}

.amusement-shop__list--img img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.amusement-shop__text {
  width: calc(60% - 2rem);
}

.amusement-shop__text--shopname {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 400;
}

.amusement-shop__text--add {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 400;
  white-space: nowrap;
}

.amusement-shop__link {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1rem;
}

.amusement-shop__link--shop a,
.amusement-shop__link--recruit a {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 400;
  padding: 0.5rem 2rem 0.5rem 1rem;
  border-radius: 1rem;
  position: relative;
}

.amusement-shop__link--shop a::after,
.amusement-shop__link--recruit a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #595757;
  border-right: solid 1px #595757;
  position: absolute;
  top: 40%;
  right: 1rem;
  transform: rotate(45deg);
}

.amusement-shop__link--shop a {
  background-color: #fff;
}

.amusement-shop__link--recruit a {
  background-color: var(--pink);
  color: var(--txt-color);
}

.amusement-shop__scroll {
  background-color: #E4E4E4;
  position: relative;
  height: 10rem;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

.amusement-shop__scroll.hidden {
  opacity: 0;
  visibility: hidden;
}

.amusement-shop__scroll span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 1.5rem;
  color: #595757;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  z-index: 1;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.8333333333;
  letter-spacing: 0.15em;
  font-weight: 400;
}

.amusement-shop__scroll span::after {
  content: "";
  width: 40px;
  height: 40px;
  border-top: solid 2px #595757;
  border-right: solid 2px #595757;
  position: absolute;
  left: 7px;
  top: 12px;
  transform: rotate(135deg);
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .amusement-shop {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: center;
    align-items: stretch;
    position: relative;
    min-height: 100vh;
  }
  .amusement-shop .inner {
    width: 100%;
    max-width: 41.5rem;
    margin: 0 0 0 auto;
  }
  .amusement-shop__head {
    background-color: transparent;
    background: url(../img/business/amusement/shop-bg.jpg) no-repeat;
    background-size: cover;
    color: #fff;
    padding: 6.5rem 0;
    width: 42.4%;
    overflow: hidden;
  }
  .amusement-shop__head--text {
    font-size: 4rem;
    line-height: 1.74;
    letter-spacing: 0.2em;
    padding-left: 5%;
  }
  .amusement-shop__headmenu {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    margin-top: 4.2rem;
    padding-left: 5%;
  }
  .amusement-shop__headmenu--item {
    font-size: 2.3rem;
    line-height: 1.9130434783;
    letter-spacing: 0.2em;
    width: 100%;
    position: relative;
    z-index: 5;
  }
  .amusement-shop__headmenu--item a {
    display: block;
    padding: 1rem 0;
  }
  .amusement-shop__headmenu--item a::before {
    content: "";
    background-color: #fff;
    height: 100%;
    width: 60vw;
    position: absolute;
    right: 60vw;
    top: 0;
    transition: 0.3s;
    z-index: -1;
  }
  .amusement-shop__headmenu--item a.active,
  .amusement-shop__headmenu--item a:hover {
    opacity: 1;
  }
  .amusement-shop__headmenu--item a.active::before,
  .amusement-shop__headmenu--item a:hover::before {
    right: 0;
  }
  .amusement-shop__headmenu--item:hover {
    opacity: 1;
  }
  .amusement-shop__list-wrap {
    width: calc(100vw - 42.4%);
    background-color: #E4E4E4;
    padding-right: 5%;
  }
  .amusement-shop__block {
    margin: 0 auto;
    padding: 5rem 0;
    width: 93.5%;
    height: calc(100vh - 10rem);
  }
  .amusement-shop__erea {
    font-size: 2.4rem;
    line-height: 1.8333333333;
    letter-spacing: 0.2em;
    padding-left: 6%;
    padding-top: 1rem;
  }
  .amusement-shop__erea:first-of-type {
    margin-top: 0;
  }
  .amusement-shop__list {
    margin-bottom: 8rem;
    padding-top: 2rem;
    margin-left: 6%;
    max-width: 65.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 3.6rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .amusement-shop__list--item {
    display: block;
    width: calc((100% - 3.6rem) / 2);
    margin-bottom: 1.8rem;
  }
  .amusement-shop__list--img {
    width: 100%;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    overflow: hidden;
  }
  .amusement-shop__text {
    width: fit-content;
  }
  .amusement-shop__text--shopname {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
  .amusement-shop__text--add {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    white-space: nowrap;
  }
  .amusement-shop__link {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 1rem;
  }
  .amusement-shop__link--shop a,
  .amusement-shop__link--recruit a {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: 1rem;
    position: relative;
  }
  .amusement-shop__link--shop a::after,
  .amusement-shop__link--recruit a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 1px #595757;
    border-right: solid 1px #595757;
    position: absolute;
    top: 40%;
    right: 1rem;
    transform: rotate(45deg);
  }
  .amusement-shop__link--shop a {
    background-color: #fff;
  }
  .amusement-shop__scroll {
    background-color: #E4E4E4;
    position: relative;
    bottom: 0;
  }
  .amusement-shop__scroll span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: 1.5rem;
    color: #595757;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    z-index: 1;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.8333333333;
    letter-spacing: 0.15em;
  }
  .amusement-shop__scroll span::after {
    content: "";
    width: 40px;
    height: 40px;
    border-top: solid 2px #595757;
    border-right: solid 2px #595757;
    position: absolute;
    left: 7px;
    top: 12px;
    transform: rotate(135deg);
  }
}
/*====================================================
////採用情報
====================================================*/
.recruit-fv {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background-image: linear-gradient(90deg, #e5a2c6, #b6b8db 51%, #8dcfd0);
}

.recruit-fv .asInUp {
  animation-duration: 1s;
}

.recruit-fv__text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

.recruit-fv__text--lead {
  text-align: center;
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.2em;
  font-weight: 300;
}

.recruit-fv__title {
  color: #fff;
  width: 100%;
  text-align: center;
}

.recruit-fv__title--en span,
.recruit-fv__title--jp span {
  animation-duration: 1s;
}

.recruit-fv__title--en {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 400;
  overflow: hidden;
  color: #fff;
}

.recruit-fv__title--jp {
  font-size: 1.6rem;
  line-height: 2.75;
  letter-spacing: 0.2em;
  font-weight: 300;
  overflow: hidden;
  color: #fff;
}

.recruit-fv__title--jp span {
  animation-delay: 0.3s;
}

.recruit-fv__img01,
.recruit-fv__img02,
.recruit-fv__img03,
.recruit-fv__img04,
.recruit-fv__img05 {
  position: absolute;
  z-index: 1;
}

.recruit-fv__img01,
.recruit-fv__img03,
.recruit-fv__img01--sdw,
.recruit-fv__img03--sdw {
  -webkit-animation: float-anime01 5s ease-in-out infinite;
  animation: float-anime01 5s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.recruit-fv__img05,
.recruit-fv__img05--sdw {
  -webkit-animation: float-anime02 6s ease-in-out infinite;
  animation: float-anime02 6s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.recruit-fv__img02,
.recruit-fv__img02--sdw {
  -webkit-animation: float-anime03 5s ease-in-out infinite;
  animation: float-anime03 5s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.recruit-fv__img04 {
  -webkit-animation: float-anime04 4s ease-in-out infinite;
  animation: float-anime04 4s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.recruit-fv__img01--sdw,
.recruit-fv__img02--sdw,
.recruit-fv__img03--sdw,
.recruit-fv__img05--sdw {
  z-index: 0;
  position: absolute;
}

.recruit-fv__img01 {
  width: 59.7333333333%;
  left: -8.2rem;
  top: 6.8rem;
}

.recruit-fv__img01--sdw {
  left: -5.2rem;
  top: 8rem;
  width: 59.7333333333%;
  animation-delay: 0.3s;
}

.recruit-fv__img02 {
  width: 53.8666666667%;
  right: -7.3rem;
  top: 7.7rem;
}

.recruit-fv__img03 {
  width: 46.9333333333%;
  left: -4.5rem;
  bottom: 16rem;
  animation-delay: 0.3s;
}

.recruit-fv__img03--sdw {
  width: 46.9333333333%;
  left: -2.5rem;
  bottom: 14rem;
  animation-delay: 0.6s;
}

.recruit-fv__img04 {
  width: 43.7333333333%;
  left: 1rem;
  bottom: 5rem;
  animation-delay: 0.1s;
}

.recruit-fv__img05 {
  width: 59.4666666667%;
  right: -8.5rem;
  bottom: 13rem;
  animation-delay: 0.4s;
}

.recruit-fv__img05--sdw {
  width: 59.4666666667%;
  right: -6.5rem;
  bottom: 11rem;
  animation-delay: 0.8s;
}

.recruit-fv .scrolldown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 12rem;
  z-index: 10;
}

.recruit-fv .scrolldown a {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 5rem;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  z-index: 1;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.15em;
  font-weight: 300;
  -webkit-animation: flash 2s ease-in-out infinite;
  animation: flash 2s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  color: #fff;
  z-index: 2;
}

.recruit-fv .scrolldown a::after {
  content: "";
  width: 42px;
  height: 42px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  left: 5px;
  top: 8px;
  transform: rotate(135deg);
}

.recruit-lead {
  padding: 7rem 0;
  background-color: #ffdfde;
}

.recruit-lead__box {
  background-color: transparent;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  padding: 4.5rem 0;
}

.recruit-lead__box--title {
  font-size: 2.2rem;
  line-height: 1.6818181818;
  letter-spacing: 0.2em;
  font-weight: 400;
  text-align: center;
}

.recruit-lead__box--text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 300;
  text-align: center;
  width: 90%;
  margin: 3rem auto 0 auto;
  animation-delay: 0.3s;
}

.recruit-lead__list {
  margin: 6.5rem auto 0 auto;
  width: 90%;
}

.recruit-lead__list--item {
  margin-bottom: 4rem;
}

.recruit-lead__img {
  width: 80%;
  margin: auto;
}

.recruit-lead__text {
  width: 90%;
  margin: auto;
}

.recruit-lead__text--title {
  font-size: 2.6rem;
  line-height: 2.2307692308;
  letter-spacing: 0.15em;
  font-weight: 400;
  text-align: center;
}

.recruit-lead__text--body {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 300;
}

.recruit-voice {
  padding: 5rem 0;
}

.recruit-voice__title {
  font-size: 3.3rem;
  line-height: 1.7575757576;
  letter-spacing: 0.3em;
  text-align: center;
  color: #e98297;
}

.recruit-voice .breadcrumb {
  margin-bottom: 3rem;
}

.recruit-voice__block {
  margin-bottom: 5rem;
}

.recruit-voice__block:nth-of-type(even) .recruit-voice__text--title .effect {
  opacity: 0;
}

.recruit-voice__block:nth-of-type(even) .recruit-voice__text--title .effect.isActive {
  animation-name: fadeIn-right;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.recruit-voice__block:nth-of-type(odd) .recruit-voice__text--title .effect {
  opacity: 0;
}

.recruit-voice__block:nth-of-type(odd) .recruit-voice__text--title .effect.isActive {
  animation-name: fadeIn-left;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.recruit-voice__block:last-of-type {
  margin-bottom: 0;
}

.recruit-voice__img {
  width: 65%;
  margin: auto;
  animation-duration: 1s;
}

.recruit-voice__text {
  margin-top: 2.8rem;
}

.recruit-voice__text--title {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 400;
}

.recruit-voice__text--title span {
  display: inline-block;
  background-color: #ffdfde;
  margin-top: 0.8rem;
  padding: 0.2rem 0.5rem;
  animation-duration: 1s;
  white-space: nowrap;
}

.recruit-voice__text--name,
.recruit-voice__text--body {
  width: 95%;
  margin: auto;
}

.recruit-voice__text--name {
  font-size: 1.3rem;
  line-height: 1.6923076923;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-top: 1rem;
  animation-duration: 1s;
}

.recruit-voice__text--name span {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-left: 1rem;
}

.recruit-voice__text--body {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.025em;
  font-weight: 300;
  margin-top: 1.5rem;
  animation-duration: 1s;
}

.recruit-information {
  padding: 7rem 0 2rem 0;
  position: relative;
  overflow-x: hidden;
}

.recruit-information__container {
  background-color: #c9c9c9;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  padding: 2.1rem 2rem 2rem 2rem;
}

.recruit-information__title {
  font-size: 3rem;
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: 400;
  text-align: center;
  overflow: hidden;
}

.recruit-information__title .asInUp {
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.recruit-information__select {
  width: 100%;
  background-color: #fff;
  font-size: 1.2rem;
  line-height: 2.1666666667;
  letter-spacing: 0.1em;
  font-weight: 300;
  position: relative;
  text-align: center;
  margin-top: 0.5rem;
}

.recruit-information__select::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #c9c9c9;
  border-right: solid 2px #c9c9c9;
  position: absolute;
  right: 10px;
  top: 8px;
  transform: rotate(135deg);
}

.recruit-information__select select {
  width: 100%;
  padding: 0 1rem;
  text-align: left;
}

.recruit-information__box {
  background-color: #fff;
  border-radius: 2rem 2rem 0 0;
  -webkit-border-radius: 2rem 2rem 0 0;
  -moz-border-radius: 2rem 2rem 0 0;
  -ms-border-radius: 2rem 2rem 0 0;
  -o-border-radius: 2rem 2rem 0 0;
  overflow: hidden;
  margin-top: 1.2rem;
  opacity: 0;
  display: none;
}

.recruit-information__box.current {
  opacity: 1;
  display: block;
}

.recruit-information__head {
  background-color: #FFBF00;
  padding: 1.5rem 1.5rem;
  position: static;
}

.recruit-information__erea {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.recruit-information__erea--item {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.recruit-information__body {
  padding: 2rem 2rem;
  aspect-ratio: 304/360;
  overflow-y: scroll;
  scrollbar-color: #ccc;
  scrollbar-width: thin;
  width: 100%;
}

.recruit-information__body::-webkit-scrollbar {
  width: 1rem;
  border-radius: 1rem;
}

.recruit-information__body--title {
  font-size: 1.8rem;
  line-height: 1.1666666667;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.recruit-information__body--notitle {
  font-size: 1.7rem;
  line-height: 1.5882352941;
  letter-spacing: 0.2em;
  font-weight: 300;
  padding: 0;
}

.recruit-information__list {
  margin-top: 2rem;
}

.recruit-information__list--item {
  font-size: 1.3rem;
  line-height: 1.6153846154;
  font-weight: 300;
  position: relative;
  margin-bottom: 3rem;
}

.recruit-information__list--item a {
  text-decoration: underline;
}

.recruit-information__scroll {
  background-color: #E4E4E4;
  height: 5rem;
  position: relative;
  bottom: 0;
  border-radius: 0 0 2rem 2rem;
  -webkit-border-radius: 0 0 2rem 2rem;
  -moz-border-radius: 0 0 2rem 2rem;
  -ms-border-radius: 0 0 2rem 2rem;
  -o-border-radius: 0 0 2rem 2rem;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

.recruit-information__scroll.hidden {
  opacity: 0;
  visibility: hidden;
}

.recruit-information__scroll span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 0.5rem;
  color: #231815;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  z-index: 2;
  text-align: center;
  font-size: 0.8rem;
  line-height: 2.625;
  letter-spacing: 0.15em;
}

.recruit-information__scroll span::after {
  content: "";
  width: 21px;
  height: 21px;
  border-top: solid 2px #231815;
  border-right: solid 2px #231815;
  position: absolute;
  left: 5px;
  top: 12px;
  transform: rotate(135deg);
}

.recruit-voice__text--title {
  overflow: hidden;
  display: inline-block;
}

.slide-in_left {
  opacity: 0;
  animation-name: slidein-left;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.slide-in_right {
  opacity: 0;
  animation-name: slidein-right;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .recruit-fv__text {
    width: 100%;
    z-index: 100;
  }
  .recruit-fv__text--lead {
    font-size: 3rem;
    line-height: 1.7333333333;
    letter-spacing: 0.3em;
  }
  .recruit-fv__title {
    color: #fff;
    width: 100%;
    text-align: center;
  }
  .recruit-fv__title--en {
    font-size: 5.8rem;
    line-height: 1.5862068966;
    letter-spacing: 0.24em;
    overflow: hidden;
    color: #fff;
  }
  .recruit-fv__title--jp {
    font-size: 3rem;
    line-height: 2;
    letter-spacing: 0.2em;
    overflow: hidden;
    color: #fff;
  }
  .recruit-fv__title--jp span {
    animation-delay: 0.3s;
  }
  .recruit-fv__img---container {
    max-width: 136.7rem;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .recruit-fv__img01 {
    max-width: 48rem;
    left: -12rem;
    top: 3.8rem;
  }
  .recruit-fv__img01--sdw {
    left: -5.2rem;
    top: 8rem;
    max-width: 48rem;
  }
  .recruit-fv__img02 {
    max-width: 43.4rem;
    right: -6rem;
    top: 9rem;
  }
  .recruit-fv__img02--sdw {
    max-width: 43.4rem;
    right: 17rem;
    top: -6rem;
  }
  .recruit-fv__img03 {
    max-width: 37.7rem;
    left: -4.5rem;
    bottom: 14rem;
  }
  .recruit-fv__img03--sdw {
    max-width: 37.7rem;
    left: 25rem;
    bottom: 17rem;
  }
  .recruit-fv__img04 {
    max-width: 35.2rem;
    left: 24rem;
    bottom: -3rem;
  }
  .recruit-fv__img05 {
    max-width: 47.8rem;
    right: -3rem;
    bottom: 0;
  }
  .recruit-fv__img05--sdw {
    max-width: 47.8rem;
    right: 5rem;
    bottom: 11rem;
  }
  .recruit-fv .scrolldown {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 7rem;
    z-index: 1;
  }
  .recruit-fv .scrolldown span a {
    position: absolute;
    left: 50%;
    bottom: -2rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 5rem;
    font-size: 1.8rem;
    line-height: 1.8333333333;
    letter-spacing: 0.15em;
    color: #3E3A39;
  }
  .recruit-fv .scrolldown span a::after {
    content: "";
    width: 40px;
    height: 40px;
    left: 10px;
    top: 15px;
  }
  .recruit-lead {
    padding: 9rem 0 10rem 0;
  }
  .recruit-lead__box {
    border-radius: 5rem;
    -webkit-border-radius: 5rem;
    -moz-border-radius: 5rem;
    -ms-border-radius: 5rem;
    -o-border-radius: 5rem;
    padding: 8rem 0 5.5rem 0;
  }
  .recruit-lead__box--title {
    font-size: 3rem;
    line-height: 1.7333333333;
    letter-spacing: 0.2em;
  }
  .recruit-lead__box--text {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0em;
    text-align: center;
    width: 90%;
    margin: 2rem auto 0 auto;
  }
  .recruit-lead__list {
    margin: 4.5rem auto 0 auto;
    width: 90%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .recruit-lead__list--item {
    margin-bottom: 4rem;
    animation-duration: 1s;
  }
  .recruit-lead__list--item:first-of-type {
    animation-delay: 0;
  }
  .recruit-lead__list--item:nth-of-type(2) {
    animation-delay: 0.3s;
  }
  .recruit-lead__list--item:last-of-type {
    animation-delay: 0.6s;
  }
  .recruit-lead__list--item:last-of-type .recruit-lead__img {
    max-width: 27.4rem;
  }
  .recruit-lead__img {
    width: 100%;
    max-width: 27.6rem;
    margin: auto;
  }
  .recruit-lead__text {
    width: 90%;
    margin: auto;
  }
  .recruit-lead__text--title {
    font-size: 2.6rem;
    line-height: 2.1538461538;
    letter-spacing: 0.15em;
    margin-top: 1rem;
  }
  .recruit-lead__text--body {
    max-width: 25.3rem;
    margin: 0 auto 0 auto;
    font-size: 1.6rem;
    line-height: 1.875;
  }
  .recruit-voice {
    padding: 1rem 0 5rem 0;
  }
  .recruit-voice .breadcrumb {
    margin-bottom: 12rem;
  }
  .recruit-voice__title {
    font-size: 4rem;
    line-height: 1.75;
    letter-spacing: 0.3em;
    text-align: center;
    overflow: hidden;
  }
  .recruit-voice__block {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 5rem;
    margin-top: 3rem;
  }
  .recruit-voice__block:last-of-type {
    margin-bottom: 0;
  }
  .recruit-voice__block:nth-of-type(even) .recruit-voice__text {
    order: -1;
    padding-left: 7.7896786758%;
    padding-right: 0;
  }
  .recruit-voice__block:nth-of-type(even) .recruit-voice__text--title {
    margin-right: 0;
    margin-left: auto;
  }
  .recruit-voice__block:nth-of-type(2) {
    margin-bottom: 6rem;
  }
  .recruit-voice__block:nth-of-type(2) .recruit-voice__text {
    margin-top: 8rem;
  }
  .recruit-voice__block:nth-of-type(3) {
    margin-bottom: 7rem;
  }
  .recruit-voice__block:nth-of-type(3) .recruit-voice__text {
    margin-top: 5.5rem;
  }
  .recruit-voice__block:nth-of-type(4) {
    margin-bottom: 7rem;
  }
  .recruit-voice__block:nth-of-type(4) .recruit-voice__text {
    margin-top: 10rem;
  }
  .recruit-voice__block:nth-of-type(5) {
    margin-bottom: 9rem;
  }
  .recruit-voice__block:nth-of-type(5) .recruit-voice__text {
    margin-top: 7.5rem;
  }
  .recruit-voice__block:nth-of-type(6) {
    margin-bottom: 8rem;
  }
  .recruit-voice__block:nth-of-type(6) .recruit-voice__text {
    margin-top: 7rem;
  }
  .recruit-voice__img {
    width: 44.8235294118%;
    max-width: 38.1rem;
    margin: auto;
  }
  .recruit-voice__text {
    width: calc(55.1764705882% - 2rem);
    margin-top: 5rem;
    padding-right: 7.7896786758%;
    padding-left: 0;
  }
  .recruit-voice__text--title {
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.15em;
    font-size: clamp(1.4rem, 2vw, 2.5rem);
  }
  .recruit-voice__text--title span {
    display: inline-block;
    margin-top: 0.7rem;
    padding: 1rem 0.7rem 1rem 0.8rem;
  }
  .recruit-voice__text--name,
  .recruit-voice__text--body {
    width: 100%;
    margin: 0 auto 0 0;
  }
  .recruit-voice__text--name {
    font-size: 1.6rem;
    line-height: 1.75;
    letter-spacing: 0.1em;
    margin-top: 0;
    animation-delay: 0.6s;
  }
  .recruit-voice__text--name span {
    font-size: 2.5rem;
    line-height: 1.72;
    letter-spacing: 0.1em;
    margin-left: 1rem;
  }
  .recruit-voice__text--body {
    width: 95%;
    font-size: 1.6rem;
    line-height: 2.0625;
    letter-spacing: 0em;
    margin-top: 2rem;
    margin-left: 0;
    animation-delay: 0.9s;
  }
  .recruit-information {
    padding: 7rem 0 7rem 0;
    position: relative;
  }
  .recruit-information__container {
    background: url(../img/recruit/recruit-bg.png) no-repeat;
    background-size: cover;
    border-radius: 3rem;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    -ms-border-radius: 3rem;
    -o-border-radius: 3rem;
    padding: 2.1rem 0 7rem 0;
    max-width: 132.2rem;
  }
  .recruit-information__container.inner {
    max-width: 132.2rem;
  }
  .recruit-information__title {
    font-size: 4rem;
    line-height: 1.74;
    letter-spacing: 0.2em;
    margin-top: 7rem;
  }
  .recruit-information__pclist {
    width: 77.2314674735%;
    max-width: 110rem;
    margin: 5rem auto 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: center;
    align-items: stretch;
  }
  .recruit-information__pclist--item {
    font-size: clamp(1.4rem, 1vw, 1.6rem);
    line-height: 1.9411764706;
    width: 16.6666666667%;
    text-align: center;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }
  .recruit-information__pclist--item:hover,
  .recruit-information__pclist--item.current {
    background-color: #FFBF00;
  }
  .recruit-information__pclist--item:hover {
    cursor: pointer;
  }
  .recruit-information__box {
    background-color: #fff;
    border-radius: 2rem 2rem 0 0;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
    width: 77.2314674735%;
    margin: 5rem auto 0 auto;
  }
  .recruit-information__head {
    background-color: #FFBF00;
    padding: 2.7rem 6.6592674806% 2rem 6.6592674806%;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .recruit-information__head--title {
    font-size: clamp(1.2rem, 2.5vw, 2.4rem);
    line-height: 1.4166666667;
    letter-spacing: 0.2em;
  }
  .recruit-information__erea {
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.5rem 10%;
    width: 70%;
  }
  .recruit-information__erea--item {
    font-size: 1.6rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }
  .recruit-information__body {
    padding: 3.5rem 2rem 5rem 2rem;
    aspect-ratio: 304/200;
    width: 100%;
    margin: auto;
    position: relative;
  }
  .recruit-information__body--title {
    font-size: 2.4rem;
    line-height: 1.4166666667;
    letter-spacing: 0.2em;
    padding-left: 3rem;
    margin-bottom: 2rem;
  }
  .recruit-information__body--container {
    overflow: hidden;
  }
  .recruit-information__body--block {
    max-width: 75rem;
    margin: auto;
  }
  .recruit-information__list {
    width: 96%;
    margin-left: auto;
    min-height: auto;
    padding-bottom: 5rem;
  }
  .recruit-information__list--item {
    font-size: 1.7rem;
    line-height: 1.2352941176;
    margin-bottom: 2rem;
  }
  .recruit-information__list--item.external a {
    position: relative;
    width: fit-content;
    padding-right: 3rem;
  }
  .recruit-information__list--item.external a::after {
    content: "";
    background: url(../img/common/external-bk.svg);
    background-size: cover;
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: 0;
    bottom: 0.3rem;
    z-index: 99999;
  }
  .recruit-information__scroll {
    background-color: #E4E4E4;
    height: 5rem;
    position: relative;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 2rem 2rem;
    -webkit-border-radius: 0 0 2rem 2rem;
    -moz-border-radius: 0 0 2rem 2rem;
    -ms-border-radius: 0 0 2rem 2rem;
    -o-border-radius: 0 0 2rem 2rem;
    width: 77.2314674735%;
    margin: auto;
  }
  .recruit-information__scroll span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: 0.5rem;
    color: #231815;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    z-index: 2;
    text-align: center;
    font-size: 0.8rem;
    line-height: 2.625;
    letter-spacing: 0.15em;
  }
  .recruit-information__scroll span::after {
    content: "";
    width: 21px;
    height: 21px;
    border-top: solid 2px #231815;
    border-right: solid 2px #231815;
    position: absolute;
    left: 5px;
    top: 12px;
    transform: rotate(135deg);
  }
}
/*====================================================
////会社概要
====================================================*/
.company-fv,
.news-fv {
  aspect-ratio: 375/252;
  width: 100%;
  position: relative;
  z-index: 1;
}

.company-fv__img,
.news-fv__img {
  overflow: hidden;
}

.company-fv__img img,
.news-fv__img img {
  object-fit: cover;
  width: 100%;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: 50% 50%", sans-serif;
}

.company-fv__title,
.news-fv__title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

.company-fv__title--en,
.company-fv__title--jp,
.news-fv__title--en,
.news-fv__title--jp {
  overflow: hidden;
}

.company-fv__title--en,
.news-fv__title--en {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 400;
}

.company-fv__title--jp,
.news-fv__title--jp {
  font-size: 1.6rem;
  line-height: 2.75;
  letter-spacing: 0.2em;
  font-weight: 300;
}

.company-fv__title--jp .asInUp,
.news-fv__title--jp .asInUp {
  animation-delay: 0.3s;
}

.company__title {
  overflow: hidden;
  font-size: 3rem;
  line-height: 1.3333333333;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 5rem;
}

.company__title:last-of-type {
  margin-top: 0;
}

.company-about {
  padding: 1.5rem 0 7rem 0;
}

.company-about .inner {
  padding-top: 5rem;
}

.company-about__table {
  margin-top: 5.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.5rem;
  justify-content: center;
  align-items: stretch;
}

.company-about__table--title {
  font-size: 1.4rem;
  line-height: 1.6428571429;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: right;
  width: 35%;
}

.company-about__table--body {
  font-size: 1.4rem;
  line-height: 1.6428571429;
  letter-spacing: 0.15em;
  width: calc(65% - 2.5rem);
}

@media screen and (min-width: 768px) {
  .company-fv,
  .news-fv {
    width: 100%;
    aspect-ratio: auto;
    height: 38.6rem;
  }
  .company-fv__img img,
  .news-fv__img img {
    height: 100%;
  }
  .company-fv__title--en,
  .news-fv__title--en {
    font-size: 5.8rem;
    line-height: 1.5862068966;
    font-weight: 100;
    letter-spacing: 0.15em;
  }
  .company-fv__title--jp,
  .news-fv__title--jp {
    font-size: 3rem;
    line-height: 1.1666666667;
    font-weight: 100;
    letter-spacing: 0.2em;
  }
  .company__title {
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 100;
    letter-spacing: 0.2em;
    padding-top: 6rem;
  }
  .company-about {
    padding: 1.5rem 0 13.5rem 0;
  }
  .company-about .inner {
    padding-top: 0;
  }
  .company-about__table {
    margin-top: 5.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem 2.5rem;
    justify-content: center;
    align-items: stretch;
  }
  .company-about__table--title,
  .company-about__table--body {
    margin-top: -1rem;
  }
  .company-about__table--title {
    font-size: 1.6rem;
    line-height: 2.4375;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-align: right;
    width: 30%;
  }
  .company-about__table--body {
    font-size: 1.6rem;
    line-height: 2.4375;
    letter-spacing: 0.15em;
    width: calc(70% - 2.5rem);
  }
}
.company-history {
  background-color: #EFEFEF;
  padding: 7rem 0;
}

.company-history__lead {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.15em;
  text-align: center;
  margin-top: 3.5rem;
}

.company-history__container {
  width: 33rem;
  margin: 5rem auto 0 auto;
  position: relative;
}

.company-history__line {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: calc(100% - 15.5rem);
  aspect-ratio: 15/9420;
  overflow: hidden;
}

.company-history__year {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  line-height: 1.5;
}

.company-history__block {
  transition: 0.3s;
  transform: scale(1);
  z-index: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.company-history__block--month {
  width: 4rem;
  white-space: nowrap;
}

.company-history__block--body {
  width: calc(100% - 4rem - 1rem);
}

.company-history__block--img {
  width: 16rem;
  aspect-ratio: 100/100;
  transition: 0.3s;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.company-history__block--img img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: 50% 50%", sans-serif;
  height: 100%;
  position: relative;
  z-index: 999;
}

.company-history__table--item {
  font-size: 1.4rem;
  line-height: 1.0833333333;
  letter-spacing: 0.1em;
  position: relative;
  margin-bottom: 1.5rem;
  margin-left: 3.5rem;
}

.company-history__table--item::before {
  content: "";
  width: 1.5rem;
  aspect-ratio: 100/100;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #808182;
  position: absolute;
  left: -3.5rem;
  top: 0;
  border: 2px solid #fff;
  z-index: 3;
}

.company-history__table--item.active {
  position: relative;
  z-index: 99;
}

.company-history__table--item.active::before {
  background-color: var(--pink);
}

.company-history__table--item.active .company-history__table--year,
.company-history__table--item.active .company-history__table--body {
  font-weight: bold;
  transform: scale(1.05);
  position: relative;
}

.company-history__table--item.active--year {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 1421px) {
  .company-history {
    padding: 7rem 0;
  }
  .company-history__lead {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0.15em;
    text-align: center;
    margin-top: 3.5rem;
  }
  .company-history__container {
    width: 106rem;
    margin: 7rem auto 0 16%;
  }
  .company-history__line {
    width: 27rem;
    height: calc(100% - 5rem);
    aspect-ratio: auto;
  }
  .company-history__year {
    margin-bottom: 0.5rem;
    font-size: 2.4rem;
    line-height: 1.4166666667;
  }
  .company-history__block {
    transition: 0.3s;
    transform: scale(1);
    z-index: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    margin-left: 0;
    position: relative;
  }
  .company-history__block--month {
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .company-history__block--body {
    width: fit-content;
    max-width: calc(100% - 4rem - 1rem);
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .company-history__block--img {
    position: absolute;
    top: -8.5rem;
    left: -25rem;
    width: 16rem;
    aspect-ratio: 100/100;
    transition: 1s;
    display: block;
    opacity: 0;
  }
  .company-history__block--img img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    object-position: 50% 50%;
    font-family: "object-fit: cover; object-position: 50% 50%", sans-serif;
    height: 100%;
    position: relative;
    z-index: 2;
  }
  .company-history__block--img::after {
    content: "";
    background-color: #fff;
    height: 2px;
    width: 20rem;
    position: absolute;
    left: 10%;
    top: 45%;
    z-index: 1;
  }
  .company-history__block--img.isActive {
    opacity: 1;
  }
  .company-history__block:hover .company-history__block--img {
    opacity: 1;
  }
  .company-history__table--item {
    font-size: 1.4rem;
    line-height: 1.0833333333;
    letter-spacing: 0.1em;
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
  }
  .company-history__table--item::before {
    content: "";
    width: 1.5rem;
    aspect-ratio: 100/100;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #808182;
    position: absolute;
    width: 1.8rem;
    left: -3.6rem;
    top: 0;
    border: 2px solid #fff;
    z-index: 3;
  }
  .company-history__table--item:hover {
    position: relative;
    z-index: 99;
  }
  .company-history__table--item:hover::before {
    background-color: var(--pink);
  }
  .company-history__table--item:hover .company-history__year {
    transition: 0.3s;
    font-weight: bold;
  }
  .company-history__table--item:hover .company-history__block {
    font-weight: bold;
    position: relative;
    margin-left: 3rem;
  }
  .company-history__table--item:hover .company-history__block--img {
    opacity: 1;
  }
  .company-history__table--item:first-of-type {
    margin-left: 6.7rem;
  }
  .company-history__table--item:first-of-type .company-history__block {
    margin-left: 1.5rem;
  }
  .company-history__table--item:nth-of-type(2) {
    margin-left: 10.2rem;
  }
  .company-history__table--item:nth-of-type(2) .company-history__block {
    margin-left: 1.5rem;
  }
  .company-history__table--item:nth-of-type(3) {
    margin-left: 13.3rem;
  }
  .company-history__table--item:nth-of-type(3) .company-history__block {
    margin-left: 1.5rem;
  }
  .company-history__table--item:nth-of-type(4) {
    margin-left: 15.8rem;
  }
  .company-history__table--item:nth-of-type(4) .company-history__block:first-of-type {
    margin-left: 1.5rem;
  }
  .company-history__table--item:nth-of-type(4) .company-history__block:nth-of-type(2) {
    margin-left: 2.5rem;
  }
  .company-history__table--item:nth-of-type(5) {
    margin-left: 18.5rem;
  }
  .company-history__table--item:nth-of-type(5) .company-history__block {
    margin-left: 1.5rem;
  }
  .company-history__table--item:nth-of-type(6) {
    margin-left: 19.2rem;
  }
  .company-history__table--item:nth-of-type(6) .company-history__block {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(7) {
    margin-left: 18.2rem;
  }
  .company-history__table--item:nth-of-type(7) .company-history__block:first-of-type {
    margin-left: -0.5rem;
  }
  .company-history__table--item:nth-of-type(8) {
    margin-left: 16.3rem;
  }
  .company-history__table--item:nth-of-type(8) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(8) .company-history__block:nth-of-type(2) {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(8) .company-history__block:nth-of-type(3) {
    margin-left: -2rem;
  }
  .company-history__table--item:nth-of-type(9) {
    margin-left: 12.6rem;
  }
  .company-history__table--item:nth-of-type(9) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(9) .company-history__block:nth-of-type(2) {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(10) {
    margin-left: 9.6rem;
  }
  .company-history__table--item:nth-of-type(10) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(10) .company-history__block:nth-of-type(2) {
    margin-left: -2rem;
  }
  .company-history__table--item:nth-of-type(11) {
    margin-left: 7.9rem;
  }
  .company-history__table--item:nth-of-type(11) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(11) .company-history__block:nth-of-type(2) {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(12) {
    margin-left: 6.5rem;
  }
  .company-history__table--item:nth-of-type(12) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(12) .company-history__block:nth-of-type(2) {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(12) .company-history__block:nth-of-type(3) {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(13) {
    margin-left: 8rem;
  }
  .company-history__table--item:nth-of-type(13) .company-history__block {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(14) {
    margin-left: 11rem;
  }
  .company-history__table--item:nth-of-type(14) .company-history__block {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(15) {
    margin-left: 15.2rem;
  }
  .company-history__table--item:nth-of-type(15) .company-history__block:first-of-type {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(15) .company-history__block:nth-of-type(2) {
    margin-left: 2rem;
  }
  .company-history__table--item:nth-of-type(16) {
    margin-left: 19.3rem;
  }
  .company-history__table--item:nth-of-type(16) .company-history__block {
    margin-left: 2rem;
  }
  .company-history__table--item:nth-of-type(17) {
    margin-left: 22.3rem;
  }
  .company-history__table--item:nth-of-type(17) .company-history__block:first-of-type {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(17) .company-history__block:nth-of-type(2) {
    margin-left: 2rem;
  }
  .company-history__table--item:nth-of-type(18) {
    margin-left: 27rem;
  }
  .company-history__table--item:nth-of-type(18) .company-history__block:first-of-type {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(18) .company-history__block:nth-of-type(2) {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(19) {
    margin-left: 29rem;
  }
  .company-history__table--item:nth-of-type(19) .company-history__block:first-of-type {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(19) .company-history__block:nth-of-type(2) {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(20) {
    margin-left: 29.3rem;
  }
  .company-history__table--item:nth-of-type(20) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(20) .company-history__block:nth-of-type(2) {
    margin-left: -0.5rem;
  }
  .company-history__table--item:nth-of-type(20) .company-history__block:nth-of-type(3) {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(21) {
    margin-left: 26.4rem;
  }
  .company-history__table--item:nth-of-type(21) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(21) .company-history__block:nth-of-type(2) {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(21) .company-history__block:nth-of-type(3) {
    margin-left: -2rem;
  }
  .company-history__table--item:nth-of-type(22) {
    margin-left: 23.2rem;
  }
  .company-history__table--item:nth-of-type(22) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(22) .company-history__block:nth-of-type(2) {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(23) {
    margin-left: 19rem;
  }
  .company-history__table--item:nth-of-type(23) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(23) .company-history__block:nth-of-type(2) {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(23) .company-history__block:nth-of-type(3) {
    margin-left: -2rem;
  }
  .company-history__table--item:nth-of-type(23) .company-history__block:nth-of-type(4) {
    margin-left: -3rem;
  }
  .company-history__table--item:nth-of-type(24) {
    margin-left: 12rem;
  }
  .company-history__table--item:nth-of-type(24) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(24) .company-history__block:nth-of-type(2) {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(24) .company-history__block:nth-of-type(3) {
    margin-left: -2rem;
  }
  .company-history__table--item:nth-of-type(24) .company-history__block:nth-of-type(4) {
    margin-left: -3rem;
  }
  .company-history__table--item:nth-of-type(24) .company-history__block:nth-of-type(5) {
    margin-left: -4rem;
  }
  .company-history__table--item:nth-of-type(25) {
    margin-left: 6.4rem;
  }
  .company-history__table--item:nth-of-type(25) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(25) .company-history__block:nth-of-type(2) {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(25) .company-history__block:nth-of-type(3) {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(25) .company-history__block:nth-of-type(4) {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(26) {
    margin-left: 7.9rem;
  }
  .company-history__table--item:nth-of-type(26) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(26) .company-history__block:nth-of-type(2) {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(26) .company-history__block:nth-of-type(3) {
    margin-left: 2rem;
  }
  .company-history__table--item:nth-of-type(26) .company-history__block:nth-of-type(4) {
    margin-left: 3rem;
  }
  .company-history__table--item:nth-of-type(26) .company-history__block:nth-of-type(5) {
    margin-left: 4rem;
  }
  .company-history__table--item:nth-of-type(27) {
    margin-left: 13.4rem;
  }
  .company-history__table--item:nth-of-type(27) .company-history__block:first-of-type {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(27) .company-history__block:nth-of-type(2) {
    margin-left: 2rem;
  }
  .company-history__table--item:nth-of-type(27) .company-history__block:nth-of-type(3) {
    margin-left: 3rem;
  }
  .company-history__table--item:nth-of-type(27) .company-history__block:nth-of-type(4) {
    margin-left: 4rem;
  }
  .company-history__table--item:nth-of-type(27) .company-history__block:nth-of-type(5) {
    margin-left: 5rem;
  }
  .company-history__table--item:nth-of-type(28) {
    margin-left: 19.1rem;
  }
  .company-history__table--item:nth-of-type(28) .company-history__block:first-of-type {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(28) .company-history__block:nth-of-type(2) {
    margin-left: 2rem;
  }
  .company-history__table--item:nth-of-type(28) .company-history__block:nth-of-type(3) {
    margin-left: 3rem;
  }
  .company-history__table--item:nth-of-type(28) .company-history__block:nth-of-type(4) {
    margin-left: 4rem;
  }
  .company-history__table--item:nth-of-type(29) {
    margin-left: 22rem;
  }
  .company-history__table--item:nth-of-type(29) .company-history__block:first-of-type {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(29) .company-history__block:nth-of-type(2) {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(30) {
    margin-left: 23.8rem;
  }
  .company-history__table--item:nth-of-type(30) .company-history__block:first-of-type {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(30) .company-history__block:nth-of-type(2) {
    margin-left: 2rem;
  }
  .company-history__table--item:nth-of-type(31) {
    margin-left: 25.8rem;
  }
  .company-history__table--item:nth-of-type(31) .company-history__block:first-of-type {
    margin-left: 0.5rem;
  }
  .company-history__table--item:nth-of-type(31) .company-history__block:nth-of-type(2) {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(31) .company-history__block:nth-of-type(3) {
    margin-left: 1.5rem;
  }
  .company-history__table--item:nth-of-type(31) .company-history__block:nth-of-type(4) {
    margin-left: 2rem;
  }
  .company-history__table--item:nth-of-type(32) {
    margin-left: 27.5rem;
  }
  .company-history__table--item:nth-of-type(32) .company-history__block:first-of-type {
    margin-left: 0.5rem;
  }
  .company-history__table--item:nth-of-type(32) .company-history__block:nth-of-type(2) {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(32) .company-history__block:nth-of-type(3) {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(32) .company-history__block:nth-of-type(4) {
    margin-left: 1rem;
  }
  .company-history__table--item:nth-of-type(33) {
    margin-left: 25.2rem;
  }
  .company-history__table--item:nth-of-type(33) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(33) .company-history__block:nth-of-type(2) {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(33) .company-history__block:nth-of-type(3) {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(33) .company-history__block:nth-of-type(4) {
    margin-left: -0.5rem;
  }
  .company-history__table--item:nth-of-type(34) {
    margin-left: 23.5rem;
  }
  .company-history__table--item:nth-of-type(34) .company-history__block:first-of-type {
    margin-left: 0.5rem;
  }
  .company-history__table--item:nth-of-type(34) .company-history__block:nth-of-type(2) {
    margin-left: -0.5rem;
  }
  .company-history__table--item:nth-of-type(35) {
    margin-left: 20.3rem;
  }
  .company-history__table--item:nth-of-type(35) .company-history__block:first-of-type {
    margin-left: -0.5rem;
  }
  .company-history__table--item:nth-of-type(35) .company-history__block:nth-of-type(2) {
    margin-left: -0.5rem;
  }
  .company-history__table--item:nth-of-type(36) {
    margin-left: 18rem;
  }
  .company-history__table--item:nth-of-type(36) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(36) .company-history__block:nth-of-type(2) {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(36) .company-history__block:nth-of-type(3) {
    margin-left: -2rem;
  }
  .company-history__table--item:nth-of-type(37) {
    margin-left: 13.5rem;
  }
  .company-history__table--item:nth-of-type(37) .company-history__block:first-of-type {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(37) .company-history__block:nth-of-type(2) {
    margin-left: -2rem;
  }
  .company-history__table--item:nth-of-type(37) .company-history__block:nth-of-type(3) {
    margin-left: -3rem;
  }
  .company-history__table--item:nth-of-type(38) {
    margin-left: 6.6rem;
  }
  .company-history__table--item:nth-of-type(38) .company-history__block:first-of-type {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(38) .company-history__block:nth-of-type(2) {
    margin-left: -2rem;
  }
  .company-history__table--item:nth-of-type(38) .company-history__block:nth-of-type(3) {
    margin-left: -3rem;
  }
  .company-history__table--item:nth-of-type(39) {
    margin-left: 4.5rem;
  }
  .company-history__table--item:nth-of-type(39) .company-history__block:first-of-type {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(39) .company-history__block:nth-of-type(2) {
    margin-left: -1rem;
  }
  .company-history__table--item:nth-of-type(40) {
    margin-left: 3rem;
  }
  .company-history__table--item:nth-of-type(40) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(40) .company-history__block:nth-of-type(2) {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(41) {
    margin-left: 2.8rem;
  }
  .company-history__table--item:nth-of-type(41) .company-history__block:first-of-type {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(41) .company-history__block:nth-of-type(2) {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(42) {
    margin-left: 3.5rem;
  }
  .company-history__table--item:nth-of-type(42) .company-history__block:first-of-type,
  .company-history__table--item:nth-of-type(42) .company-history__block:nth-of-type(2),
  .company-history__table--item:nth-of-type(42) .company-history__block:nth-of-type(3),
  .company-history__table--item:nth-of-type(42) .company-history__block:nth-of-type(4) {
    margin-left: 0;
  }
  .company-history__table--item:nth-of-type(43) {
    margin-left: 6.8rem;
  }
  .company-history__table--item:nth-of-type(43) .company-history__block:first-of-type {
    margin-left: 0;
  }
}
/*====================================================
////NEWS
====================================================*/
.cat-01 {
  background-color: #E8A1B0;
}

.cat-02 {
  background-color: #D6D6D6;
}

.cat-03 {
  background-color: #9FC77D;
}

.cat-04 {
  background-color: #FFBF00;
}

/* NEWS一覧
----------------------------------------------------*/
.news-list__left {
  background-color: var(--pink);
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.news-list__left--title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-family: "noto-sans-cjk-jp", sans-serif;
}

.news-list__select {
  border: 1px solid #9FA0A0;
  background-color: #fff;
  padding: 0.3rem 0.5rem;
  position: relative;
  width: 25rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

.news-list__select::after {
  content: "";
  border-top: solid 1px #C0C1C1;
  border-right: solid 1px #C0C1C1;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: 8px;
  transform: rotate(135deg);
  z-index: 2;
  pointer-events: auto;
}

.news-list__select--year {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  font-weight: 350;
  letter-spacing: 0.1em;
  font-family: "noto-sans-cjk-jp", sans-serif;
}

.news-list__select select {
  width: 100%;
  height: 100%;
}

.news-list__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 2rem;
}

.news-list__list--item {
  width: 100%;
  position: relative;
  padding: 1.7rem 0 2rem 0;
  border-bottom: 1px solid #C0C1C1;
  animation-duration: 1s;
}
.news-list__list--item.no-posts {
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}

.news-list__list--item a {
  width: 100%;
  height: 100%;
}

.news-list__right .breadcrumb {
  margin-top: 1.5rem;
}

.news-list__head {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
}

.news-list__head--date {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
}

.news-list__head--cat {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

.news-list__head--cat span {
  padding: 0 2rem;
  font-size: 1.2rem;
  line-height: 1.75;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  display: inline-block;
  margin-right: 1rem;
}

.news-list__head--cat span.label {
  background-color: #d6d6d6;
}

.news-list__head--cat span.cat01 {
  background-color: #ffbf00;
}

.news-list__head--cat span.cat01-1 {
  background-color: #ffbf00;
}

.news-list__head--cat span.cat01-2 {
  background-color: #e8a1b0;
}

.news-list__head--cat span.cat01-3 {
  background-color: #d6d6d6;
}

.news-list__head--cat span.cat01-4 {
  background-color: #e8a1b0;
}

.news-list__head--cat span.cat01-5 {
  background-color: #9fc77d;
}

.news-list__head--cat span.cat01-6 {
  background-color: #ffbf00;
}

.news-list__head--cat span.cat01-7 {
  background-color: #d6d6d6;
}

.news-list__head--cat span.cat01-8 {
  background-color: #d6d6d6;
}

.news-list__head--cat span.cat02 {
  background-color: #e8a1b0;
}

.news-list__head--cat span.cat03 {
  background-color: #d6d6d6;
}

.news-list__head--cat span.cat03-1 {
  background-color: #ffbf00;
}

.news-list__head--cat span.cat03-2 {
  background-color: #e8a1b0;
}

.news-list__head--cat span.cat03-3 {
  background-color: #e8a1b0;
}

.news-list__head--cat span.cat03-4 {
  background-color: #9fc77d;
}

.news-list__head--cat span.cat03-5 {
  background-color: #d6d6d6;
}

.news-list__head--cat span.uncategorized {
  background-color: #d6d6d6;
}

.news-list__title {
  font-size: 1.8rem;
  line-height: 1.7222222222;
  font-weight: 400;
  margin-top: 0.5rem;
}

.news-list .page-numbers {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.8rem;
  justify-content: center;
  align-items: center;
  margin: 3rem auto 5rem auto;
}

.news-list .page-numbers li {
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 400;
  position: relative;
}

.news-list .page-numbers li .current {
  color: #e98297;
}

.news-list .page-numbers li:last-of-type a {
  text-indent: -99999;
  width: 3rem;
  height: 3rem;
  position: relative;
}

.news-list .page-numbers li:last-of-type a::before,
.news-list .page-numbers li:last-of-type a::after {
  content: "";
  height: 1px;
  background-color: #C0C1C1;
  position: absolute;
}

.news-list .page-numbers li:last-of-type a::before {
  width: 1rem;
  transform: rotate(45deg);
  right: 0;
  top: 44%;
}

.news-list .page-numbers li:last-of-type a::after {
  width: 3rem;
  left: 0;
  top: 50%;
}

@media screen and (min-width: 768px) {
  .news-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    align-items: stretch;
  }
  .news-list__left {
    width: 42%;
    padding: 1.5rem 2.5rem;
    display: block;
  }
  .news-list__left--container {
    max-width: 40rem;
    padding: 7.5rem 3rem;
    margin: 0 0 0 auto;
  }
  .news-list__left--title {
    font-size: 4rem;
    line-height: 1;
    font-weight: 100;
    letter-spacing: 0.2em;
    font-family: "noto-sans-cjk-jp", sans-serif;
  }
  .news-list__year {
    font-size: 2.2rem;
    line-height: 2.0909090909;
    letter-spacing: 0.1em;
    margin-top: 3.5rem;
  }
  .news-list__year--item {
    position: relative;
    margin-left: 3rem;
  }
  .news-list__year--item.current {
    color: #fff;
  }
  .news-list__year--item.current::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 17px solid #fff;
    border-right: 0;
    position: absolute;
    left: -3rem;
    top: 35%;
  }
  .news-list__right {
    width: 58%;
  }
  .news-list__right .breadcrumb {
    margin: 2rem auto 0 10%;
    width: 56%;
  }
  .news-list__list {
    width: 70%;
    margin: 5.8rem auto 0 3.5%;
  }
  .news-list__list--item {
    width: 80%;
    padding: 2.8rem 0 4rem 0;
    border-bottom: 1px solid #C0C1C1;
  }
  .news-list__list--item a {
    width: 100%;
    height: 100%;
  }
  .news-list__head {
    gap: 2.5rem;
  }
  .news-list__head--date {
    font-size: 1.8rem;
    line-height: 1.5555555556;
    font-weight: 300;
  }
  .news-list__head--cat {
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 300;
    padding: 0.5rem 2.2rem;
  }
  .news-list__title {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 300;
    margin-top: 0.8rem;
  }
  .nav-links {
    width: 70%;
    margin: 5.8rem auto 0 3.5%;
  }
  .news-list .page-numbers {
    gap: 3.5rem;
    width: 100%;
    max-width: 32rem;
    margin: 3rem auto 5rem auto;
    justify-content: center;
  }
  .news-list .page-numbers li {
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 400;
    position: relative;
  }
  .news-list .page-numbers li.current {
    color: #FED609;
  }
  .news-list .page-numbers li:last-of-type a {
    width: 3.6rem;
    height: 3.6rem;
  }
  .news-list .page-numbers li:last-of-type a::before,
  .news-list .page-numbers li:last-of-type a::after {
    content: "";
    height: 1px;
    background-color: #C0C1C1;
    position: absolute;
  }
  .news-list .page-numbers li:last-of-type a::before {
    width: 1.5rem;
    transform: rotate(30deg);
    right: 0;
    top: 1.8rem;
  }
  .news-list .page-numbers li:last-of-type a::after {
    width: 3.6rem;
    left: 0;
    top: 60%;
  }
  .news-list .page-numbers li:last-of-type a:hover::before,
  .news-list .page-numbers li:last-of-type a:hover::after {
    background-color: #FED609;
  }
}
/* NEWS詳細
----------------------------------------------------*/
.news-detail {
  margin-top: 7.5rem;
  padding: 1.5rem 0 4rem 0;
}

.news-detail__head {
  margin-top: 2rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 3rem;
  justify-content: flex-start;
  align-items: center;
}

.news-detail__head--date {
  font-size: 1.5rem;
  line-height: 1.6666666667;
}

.news-detail__head--cat span {
  padding: 0 2rem;
  font-size: 1.2rem;
  line-height: 1.75;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  display: inline-block;
  margin-right: 1rem;
}

.news-detail__head--cat span.cat01 {
  background-color: #ffbf00;
}

.news-detail__head--cat span.cat01-1 {
  background-color: #ffbf00;
}

.news-detail__head--cat span.cat01-2 {
  background-color: #e8a1b0;
}

.news-detail__head--cat span.cat01-3 {
  background-color: #d6d6d6;
}

.news-detail__head--cat span.cat01-4 {
  background-color: #e8a1b0;
}

.news-detail__head--cat span.cat01-5 {
  background-color: #9fc77d;
}

.news-detail__head--cat span.cat01-6 {
  background-color: #ffbf00;
}

.news-detail__head--cat span.cat01-7 {
  background-color: #d6d6d6;
}

.news-detail__head--cat span.cat01-8 {
  background-color: #d6d6d6;
}

.news-detail__head--cat span.cat02 {
  background-color: #e8a1b0;
}

.news-detail__head--cat span.cat03 {
  background-color: #d6d6d6;
}

.news-detail__head--cat span.cat03-1 {
  background-color: #ffbf00;
}

.news-detail__head--cat span.cat03-2 {
  background-color: #e8a1b0;
}

.news-detail__head--cat span.cat03-3 {
  background-color: #e8a1b0;
}

.news-detail__head--cat span.cat03-4 {
  background-color: #9fc77d;
}

.news-detail__head--cat span.cat03-5 {
  background-color: #d6d6d6;
}

.news-detail__head--cat span.uncategorized {
  background-color: #d6d6d6;
}

.news-detail__title {
  font-size: 2.6rem;
  line-height: 1.7307692308;
  font-weight: 500;
  font-family: "noto-sans-cjk-jp", sans-serif;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.news-detail__img {
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  overflow: hidden;
  margin-top: 2rem;
}

.news-detail__body {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.025em;
  margin-top: 2rem;
}

.news-detail__body h2 {
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 500;
  margin: 5rem 0 1.5rem 0;
}

.news-detail__body img {
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  overflow: hidden;
  margin: 2rem auto;
  max-width: 100%;
}

.news-detail__body p {
  margin-top: 2rem;
}

.news-detail__pager {
  display: flex;
  flex-wrap: nowrap;
  gap: 5rem;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}

.news-detail__pager--item {
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.news-detail__pager--item:first-of-type a,
.news-detail__pager--item:last-of-type a {
  display: block;
  width: 3rem;
  height: 3rem;
  position: relative;
}

.news-detail__pager--item:first-of-type a::before,
.news-detail__pager--item:first-of-type a::after,
.news-detail__pager--item:last-of-type a::before,
.news-detail__pager--item:last-of-type a::after {
  content: "";
  background-color: #C0C1C1;
  height: 1px;
  position: absolute;
}

.news-detail__pager--item:first-of-type a::before,
.news-detail__pager--item:last-of-type a::before {
  width: 100%;
  top: 50%;
}

.news-detail__pager--item:first-of-type a::after,
.news-detail__pager--item:last-of-type a::after {
  width: 1.5rem;
  top: calc(50% - 3px);
}

.news-detail__pager--item:first-of-type a::before {
  left: 0;
}

.news-detail__pager--item:first-of-type a::after {
  left: 0;
  transform: rotate(-20deg);
}

.news-detail__pager--item:last-of-type a::before {
  right: 0;
}

.news-detail__pager--item:last-of-type a::after {
  right: 0;
  transform: rotate(20deg);
}

@media screen and (min-width: 768px) {
  .news-detail {
    margin-top: 10rem;
    padding: 1rem 0 5rem 0;
  }
  .news-detail .breadcrumb {
    background-color: transparent;
  }
  .news-detail .breadcrumb__list--item {
    color: #595757;
  }
  .news-detail__breadcrumb {
    border-bottom: 1px solid #9D9E9E;
  }
  .news-detail__head {
    margin-top: 2rem;
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    justify-content: flex-start;
    align-items: center;
  }
  .news-detail__head--date {
    font-size: 1.5rem;
    line-height: 1.6666666667;
  }
  .news-detail__head--cat span {
    font-size: 1.2rem;
    line-height: 1.75;
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    padding: 0 2rem;
  }
  .news-detail__title {
    font-size: 2.6rem;
    line-height: 1.7307692308;
    font-weight: 500;
    font-family: "noto-sans-cjk-jp", sans-serif;
    margin-top: 0.5rem;
  }
  .news-detail__body {
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.025em;
    margin-top: 2rem;
  }
  .news-detail__body h2 {
    font-size: 2rem;
    line-height: 1.7;
    font-weight: 500;
    margin: 5rem 0 1.5rem 0;
  }
  .news-detail__pager {
    display: flex;
    flex-wrap: nowrap;
    gap: 5rem;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
  }
  .news-detail__pager--item {
    position: relative;
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.2em;
  }
  .news-detail__pager--item:first-of-type a:hover::before,
  .news-detail__pager--item:first-of-type a:hover::after,
  .news-detail__pager--item:last-of-type a:hover::before,
  .news-detail__pager--item:last-of-type a:hover::after {
    background-color: #ffbf00;
  }
}
/*====================================================
////プライバシーポリシー
====================================================*/
.page-policy {
  padding: 10rem 0 0 0;
}

@media screen and (min-width: 768px) {
  .page-policy {
    padding: 10rem 0;
  }
  .page-policy .inner {
    margin-top: 7rem;
  }
}
.page-policy__title {
  font-size: 2.4rem;
  line-height: 1.75;
  font-weight: 300;
}

.page-policy__lead {
  font-size: 1.6rem;
  line-height: 2.0625;
}

.page-policy__body {
  font-size: 1.6rem;
  line-height: 2.0625;
  margin-bottom: 5rem;
  margin-top: 0.5rem;
}

.page-policy .inner {
  margin-top: 3rem;
}

.page-policy__list {
  margin-top: 7rem;
}

.recruit__fix-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 94.9333333333%;
}
.recruit__fix-banner a {
  background-image: linear-gradient(90deg, #786095, #e6c5d9);
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 100%;
  height: 7rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  position: relative;
}
.recruit__fix-banner a span {
  font-size: 1.358rem;
  line-height: 1.5861561119;
  font-weight: 400;
  display: block;
  margin: 0 auto;
}
.recruit__fix-banner a::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 12%;
  top: 45%;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .recruit__fix-banner {
    bottom: 2rem;
    left: auto;
    right: 0;
    transform: none;
    max-width: 32.4rem;
  }
  .recruit__fix-banner a {
    font-size: 2.2rem;
    line-height: 1.4318181818;
    font-weight: 500;
    letter-spacing: 0.1em;
    width: 100%;
    height: 8.6rem;
    position: relative;
    border-radius: 2rem 0 0 2rem;
    -webkit-border-radius: 2rem 0 0 2rem;
    -moz-border-radius: 2rem 0 0 2rem;
    -ms-border-radius: 2rem 0 0 2rem;
    -o-border-radius: 2rem 0 0 2rem;
  }
  .recruit__fix-banner a span {
    font-size: 1.358rem;
    line-height: 1.5861561119;
    font-weight: 400;
    display: block;
    margin: 0 auto;
  }
  .recruit__fix-banner a::after {
    content: "";
    width: 1.7rem;
    height: 1.7rem;
    right: 7%;
    top: 45%;
    transform: rotate(45deg);
  }
}
.recruit-benefits {
  background-color: #e9e9e9;
  padding: 3rem 0 5rem 0;
}
.recruit-benefits__title {
  font-size: 3.3rem;
  line-height: 1.7575757576;
  letter-spacing: 0.3em;
  text-align: center;
  overflow: hidden;
  color: #e98297;
}
@media screen and (min-width: 768px) {
  .recruit-benefits__title {
    font-size: 4rem;
    line-height: 1.75;
  }
}
.recruit-benefits dl {
  margin-top: 3rem;
}
.recruit-benefits dl dt {
  margin-top: 1.5rem;
  background-color: #fff;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  padding: 0 2rem;
  position: relative;
}
.recruit-benefits dl dt::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #786095;
  border-right: solid 2px #786095;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  transform: rotate(135deg);
  transition: 0.3s;
}
.recruit-benefits dl dt.active {
  border-radius: 1rem 1rem 0 0;
  -webkit-border-radius: 1rem 1rem 0 0;
  -moz-border-radius: 1rem 1rem 0 0;
  -ms-border-radius: 1rem 1rem 0 0;
  -o-border-radius: 1rem 1rem 0 0;
}
.recruit-benefits dl dt.active::before {
  content: "";
  background-color: #f6dcd8;
  width: calc(100% - 3rem);
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.recruit-benefits dl dt.active::after {
  transform: rotate(-45deg);
  top: 1.7rem;
}
.recruit-benefits dl dd {
  display: none;
  font-size: 1.4rem;
  line-height: 2.2142857143;
  font-weight: 400;
  background-color: #fff;
  border-radius: 0 0 1rem 1rem;
  -webkit-border-radius: 0 0 1rem 1rem;
  -moz-border-radius: 0 0 1rem 1rem;
  -ms-border-radius: 0 0 1rem 1rem;
  -o-border-radius: 0 0 1rem 1rem;
  padding: 1rem 2rem;
}

@media screen and (min-width: 768px) {
  .recruit-benefits {
    padding: 7rem 0 15rem 0;
  }
  .recruit-benefits dl {
    margin-top: 3rem;
  }
  .recruit-benefits dl dt {
    font-size: 2rem;
    line-height: 2;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 1rem 3rem;
  }
  .recruit-benefits dl dt::after {
    content: "";
    width: 1.3rem;
    height: 1.3rem;
    right: 3rem;
    top: 2rem;
  }
  .recruit-benefits dl dt.active::before {
    width: calc(100% - 5rem);
  }
  .recruit-benefits dl dt.active::after {
    top: 2.5rem;
  }
  .recruit-benefits dl dt:hover {
    cursor: pointer;
    opacity: 0.8;
  }
  .recruit-benefits dl dd {
    display: none;
    font-size: 1.6rem;
    line-height: 2.0625;
    font-weight: 400;
    padding: 2rem 3rem;
  }
}
.recruit-job-fv {
  background-image: url(../img/recruit/job/fv-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 751/715;
  position: relative;
}
.recruit-job-fv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  text-align: center;
}
.recruit-job-fv__title--en {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 400;
  overflow: hidden;
  color: #fff;
}
.recruit-job-fv__title--jp {
  font-size: 1.6rem;
  line-height: 2.75;
  letter-spacing: 0.2em;
  font-weight: 300;
  overflow: hidden;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .recruit-job-fv {
    background-image: url(../img/recruit/job/fv-pc.png);
    aspect-ratio: auto;
    height: 39.6rem;
  }
  .recruit-job-fv__title--en {
    font-size: 5.8rem;
    line-height: 1.5862068966;
    letter-spacing: 0.24em;
  }
  .recruit-job-fv__title--jp {
    font-size: 3rem;
    line-height: 2;
    letter-spacing: 0.2em;
  }
}
.recruit-job {
  background-color: #f9f9f9;
  padding: 2rem 0 5rem 0;
}
.recruit-job__search {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}
.recruit-job__search--box {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: calc((100% - 1rem) / 2);
}
.recruit-job__search--box::after {
  position: absolute;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.2rem;
  background-color: #514f4f;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.recruit-job__search--box select {
  appearance: none;
  width: 100%;
  height: 3rem;
  padding: 0.5rem 3rem 0.5rem 1.5rem;
  border: 1px solid #9fa0a0;
  border-radius: 25px;
  background-color: #fff;
  color: #312f2f;
  font-size: 1em;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
}
.recruit-job__search--btn {
  background-color: #786095;
  color: #fff;
  width: calc((100% - 1rem) / 2);
  border-radius: 5rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  -o-border-radius: 5rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  padding: 0.5rem 3rem;
}
.recruit-job__search--btn button {
  width: 100%;
  height: 100%;
}
.recruit-job__result {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  margin-top: 2rem;
}
.recruit-job__result--item {
  background-color: #fff;
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
.recruit-job__result--item a {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: stretch;
}
.recruit-job__result--block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}
.recruit-job__result--block p {
  width: calc(55% - 1.5rem);
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 600;
  padding: 1rem 1rem 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow: hidden;
  height: 10rem;
  padding-top: 2rem;
}
.recruit-job__img {
  border-radius: 1rem 0 0 0;
  -webkit-border-radius: 1rem 0 0 0;
  -moz-border-radius: 1rem 0 0 0;
  -ms-border-radius: 1rem 0 0 0;
  -o-border-radius: 1rem 0 0 0;
  position: relative;
  overflow: hidden;
  width: 45%;
}
.recruit-job__img figure {
  aspect-ratio: 166.5/109;
  overflow: hidden;
}
.recruit-job__img figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
}
.recruit-job__img--employment {
  width: fit-content;
  padding: 0.5rem 3rem;
  border-radius: 0 1rem 0 1rem;
  -webkit-border-radius: 0 1rem 0 1rem;
  -moz-border-radius: 0 1rem 0 1rem;
  -ms-border-radius: 0 1rem 0 1rem;
  -o-border-radius: 0 1rem 0 1rem;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
}
.recruit-job__img--employment.green {
  background-color: #c7d85e;
}
.recruit-job__img--employment.orange {
  background-color: #ffb270;
}
.recruit-job__treatment {
  padding: 0 2rem 1rem 1rem;
  font-size: 1.4rem;
  line-height: 1.9285714286;
  font-weight: 400;
}
.recruit-job__treatment--occupation, .recruit-job__treatment--area, .recruit-job__treatment--salary, .recruit-job__treatment--store {
  padding-left: 3rem;
  background-size: 1.2rem;
  background-repeat: no-repeat;
  background-position: 0 50%;
}
.recruit-job__treatment--occupation {
  background-image: url(../img/recruit/job/treatment01.png);
}
.recruit-job__treatment--area {
  background-image: url(../img/recruit/job/treatment02.png);
}
.recruit-job__treatment--salary {
  background-image: url(../img/recruit/job/treatment03.png);
}
.recruit-job__treatment--store {
  background-image: url(../img/recruit/job/treatment04.png);
}

@media screen and (min-width: 768px) {
  .recruit-job {
    padding: 5rem 0 10rem 0;
  }
  .recruit-job__search {
    flex-wrap: nowrap;
    gap: 2rem;
  }
  .recruit-job__search--box {
    width: calc((100% - 1rem) / 4);
    max-width: 23rem;
  }
  .recruit-job__search--box::after {
    position: absolute;
    right: 1.5rem;
    width: 1.5rem;
    height: 1.2rem;
    background-color: #514f4f;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
    pointer-events: none;
  }
  .recruit-job__search--box select {
    height: 3.7rem;
    padding: 0.3rem 3rem 0.3rem 1.5rem;
    font-size: 1.6rem;
    line-height: 1;
  }
  .recruit-job__search--btn {
    width: 7.6rem;
    height: 3.7rem;
    font-size: 1.6rem;
    line-height: 1;
    padding: 0.7rem 0;
  }
  .recruit-job__search--btn button {
    width: 100%;
    height: 100%;
  }
  .recruit-job__search--btn:hover {
    opacity: 0.8;
  }
  .recruit-job__result {
    gap: 1.5rem;
    flex-direction: row;
    margin-top: 5rem;
  }
  .recruit-job__result--item {
    background-color: #fff;
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    width: calc((100% - 4.5rem) / 4);
  }
  .recruit-job__result--item a {
    gap: 1rem;
  }
  .recruit-job__result--block {
    width: 100%;
    display: block;
  }
  .recruit-job__result--block p {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.6875;
    font-weight: 600;
    padding: 1.5rem 1.5rem 0 1.5rem;
    height: 7rem;
    padding-top: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .recruit-job__img {
    border-radius: 1rem 1rem 0 0;
    -webkit-border-radius: 1rem 1rem 0 0;
    -moz-border-radius: 1rem 1rem 0 0;
    -ms-border-radius: 1rem 1rem 0 0;
    -o-border-radius: 1rem 1rem 0 0;
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .recruit-job__img figure {
    aspect-ratio: 244/160;
    overflow: hidden;
  }
  .recruit-job__img figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
  }
  .recruit-job__img--employment {
    padding: 0.7rem 3rem;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 400;
    border-radius: 1rem 0 1rem 0;
    -webkit-border-radius: 1rem 0 1rem 0;
    -moz-border-radius: 1rem 0 1rem 0;
    -ms-border-radius: 1rem 0 1rem 0;
    -o-border-radius: 1rem 0 1rem 0;
    right: auto;
    left: 0;
    z-index: 10;
  }
  .recruit-job__treatment {
    padding: 0 1.5rem 1rem 1.5rem;
    font-size: 1.4rem;
    line-height: 1.9285714286;
    font-weight: 400;
  }
  .recruit-job__treatment--occupation, .recruit-job__treatment--area, .recruit-job__treatment--salary, .recruit-job__treatment--store {
    padding-left: 3rem;
    background-size: 1.2rem;
    background-repeat: no-repeat;
    background-position: 0 50%;
  }
  .recruit-job__treatment--occupation {
    background-image: url(../img/recruit/job/treatment01.png);
  }
  .recruit-job__treatment--area {
    background-image: url(../img/recruit/job/treatment02.png);
  }
  .recruit-job__treatment--salary {
    background-image: url(../img/recruit/job/treatment03.png);
  }
  .recruit-job__treatment--store {
    background-image: url(../img/recruit/job/treatment04.png);
    line-height: 1.2;
  }
}
.recruit__result--none {
  padding: 5rem 0;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .recruit__result--none {
    padding: 10rem 0;
    font-size: 1.8rem;
    line-height: 1.5555555556;
    font-weight: 500;
  }
}

.recruit-job .custom-pagination {
  margin: 5rem auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.recruit-job .custom-pagination a {
  color: #c3c3c3;
  font-size: 2rem;
  font-weight: 500;
}
.recruit-job .custom-pagination .current,
.recruit-job .custom-pagination .next,
.recruit-job .custom-pagination .prev {
  color: #e98297 !important;
  font-size: 2rem;
  font-weight: 500;
}
.recruit-job .custom-pagination li .prev,
.recruit-job .custom-pagination li .next {
  text-indent: -9999px;
  width: 2rem;
  height: 2rem;
  position: relative;
  display: block;
}
.recruit-job .custom-pagination li .prev::after,
.recruit-job .custom-pagination li .next::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-top: solid 1px #e98297;
  border-right: solid 1px #e98297;
  position: absolute;
  left: 0;
  top: 30%;
}
.recruit-job .custom-pagination li .next::after {
  transform: rotate(45deg);
}
.recruit-job .custom-pagination li .prev::after {
  transform: rotate(-135deg);
}
.recruit-job .custom-pagination .dots {
  vertical-align: bottom;
}

/*====================================================
////header
====================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 7.5rem;
  transition: 0.5s;
}

header::after {
  content: "";
  background: transparent;
  background: linear-gradient(0deg, rgba(0, 200, 255, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}

header.white {
  background: transparent;
}

header.white::after {
  opacity: 0;
}

header.white::before {
  content: none;
}

header.white .header__logo.black {
  display: none;
}

header.white .header__logo.white {
  display: block;
}

header.white .header__menuBtn span.border {
  background: #fff;
}

header.white .header__menuBtn span.text-menu {
  color: #fff;
}

@media screen and (min-width: 768px) {
  header.white .header-nav__list--item {
    color: #fff;
  }
  header.white .header-nav__list--item a:hover {
    border-bottom: 2px solid var(--pink);
  }
  header.white .header-nav__list--item.parent a::after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }
  header.white .header-subnav__list {
    background-color: rgba(255, 255, 255, 0.8);
  }
  header.white .header-subnav__list--item {
    color: #595757;
  }
  header.white .header-subnav__list--item.external::after {
    background: url(../img/common/external-bk.svg) no-repeat;
  }
  header.white .header-subnav__list--item:hover.external::after {
    background: url(../img/common/external-wh.svg) no-repeat;
  }
  header.white .header-subnav__list--item a:hover {
    background-color: var(--pink);
    color: #fff;
  }
}
header.black::after {
  opacity: 1;
}

header.black .header__logo.white {
  display: block;
}

header.black .header__logo.black {
  display: none;
}

header.black .header__menuBtn span.border {
  background: #fff;
}

header.black .header__menuBtn span.text-menu {
  color: #fff;
}

@media screen and (min-width: 768px) {
  header.black .header-nav__list--item {
    color: #fff;
  }
  header.black .header-nav__list--item a:hover {
    border-bottom: 2px solid var(--pink);
  }
  header.black .header-nav__list--item.parent a::after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }
  header.black .header-subnav__list {
    background-color: var(--pink);
  }
  header.black .header-subnav__list--item {
    color: #fff;
  }
  header.black .header-subnav__list--item.external a::after {
    background: url(../img/common/external-wh.svg) no-repeat;
  }
  header.black .header-subnav__list--item:hover.external a::after {
    background: url(../img/common/external-wh.svg) no-repeat;
  }
  header.black .header-subnav__list--item a:hover {
    background-color: #fff;
    color: var(--txt-color);
  }
}
header.black02::after {
  opacity: 1;
}

header.black02 .header__logo.white {
  display: block;
}

header.black02 .header__logo.black {
  display: none;
}

header.black02 .header__menuBtn span.border {
  background: #fff;
}

header.black02 .header__menuBtn span.text-menu {
  color: #fff;
}

@media screen and (min-width: 768px) {
  header.black02 .header-nav__list--item {
    color: #fff;
  }
  header.black02 .header-nav__list--item a:hover {
    border-bottom: 2px solid var(--pink);
  }
  header.black02 .header-nav__list--item.parent a::after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }
  header.black02 .header-subnav__list {
    background-color: rgb(255, 255, 255);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.15);
  }
  header.black02 .header-subnav__list--item {
    color: var(--txt-color);
  }
  header.black02 .header-subnav__list--item.external a::after {
    background: url(../img/common/external-wh.svg) no-repeat;
  }
  header.black02 .header-subnav__list--item:hover.external a::after {
    background: url(../img/common/external-wh.svg) no-repeat;
  }
  header.black02 .header-subnav__list--item a:hover {
    background-color: var(--pink);
    color: var(--txt-color);
  }
}
header.yellow {
  background: transparent;
  background-image: linear-gradient(90deg, #e5a2c6, #b6b8db 51%, #8dcfd0);
}

header.yellow::after {
  opacity: 0;
}

header.yellow .header__logo.white {
  display: block;
}

header.yellow .header__logo.black {
  display: none;
}

header.yellow .header__menuBtn span.border {
  background: #fff;
}

header.yellow .header__menuBtn span.text-menu {
  color: #fff;
}

@media screen and (min-width: 768px) {
  header.yellow .header-nav__list--item {
    color: #fff;
    text-shadow: none;
  }
  header.yellow .header-nav__list--item a:hover {
    border-bottom: 2px solid #fff;
  }
  header.yellow .header-nav__list--item.parent a::after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }
  header.yellow .header-subnav__list {
    background-color: rgb(255, 255, 255);
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.15);
  }
  header.yellow .header-subnav__list--item {
    color: #595757;
  }
  header.yellow .header-subnav__list--item.external::after {
    background: url(../img/common/external-wh.svg) no-repeat;
  }
  header.yellow .header-subnav__list--item:hover.external::after {
    background: url(../img/common/external-bk.svg) no-repeat;
  }
  header.yellow .header-subnav__list--item a:hover {
    background-color: var(--pink);
    color: #595757;
  }
}
header .header {
  overflow-y: visible !important;
}

header .header__inner {
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 2.5rem;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

header .header__logo {
  max-width: 8.19321rem;
  position: absolute;
  left: 2rem;
  top: 1.6rem;
  z-index: 99999;
}

header .header__menuBtn {
  position: absolute;
  right: 2rem;
  top: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 999999;
}

header .header__menuBtn span.border {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
}

header .header__menuBtn span.border:first-of-type {
  top: 0;
}

header .header__menuBtn span.border:nth-of-type(2) {
  top: 20%;
}

header .header__menuBtn span.border:nth-of-type(3) {
  top: 40%;
}

header .header__menuBtn span.text-menu {
  font-size: 1.5rem;
  line-height: 1.7333333333;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

header .header__menuBtn.active {
  z-index: 999999;
}

header .header__menuBtn.active span.border:first-of-type {
  top: 0;
  left: 20%;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}

header .header__menuBtn.active span.border:nth-of-type(2) {
  opacity: 0;
}

header .header__menuBtn.active span.border:nth-of-type(3) {
  top: 30%;
  left: 20%;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

.header-nav {
  background-image: linear-gradient(90deg, #e5a2c6, #b6b8db 51%, #8dcfd0);
  width: 100%;
  position: fixed;
  top: -200vh;
  left: 0;
  width: 100vw;
  transition: 0.7s;
  padding-top: 7rem;
  padding-bottom: 5rem;
  z-index: 9999 !important;
}

.header-nav__list {
  margin-top: 2rem;
  padding: 0 5.5rem;
}

.header-nav__list--item {
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding: 1.1rem 0;
}
.header-nav__list--item.contact {
  width: fit-content;
  margin: 1.5rem auto 0 auto;
}
.header-nav__list--item.contact a {
  background-color: #fff;
  border-radius: 3.5rem;
  -webkit-border-radius: 3.5rem;
  -moz-border-radius: 3.5rem;
  -ms-border-radius: 3.5rem;
  -o-border-radius: 3.5rem;
  color: #595757;
  border: 2px solid #f6bcb8;
  padding: 0.5rem 3rem;
  font-size: 1.6rem;
}
.header-nav__list--item.contact a:hover {
  border-bottom: none !important;
}

.header-nav.active {
  opacity: 1;
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
}

.header-subnav__list {
  margin-top: 1rem;
  height: 100%;
  overflow-y: scroll !important;
}

.header-subnav__list--item {
  padding-left: 1.8rem;
  font-size: 1.6rem;
  line-height: 2.1875;
  letter-spacing: 0.03em;
  text-shadow: none;
  font-weight: 400;
}

.header-subnav__list--item.external::after {
  content: "";
  background: url(../img/common/external-wh.svg) no-repeat;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  background-size: cover;
  left: 13rem;
  top: 30%;
  pointer-events: none;
}

.header-subnav__list--item.external {
  position: relative;
}
.header-subnav__list--item.external:hover::after {
  background: url(../img/common/external-bk.svg) no-repeat;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    z-index: 9999;
    padding: 0 5rem;
    height: 8rem;
  }
  .header__inner {
    padding: 0 5rem !important;
    margin: 0 auto;
    height: 100%;
    align-items: flex-start !important;
    position: relative;
  }
  .header__logo {
    max-width: 9.2rem !important;
    left: 5rem !important;
    top: 2rem !important;
    position: relative;
  }
  .header-nav {
    background: transparent;
    width: auto;
    position: relative;
    top: auto;
    left: auto;
    margin-top: 0;
    padding: 1.5rem 0 0;
    opacity: 1;
    visibility: visible;
  }
  .header-nav__list {
    margin-top: 0;
    padding: 0 4rem 0 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 3.5rem;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .header-nav__list--item {
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.3125;
    letter-spacing: 0.28em;
    position: relative;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
    font-weight: 500;
  }
  .header-nav__list--item.contact {
    width: fit-content;
    margin: 1.5rem auto 0 auto;
    text-shadow: none;
  }
  .header-nav__list--item.contact a {
    padding: 0.5rem 2.5rem;
    transition: background-color 0.3s;
  }
  .header-nav__list--item.contact a:hover {
    background-color: #f6bcb8;
  }
  .header-nav__list--item.contact a::after {
    content: none !important;
  }
  .header-nav__list--item a {
    padding: 0.5rem 0;
  }
  .header-nav__list--item.parent a {
    padding-right: 2rem;
  }
  .header-nav__list--item.parent a::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    right: 0;
    top: 0.4rem;
    transform: rotate(135deg);
  }
  .header-subnav__list {
    position: absolute;
    top: 2.5rem;
    right: 0;
    width: 22rem;
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    overflow: hidden !important;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    padding: 0.5rem 0;
  }
  .header-subnav__list--item {
    white-space: nowrap;
    padding-left: 0;
  }
  .header-subnav__list--item a {
    display: block;
    padding: 0.5rem 1.5rem !important;
    width: 100%;
    transition: 0.2s;
    border: none !important;
  }
  .header-subnav__list--item a::after {
    content: none !important;
  }
  .header-subnav__list--item.external a {
    position: relative;
  }
  .header-subnav__list--item.external a::after {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    background-size: cover;
    right: 2rem;
    top: 30%;
  }
  .header-subnav__list--item:first-of-type a {
    padding-top: 1rem;
  }
  .header-subnav__list--item:last-of-type a {
    padding-bottom: 1rem;
  }
  .header-nav__list--item.parent:hover .header-subnav__list {
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: hidden;
  }
  .header-nav.active {
    overflow-y: hidden;
    height: auto;
  }
}
/*====================================================
////footer
====================================================*/
.footer {
  background-color: #e6e6e6;
  padding: 3.5rem 0 5.5rem 0;
  color: var(--txt-color);
}

#page-recruit .footer {
  background-color: #c3c3c3;
}

.footer a {
  transition: 0.3s;
}

.footer a:hover {
  font-weight: bold;
  text-decoration: none;
}

.footer__table {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.footer__table--title {
  width: 20%;
}

.footer__table--body {
  width: calc(80% - 2.5rem);
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2.5rem;
  position: relative;
}
.footer__container .block {
  width: 50%;
}

.footer__left {
  padding-left: 2rem;
  font-size: 1.2rem;
  line-height: 1.8333333333;
  letter-spacing: 0.2em;
  font-weight: 300;
}

.footer__left--item.parent {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.footer__right {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.footer__copy {
  padding: 1rem 0;
  text-align: center;
  color: #595757;
  background-color: #fff;
}

.footer__copy small {
  font-size: 1.2rem;
  line-height: 1.8333333333;
  letter-spacing: 0.1em;
  font-weight: 300;
}

/*======================= PC =======================*/
@media screen and (min-width: 768px) {
  .footer {
    background-color: #e6e6e6;
    padding: 7rem 0 10rem 0;
  }
  .footer .inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__table {
    width: 50%;
  }
  .footer__table--title,
  .footer__table--body {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 300;
  }
  .footer__table--title {
    width: 20%;
  }
  .footer__table--body {
    width: calc(80% - 2.5rem);
  }
  .footer__container {
    width: 100%;
    margin-top: 0;
    position: relative;
  }
  .footer__container .block {
    display: flex;
  }
  .footer__container .block .footer__right {
    width: 50%;
  }
  .footer__container .block:first-of-type {
    width: 35%;
  }
  .footer__container .block:last-of-type {
    width: 65%;
  }
  .footer__left {
    padding-left: 2rem;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.2em;
  }
  .footer__left.child {
    font-size: 1.2rem;
  }
  .footer__left--item.parent {
    font-size: 1.6rem;
    line-height: 1.375;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    white-space: nowrap;
  }
  .footer__left--item.external {
    position: relative;
  }
  .footer__left--item.external::after {
    content: "";
    background: url(../img/common/external-bk.svg) no-repeat;
    width: 1rem;
    height: 1rem;
    display: inline-block;
    margin-left: 1.5rem;
  }
  .footer__right {
    width: 60%;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .footer__right--item {
    margin-bottom: 2.6rem;
  }
  .footer__right--item:last-of-type {
    position: relative;
    bottom: auto;
    left: auto;
  }
  .footer__copy {
    padding: 1rem 0;
    text-align: center;
    color: #595757;
  }
  .footer__copy small {
    font-size: 1.2rem;
    line-height: 1.8333333333;
    letter-spacing: 0.1em;
  }
}
/*====================================================
////Fixed contents
====================================================*/
/*======================= PC =======================*/
/*FV
----------------------------------------------------*/
/*======================= PC =======================*/
.contact-wrap {
  padding: 10rem 0 0 0;
}
.contact-fv__title {
  text-align: center;
  margin-top: 3rem;
}
.contact-fv__title--en, .contact-fv__title--jp {
  display: block;
  margin: auto;
}
.contact-fv__title--en {
  font-size: 3.5rem;
  line-height: 1.7142857143;
  font-weight: 300;
  letter-spacing: 0.15em;
  overflow: hidden;
}
.contact-fv__title--en .effect {
  animation-delay: 0;
}
.contact-fv__title--jp {
  font-size: 1.7rem;
  line-height: 2.3529411765;
  font-weight: 300;
  letter-spacing: 0.2em;
  overflow: hidden;
}
.contact-fv__title--jp .effect {
  animation-delay: 0.5s;
}
.contact-head {
  margin: auto;
}
.contact-head p.head {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 300;
  margin-top: 1rem;
}
.contact-head p.notice {
  font-size: 1.2rem;
  line-height: 1.75;
  font-weight: 300;
  color: #eb8c74;
  margin-top: 2rem;
}
.contact-contents {
  margin-top: 3rem;
  padding: 5rem 0;
  background-color: #f9f9f9;
}
.contact-contents__title {
  font-size: 2.6rem;
  line-height: 2.3076923077;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-align: center;
}
.contact-contents__list {
  margin: 5rem auto 0 auto;
}
.contact-contents__list li {
  width: 100%;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
  border-bottom: 1px solid #dcdddd;
  padding: 2rem 0;
}
.contact-contents__list li:last-child {
  border-bottom: none;
}
.contact-contents__list li a {
  width: 26.4rem;
  display: block;
  background-color: #f6bcb8;
  border: 2px solid #f6bcb8;
  position: relative;
  border-radius: 3.5rem;
  -webkit-border-radius: 3.5rem;
  -moz-border-radius: 3.5rem;
  -ms-border-radius: 3.5rem;
  -o-border-radius: 3.5rem;
  font-size: 2rem;
  line-height: 2.55;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin: 1.5rem auto 0 auto;
  transition: background-color 0.3s;
}
.contact-contents__list li a::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: solid 1px #595757;
  border-right: solid 1px #595757;
  position: absolute;
  right: 4rem;
  top: 2rem;
  transform: rotate(45deg);
}
.contact-contents__list li a:hover {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .contact-wrap {
    padding: 10rem 0 0 0;
  }
  .contact-fv__title {
    text-align: center;
    margin-top: 5rem;
  }
  .contact-fv__title--en, .contact-fv__title--jp {
    display: block;
    margin: auto;
  }
  .contact-fv__title--en {
    font-size: 5.8rem;
    line-height: 1.0344827586;
    font-weight: 300;
    letter-spacing: 0.15em;
  }
  .contact-fv__title--jp {
    font-size: 3rem;
    line-height: 2;
    font-weight: 300;
    letter-spacing: 0.2em;
  }
  .contact-head p {
    text-align: center;
  }
  .contact-head p.head {
    font-size: 1.9rem;
    line-height: 1.7894736842;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-top: 3rem;
  }
  .contact-head p.notice {
    font-size: 1.4rem;
    line-height: 1.8571428571;
    font-weight: 300;
    color: #eb8c74;
    margin-top: 1rem;
  }
  .contact-contents {
    margin-top: 5rem;
    padding: 7rem 0;
    background-color: #f9f9f9;
    color: #595757;
  }
  .contact-contents__title {
    font-size: 3rem;
    line-height: 2;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-align: center;
  }
  .contact-contents__list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 5rem auto 0 auto;
    width: 95%;
    white-space: nowrap;
  }
  .contact-contents__list li {
    width: 26.4rem;
    font-size: 2.2rem;
    line-height: 1.3636363636;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-align: center;
    border: none;
    padding: 0;
  }
  .contact-contents__list li a {
    font-size: 2rem;
    line-height: 2.55;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-top: 1.5rem;
  }
}
.contact-form {
  padding: 3rem 0;
}
.contact-form__title {
  font-size: 1.7rem;
  line-height: 2.7647058824;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-align: center;
}
.contact-form__body dl {
  max-width: 64rem;
  margin: auto;
}
.contact-form__body dl dt {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.contact-form__body dl dt span {
  background-color: #f6bcb8;
  display: inline-block;
  margin-left: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.9090909091;
  font-weight: 300;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  padding: 0 1rem;
}
.contact-form__body dl dd {
  margin-top: 0.5rem;
}
.contact-form__body .thanks-text {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .contact-form__body .thanks-text {
    text-align: center;
    margin-top: 5rem;
  }
}
.contact-form__body .contact-btn a {
  background-color: #f6bcb8;
  border: 2px solid #f6bcb8;
  width: 21rem;
  font-size: 1.6rem;
  line-height: 3;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  border-radius: 3.5rem;
  -webkit-border-radius: 3.5rem;
  -moz-border-radius: 3.5rem;
  -ms-border-radius: 3.5rem;
  -o-border-radius: 3.5rem;
  display: block;
  margin: 3rem auto 0 auto;
  color: #312f2f;
  transition: background-color 0.3s;
}
.contact-form__body .contact-btn a:hover {
  background-color: #fff;
}
.contact-form .form-text {
  border: 1px solid #a3a3a4;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 0.5rem 1.5rem;
  width: 100%;
}
.contact-form .form-text.textarea {
  aspect-ratio: 310/75;
}
.contact-form .form-submit {
  border: 2px solid #f6bcb8;
  background-color: #f6bcb8;
  width: 21rem;
  font-size: 1.6rem;
  line-height: 3;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  border-radius: 3.5rem;
  -webkit-border-radius: 3.5rem;
  -moz-border-radius: 3.5rem;
  -ms-border-radius: 3.5rem;
  -o-border-radius: 3.5rem;
  display: block;
  margin: 3rem auto 0 auto;
  color: #312f2f;
  transition: background-color 0.3s;
}
.contact-form .form-submit:hover {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .contact-form {
    padding: 7rem 0;
  }
  .contact-form__title {
    font-size: 3rem;
    line-height: 2;
    letter-spacing: 0.2em;
  }
}/*# sourceMappingURL=style.css.map */