/* ----- common ----- */
:root {
  --color-blue: #005bac !important;
  --color-white: #f7f9fa;
  --color-black: #212121;
  --color-gray: #9e9e9e;
  --color-light-blue: #5591ab;
  --color-light-gray: #e0e0e0;
  --color-red: #ab0006 !important;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  width: calc(100vw - calc(100vw - 100%));
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
main {
  position: relative;
  z-index: 1;
  &::after {
    content: "";
    width: 100%;
    height: 100vh;
    background-image: url(../../img/body-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    inset: 0;
    z-index: -100;
  }
}
.sp--br {
  display: inline-block;
  @media (max-width: 767px) {
    display: block;
  }
}
.text--blue {
  color: var(--color-blue);
}
.section__wrap {
  width: 100%;
  padding: 12rem 2rem;
  margin: 0 auto;
  position: relative;
  @media (min-width: 768px) {
	max-width: 1280px;
    padding: 12rem 6rem;
  }
  &.section__wrap--plus {
	max-width: none;
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
}
.section__contents {
  @media (min-width: 768px) {
    width: 48%;
  }
  &.section__contents--right {
    @media (min-width: 768px) {
      margin-left: auto;
    }
  }
}
.section__contents--sub {
  padding-top: 6rem;
}
.section__title {
  font-weight: 500;
  font-size: 2.5rem;
  margin-bottom: 6rem;
  position: relative;
}
.section__title--left {
  width: fit-content;
  text-align: left;
  padding-left: 2rem;
  .title__deco--left {
    content: "";
    display: block;
	max-width: 375px;
    width: calc(100% + 6rem);
    height: 25px;
    background: linear-gradient(
      90deg,
      rgba(224, 224, 224, 0.5) 50.48%,
      rgba(85, 145, 171, 0.5) 100%
    );
    clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
    position: absolute;
    left: 0;
    bottom: -5px;
    z-index: -1;
  }
}
.section__title--right {
  width: fit-content;
  padding-right: 2rem;
  margin-left: auto;
  .title__deco--right {
    content: "";
    display: block;
    width: calc(100% + 6rem);
    height: 25px;
    background: linear-gradient(
      90deg,
      rgba(224, 224, 224, 0.5) 50.48%,
      rgba(85, 145, 171, 0.5) 100%
    );
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 3% 100%);
    position: absolute;
    right: 0;
    bottom: -5px;
    z-index: -1;
  }
}
.section__title--contact {
  width: fit-content;
  padding-right: 2rem;
  margin: 0 auto;
  .title__deco--left {
    content: "";
    display: block;
	max-width: 375px;
    width: calc(100% + 6rem);
    height: 25px;
    background: linear-gradient(
      90deg,
      rgba(224, 224, 224, 0.5) 51.75%,
      rgba(85, 145, 171, 0.5) 100%
    );
    clip-path: polygon(2% 0, 100% 0%, 98% 100%, 0% 100%);
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-55%);
    z-index: -1;
  }
}
.section__title--form {
  font-size: 2.3rem;
  @media (min-width: 768px) {
    font-size: 2.5rem;
  }
}
.section__text {
  margin-bottom: 3rem;
  @media (min-width: 768px) {
    margin-bottom: 6rem;
  }
}
.section__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
  @media (min-width: 768px) {
    width: 45%;
    height: 100%;
    aspect-ratio: auto;
    position: absolute;
    top: 0;
    right: 50px;
  }
  &.section__image--right {
    @media (min-width: 768px) {
      left: 50px;
    }
  }
}
.section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bread-crumb {
  width: 100%;
  padding: 4rem 2rem 0;
  @media (min-width: 768px) {
    max-width: 1280px;
    padding: 4rem 6rem 0;
	margin: 0 auto;
  }
}
.bread-crumb > span:not(:last-child) {
  padding-right: 0.6rem;
}
.bread-crumb > span:not(:first-child) {
  padding-left: 0.6rem;
}
/* ----- button ----- */
.my__button {
  text-align: center;
  @media (min-width: 768px) {
    text-align: left;
  }
  &.my__button--right {
    @media (min-width: 768px) {
      text-align: right;
    }
  }
  &.my__button--recruit {
    text-align: center;
  }
}
.my__button a {
  display: inline-flex;
  gap: 0.8rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-blue);
  border-radius: 2px;
  color: var(--color-blue);
  font-weight: 600;
  overflow: hidden;
  padding: 1.2rem 6rem;
  position: relative;
  @media (min-width: 768px) {
    padding: 1.2rem 5rem;
  }
  &::before {
    content: "";
    display: block;
    width: 0px;
    height: 86%;
    background: var(--color-light-gray);
    opacity: 0;
    box-shadow: 0 0 50px 30px var(--color-light-gray);
    transform: skewX(-20deg);
    position: absolute;
    top: 7%;
    left: -50%;
  }
  &::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../../img/arrow.svg);
  }
}
.my__button--recruit a {
  color: var(--color-light-blue);
  background-color: var(--color-white);
  border: 1px solid var(--color-light-blue);
  padding: 1.2rem 2.4rem;
  border-radius: 0.2rem;
  &::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../../img/arrow-lb.svg);
  }
}
.my__button--download a {
  color: var(--color-blue);
  background-color: var(--color-white);
  border: 1px solid var(--color-blue);
  padding: 1.2rem 2.4rem;
  border-radius: 0.2rem;
  &::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../../img/download.svg);
  }
}
.button__wrap--submit {
  padding-top: 3rem;
  text-align: center;
}
.my__button--submit {
  background-color: var(--color-blue);
  border: 1px solid var(--color-white);
  border-radius: 2px;
  color: var(--color-white);
  font-weight: 600;
  overflow: hidden;
  padding: 1.2rem 6rem;
  @media (min-width: 768px) {
    padding: 1.2rem 5rem;
  }
}
.button--sp {
  display: block;
  padding-top: 6rem;
  @media (min-width: 768px) {
    display: none;
    padding-top: 0;
  }
}
.button--pc {
  display: none;
  @media (min-width: 768px) {
    display: block;
  }
}
/* ----- hover ----- */
.header__logo a,
.header__nav--logo a,
.nav__item .nav__link,
#menu-global > li > a,
.my__button a,
.my__button--recruit a,
.my__button--mail a,
.my__button--download a .tel--sp,
.news__tag a,
.news__title a,
.news__title img,
.company__tel a,
.footer__sitemap a,
.footer__logo a,
.bread-crumb a,
.category__item a,
.nav-links a,
.officeAddress a,
.supplement--text a,
.privacy-policy-link,
.company__info a,
.sns__link a,
.pagination--detail a {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .nav__item .nav__link:hover,
  #menu-global > li > a:hover,
  .nav__item--parent:has(.nav__list--child:hover),
  #menu-global .menu-item-has-children:has(.sub-menu:hover),
  .officeAddress a:hover,
  .bread-crumb a:hover,
  .category__item a:hover {
    color: var(--color-blue);
  }
  .nav__item--parent:hover > .nav__list--child,
  #menu-global .menu-item-has-children:hover > .sub-menu,
  .nav__list--child:hover,
  #menu-global.sub-menu:hover {
    opacity: 1;
    visibility: visible;
  }
  .nav__item--child a:hover,
  #menu-global .sub-menu > li > a:hover {
    background-color: var(--color-gray);
  }
  .my__button a:hover,
  .my__button--mail a:hover,
  .my__button--download a:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
  }
  .nav-links a:hover,
  .privacy-policy-link:hover,
  .supplement--text a:hover,
  .company__info a:hover,
  .sns__link a:hover,
  .pagination--detail a:hover {
    opacity: 0.5;
  }
  .tel--sp:hover {
    background-color: var(--color-gray);
    color: var(--color-white);
  }
  .my__button a:hover::before,
  .my__button--mail a:hover::before,
  .my__button--download a:hover::before,
  .tel--sp:hover:before {
    animation: button-animation 0.5s 0s linear;
  }
  .my__button a:hover::after,
  .my__button--mail a:hover::after,
  .my__button--download a:hover::after,
  .tel--sp:hover::after {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(0deg)
      brightness(200%);
  }
  .my__button--recruit a:hover {
    background-color: var(--color-light-blue);
  }
  .news__tag a:hover {
    color: var(--color-gray);
  }
  .news__title a:hover {
    color: var(--color-blue);
    & img {
      transform: translateX(10px);
    }
  }
  .company__tel a:hover,
  .footer__sitemap a:hover {
    color: var(--color-gray);
  }
  .header__logo a:hover,
  .header__nav--logo a:hover,
  .footer__logo a:hover {
    opacity: 0.5;
  }
}
@keyframes button-animation {
  from {
    opacity: 0;
    left: -50%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 150%;
  }
}
.nav__item .nav__link:focus,
#menu-global > li > a:focus,
.nav__item--parent:has(.nav__list--child:focus),
#menu-global .menu-item-has-children:has(.sub-menu:focus) {
  color: var(--color-blue);
}
.nav__item--parent:focus-within > .nav__list--child,
#menu-global .menu-item-has-children:focus-within > .sub-menu,
.nav__list--child.focused,
#menu-global .sub-menu.focused {
  opacity: 1;
  visibility: visible;
}
.nav__item--child a:focus,
#menu-global .sub-menu a:focus {
  background-color: var(--color-gray);
}
.my__button a:active,
.my__button--submit:active {
  transform: scale(0.95);
}
/* ----- header ----- */
.header {
  .header__nav--sp {
    width: 100%;
    background-color: var(--color-white);
    padding: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    @media (min-width: 1024px) {
      display: none;
    }
  }
  .header__nav--wrap {
    width: 100%;
    box-sizing: border-box;
    padding: 2rem 2rem 8rem;
    @media (min-width: 1024px) {
      padding: 2rem 6rem;
    }
  }
  .header__logo {
    height: 45px;
    position: relative;
  }
  .header__logo img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
  .header__logo--wrap {
    display: block;
    width: 165px;
    height: auto;
    margin: 0;
    @media (min-width: 1024px) {
      width: 240px;
    }
  }
  .header__nav--logo {
    margin: 0;
  }
  .header__nav--logo img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  .header__nav {
    padding: 4rem 0 0;
    @media (min-width: 1024px) {
      padding: 0;
    }
  }
  .nav__list,
  #menu-global {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    @media (min-width: 1024px) {
      flex-direction: row;
      gap: 4rem;
    }
  }
  .nav__item:not(:last-child),
  #menu-global > li:not(:last-child) {
    border-bottom: 1px solid var(--color-gray);
    padding-bottom: 2rem;
    @media (min-width: 1024px) {
      border-bottom: none;
      padding-bottom: 0;
    }
  }
  .nav__item--parent,
  .menu-item-has-children {
    position: relative;
  }
  .nav__list--child,
  .sub-menu {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    position: relative;
    transition: max-height 0.5s ease, visibility 0.65s, opacity 0.65s;
    @media (min-width: 1024px) {
      width: auto;
      background-color: transparent;
      opacity: 0;
      overflow: visible;
      padding-top: 2rem;
      visibility: hidden;
      white-space: nowrap;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 999;
      transition: opacity 0.3s, visibility 0.3s;
    }
  }
  .nav__item--parent.is-open .nav__list--child,
  .menu-item-has-children.is-open .sub-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
  .nav__item--child,
  .sub-menu > li {
    @media (min-width: 1024px) {
      background-color: var(--color-blue);
    }
  }
  .nav__item--child a,
  .sub-menu > li > a {
    display: block;
    padding: 1rem 2rem;
    @media (min-width: 1024px) {
      color: var(--color-white);
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }
  }
  .link--icon {
    display: none;
    @media (min-width: 1024px) {
      display: inline-flex;
      padding-left: 0.3rem;
      align-items: center;
    }
  }
  .sp-toggle {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    right: 0;
    transition: transform 0.5s ease;
    @media (min-width: 1024px) {
      display: none;
    }
  }
  .nav__item--parent.is-open .sp-toggle svg,
  .menu-item-has-children.is-open .sp-toggle svg {
    transform: rotate(180deg);
  }
  .current-menu-item {
    color: var(--color-blue);
    font-weight: 500;
  }
}
/* ----- hamburger-menu ----- */
.hbg-menu {
  width: 30px;
  height: 50px;
  cursor: pointer;
  display: grid;
  place-items: center;
  place-content: center;
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 900;
  @media (min-width: 1024px) {
    display: none;
  }
}
.bar,
.bar::before,
.bar::after {
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
  transition: transform 0.5s;
}
.bar {
  display: grid;
  &::before,
  &::after {
    content: "";
    grid-area: 1 / 1;
  }
  &::before {
    transform: translateY(-8px);
  }
  &::after {
    transform: translateY(8px);
  }
}
/* オープン時のバー */
.menu-open {
  .bar {
    background-color: transparent;
    &::before {
      transform: rotate(45deg);
    }
    &::after {
      transform: rotate(-45deg);
    }
  }
}
#menu {
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  transform: translateX(100vw);
  transition: transform 0.5s ease-out;
  @media (min-width: 1024px) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    overflow: visible;
    top: 0;
    left: 0;
    transform: none;
  }
}
/* オープン時のメニュー */
.menu-open #menu {
  transform: translateX(0);
}
/* ----- calendar ----- */
.calendar__contents {
  max-width: 300px;
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 0.2rem;
  position: fixed;
  right: 0;
  bottom: 0;
  transform: translateY(calc(100% + 60px));
  z-index: 999;
  transition: bottom 0.5s ease, transform 0.5s ease;
  @media (min-width: 1024px) {
    transform: translateY(calc(100% - 60px));
    border: none;
  }
  .calendar__inner {
    width: 270px;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  .title--wrap {
    display: none;
    @media (min-width: 1024px) {
      display: block;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--color-blue);
      border: 2.5px solid var(--color-light-gray);
      border-radius: 0.2rem 0.2rem 0px 0px;
      color: var(--color-white);
      font-weight: 700;
      padding: 1.3rem 0;
      text-align: center;
    }
  }
  .em-calnav.em-calnav-prev svg,
  .em-calnav.em-calnav-next svg {
    transform: rotate(180deg) !important;
  }
  .link--icon {
    padding-left: 1.6rem;
    transition: transform 0.5s;
  }
  &.is-open {
    transform: translateY(-60px);
    @media (min-width: 1024px) {
      transform: translateY(0);
    }
  }
  &.is-open .link--icon svg {
    transform: rotate(180deg);
  }
}
.calendar-text {
  padding: 1rem 1rem 1rem 0;
}
.calendar-text p {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.calendar-text span {
  display: inline-block;
  width: 30px;
  height: 30px;
}
.calendar-text .red {
  background-color: var(--color-blue);
  border-radius: 9999px;
}
/* ----- under__menu ----- */
.under__menu--wrap {
  display: block;
  width: 100%;
  height: 60px;
  background-color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-blue);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  @media (min-width: 1024px) {
    display: none;
  }
}
.under__menu--wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  padding: 1.2rem 0.8rem;
}
.under__menu-item {
  text-align: center;
}
.under__menu-item img {
  width: 20px;
}
/* ----- fv ----- */
.fv {
  width: 100%;
  height: 100svh;
  position: relative;
  .fv__catchcopy {
    color: var(--color-white);
    font-weight: 700;
    text-shadow: 12px 18px 9px rgba(33, 33, 33, 0.03),
      7px 10px 7px rgba(33, 33, 33, 0.1), 3px 4px 5px rgba(33, 33, 33, 0.17),
      1px 1px 3px rgba(33, 33, 33, 0.2);
    position: absolute;
    left: 20px;
    bottom: 185px;
    z-index: 10;
    @media (min-width: 768px) {
      left: 60px;
    }
  }
  .catchcopy,
  .subPage__title {
    font-size: 3rem;
    @media (min-width: 768px) {
      font-size: 6rem;
    }
  }
  .lead,
  .subPage__lead {
    @media (min-width: 768px) {
      font-size: 2.5rem;
    }
  }
}
.fv.sub-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ----- about ----- */
.about {
  .section__title {
    @media (max-width: 950px) and (min-width: 768px) {
      font-size: 1.8rem;
    }
    @media (max-width: 374px) {
      font-size: 2rem;
    }
  }
  .section__title--left {
    .title__deco--left {
      width: calc(100% + 2rem);
    }
  }
  .strong--text {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .strong--text span {
    color: var(--color-blue);
    font-weight: 600;
  }
}
/* ----- recruit ----- */
.recruit {
  position: relative;
  &::after {
    content: "";
    display: block;
    max-width: 455px;
    width: 80%;
    height: 100%;
    background: linear-gradient(
      180.03deg,
      rgba(85, 145, 171, 0.5) -2.61%,
      rgba(85, 145, 171, 0.8) 99.97%
    );
    clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  .bg--image {
    width: 100%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
  }
  .bg--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section__contents--recruit {
    color: var(--color-white);
    text-align: center;
  }
  .section__title--recruit {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 0.8rem;
    text-shadow: 16px 16px 6px rgba(0, 0, 0, 0.01),
      10px 10px 6px rgba(0, 0, 0, 0.04), 6px 6px 5px rgba(0, 0, 0, 0.15),
      3px 3px 4px rgba(0, 0, 0, 0.26), 1px 1px 2px rgba(0, 0, 0, 0.29);
  }
  .section__text--recruit {
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-shadow: 16px 16px 6px rgba(0, 0, 0, 0.01),
      10px 10px 6px rgba(0, 0, 0, 0.04), 6px 6px 5px rgba(0, 0, 0, 0.15),
      3px 3px 4px rgba(0, 0, 0, 0.26), 1px 1px 2px rgba(0, 0, 0, 0.29);
  }
}
/* ----- news ----- */
.news,
.subNews,
.newsDetail {
  .news__items {
    padding: 2rem 0;
    @media (min-width: 980px) {
      display: flex;
      align-items: center;
      gap: 6rem;
    }
  }
  .news__items:not(:last-child) {
    border-bottom: 1px solid var(--color-light-gray);
  }
  .news__detail {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 1.3rem;
    @media (min-width: 980px) {
      width: 35%;
    }
  }
  .news__tag a {
    display: inline-block;
    background-color: var(--color-light-gray);
    border-radius: 0.2rem;
    padding: 0.6rem 1.2rem;
  }
  .news__title {
    width: 100%;
    padding-top: 1rem;
    @media (min-width: 980px) {
      padding-top: 0;
    }
  }
  .news__title a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .news__title img {
    width: 30px;
    height: 30px;
  }
  .my__button {
    text-align: right;
    padding-top: 6rem;
  }
}
/* ----- contact ----- */
.contact {
  .contact__items {
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    padding: 6rem 3rem;
    @media (max-width: 374px) {
      padding: 6rem 1.2rem;
    }
  }
  .contact__items--tel {
    background-color: var(--color-blue);
    background-image: url(../../img/contact-tel.svg);
    background-position: top left;
    color: var(--color-white);
  }
  .contact__items--mail {
    background-color: var(--color-light-gray);
    background-image: url(../../img/contact-mail.svg);
    background-position: top right;
    color: var(--color-blue);
  }
  .item__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 3rem;
    vertical-align: middle;
  }
  .item__title img {
    width: 40px;
    height: 40px;
  }
  .item__text {
    padding-top: 8px;
    font-size: 14px;
  }
  .my__button {
    text-align: center;
  }
  .my__button a {
    padding: 1.2rem 4rem;
    @media (max-width: 374px) {
      padding: 1.2rem 1.2rem;
    }
  }
  .my__button--mail {
    padding-bottom: 29px;
  }
}
.contact__list {
  width: 100%;
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (min-width: 961px) {
  .contact__list {
    display: flex;
    flex-direction: row;
    gap: 6rem;
  }
}
.tel--pc {
  display: none;
}
@media (min-width: 1024px) {
  .tel--pc {
    display: inline-flex;
    gap: 0.8rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-blue);
    border-radius: 2px;
    color: var(--color-blue);
    cursor: default;
    font-weight: 600;
    padding: 1.2rem 4rem;
    &::after {
      content: "";
      display: inline-block;
      width: 24px;
      height: 24px;
      background-image: url(../../img/arrow.svg);
    }
  }
}
.tel--sp {
  display: inline-flex;
  gap: 0.8rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-blue);
  border-radius: 2px;
  color: var(--color-blue);
  font-weight: 600;
  overflow: hidden;
  padding: 1.2rem 4rem;
  position: relative;
  @media (max-width: 374px) {
    padding: 1.2rem 1.2rem;
  }
  &::before {
    content: "";
    display: block;
    width: 0px;
    height: 86%;
    background: var(--color-light-gray);
    opacity: 0;
    box-shadow: 0 0 50px 30px var(--color-light-gray);
    transform: skewX(-20deg);
    position: absolute;
    top: 7%;
    left: -50%;
  }
  &::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../../img/arrow.svg);
  }
}
@media (min-width: 1024px) {
  .tel--sp {
    display: none;
    cursor: none;
  }
}
/* ----- footer ----- */
.footer {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-weight: 400;
  padding: 15rem 2rem 2rem;
  position: relative;
  z-index: 1;
  @media (min-width: 768px) {
    padding: 15rem 6rem 2rem;
  }
  .footer__contents {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    @media (min-width: 768px) {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  .footer__logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 6rem;
  }
  .footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .company__info:not(:last-of-type) {
    margin-bottom: 3rem;
  }
  .company__info h3,
  .company__tel,
  .hours__info h3 {
    font-weight: 700;
  }
  .company__info .info-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .company__info .signboard-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .hours__info {
    margin-bottom: 3rem;
  }
  .footer__sitemap > ul,
  .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .sub-menu {
    padding-top: 2rem;
  }
  .sub-menu > li {
    padding-left: 2rem;
  }
  .footer__copy {
    padding-top: 6rem;
    text-align: center;
  }
}
.sns__link {
  width: 30px;
  height: auto;
  padding-top: 3rem;
}
.sns__link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* ----- sub-page ----- */
.description__list {
  .description__item {
    @media (min-width: 768px) {
      display: flex;
    }
  }
  .description__item:not(:last-child) {
    margin-bottom: 4rem;
  }
  & dt {
    font-weight: 600;
    margin-bottom: 0;
    @media (min-width: 768px) {
      width: 30%;
      flex-shrink: 0;
    }
  }
  & dd {
    min-width: 0;
  }
  .office-info:first-child {
    margin-bottom: 2rem;
  }
  .recruit-text p:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.description__list--history {
  & dt {
    width: 100%;
    font-weight: 400;
	@media (min-width: 768px) {
      width: 20%;
    }
  }
  .description__item:not(:last-child) {
    margin-bottom: 2.5rem;
	@media (min-width: 768px) {
      margin-bottom: 1rem;
    }
  }
}
.description__list--equipment {
  & dt {
    width: 100%;
    font-weight: 400;
	@media (min-width: 768px) {
      width: 15%;
    }
  }
}
.products {
  .products__list {
    display: grid;
    gap: 6rem 4rem;
	grid-template-columns: 1fr 1fr;
    padding-top: 6rem;
    @media (min-width: 768px) {
      width: 100%;
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .products__title {
    padding-top: 1rem;
    text-align: center;
  }
  .section__text--sub.red {
    color: var(--color-red);
  }
}
.recycle--iron img,
.recycle--noiron img {
  width: 100%;
  height: auto;
  object-fit: contain;
  @media (min-width: 768px) {
    max-width: 600px;
  }
}
.subNews {
  .category__list {
    display: flex;
  }
  .category__item:not(:last-child) {
    padding-right: 2rem;
    &::after {
      content: "/";
      color: var(--color-black);
      padding-left: 2rem;
    }
  }
  .category__item.current {
    color: var(--color-blue);
    pointer-events: none;
  }
  .news__list {
    padding-top: 6rem;
  }
  .pagination--subNews {
    padding-top: 6rem;
  }
  .nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  .pagination--subNews span,
  .pagination--subNews a {
    display: block;
    background-color: var(--color-light-gray);
    padding: 0.3rem 1rem;
  }
  .pagination--subNews .current {
    background-color: var(--color-blue);
    color: var(--color-white);
    pointer-events: none;
  }
}
.newsDetail {
  .section__title {
    margin-bottom: 3rem;
  }
  .news__detail {
    width: 100%;
  }
  .news__detail {
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-light-gray);
  }
  .pagination--detail ul {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    color: var(--color-blue);
    font-weight: 500;
    margin: 0 auto;
    position: relative;
    @media (min-width: 768px) {
      width: 60%;
    }
  }
  .back {
    position: absolute;
    left: 0;
  }
  .back a::before {
    content: "<";
    padding-right: 0.8rem;
  }
  .next {
    position: absolute;
    right: 0;
  }
  .next a::after {
    content: ">";
    padding-left: 0.8rem;
  }
}
.license,
.contract {
  .documents__list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
  }
  .documents__list h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .my__button {
    text-align: left;
  }
}
.form-wrap {
  width: 100%;
  padding-top: 6rem;
  margin: 0 auto;
  @media (min-width: 768px) {
    width: 60%;
  }
  .form__inner p {
    padding-bottom: 0;
  }
  .form__inner:not(:last-child) {
    margin-bottom: 3rem;
  }
  .my-label {
    display: block;
    margin-bottom: 1rem;
  }
  .label__span {
    color: var(--color-red);
    padding-left: 0.6rem;
  }
  .form-chekbox-box {
    padding-top: 6rem;
    text-align: center;
  }
  & input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--color-gray);
    border-radius: 0.2rem;
    padding: 1rem;
  }
  input[type="number"] {
    width: 30%;
  }
  input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-gray);
    cursor: pointer;
    vertical-align: sub;
  }
  #postal,
  #age {
    width: 7em;
  }
  .up-text {
    margin-bottom: 1rem;
  }
  .privacy-policy-link {
    color: var(--color-blue);
  }
}
::placeholder {
  color: var(--color-gray);
  opacity: 0.8;
}
.faq {
  .faq__list li {
    width: 100%;
  }
  .faq__list li:not(:last-child) {
    border-bottom: 1px solid var(--color-light-gray);
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
  .faq__item {
    display: flex;
    gap: 1rem;
  }
  .question {
    color: var(--color-blue);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  .question span {
    color: var(--color-red);
  }
  .answer span {
    color: var(--color-blue);
  }
  .supplement--text {
    padding-top: 6rem;
  }
  .supplement--text a {
    color: var(--color-blue);
    font-weight: 500;
    padding: 0 1rem;
  }
}
.noPage {
  text-align: center;
  .my__button {
    padding-top: 6rem;
    text-align: center;
  }
}
/* ----- WordPress add ----- */
.page__inner {
  padding-top: 6rem;
  & p {
    padding-bottom: 2rem;
  }
}
.section__contents--sub p {
  padding-bottom: 2rem;
}
.recruit__lead {
  position: relative;
  text-align: center;
  &::after {
    content: "";
    display: block;
    max-width: 455px;
    width: 80%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(85, 145, 171, 0.2) 0%,
      rgba(85, 145, 171, 0.5) 100%
    );
    clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
}
.officeAddress {
  & p {
    padding-bottom: 1rem;
  }
  & a {
    display: inline-block;
    @media (min-width: 768px) {
      display: none;
    }
  }
  & span {
    display: none;
    @media (min-width: 768px) {
      display: inline-block;
    }
  }
}
.companyOutline .office-info p:last-child {
  padding-top: 0.8rem;
}
.googleMap__wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-top: 3rem;
  position: relative;
  @media (min-width: 768px) {
    aspect-ratio: 3 / 1;
  }
}
.googleMap__wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.wpsbc-container[data-columns] .wpsbc-calendars .wpsbc-calendar {
  margin: 0;
}
/* ----- splide ----- */
.splide,
.splide__track,
.splide__list,
.splide__slide {
  height: 100%;
}
.splide,
.splide__slide {
  overflow: hidden;
}
.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 8s ease-out;
}
.splide__slide.is-active img,
.splide__slide[class*="-active"] img {
  transform: scale(1.05);
}
.splide__slide[class*="-active"] .fv__catchcopy {
  animation: splide-fadeIn 2s ease-out both;
}
@keyframes splide-fadeIn {
  0% {
    opacity: 0;
    filter: blur(50px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.your-class-page {
  background-color: var(--color-light-gray);
  height: 4.5px;
  transition: 0.5s all;
  width: 40px;
}
.your-class-page.is-active {
  background-color: var(--color-blue);
  opacity: 1;
  width: 100px;
}
.your-class-pagination {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%);
  z-index: 10;
  @media (min-width: 768px) {
    bottom: 60px;
  }
}
.splide .your-class-pagination li {
  margin-left: 5px;
  margin-right: 5px;
}
/* ----- calendar ----- */
.em.em-calendar .em-cal-body .em-cal-day .em-cal-day-date.em-cal-day-date a,
.em.em-calendar .em-cal-body .em-cal-day .em-cal-day-date.em-cal-day-date span {
  color: var(--color-black) !important;
  background-color: transparent;
}
.em-calendar .em-cal-event {
  display: none !important;
}
.em.em-calendar .em-cal-head {
  background: var(--color-light-gray);
}
.em.em-calendar .em-cal-head > div {
  color: var(--color-black);
}
.em.em-calendar .em-cal-head > .em-cal-col-0 {
  color: var(--color-red);
}
.em.em-calendar .em-cal-head > .em-cal-col-6 {
  color: var(--color-blue);
}
.em.em-calendar .em-cal-body {
  --grid-auto-rows: auto !important;
  grid-auto-rows: auto !important;
}
.em.em-calendar .em-cal-body .em-cal-day {
  text-align: center;
}
.em.em-calendar .em-cal-body > div {
  border: none;
  border-right-width: 0;
  border-bottom: none;
  padding: 0;
}
.em.em-calendar .em-cal-body {
  border-bottom: none;
  background-color: var(--color-white);
}
.em.em-calendar .em-cal-body .em-cal-day .em-cal-day-date.em-cal-day-date a,
.em.em-calendar .em-cal-body .em-cal-day .em-cal-day-date.em-cal-day-date span {
  display: inline;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  font-size: 14px !important;
}
.em.em-calendar.size-medium
  .em-cal-body
  .em-cal-day.eventful
  .em-cal-day-date.colored
  div.ring,
.em.em-calendar.size-small
  .em-cal-body
  .em-cal-day.eventful
  .em-cal-day-date.colored
  div.ring {
  border: none !important;
}
.eventful {
  background-color: var(--color-blue);
  border-radius: 9999px;
}
.em.em-calendar .em-cal-body .em-cal-day.eventful .em-cal-day-date a,
.em.em-calendar .em-cal-body .em-cal-day.eventful-post .em-cal-day-date a,
.em.em-calendar .em-cal-body .em-cal-day.eventful-pre .em-cal-day-date a {
  border: none !important;
  pointer-events: none;
  cursor: default;
}
.em.em-calendar
  .em-cal-body
  .em-cal-day.eventful
  .em-cal-day-date.em-cal-day-date
  a,
.em.em-calendar
  .em-cal-body
  .em-cal-day.eventful
  .em-cal-day-date.em-cal-day-date
  span {
  color: var(--color-white) !important;
}
.em.em-calendar .em-cal-head > div {
  margin: 5px 0;
  padding: 0;
}
.em-calnav.em-calnav-prev,
.em-calnav.em-calnav-next {
  transform: rotate(180deg);
}
.widgettitle {
  display: none;
}
.em.em-calendar.size-small .em-cal-nav:not(.em-cal-nav-centered) {
  margin: 10px 0 0;
}
.eventful.eventful.em-cal-day {
  pointer-events: none;
  cursor: default;
}
/* ----- Download Manager ----- */
.w3eden {
  max-width: 960px;
  width: fit-content;
}
.w3eden .btn-primary {
  background-color: var(--color-blue) !important;
  border-color: var(--color-blue) !important;
  color: var(--color-white) !important;
  padding: 1.2rem 2.4rem;
  border-radius: 0.2rem;
}
.w3eden .card {
  background-color: transparent !important;
  border: none !important;
}
.ml-3 {
  margin: auto;
}
.w3eden .media-body {
  display: none;
}
.w3eden .card-body {
  width: 100%;
  display: flex !important;
  flex: auto;
  margin-top: 1rem;
}
.w3eden .btn {
  font-size: 1.6rem !important;
}
.form-chekbox-box {
  font-size: 1.5rem;
  @media (min-width: 768px) {
    font-size: 1.6rem;
  }
}
.form-chekbox-box .label__span {
  display: block;
  text-align: left;
  font-size: 1.5rem;
  @media (min-width: 768px) {
    font-size: 1.6rem;
  }
  @media (min-width: 400px) {
    display: inline;
  }
}
.wpcf7-spinner {
  display: block;
}