/*
Theme Name: Teal 
Description: カスタムWordPressテーマ - Bootstrap5.3使用
Version: 1.0.0
Author: Teal
Text Domain: teal
*/

/*================================================================
reset
================================================================*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.6;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

/*================================================================
common
================================================================*/
:root {
  /* font-size設定 */

  --f48: clamp(
    2.25rem,
    4vw,
    3rem
  ); /*1200px以上は48px、640px以下は36px、その間は可変*/
  --f36: clamp(
    1.625rem,
    3vw,
    2.25rem
  ); /*1200px以上は36px、640px以下は26px、その間は可変*/
  --f32: clamp(
    1.5rem,
    2.666vw,
    2rem
  ); /*1200px以上は32px、640px以下は24px、その間は可変*/
  --f24: clamp(
    1.25rem,
    2vw,
    1.5rem
  ); /*1200px以上は24px、640px以下は20px、その間は可変*/
  --f20: clamp(
    1.125rem,
    1.666vw,
    1.25rem
  ); /*1200px以上は20px、640px以下は18px、その間は可変*/
  --f16: 1rem;
  --f14: 0.875rem;
  --f12: 0.75rem;

  /* padding margin width設定 */

  --spacer80: 80px;
  --spacer60: 60px;
  --spacer40: 40px;
  --spacer20: 20px;

  --w-80: 80%;

  /* color設定 */
  --color-orange: #c87e08;
  --color-blue: #0069bb;
  --color-black: #000;
  --color-white: #fff;
  --color-custom-gray1: #d9d9d9;
  --color-custom-gray2: #f3f3f3;
  --color-custom-gray3: #6b6b6b;
  --color-custom-gray4: #858686;
}

body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-size: var(--f16);
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #000;
}

img {
  width: 100%;
}

/* 共通 */

.f48 {
  font-size: var(--f48);
}

.f36 {
  font-size: var(--f36);
}

.f32 {
  font-size: var(--f32);
}

.f24 {
  font-size: var(--f24);
}

.f20 {
  font-size: var(--f20);
}

.f16 {
  font-size: var(--f16);
}

.f14 {
  font-size: var(--f14);
}

.f12 {
  font-size: var(--f12);
}

.pb-20 {
  padding-bottom: var(--spacer20);
}

.pb-40 {
  padding-bottom: var(--spacer40);
}

.pb-60 {
  padding-bottom: var(--spacer60);
}

.pb-80 {
  padding-bottom: var(--spacer80);
}

.mb-40 {
  margin-bottom: var(--spacer40);
}

.mt-40 {
  margin-top: var(--spacer40);
}

.mb-80 {
  margin-bottom: var(--spacer80);
}

.col-o {
  color: var(--color-orange);
}

.col-bg-o {
  background-color: var(--color-orange);
}

.col-bg-b {
  background-color: var(--color-blue);
}

.w-80 {
  width: var(--w-80);
}

.sp-only {
  display: block;
  line-height: 0;
}

.md-only {
  display: block;
  line-height: 0;
}

.lead {
  font-size: var(--f16);
  font-weight: 400;
}

.btn:first-child:active {
  background-color: var(--color-black);
}

/* section header */

.header-logo {
  width: 120px;
  margin: 0;
}

.navbar {
  padding: 16px 0;
}

#company,
#greeting,
#profile,
#access,
#message,
#requirements,
#sns {
  scroll-margin-top: 80px;
}

.navbar-custom {
  position: fixed;
  background-color: rgb(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 16px 0;
}

.nav-link {
  color: #fff;
}

.nav-link:hover {
  color: rgb(255, 255, 255, 0.5);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-bottom: 0;
}

.custom-hamburger .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-toggler {
  border: none;
  border-radius: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* section main */

.fv-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fv-picture {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fv-picture::before {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
}

.fv-picture::before {
  background: rgba(33, 15, 7, 0.6);
}

.fv-item {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 20px;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  text-align: center;
}

.fv-item .fv-item-text {
  line-height: 1.8;
  text-align: left;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: var(--f36);
  color: var(--color-white);
}

.fv-content {
  position: relative;
  margin-bottom: 30px;
  padding: 51px 0 79px;
  text-align: center;
}

.fv-content-link {
  position: absolute;
  right: 0;
  bottom: -32px;
  left: 0;
  width: 64px;
  height: 64px;
  margin: auto;
  border: 2px solid #fff;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  background-color: var(--color-black);
  color: var(--color-white);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.fv-content-link:hover {
  background-color: var(--color-custom-gray3);
}

/* section company */
.company .concept-item {
  padding: 0;
}

/* section contact-footer */

.contact-list img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact-list-body {
  position: relative;
  width: 480px;
  height: 200px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-list-body a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact-list li:last-child a {
  display: block;
  width: 140px;
  height: auto;
  color: var(--color-white);
}

.contact-list-body img {
  width: 100%;
  height: auto;
  -webkit-transform: scale(1);
  transform: scale(1);
  vertical-align: middle;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.contact-list-body-text {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  background: #fff;
  font-size: 16px;
  clip-path: polygon(0% 100%, 60px 0%, 100% 0%, 100% 100%);
  padding-left: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact-title,
.contact-text {
  font-weight: normal;
}

.contact-text-tel {
  color: var(--color-orange);
  font-weight: 700;
}

.btn,
.card,
.card-img-top,
.card-img {
  border-radius: 0;
  border: none;
}

.btn {
  padding: 16px 32px;
}

.contact {
  background: #6b6b6b url(./img/bg_contact.jpg) no-repeat;
  background-blend-mode: multiply;
  background-size: cover;
  height: 500px;
}

.social-icon-wrapper {
  height: 50px;
  width: auto;
}

/* section business */

.business .card-with-bg {
  background-image: url(./img/bg_bpo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.business .card-body {
  min-height: 400px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.business .card-text-left {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
}

.business .card-title {
  font-weight: bold;
  text-align: center;
}

.business .card-sx1 .card-body,
.business .card-sx2 .card-body {
  padding: 0;
  color: var(--color-white);
}

.business .card-sx1 {
  background-color: var(--color-custom-gray3);
}

.business .card-sx2 {
  background-color: var(--color-custom-gray4);
}

/* section topics */

.section-title {
  font-size: var(--f36);
}

.topics-inner {
  height: 100%;
}

.card-img-top-placeholder {
  background-color: #6c757d;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.card-lg {
  height: 275px;
}

.news-body .row > * {
  padding: 0;
}

.movie-inner {
  height: 100%;
}

.movie-inner::before {
  content: "";
  height: 180px;
  width: 100%;
  display: inline-block;
  background-color: var(--color-black);
}

.movie-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.play-button {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.play-button::before {
  content: "";
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  margin-left: 5px;
}

.news-body {
  background-color: var(--color-custom-gray1);
  margin-top: 480px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.news-list {
  overflow: hidden;
  overflow-y: scroll;
  max-height: 348px;
}

.news-item {
  margin-bottom: 1rem;
}

.news-date {
  font-size: var(--f12);
  margin-bottom: 1rem;
}

.news-text {
  font-size: 1rem;
  line-height: 1.5;
}

/* section interview */

.interview .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hover-effect--type1 {
  display: block;
  overflow: hidden;
}

.hover-effect--type1 img {
  width: 100%;
  height: auto;
  -webkit-transform: scale(1);
  transform: scale(1);
  vertical-align: middle;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.hover-effect--type1:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.staff-name {
  z-index: 1;
  position: absolute;
  width: 130px;
  height: 130px;
  padding-left: 2px;
  overflow: hidden;
}

.staff-name::before {
  z-index: -1;
  position: absolute;
  top: -1px;
  left: 0;
  border-width: 65px;
  border-style: solid;
  border-color: #fff transparent transparent #fff;
  content: "";
  -webkit-filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.staff-name-inner {
  display: block;
  margin-top: -4px;
  font-weight: 700;
  line-height: 1.8;
}

.staff-position {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100px;
  height: 35px;
  padding: 0 10px;
  color: #fff;
  font-size: 12px;
  line-height: 35px;
  text-align: center;
  background-color: var(--color-black);
}

.interview .card-body {
  background-color: var(--color-custom-gray2);
}

/* section recruit */

.recruit {
  background-color: var(--color-custom-gray2);
}

.recruit-inner {
  background-color: var(--color-blue);
}

.recruit-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  padding: 5rem 0;
}

.recruit-img {
  position: relative;
}

.recruit-img::after {
  content: "";
  display: block;
  padding-top: 50%;
}

.img-back {
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
  margin: 0 auto;
  max-width: 70%;
}

/* section partner */
#partnerCarousel {
  width: 80%;
  margin: 0 auto;
}

.partner .section-heading {
  background-color: var(--color-black);
  text-align: center;
  color: var(--color-white);
}

.partner .section-body {
  background-color: var(--color-custom-gray2);
}

.carousel-inner {
  margin: 0 auto;
}

.carousel-item .card {
  height: 100%;
}

.carousel-item .card .card-text {
  height: 52px;
}

.partner #partnerCarousel .carousel-control-prev,
.partner #partnerCarousel .carousel-control-next {
  pointer-events: auto !important;
}

.partner #partnerCarousel {
  touch-action: pan-x pan-y;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  color: #000;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon::after {
  content: "\f053"; /* Font Awesome's left arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.carousel-control-next-icon::after {
  content: "\f054"; /* Font Awesome's right arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.carousel-control-next {
  right: -10%;
}

.carousel-control-prev {
  left: -10%;
}

/* page 共通 */

.title-inner {
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.title-inner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.title-body {
  position: absolute;
  z-index: 3;
  text-align: center;
  padding: 20px 90px;
  left: auto;
  right: auto;
  bottom: 0;
  background-color: var(--color-black);
}

.title-body-text {
  font-size: var(--f32);
  color: #fff;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--color-white) !important;
  border-bottom: 1px solid #fff;
}

/* パンくずlist */

.breadcrumb {
  --bs-breadcrumb-divider: ">";
}

.breadcrumb-item {
  font-size: var(--f12);
}

/* カスタムボタン */

.btn-custom,
.btn-custom:visited {
  color: #fff;
  background-color: #000;
  border: none;
  transition: opacity 0.3s ease;
  font-size: var(--f16);
}

.btn-custom:hover {
  color: #fff;
  background-color: #000;
  opacity: 0.8;
}

/* page staff */

.inner-heading {
  position: relative;
  padding-left: 40px;
  font-size: var(--f36);
}

.inner-heading:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url("./img/icon_heading.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* page staff-details */

.inner-subheading {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: var(--f20);
}

.inner-subheading:before,
.inner-subheading:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 34px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.inner-subheading:before {
  left: 0;
}

.inner-subheading:after {
  right: 0;
}

.inner-line-text {
  position: relative;
  padding-top: 1rem;
  font-size: var(--f20);
}

.inner-line-text:before {
  position: absolute;
  left: 0;
  width: 10%;
  height: 4px;
  content: "";
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#d9d9d9),
    to(#000)
  );
  background-image: -webkit-linear-gradient(right, #d9d9d9 0%, #000 100%);
  background-image: linear-gradient(to left, #d9d9d9 0%, #000 100%);
}

.inner-line-text:before {
  top: 0;
}

.inner-line-text2 {
  position: relative;
  font-size: var(--f24);
  line-height: 2;
  padding-bottom: var(--spacer20);
}

.inner-line-text2::before {
  content: "";
  display: block;
  height: 5px;
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#6b6b6b),
    to(#fff)
  );
  background-image: -webkit-linear-gradient(right, #6b6b6b 0%, #fff 100%);
  background-image: linear-gradient(to left, #6b6b6b 0%, #fff 100%);
  width: 15%;
}

.pagination {
  background-color: var(--color-custom-gray1);
}

.card-img-left,
.card-img-right {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.card.flex-row,
.card.flex-row-reverse {
  flex-direction: column !important;
  max-width: 30%;
}

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pagination-container .btn-link {
  color: var(--color-custom-gray3);
}

.pagination-container .btn-link:hover {
  color: var(--color-custom-gray4);
}

.card.flex-row-reverse .card-body,
.card.flex-row .card-body {
  text-align: center;
}

.main-staff-details-body .row > *,
.main-company-body .row > *,
.main-recruit-body .row > * {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin: 40px 0 0;
}

/* page company */

.main-company-list.row li,
.main-recruit-list.row li,
.main-contact-list.row li {
  margin-top: 0;
}

.main-company-list .list-item,
.main-recruit-list .list-item,
.main-contact-list .list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-custom-gray2);
  padding: 16px;
}

.main-company-list .list-item2,
.main-recruit-list .list-item2,
.main-contact-list .list-item2 {
  display: flex;
  align-items: center;
  padding: 16px;
}

.main-company-list ul.list-item3,
.main-recruit-list ul.list-item3,
.main-contact-list ul.list-item3 {
  padding: 0;
  margin: 0 0 0 10px;
}

.main-company-list ul.list-item3 li,
.main-recruit-list ul.list-item3 li,
.main-contact-list ul.list-item3 li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 20px;
}

.main-company-list ul.list-item3 li::before,
.main-recruit-list ul.list-item3 li::before,
.main-contact-list ul.list-item3 li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #000;
}

.access-map {
  height: 420px;
  display: block;
}

.access-map iframe {
  height: 100%;
}

/* page business */

.catch-text {
  width: 100%;
  margin: 0 auto 80px;
  line-height: 1.6;
}

.catch-img {
  width: 100%;
  margin: 0 auto 80px;
}

.main-business-contents {
  height: 100%;
}

.main-business-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-custom-gray1);
  height: 100%;
}

.img-cover {
  object-fit: cover;
}

/* page recruit */

.main-recruit .lead-heading {
  font-size: var(--f24);
  font-weight: 600;
  margin-top: 40px;
}

.main-recruit .card-img img {
  height: 225px;
  margin-bottom: var(--spacer20);
  width: 80%;
}

/* page privacy */

a.anchor-text {
  opacity: 1;
  border-bottom: 1px solid var(--color-custom-gray3);
  transition: opacity 0.3s ease;
}

a.anchor-text:hover {
  border-bottom: 1px solid var(--color-blue);
  color: var(--color-blue);
  opacity: 0.8;
}

.notes-text {
  font-size: var(--f14);
  display: inline-block;
  margin-bottom: 8px;
}

/* page contact */

.text-required {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 6px;
  font-size: var(--f12);
}

/* page news */

.card-custom {
  border: 1px solid var(--color-custom-gray1);
  padding: 1.5rem 1rem;
  height: 230px;
  min-height: 230px;
  overflow: hidden;
}

.card-custom p {
  max-height: 80%;
  overflow: hidden;
}

.cutou2,
.cutout5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: pre-line;
}

.cutout5 {
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.text-muted {
  color: var(--color-white) !important;
  padding: 0.1rem 0.5rem;
  display: inline-block;
  margin-bottom: 6px;
  overflow: hidden;
}

.list-item-even {
  background-color: var(--color-custom-gray2);
}

.list-item {
  padding: 1rem;
}

.list-date {
  font-size: var(--f12);
}

.list-text {
  font-size: var(--f14);
}

.sidebar-card {
  border: 1px solid var(--color-custom-gray1);
  margin-bottom: 1rem;
}

.sidebar-header {
  background-color: var(--color-custom-gray2);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-custom-gray1);
}

.sidebar-list-item {
  border-bottom: 1px solid var(--color-custom-gray1);
}

.sidebar-list-item:last-child {
  border-bottom: none;
}

.sidebar-list-item a {
  padding: 0.5rem 1rem;
  display: block;
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px solid #dee2e6;
}

.accordion-button {
  padding: 0.75rem 1rem;
  background-color: #f8f9fa;
}

.accordion-item {
  border: 1px solid #dee2e6;
}

.accordion-body {
  padding: 0;
}

.accordion-list-item {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #dee2e6;
}

.accordion-list-item:last-child {
  border-bottom: none;
}

.accordion-list-item a {
  color: #212529;
  text-decoration: none;
  display: block;
}

.accordion-item:last-of-type,
.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
  border: none;
  box-shadow: none;
  background-color: var(--color-custom-gray2);
}

/* page news-details */

.main-news-details-inner .card-custom {
  border: none;
  padding: 1.5rem 1rem;
  height: 100%;
  min-height: 100%;
  overflow: initial;
  background-color: var(--color-custom-gray2);
}

.card-custom p {
  max-height: 100%;
  overflow: initial;
}

.news-pagination-container {
  display: flex;
  width: 100%;
  max-width: 600px;
  border: 1px solid var(--color-custom-gray1);
  overflow: hidden;
}
.news-pagination-link {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.5rem 1rem;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.news-pagination-link:hover {
  background-color: var(--color-custom-gray2);
}
.news-pagination-link.prev {
  justify-content: flex-start;
  border-right: 1px solid var(--color-custom-gray1);
}
.news-pagination-link.next {
  justify-content: flex-end;
}

.news-pagination-link.prev .text-label {
  margin-left: 0.5rem;
}

.news-pagination-link.next .text-label {
  margin-right: 0.5rem;
}

.news-pagination-link i {
  font-size: 1rem;
}

.fas {
  font-weight: 700 !important;
}

/* Responsive adjustments */

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1140px !important;
  }
}

/* Large以上 */

@media (min-width: 992px) {
  .navbar {
    height: 80px;
  }
  #partnerCarousel {
    width: 100%;
  }

  .w-lg-75 {
    width: 75% !important;
  }

  .md-only {
    display: none;
  }

  .img-back {
    top: -20px;
    right: 10%;
    max-width: 90%;
  }
  .news-body {
    margin-top: 0;
  }

  .carousel-control-next {
    right: 0;
  }

  .carousel-control-prev {
    left: 0;
  }

  .topics-inner {
    height: 607px;
  }
}

/* Medium以上 */

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }

  .card.flex-row,
  .card.flex-row-reverse {
    max-width: 420px;
    width: 100%;
    flex-direction: row !important;
  }

  .card-img-left,
  .card-img-right {
    width: 100px;
    height: 100px;
    object-fit: cover;
  }

  .card.flex-row-reverse .card-body {
    text-align: right !important;
  }

  .card.flex-row .card-body {
    text-align: left !important;
  }

  .access-map {
    height: 620px;
  }

  .catch-text {
    width: 80%;
  }

  .catch-img {
    width: 80%;
  }

  .business-contents {
    height: 500px;
  }

  .main-business-contents {
    height: 500px;
  }
}

/* Small以下 */

@media (max-width: 576px) {
  .btn {
    padding: 12px;
  }

  .btn-custom {
    font-size: var(--f14);
  }

  .contact-list-body {
    width: 90%;
  }

  .news-body {
    margin-top: 750px;
  }

  .card-img-top-placeholder {
    height: 240px;
  }

  .pb-80 {
    padding-bottom: var(--spacer60);
  }

  .main-company-list .list-item,
  .main-recruit-list .list-item,
  .main-contact-list .list-item {
    justify-content: start;
  }

  .title-body {
    padding: 20px 40px;
  }
}

/* ////////////////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////////////////*/

/* パーティクル用キャンバス */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* オーバーレイ（グラデーション強化） */
.title-inner .overlay {
  z-index: 1;
}

/* タイトルテキスト */
.title-body {
  z-index: 3;
}

/* フェードインアニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
