@charset "UTF-8";
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	font-family
	フォントファミリーの変数
------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap");
.en {
  font-family: "ropa-mix-pro", sans-serif;
}

.min {
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif !important;
}

/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
	mediaquery
	メディアクエリのmixin
------------------------------------ */
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.7;
  color: #333;
  padding-top: 90px;
}

img {
  max-width: 100%;
  height: auto;
}

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

.atag {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999999;
}

/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* Header Styles */
.header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  z-index: 99999;
  background: #FAFAFA;
  /* ヘッダー内部のレイアウト */
  /* ロゴ部分 */
  /* ナビゲーション */
  /* 右側コンテンツ */
  /* ボタン */
  /* 電話番号部分 */
}
@media (max-width: 767px) {
  .header {
    height: 70px;
  }
}
.header__inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 767px) {
  .header__inner {
    width: 100%;
  }
}
.header__logo {
  margin-right: auto;
  flex-shrink: 0;
}
.header__logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header__logo-link:hover {
  opacity: 0.7;
}
.header__logo-img {
  width: 300px;
  height: auto;
}
@media (max-width: 767px) {
  .header__logo-img {
    width: 190px;
  }
}
.header__company-name {
  font-size: 1rem;
  font-weight: 500;
  color: #313031;
  margin: 0;
  white-space: nowrap;
  display: none;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.header__nav {
  flex-grow: 0;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: visible;
}
.header__nav-item {
  overflow: visible;
}
.header__nav-link {
  text-decoration: none;
  color: #313031;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d89731;
  transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header__nav-link:hover {
  color: #d89731;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-left: 0;
}
@media (max-width: 767px) {
  .header__right {
    display: none;
  }
}
.header__buttons {
  display: flex;
  gap: 15px;
  color: #ffffff;
}
.header__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0px 25px 12px 25px;
  min-width: 130px;
  border-radius: 0 0 16px 16px;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header__button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.header__button--recruit, .header__button--contact {
  background-color: #d89731;
  position: relative;
}
.header__button--recruit::before, .header__button--contact::before {
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  top: -50px;
  content: "";
  background: #d89731;
  z-index: -1;
}
.header__button-en {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.0625rem;
  line-height: 1;
  font-family: "ropa-mix-pro", sans-serif;
}
.header__button-ja {
  font-size: 0.875rem;
  margin-top: 0;
  line-height: 1;
  letter-spacing: 0.03125rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.header__contact {
  text-align: right;
  padding-left: 5px;
  line-height: 1.2;
  margin-top: -10px;
}
.header__tel {
  font-size: 1.125rem;
  font-weight: 700;
  color: #313031;
  margin: 0;
  white-space: nowrap;
  font-family: "ropa-mix-pro", sans-serif;
  line-height: 1;
}
.header__tel span {
  color: #d89731;
  font-size: 2.5rem;
  letter-spacing: 0.03125rem;
}
.header__hours {
  font-size: 0.75rem;
  color: #313031;
  margin: 0;
  white-space: nowrap;
  text-align: left;
  padding-left: 35px;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}

.menu {
  position: fixed;
  top: 0px;
  right: 24px;
  width: 120px;
  height: 120px;
  background: transparent;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 99999;
}
@media (max-width: 767px) {
  .menu {
    display: flex;
  }
}
.menu__bar {
  display: block;
  background: #333;
  border-radius: 2px;
  margin: 0 auto;
  transition: all 0.3s;
}
.menu__bar--1 {
  width: 80px;
  height: 1px;
}
.menu__bar--2 {
  width: 56px;
  height: 1px;
}
.menu__text {
  display: block;
  font-size: vw(12px);
  color: #333;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .menu {
    width: 70px;
    height: 72px;
    top: 0px;
    right: 5px;
  }
  .menu__bar--1 {
    width: 50%;
    height: 3px;
    margin-bottom: 6px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: translate(0, -15px);
  }
  .menu__bar--2 {
    width: 30%;
    height: 3px;
    margin-bottom: 10px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: translate(33%, -5px);
  }
  .menu__text {
    font-size: 0.625rem;
    margin-top: 19px;
    letter-spacing: 0.09375rem;
    font-family: "ropa-mix-pro", sans-serif;
  }
}

.menu-on .menu__bar--1 {
  width: 50%;
  transform: rotate(45deg) translate(-10px, -10px);
}
.menu-on .menu__bar--2 {
  width: 50%;
  transform: rotate(-45deg) translate(10px, -10px);
}

.close {
  position: fixed;
  width: 70px;
  height: 72px;
  top: 10px;
  right: 5px;
  z-index: 999999999999999;
  opacity: 0;
  display: none;
  pointer-events: none;
}

.close-on {
  opacity: 1;
  display: block;
  pointer-events: all;
}

.board {
  width: 100vw;
  height: 2500px;
  position: fixed;
  left: 0;
  top: 0;
  background: #FAFAFA;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  transform: translate(100%, 0);
  transition: transform 0.3s ease-in-out;
}

.board-on {
  transform: translate(0, 0);
}

.menu-panel {
  width: 100vw;
  min-height: 0;
  max-height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 90px 0 0 0;
  z-index: 1000000000000000000;
}
.menu-panel__header {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 32px;
  margin-bottom: 32px;
}
.menu-panel__logo {
  width: 48px;
  height: auto;
  margin-right: 12px;
}
.menu-panel__company {
  font-size: 1.5rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  color: #333;
  font-weight: 700;
  margin-top: 8px;
}
.menu-panel__close {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  padding: 0;
}
.menu-panel__close-bar {
  width: 36px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  margin-bottom: 7px;
}
.menu-panel__close-bar:last-child {
  margin-bottom: 0;
  transform: rotate(45deg) translateY(-10px);
}
.menu-panel__close-bar:first-child {
  transform: rotate(-45deg) translateY(10px);
}
.menu-panel__close-text {
  font-size: 12px;
  color: #333;
  margin-top: 2px;
  letter-spacing: 0.08em;
}
.menu-panel__main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
.menu-panel__title {
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.125rem;
  line-height: 1;
}
.menu-panel__nav {
  flex: 1;
}
.menu-panel__nav ul {
  width: 75%;
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-top: 30px;
  padding-left: 6%;
}
.menu-panel__nav li {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .menu-panel__nav li {
    margin-bottom: 10px;
  }
}
.menu-panel__nav li:last-child {
  margin-bottom: 0;
}
.menu-panel__nav a {
  display: block;
  text-align: left;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 0.2;
}
.menu-panel__nav a .en {
  font-size: 1.5rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .menu-panel__nav a .en {
    display: block;
  }
}
.menu-panel__nav a .ja {
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-size: 0.875rem;
  color: #444;
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.08em;
}
.menu-panel__actions {
  gap: 24px;
  margin-left: 40px;
  margin-top: 24px;
  position: absolute;
  right: 0;
  top: 145px;
  margin: auto;
  height: 250px;
}
.menu-panel__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 30px;
  border-radius: 20px 0 0 20px;
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: #d89731;
  color: #fff;
  border: none;
  margin-bottom: 0;
  text-align: center;
  line-height: 1;
}
.menu-panel__btn .en {
  font-size: 1.5rem;
}
.menu-panel__btn .ja {
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-align: center;
}
.menu-panel__btn--contact {
  margin-top: 12px;
}
.menu-panel__tel {
  width: 90%;
  margin: 48px auto 0;
  padding: 20px 0 25px 0;
  border: 3px solid #d89731;
  border-radius: 16px;
  text-align: center;
  line-height: 1;
  position: relative;
}
.menu-panel__tel .tel-label {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 1.125rem;
  color: #313031;
  margin-right: 0px;
  font-weight: bold;
}
.menu-panel__tel .tel-number {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 2.5rem;
  color: #d89731;
  font-weight: 700;
  margin-right: 8px;
}
.menu-panel__tel .tel-hours {
  display: block;
  font-size: 1rem;
  color: #333;
  margin-top: 8px;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.menu-panel__footer {
  width: 90%;
  margin: 40px auto 0;
  display: block;
  gap: 32px;
  text-align: right;
}
.menu-panel__footer a {
  color: #333;
  font-size: 0.75rem;
  text-decoration: none;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  letter-spacing: 0.08em;
  display: block;
  line-height: 2.5;
}
.menu-panel__side-copyright {
  position: absolute;
  right: 2.5%;
  top: 45%;
  writing-mode: vertical-rl;
  font-size: 0.625rem;
  color: #888;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  letter-spacing: 0.08em;
}
.menu-panel__item--has-children {
  position: relative;
}
.menu-panel__item--has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.menu-panel__item--has-children .accordion-arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: url("../../assets/img/w-arr.svg") no-repeat center/contain;
  transition: transform 0.3s;
}
.menu-panel__item--has-children.is-open .accordion-arrow {
  transform: rotate(180deg);
}
.menu-panel__item--has-children .menu-panel__sub-list {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 0;
  margin-top: 0;
  font-size: 0.875rem;
  margin-left: 0;
}
.menu-panel__item--has-children .menu-panel__sub-list .ja,
.menu-panel__item--has-children .menu-panel__sub-list .en {
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .menu-panel__item--has-children .menu-panel__sub-list {
    padding-left: 0px;
    background: none !important;
    box-shadow: none !important;
  }
}
.menu-panel__item--has-children.is-open .menu-panel__sub-list {
  padding-top: 10px;
}
.menu-panel__sub-list a {
  font-size: 1rem;
  font-weight: 400;
  padding-left: 16px;
}
.menu-panel__parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  background: none;
  border: none;
  padding: 18px 0 18px 8px;
  color: #222;
  transition: background 0.2s, color 0.2s;
}
.menu-panel__parent .menu-panel__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.menu-panel__parent .accordion-arrow {
  margin-left: 12px;
  width: 24px;
  height: 24px;
  background: url("../../assets/img/w-arr.svg") no-repeat center/contain;
  transition: transform 0.3s, filter 0.2s;
  filter: grayscale(1);
}
.menu-panel__parent .en {
  font-size: 1.25rem;
  font-weight: 700;
}
.menu-panel__parent .ja {
  font-size: 0.75rem;
  color: #666;
  margin-top: 2px;
}

.header__nav-item--has-mega {
  position: relative;
}
.header__nav-item--has-mega:hover .mega-menu,
.header__nav-item--has-mega .mega-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu {
  position: absolute;
  left: -50px;
  top: 140%;
  min-width: 160px;
  background: #fff;
  border: 2px solid #222;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  padding: 18px 0 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mega-menu__arrow {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 18px;
  overflow: hidden;
}
.mega-menu__arrow::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #313031;
  border-left: 2px solid #222;
  border-top: 2px solid #222;
  transform: rotate(45deg);
  position: absolute;
  left: 4px;
  top: 12px;
  box-sizing: border-box;
}
.mega-menu__title {
  font-size: 1.5rem;
  color: #222;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 500;
}
.mega-menu__list {
  width: 80%;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
.mega-menu__item {
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}
.mega-menu__item:last-child {
  border-bottom: none;
}
.mega-menu__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0px;
  color: #222;
  font-size: 0.75rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s, background 0.2s;
  background: transparent;
  border-radius: 0 0 16px 16px;
}
.mega-menu__item a .mega-menu__icon {
  margin-left: 8px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-menu__item a:hover {
  color: #d89731;
}
.mega-menu__item a:hover .mega-menu__icon--arrow::after {
  background: #d89731;
  background-image: url("../../assets/img/w-arr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 6px;
}
.mega-menu__icon--arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  background: none;
  position: relative;
}
.mega-menu__icon--arrow::after {
  content: "";
  width: 16px;
  height: 16px;
  background: #313031;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 13px;
  transform: translateY(-50%);
  transition: background 0.3s ease;
  background-image: url("../../assets/img/w-arr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 12px;
  pointer-events: none;
}

body.no-scroll,
html.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed;
  width: 100vw;
}

.menu-panel__item--has-children {
  transition: background 0.2s;
}

.menu-panel__parent {
  width: 76%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  font-weight: bold;
  background: none;
  border: none;
  padding: 18px 0 18px 0;
  color: #222;
  transition: background 0.2s, color 0.2s;
}
.menu-panel__parent .menu-panel__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.menu-panel__parent .accordion-arrow {
  margin-left: 12px;
  width: 24px;
  height: 24px;
  background: #313031;
  background-image: url("../../assets/img/w-arr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 12px;
  border-radius: 100px;
  transform: rotate(90deg);
  transition: transform 0.3s, filter 0.2s;
  filter: grayscale(1);
}
.menu-panel__parent .en {
  font-size: 1.5rem;
  font-weight: 700;
}
.menu-panel__parent .ja {
  font-size: 0.875rem;
  color: #313031;
  margin-top: 2px;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
}

.menu-panel__item--has-children.is-open .accordion-arrow {
  background: #d89731;
  background-image: url("../../assets/img/w-arr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 12px;
  border-radius: 100px;
  transform: rotate(-90deg);
  filter: none !important;
}

.menu-panel__sub-list {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 0;
  margin-top: 0;
  font-size: 0.875rem;
}
.menu-panel__sub-list .ja,
.menu-panel__sub-list .en {
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .menu-panel__sub-list {
    padding-left: 0px;
    background: none !important;
    box-shadow: none !important;
  }
}

.menu-panel__sub-list li {
  border-bottom: 1px solid #c7c7c7;
}
@media (max-width: 767px) {
  .menu-panel__sub-list li {
    background: none !important;
    box-shadow: none;
    border-radius: 0 !important;
  }
}
@media (max-width: 767px) {
  .menu-panel__sub-list li:last-child {
    border-bottom: 2px solid #313031;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .menu-panel__sub-list li:first-child {
    border-top: 2px solid #313031;
    padding-top: 10px;
  }
}

.menu-panel__sub-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: #333;
  padding: 14px 0 14px 24px;
  transition: background 0.2s, color 0.2s;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
}
.menu-panel__sub-list a .arrow {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  background: #313031;
  background-image: url("../../assets/img/w-arr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 6px;
  flex-shrink: 0;
  border-radius: 100px;
}

/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    共通パーツ読み込み
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    共通パーツ読み込み
------------------------------------ */
/* ------------------------------
      ページフッター
  ------------------------------ */
.footer {
  padding: 80px 0 20px;
  border-top: 32px solid #232584;
  position: relative;
  z-index: 10;
  background: #FAFAFA;
}
.footer__inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  min-height: 240px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 600px;
}
.footer__logo {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .footer__logo {
    margin-bottom: 30px;
  }
}
.footer__logo img {
  width: 219px;
  height: auto;
}
@media (max-width: 767px) {
  .footer__logo img {
    width: 219px;
  }
}
.footer__company {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #313031;
}
.footer__info {
  margin-bottom: 15px;
}
.footer__contact {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.footer__tel, .footer__fax {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer__tel .footer__label, .footer__fax .footer__label {
  font-size: 0.875rem;
  color: #313031;
}
.footer__tel a, .footer__tel span, .footer__fax a, .footer__fax span {
  font-size: 0.875rem;
  color: #313031;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer__tel a:hover, .footer__fax a:hover {
    text-decoration: underline;
  }
}
.footer__time {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__time-label {
  font-size: 0.875rem;
  color: #313031;
}
@media (max-width: 767px) {
  .footer__time-label {
    font-size: 0.75rem;
  }
}
.footer__time-hours {
  font-size: 0.875rem;
  color: #313031;
}
@media (max-width: 767px) {
  .footer__time-hours {
    font-size: 0.75rem;
  }
}
.footer__address {
  font-size: 0.875rem;
  color: #313031;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .footer__address {
    font-size: 0.75rem;
  }
}
.footer__nav {
  position: absolute;
  right: 40px;
  bottom: 0;
  padding-top: 0;
}
@media (max-width: 767px) {
  .footer__nav {
    position: relative;
    right: 0;
    bottom: 0;
    padding-top: 0;
  }
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}
@media (max-width: 767px) {
  .footer__links {
    gap: 5px;
    margin-top: 50px;
  }
}
.footer__links li a {
  font-size: 0.875rem;
  color: #313031;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__links li a:hover {
    opacity: 0.7;
  }
}
.footer__copyright {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  text-align: left;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .footer__copyright {
    width: 80%;
  }
}
.footer__copyright small {
  font-size: 0.75rem;
  color: #999;
}
@media (max-width: 767px) {
  .footer__copyright small {
    font-size: 0.625rem;
  }
}

/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    会社ページのスタイル
------------------------------------ */
/* 代表挨拶セクション */
.companyMessage {
  width: 100vw;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .companyMessage {
    padding: 40px 0;
  }
}
.companyMessage__title {
  margin-bottom: 120px;
  text-align: center;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .companyMessage__title {
    margin-bottom: 40px;
    margin-top: 10px;
  }
}
.companyMessage__title-en {
  display: block;
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 4.0625rem;
  color: #232323;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .companyMessage__title-en {
    font-size: 3rem;
    margin-bottom: 0px;
    line-height: 1.3;
  }
}
.companyMessage__title-ja {
  display: block;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1.25rem;
  color: #232323;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .companyMessage__title-ja {
    font-size: 1rem;
  }
}
.companyMessage__inner {
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 767px) {
  .companyMessage__inner {
    flex-wrap: wrap;
  }
}
.companyMessage__img {
  width: 40%;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .companyMessage__img {
    width: 100%;
  }
}
.companyMessage__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.companyMessage__content {
  width: 45%;
  min-width: 0;
}
@media (max-width: 767px) {
  .companyMessage__content {
    width: 85%;
    margin: auto;
  }
}
.companyMessage__lead {
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-size: 2rem;
  color: #232323;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 32px;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .companyMessage__lead {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}
.companyMessage__text {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1rem;
  color: #232323;
  line-height: 2.2;
  letter-spacing: 0.08em;
}
.companyMessage__text p {
  margin-bottom: 18px;
}
.companyMessage__text p:last-child {
  margin-bottom: 0;
}

/* 企業理念セクション */
.companyPhilosophy {
  width: 100vw;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .companyPhilosophy {
    padding: 20px 0 70px 0;
  }
}
.companyPhilosophy__inner {
  width: 95%;
  background: linear-gradient(0deg, rgb(35, 37, 132) 0%, rgb(108, 197, 201) 100%);
  position: relative;
  margin: auto;
  padding: 120px 0;
  border-radius: 0 0 80px 80px;
}
@media (max-width: 767px) {
  .companyPhilosophy__inner {
    width: 100%;
    padding: 60px 0 100px 0;
  }
}
.companyPhilosophy__title {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 767px) {
  .companyPhilosophy__title {
    margin-bottom: 40px;
  }
}
.companyPhilosophy__title-en {
  display: block;
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 4.0625rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .companyPhilosophy__title-en {
    font-size: 3rem;
    margin-bottom: 0px;
    line-height: 1.3;
  }
}
.companyPhilosophy__title-ja {
  display: block;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .companyPhilosophy__title-ja {
    font-size: 1rem;
  }
}
.companyPhilosophy__lead {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 5.5rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .companyPhilosophy__lead {
    font-size: 2.5rem;
  }
}
.companyPhilosophy__lead img {
  text-align: center;
  margin: auto;
  display: block;
  width: 100%;
  max-width: 638px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
}
.companyPhilosophy__text {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 2rem;
  color: #ffffff;
  line-height: 2.2;
  text-align: center;
}
@media (max-width: 767px) {
  .companyPhilosophy__text {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
.companyPhilosophy__text p {
  margin-bottom: 18px;
}
.companyPhilosophy__text p:last-child {
  margin-bottom: 0;
}
.companyPhilosophy__text p img {
  text-align: center;
  margin: auto;
  display: block;
  width: 100%;
  max-width: 786px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .companyPhilosophy__text p img {
    width: 80%;
    margin-top: 50px;
  }
}

/* 会社概要セクション */
.companyOverview {
  width: 100vw;
  min-height: 100vh;
  background-color: #FAFAFA;
  position: relative;
  padding: 80px 0;
}
.companyOverview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg width='20' height='20' xmlns='http://www.w3.org/2000/svg'><line x1='0' y1='0' x2='0' y2='20' stroke='%23c7c7c7' stroke-width='2' stroke-dasharray='4%2C3'/><line x1='0' y1='0' x2='20' y2='0' stroke='%23c7c7c7' stroke-width='2' stroke-dasharray='4%2C3'/></svg>");
  background-repeat: repeat;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
.companyOverview__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .companyOverview__inner {
    width: 100%;
  }
}
.companyOverview__title {
  text-align: center;
  margin-bottom: 56px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .companyOverview__title {
    width: 80%;
    margin: auto;
    margin-bottom: 56px;
  }
}
.companyOverview__title-en {
  display: block;
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 4.0625rem;
  color: #232323;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .companyOverview__title-en {
    font-size: 3rem;
    line-height: 1.2;
  }
}
.companyOverview__title-ja {
  display: block;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1.25rem;
  color: #232323;
  letter-spacing: 0.12em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .companyOverview__title-ja {
    font-size: 1rem;
  }
}
.companyOverview__table {
  background: #fff;
  padding: 80px;
  max-width: 1160px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .companyOverview__table {
    border-radius: 0;
    padding: 70px 40px;
  }
}
.companyOverview__cols {
  display: flex;
  gap: 48px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .companyOverview__cols {
    display: block;
    border-top: 1px solid #c7c7c7;
    padding-top: 25px;
  }
}
.companyOverview__col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .companyOverview__col {
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.companyOverview__col div {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #c7c7c7;
}
@media (max-width: 767px) {
  .companyOverview__col div {
    gap: 15px;
    margin-bottom: 10px;
  }
}
.companyOverview__col div:first-child {
  padding-top: 25px;
  border-top: 1px solid #c7c7c7;
}
@media (max-width: 767px) {
  .companyOverview__col div:first-child {
    padding-top: 0px;
    border-top: none;
  }
}
.companyOverview__col dt {
  width: 110px;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1rem;
  color: #232323;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .companyOverview__col dt {
    width: 65px;
  }
}
.companyOverview__col dd {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1rem;
  color: #232323;
  margin: 0;
  line-height: 1.8;
  word-break: break-all;
}

/* 会社アクセスセクション */
.companyAccess {
  padding: 100px 0 120px 0;
}
@media (max-width: 767px) {
  .companyAccess {
    padding: 70px 0;
  }
}
.companyAccess__inner {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .companyAccess__inner {
    width: 100%;
  }
}
.companyAccess__title {
  text-align: center;
  margin-bottom: 56px;
}
.companyAccess__title-en {
  display: block;
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 4.0625rem;
  color: #232323;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .companyAccess__title-en {
    font-size: 3rem;
    line-height: 1.2;
  }
}
.companyAccess__title-ja {
  display: block;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1.25rem;
  color: #232323;
  letter-spacing: 0.12em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .companyAccess__title-ja {
    font-size: 1rem;
  }
}
.companyAccess__cols {
  display: flex;
  gap: 120px;
}
@media (max-width: 767px) {
  .companyAccess__cols {
    flex-direction: column;
    gap: 32px;
  }
}
.companyAccess__col--left {
  flex: 1 1 0;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}
@media (max-width: 767px) {
  .companyAccess__col--left {
    width: 85%;
    min-width: 0;
    margin: auto;
  }
}
.companyAccess__col--right {
  flex: 1 1 0;
  min-width: 560px;
  display: flex;
}
@media (max-width: 767px) {
  .companyAccess__col--right {
    width: 85%;
    min-width: 0;
    margin: auto;
    margin-top: 32px;
  }
}
.companyAccess__photo {
  width: 100%;
  height: 448px;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: top !important;
  line-height: 1 !important;
}
@media (max-width: 767px) {
  .companyAccess__photo {
    max-width: 100%;
    height: auto;
  }
}
.companyAccess__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.companyAccess__info img {
  width: 300px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .companyAccess__info img {
    width: 100%;
  }
}
.companyAccess__info-company {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1.5rem;
  color: #232323;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.companyAccess__info-tel {
  font-size: 1.5rem;
  font-weight: 700;
  color: #38403b;
}
.companyAccess__info-tel .companyAccess__info-tel-number {
  color: #c8942d;
  font-size: 3.375rem;
  font-weight: bold;
  font-family: "ropa-mix-pro", sans-serif;
}
.companyAccess__info-hours {
  font-size: 0.75rem;
  color: #232323;
  margin-bottom: 8px;
}
.companyAccess__info-fax {
  font-size: 1.5rem;
  font-weight: 700;
  color: #232323;
  font-family: "ropa-mix-pro", sans-serif;
}
.companyAccess__address-block {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
@media (max-width: 767px) {
  .companyAccess__address-block {
    display: block;
    flex-direction: unset;
    align-items: flex-start;
    gap: 8px;
  }
}
.companyAccess__info-address {
  font-size: 1rem;
  color: #232323;
  margin-bottom: 0;
  position: relative;
  padding-top: 8px;
}
.companyAccess__info-mapbtn {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #c8942d;
  border-radius: 24px;
  color: #c8942d;
  font-size: 0.75rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  margin-left: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .companyAccess__info-mapbtn {
    font-size: 0.75rem;
    margin-left: 0;
    position: relative;
    left: 0;
    margin-top: 15px;
  }
}
.companyAccess__info-mapbtn:hover {
  background: #c8942d;
  color: #fff;
}
.companyAccess__map {
  margin-top: 15px;
}
.companyAccess__map iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  background: #fff;
}
@media (max-width: 767px) {
  .companyAccess__map iframe {
    height: 350px;
  }
}

.wrapper {
  overflow: hidden;
}

.secondFv {
  width: 100vw;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .secondFv {
    padding: 0 auto;
    min-height: 250px;
  }
}
.secondFv__inner {
  width: 100vw;
  max-width: 100vw;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  overflow: visible;
}
@media (max-width: 767px) {
  .secondFv__inner {
    min-height: auto;
  }
}
.secondFv__inner::before {
  width: 100%;
  height: 400px;
  background: linear-gradient(0deg, rgb(35, 37, 132) 0%, rgb(108, 197, 201) 100%);
  left: 0;
  top: -30px;
  content: "";
  position: absolute;
  z-index: -1;
}
@media (max-width: 767px) {
  .secondFv__inner::before {
    height: 160px;
  }
}
.secondFv__left {
  width: 55vw;
  min-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8vw;
  position: relative;
  z-index: 9999;
}
.secondFv__en {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 6.25rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1;
  line-height: 1;
}
@media (max-width: 767px) {
  .secondFv__en {
    font-size: 4.0625rem;
  }
}
.secondFv__ja {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 48px;
  letter-spacing: 0.2em;
  margin-left: 5px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .secondFv__ja {
    font-size: 1.25rem;
  }
}
.secondFv__right {
  width: 50vw;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  z-index: 1;
  overflow: visible;
  right: 0;
  top: 0;
  margin: auto;
  transform: scale(1.5);
  z-index: 10;
}
@media (max-width: 767px) {
  .secondFv__right {
    width: 55vw;
    top: 65px;
    transform: scale(1);
  }
}
.secondFv__right img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right center;
  object-position: right center;
  border-radius: 0;
  display: block;
  box-shadow: none;
}
@media (max-width: 767px) {
  .secondFv__right img {
    height: 250px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

.secSimple {
  width: 100vw;
  background: linear-gradient(0deg, rgb(35, 37, 132) 0%, rgb(108, 197, 201) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.75rem 0 4.375rem 0;
  margin-bottom: 30px;
}
.secSimple__inner {
  width: 100%;
  text-align: center;
  line-height: 1.2;
}
.secSimple__en {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 3rem;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .secSimple__en {
    font-size: 3rem;
    letter-spacing: 0;
  }
}
.secSimple__ja {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.12em;
  margin: 0;
}
@media (max-width: 767px) {
  .secSimple__ja {
    font-size: 1rem;
  }
}

.banner__inner {
  width: 100%;
  position: relative;
}
.banner__inner-img {
  width: 60%;
  max-width: 560px;
  height: 100%;
  margin: 65px auto;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 767px) {
  .banner__inner-img {
    width: 80%;
  }
}
.banner__inner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
}
.banner__inner-img:hover {
  opacity: 0.7;
}
.banner__inner-img:hover img {
  transform: translate(0, -5px);
}

/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    共通パーツ読み込み
------------------------------------ */
/* ------------------------------
      ローディング用
  ------------------------------ */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  z-index: 10000000000000000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.loading-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.loading-logo {
  margin-bottom: 2rem;
}
.loading-logo .logo-img {
  max-width: 200px;
  height: auto;
  opacity: 0;
  animation: logoFadeIn 1s ease 0.3s forwards;
}

.loading-progress .progress-bar {
  width: 300px;
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.loading-progress .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
  position: relative;
}
.loading-progress .progress-bar .progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    インデックスページのスタイル
------------------------------------ */
.fv {
  width: 100%;
  height: calc(100vh - 90px);
  position: relative;
  background-size: cover;
  align-items: center;
  position: relative;
  top: 0;
}
@media (max-width: 767px) {
  .fv {
    height: calc(75vh - 90px);
  }
}
.fv__content {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  /* mix-blend-mode: difference; */
}
.fv__title {
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  color: #313031;
  margin-bottom: 20px;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .fv__title {
    padding-top: 26px;
  }
}
.fv__title-main {
  font-size: 4.0625rem;
  line-height: 1.3;
  letter-spacing: 0.3125rem;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .fv__title-main {
    font-size: 2.5rem;
  }
}
.fv__title-main span {
  display: block;
  letter-spacing: 0.5rem;
}
.fv__title-sub {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.09375rem;
  color: #313031;
  font-style: italic;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .fv__title-sub {
    font-size: 1rem;
    padding-top: 10px;
  }
}
.fv__scroll {
  position: absolute;
  bottom: 100px;
  left: 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media (max-width: 767px) {
  .fv__scroll {
    bottom: 0px;
    left: -1px;
  }
}
.fv__scroll-text {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.5rem;
  color: #666;
  position: relative;
  padding-left: 35px;
  font-weight: bold;
}
.fv__scroll-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  width: 1px;
  height: 300px;
  background: #666;
}
@media (max-width: 767px) {
  .fv__scroll-text::before {
    height: 287px;
  }
}
.fv__scroll-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  width: 1px;
  height: 30px;
  background: #e4a853;
  animation: scrollDown 2s ease-in-out infinite;
  transition: all 0.3s ease;
}
.fv__scroll-line {
  display: none;
}
.fv .swiper {
  width: 88%;
  height: 80vh;
  position: absolute;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  background: #f5f5f5;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .fv .swiper {
    width: 82%;
    height: 65vh;
  }
}
.fv .swiper-slide {
  width: 100%;
  height: 100%;
}
.fv__slider-item {
  width: 100%;
  height: 100%;
  position: relative;
}
.fv__slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  opacity: 0.2;
}
@media (max-width: 767px) {
  .fv__slider-item::before {
    width: 80%;
    opacity: 0.2;
  }
}
.fv__slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.fv .swiper-pagination {
  position: absolute;
  right: 8vw;
  bottom: -30px;
  left: auto !important;
  width: auto;
  display: flex;
  gap: 5px;
  z-index: 10;
}
@media (max-width: 767px) {
  .fv .swiper-pagination {
    right: 5vw;
  }
}
.fv .swiper-pagination-bullet {
  width: 24px;
  height: 1px;
  background: #38403b;
  border-radius: 0 !important;
  opacity: 1;
  margin: 0;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
}
.fv .swiper-pagination-bullet-active {
  background: #e4a853;
  transform: scale(1.2);
  height: 2px;
}

.about {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding-bottom: 0px;
  }
}
.about__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 120px;
}
@media (max-width: 767px) {
  .about__inner {
    flex-wrap: wrap;
    gap: 80px;
  }
}
.about__content {
  width: 80%;
  margin: auto;
  order: 1;
  padding-right: 10%;
}
@media (max-width: 767px) {
  .about__content {
    padding-right: 0;
  }
}
.about__text-content {
  margin-bottom: 0px;
}
.about__title {
  margin-bottom: 40px;
}
.about__title-main {
  display: block;
  font-size: 2rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  color: #313031;
  margin-bottom: 15px;
  letter-spacing: 0.125rem;
}
@media (max-width: 767px) {
  .about__title-main {
    font-size: 1.5rem;
  }
}
.about__title-sub {
  display: block;
  font-size: 1.25rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  color: #313031;
  letter-spacing: 0.125rem;
}
.about__description p {
  font-size: 1rem;
  line-height: 2;
  color: #313031;
  margin-bottom: 20px;
  letter-spacing: 0.03125rem;
  font-weight: 500;
}
.about__description p:last-child {
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .about__description p:last-child {
    margin-bottom: 40px;
  }
}
.about__link {
  display: table;
  padding: 15px 40px;
  border: 1px solid #d89731;
  color: #d89731;
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
  transition: all 0.3s ease;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin-left: auto;
  text-align: right;
}
@media (max-width: 767px) {
  .about__link {
    text-align: center;
    font-size: 1rem;
    margin: auto;
  }
}
.about__link:hover {
  background: #e4a853;
  color: #ffffff;
}
.about__quality {
  padding: 40px;
  background: #ffffff;
}
.about__quality-title {
  font-size: 1.25rem;
  color: #313031;
  margin-bottom: 20px;
  letter-spacing: 0.0625rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .about__quality-title {
    font-size: 1.125rem;
    text-align: center;
  }
}
.about__quality-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #313031;
  letter-spacing: 0.03125rem;
}
.about__image {
  width: 55%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about__image {
    width: 100%;
    order: 2;
  }
}
.about__image img {
  width: 100%;
  height: 730px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .about__image img {
    height: 400px;
  }
}

.business {
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .business {
    padding: 0px 0 80px 0;
  }
}
.business__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .business__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.business__col--left {
  flex: 1;
  min-width: 320px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 32px;
}
@media (max-width: 767px) {
  .business__col--left {
    width: 92.5%;
    min-width: auto;
    max-width: auto;
    margin: auto;
  }
}
.business__col--right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 150px;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .business__col--right {
    padding-top: 50px;
    margin: auto;
  }
}
.business__header {
  margin-bottom: 10px;
  position: relative;
  padding: 90px 0 0 0;
}
@media (max-width: 767px) {
  .business__header {
    padding: 80px 0 0px 0;
  }
}
.business__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 110%;
  z-index: 1;
}
.business__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200vw;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg width='20' height='20' xmlns='http://www.w3.org/2000/svg'><line x1='0' y1='0' x2='0' y2='20' stroke='%23c7c7c7' stroke-width='2' stroke-dasharray='4%2C3'/><line x1='0' y1='0' x2='20' y2='0' stroke='%23c7c7c7' stroke-width='2' stroke-dasharray='4%2C3'/></svg>");
  opacity: 0.4;
  background-size: 20px 20px;
  z-index: 2;
}
.business__header > * {
  position: relative;
  z-index: 3;
}
.business__title {
  margin-bottom: 60px;
  text-align: left;
}
.business__title-en {
  display: block;
  font-size: 4.0625rem;
  font-family: "ropa-mix-pro", sans-serif;
  letter-spacing: 0.125rem;
  color: #313031;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .business__title-en {
    font-size: 3rem;
  }
}
.business__title-ja {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.125rem;
  color: #313031;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: bold;
}
@media (max-width: 767px) {
  .business__title-ja {
    font-size: 1rem;
  }
}
.business__lead {
  display: block;
}
@media (max-width: 767px) {
  .business__lead {
    flex-wrap: wrap;
    margin-top: -71px;
    position: relative;
    padding-top: 40px;
  }
}
.business__lead-title {
  width: 100%;
  font-size: 2rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.125rem;
  color: #333;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .business__lead-title {
    font-size: 1.5rem;
    width: 100%;
  }
}
.business__lead-title span {
  display: block;
}
.business__lead-text {
  width: 100%;
  font-size: 1rem;
  line-height: 2;
  color: #666;
  letter-spacing: 0.03125rem;
}
@media (max-width: 767px) {
  .business__lead-text {
    width: 100%;
  }
}
.business__cards {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .business__cards {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
}
.business__card {
  width: 200px;
  max-width: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .business__card {
    width: 100%;
    max-width: 100%;
  }
}
.business__card:hover {
  transform: translateY(-10px);
}
.business__card:hover img {
  transform: scale(1.1);
}
.business__card-image {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .business__card-image {
    height: 390px;
  }
}
.business__card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3));
}
.business__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.business__card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.business__card-title .en {
  display: block;
  font-size: 2.5625rem;
  font-family: "ropa-mix-pro", sans-serif;
  letter-spacing: 0.0625rem;
  line-height: 1.2;
  font-weight: bold;
}
@media (max-width: 767px) {
  .business__card-title .en {
    font-size: 2.5rem;
  }
}
.business__card-title .pos-off {
  position: relative;
}
.business__card-title .ja {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.0625rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  margin-bottom: 16px;
}
.business__card-title .arrow {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  background: #fff url("../../assets/img/b-arr.svg") no-repeat center;
  background-size: 18px 12px;
  border-radius: 50%;
  transition: background 0.3s;
}
.business__more {
  text-align: center;
  margin-top: 60px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .business__more {
    left: 0;
    margin: auto;
    bottom: 30px;
  }
}
.business__more-link {
  display: inline-block;
  padding: 15px 60px;
  border: 1px solid #e4a853;
  color: #e4a853;
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
  transition: all 0.3s ease;
}
.business__more-link:hover {
  background: #e4a853;
  color: #fff;
}

.works {
  position: relative;
  padding: 80px 0;
  background: #FAFAFA;
}
.works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg width='20' height='20' xmlns='http://www.w3.org/2000/svg'><line x1='0' y1='0' x2='0' y2='20' stroke='%23c7c7c7' stroke-width='2' stroke-dasharray='4%2C3'/><line x1='0' y1='0' x2='20' y2='0' stroke='%23c7c7c7' stroke-width='2' stroke-dasharray='4%2C3'/></svg>");
  background-size: 20px 20px;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
.works::after {
  width: 98%;
  height: 80%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: linear-gradient(0deg, rgb(35, 37, 132) 0%, rgb(108, 197, 201) 100%);
  border-radius: 0px 48px 48px 0px;
  z-index: 2;
  content: "";
}
@media (max-width: 767px) {
  .works::after {
    width: 100%;
    height: 56%;
    border-radius: 0px 48px 48px 0px;
    margin-top: 80px;
  }
}
.works__inner {
  width: 100%;
  max-width: 1160px;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  margin: 0 auto;
  min-height: 520px;
}
@media (max-width: 767px) {
  .works__inner {
    flex-direction: column;
    gap: 40px;
    min-height: 0;
  }
}
.works__col--left {
  flex: 1.2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 2;
}
.works__col--right {
  flex: none;
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  min-width: 340px;
  max-width: 480px;
}
@media (max-width: 767px) {
  .works__col--right {
    position: static;
    align-items: flex-start;
    margin: auto;
    margin-top: -100px;
    max-width: 100%;
    justify-content: center;
  }
}
.works__box {
  padding: 64px 0px 56px 0px;
  color: #fff;
  width: 100%;
  max-width: 62.5vw;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .works__box {
    max-width: none;
    min-width: none;
    width: 100%;
    padding: 40px;
    min-height: 0;
    border-radius: 0 40px 40px 0px;
    padding-top: 80px;
  }
}
.works__title {
  font-size: 4.0625rem;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 0.125rem;
}
@media (max-width: 767px) {
  .works__title {
    line-height: 1.2;
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .works__title .works__title-en {
    font-size: 3rem;
  }
}
.works__title .works__title-ja {
  display: block;
  font-size: 1.25rem;
  color: #fff;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .works__title .works__title-ja {
    font-size: 1rem;
  }
}
.works__lead-title {
  font-size: 1.75rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  margin-bottom: 32px;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.3125rem;
}
.works__lead-text {
  width: 47%;
  font-size: 1rem;
  color: #fff;
  line-height: 2;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .works__lead-text {
    width: 100%;
  }
}
.works__lead-text p {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .works__lead-text p {
    margin-bottom: 30px;
  }
}
.works__categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px 24px;
  width: 560px;
  margin-bottom: 60px;
  background: transparent;
  margin-top: 8%;
}
@media (max-width: 767px) {
  .works__categories {
    position: static;
    width: 100%;
    max-width: 100%;
    gap: 16px 8px;
    grid-template-columns: none;
    grid-template-rows: none;
  }
}
.works__category {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border: 2px solid #232323;
  padding: 10px 16px;
  min-width: 180px;
  text-decoration: none;
  color: #232323;
  position: relative;
  overflow: visible;
}
@media (max-width: 767px) {
  .works__category {
    width: 100%;
    min-width: 100%;
    padding: 16px;
  }
}
.works__category:hover .works__category-arrow::after {
  background: #d89731;
  background-image: url("../../assets/img/w-arr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 10px;
}
.works__category-en {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.0625rem;
}
.works__category-ja {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #38403b;
  margin-bottom: 0;
}
.works__category-arrow {
  position: absolute;
  right: 12px;
  top: 18px;
  width: 28px;
  height: 28px;
  z-index: 2;
}
.works__category-arrow::after {
  content: "";
  width: 24px;
  height: 24px;
  background: #232323;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transform: none;
  transition: background 0.3s ease;
  background-image: url("../../assets/img/w-arr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 10px;
  pointer-events: none;
}
.works__button-area {
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .works__button-area {
    margin: auto;
    margin-top: 24px;
    text-align: center;
    margin-bottom: 55px;
  }
}
.works__button {
  display: inline-block;
  padding: 16px 58px;
  border: 1px solid #232584;
  color: #232584;
  font-size: 1rem;
  font-family: "ropa-mix-pro", sans-serif;
  background: #fff;
  text-decoration: none;
  letter-spacing: 0.0625rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-weight: bold;
}
.works__button:hover {
  background: #232584;
  color: #ffffff;
  border-color: #d89731;
  border: 1px solid #232584 !important;
}

/* Recruit
---------------------------- */
.recruit {
  position: relative;
  padding: 120px 0;
  background: #d89731;
}
@media (max-width: 767px) {
  .recruit {
    padding-bottom: 60px;
  }
}
.recruit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2500px;
  height: 2400px;
  background: #FAFAFA;
  transform: rotate(-45deg) translateY(10%) translateX(-17%);
  z-index: 1;
}
@media (min-width: 1771px) {
  .recruit::before {
    width: 2650px;
    height: 2460px;
    background: #FAFAFA;
    transform: rotate(-45deg) translateY(10%) translateX(-18%);
  }
}
@media (max-width: 767px) {
  .recruit::before {
    width: 2500px;
    height: 2500px;
    transform: rotate(-45deg) translateY(30%) translateX(35vw);
  }
}
@media (max-width: 430px) {
  .recruit::before {
    width: 2500px;
    height: 2500px;
    transform: rotate(-45deg) translateY(30%) translateX(7%);
  }
}
.recruit__title {
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.recruit__title-en {
  display: block;
  font-size: 4.0625rem;
  font-family: "ropa-mix-pro", sans-serif;
  letter-spacing: 0.125rem;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .recruit__title-en {
    font-size: 3rem;
  }
}
.recruit__title-ja {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.125rem;
  color: #ffffff;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
}
@media (max-width: 767px) {
  .recruit__title-ja {
    font-size: 1rem;
  }
}
.recruit__image {
  width: 45%;
  height: 500px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  transform: translateY(20%);
}
@media (max-width: 767px) {
  .recruit__image {
    display: none;
  }
}
.recruit__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.recruit__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .recruit__inner {
    width: 85%;
    padding: 0;
  }
}
.recruit__content {
  width: 45%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .recruit__content {
    width: 100%;
    padding-right: 0;
  }
}
.recruit__lead {
  font-size: 2rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #313031;
  letter-spacing: 0.3125rem;
}
@media (max-width: 767px) {
  .recruit__lead {
    font-size: 1.5rem;
  }
}
.recruit__text p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 20px;
  color: #313031;
}
@media (max-width: 767px) {
  .recruit__text p {
    font-size: 1rem;
  }
}
.recruit__text p:last-child {
  margin-bottom: 40px;
}
.recruit__button .button {
  display: inline-block;
  padding: 15px 60px;
  border: 1px solid #d89731;
  color: #d89731;
  font-size: 1rem;
  letter-spacing: 0.125rem;
  transition: all 0.3s ease;
  position: relative;
  font-weight: bold;
}
@media (max-width: 767px) {
  .recruit__button .button {
    width: 80%;
    display: block;
    text-align: center;
    margin: auto;
    padding: 15px 50px;
  }
}
.recruit__button .button:hover {
  background: #d89731;
  color: #ffffff;
}
.recruit__image {
  width: 45%;
  height: 500px;
}
.recruit__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* News
---------------------------- */
.news {
  padding: 120px 0;
  position: relative;
  background: #ffffff;
}
@media (max-width: 767px) {
  .news {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
.news__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 767px) {
  .news__inner {
    flex-wrap: wrap;
    width: 85%;
    padding: 0;
    gap: 35px;
  }
}
.news__header {
  width: 25%;
}
@media (max-width: 767px) {
  .news__header {
    width: 100%;
  }
}
.news__title {
  margin-bottom: 30px;
}
.news__title-en {
  display: block;
  font-size: 4.0625rem;
  font-family: "ropa-mix-pro", sans-serif;
  letter-spacing: 0.125rem;
  color: #313031;
  line-height: 1.2;
  font-weight: bold;
}
@media (max-width: 767px) {
  .news__title-en {
    font-size: 2.5rem;
  }
}
.news__title-ja {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.125rem;
  color: #313031;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
}
@media (max-width: 767px) {
  .news__title-ja {
    font-size: 1rem;
  }
}
.news__more {
  margin: auto;
}
.news__more .button {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid #d89731;
  color: #d89731;
  font-size: 0.875rem;
  letter-spacing: 0.125rem;
  transition: all 0.3s ease;
  position: relative;
  bottom: 5%;
}
@media (max-width: 767px) {
  .news__more .button {
    display: block;
    text-align: center;
    margin: auto;
    position: relative;
    padding: 12px 60px;
  }
}
.news__more .button:hover {
  background: #d89731;
  color: #ffffff;
}
.news__content-wrapper {
  width: 75%;
}
@media (max-width: 767px) {
  .news__content-wrapper {
    width: 100%;
  }
}
.news__list {
  margin-bottom: 0;
}
.news__item {
  border-bottom: 1px solid #313031;
}
.news__item:first-child {
  border-top: 1px solid #313031;
}
.news__link {
  display: flex;
  align-items: center;
  padding: 25px 0;
  text-decoration: none;
  position: relative;
}
@media (max-width: 767px) {
  .news__link {
    flex-wrap: wrap;
  }
}
.news__link:hover .news__image::after {
  background: #d89731;
  background-image: url("../../assets/img/w-arr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 12px;
}
.news__image {
  width: 160px;
  height: 100%;
  margin-right: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news__image {
    width: 100%;
    margin-bottom: 15px;
    margin-right: 0;
    position: relative;
    overflow: visible;
  }
}
.news__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news__image::after {
  content: "";
  width: 32px;
  height: 32px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 30px;
  transform: translateY(-50%);
  transition: background 0.3s ease;
  background-image: url("../../assets/img/w-arr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 12px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .news__image::after {
    top: auto;
    bottom: -47px;
    right: 0%;
  }
}
.news__content {
  flex: 1;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .news__content {
    padding-right: 0;
  }
}
.news__date {
  display: block;
  font-size: 2rem;
  color: #313031;
  margin-bottom: 8px;
  font-style: italic;
  font-weight: bold;
  font-family: "ropa-mix-pro", sans-serif;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .news__date {
    font-size: 1.75rem;
  }
}
.news__item-title {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #313031;
}
@media (max-width: 767px) {
  .news__item-title {
    font-size: 1rem;
  }
}
.news__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news__tag {
  display: inline-block;
  padding: 4px 15px;
  font-size: 0.625rem;
  color: #313031;
  border: 1px solid #313031;
  border-radius: 50px;
}
.news__arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-top: 8px;
  background: #333 url("../../assets/img/w-arr.svg") no-repeat center;
  background-size: 10px 6px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.recruit_and_news {
  background: #d89731;
  position: relative;
  overflow: hidden;
}

.other {
  background: linear-gradient(0deg, rgb(35, 37, 132) 0%, rgb(108, 197, 201) 100%);
  padding: 80px 0;
}
.other__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .other__inner {
    width: 80%;
  }
}
.other__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/3;
  background: transparent;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: transform 0.3s;
}
.other__card:hover {
  transform: translateY(-8px) scale(1.03);
}
.other__card:hover .other__btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: #fff;
}
.other__card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.other__card-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.other__card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  background: rgba(35, 37, 132, 0.18);
}
.other__title {
  margin-bottom: 32px;
}
.other__title-en {
  display: block;
  font-size: 2.5rem;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: bold;
  letter-spacing: 0.125rem;
  color: #fff;
  margin-bottom: 8px;
  line-height: 0.5;
  margin-top: 40px;
}
.other__title-ja {
  display: block;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.125rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
}
.other__btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 0;
  width: 80%;
  max-width: 220px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.25rem;
  font-family: "ropa-mix-pro", sans-serif;
  background: transparent;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .other__inner {
    gap: 24px;
  }
  .other__card {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .other__inner {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .other__card {
    max-width: 90vw;
    width: 100%;
  }
}

/* ----------------------------------
    アニメーション定義
------------------------------------ */
@keyframes scrollDown {
  0% {
    transform: translateY(0%);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(850%);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    事業紹介ページのスタイル
------------------------------------ */
.businessAnker {
  background: #FAFAFA;
  padding: 80px 0 60px 0;
}
.businessAnker__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
@media (max-width: 767px) {
  .businessAnker__inner {
    width: 93%;
    gap: 12px;
    margin: auto;
  }
}
.businessAnker__item {
  flex: 1 1 0;
  background: #ffffff;
  border: 1px solid #313031;
  text-align: center;
  padding: 25px 20px 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.8s;
}
@media (max-width: 767px) {
  .businessAnker__item {
    width: 32%;
    flex: auto;
    flex-wrap: nowrap;
    padding: 25px 10px 20px 10px;
  }
}
.businessAnker__item:hover {
  background: #313031;
}
.businessAnker__item:hover .businessAnker__title {
  color: #ffffff;
}
.businessAnker__item:hover .businessAnker__desc {
  color: #ffffff;
}
.businessAnker__item:hover .businessAnker__btn {
  transform: translate(0, 10px);
  filter: invert(1);
}
.businessAnker__title {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #313031;
  font-weight: bold;
}
@media (max-width: 767px) {
  .businessAnker__title {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}
.businessAnker__desc {
  font-size: 1rem;
  color: #38403b;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .businessAnker__desc {
    font-size: 1rem;
    margin-bottom: 5px;
  }
}
.businessAnker__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: #313031;
  border-radius: 50%;
  margin: 0 auto;
  transition: background 0.2s;
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
}
@media (max-width: 767px) {
  .businessAnker__btn {
    width: 20px;
    height: 20px;
  }
}
.businessAnker__btn img {
  width: 11px;
  height: 7px;
  display: block;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .businessAnker__btn img {
    width: 8px;
    height: 8px;
  }
}

.businessQuality {
  background: #FAFAFA;
  padding: 100px 0 0px 0;
}
@media (max-width: 767px) {
  .businessQuality {
    padding: 50px 0 60px 0;
  }
}
.businessQuality__inner {
  margin: 0 auto;
}
.businessQuality__title {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #313031;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .businessQuality__title {
    margin-bottom: 0;
    font-size: 3rem;
  }
}
.businessQuality__subtitle {
  font-size: 1.25rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  text-align: center;
  margin-bottom: 120px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .businessQuality__subtitle {
    font-size: 1rem;
    margin-bottom: 60px;
  }
}
.businessQuality__block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 120px;
  gap: 120px;
}
.businessQuality__block:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .businessQuality__block:nth-child(even) {
    flex-direction: column;
    margin-bottom: 80px;
  }
}
.businessQuality__block:nth-child(even) .businessQuality__textWrap {
  padding-left: 15%;
  padding-right: 0;
}
@media (max-width: 767px) {
  .businessQuality__block:nth-child(even) .businessQuality__textWrap {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .businessQuality__block:nth-child(even) .businessQuality__imgWrap img {
    border-radius: 0px;
  }
}
@media (max-width: 767px) {
  .businessQuality__block {
    flex-direction: column;
    margin-bottom: 0;
    gap: 25px;
  }
}
.businessQuality__imgWrap {
  flex: 1 1 48%;
}
@media (max-width: 767px) {
  .businessQuality__imgWrap {
    margin-right: 0;
    margin-bottom: 24px;
    width: 95%;
  }
}
.businessQuality__imgWrap img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
@media (max-width: 767px) {
  .businessQuality__imgWrap img {
    height: 200px;
  }
}
.businessQuality__block:nth-child(even) .businessQuality__imgWrap {
  margin-right: 0;
  margin-left: 40px;
}
@media (max-width: 767px) {
  .businessQuality__block:nth-child(even) .businessQuality__imgWrap {
    width: 92%;
    margin-right: 0;
    margin-left: auto;
    margin-top: 80px;
  }
}
.businessQuality__textWrap {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  padding-right: 15%;
}
@media (max-width: 767px) {
  .businessQuality__textWrap {
    width: 85%;
    margin: auto;
    padding-right: 0;
  }
}
.businessQuality__number {
  font-size: 5rem;
  font-weight: bold;
  color: #232584;
  margin-bottom: 25px;
  font-style: italic;
  line-height: 1;
}
@media (max-width: 767px) {
  .businessQuality__number {
    font-size: 3.4375rem;
  }
}
.businessQuality__heading {
  font-size: 2rem;
  font-weight: bold;
  color: #313031;
  margin-bottom: 45px;
  line-height: 1.5;
  letter-spacing: 0.125rem;
}
@media (max-width: 767px) {
  .businessQuality__heading {
    font-size: 1.5rem;
    margin-bottom: 50px;
    line-height: 1.8;
  }
}
.businessQuality__lead {
  font-size: 1rem;
  color: #313031;
  line-height: 2.5;
}

.businessAreas {
  background: #FAFAFA;
  padding: 100px 0 120px 0;
  background-size: 20px 20px;
}
@media (max-width: 767px) {
  .businessAreas {
    padding: 70px 0 40px 0;
  }
}
.businessAreas__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  background: #ffffff;
  padding: 80px 80px;
  margin-bottom: 100px;
  position: relative;
}
@media (max-width: 767px) {
  .businessAreas__inner {
    padding: 50px 0px;
  }
}
.businessAreas__inner::before {
  width: 100%;
  height: 1px;
  background: #C7C7C7;
  position: absolute;
  bottom: -100px;
  left: 0;
  content: "";
}
.businessAreas__title {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #313031;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .businessAreas__title {
    line-height: 1.1;
    margin-bottom: 0;
    font-size: 2.5rem;
  }
}
.businessAreas__subtitle {
  font-size: 1.25rem;
  color: "toppan-bunkyu-midashi-go-std", sans-serif;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .businessAreas__subtitle {
    font-size: 1rem;
    margin-bottom: 60px;
  }
}
.businessAreas__leadWrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .businessAreas__leadWrap {
    flex-direction: column;
    align-items: center;
    gap: 70px;
    order: 1;
  }
}
.businessAreas__lead {
  flex: 1 1 50%;
  color: #313031;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-right: 40px;
  padding-left: 10vw;
  padding-right: 3%;
}
@media (max-width: 767px) {
  .businessAreas__lead {
    width: 85%;
    padding: 0;
    margin: auto;
    order: 2;
  }
}
.businessAreas__lead h2 {
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: #313031;
  margin-bottom: 40px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .businessAreas__lead h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    line-height: 2;
    margin-bottom: 56px;
  }
}
.businessAreas__lead h3 {
  font-size: 0.875rem;
  color: #313031;
  line-height: 2;
}
.businessAreas__imgWrap {
  flex: 1 1 41%;
}
.businessAreas__imgWrap img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
@media (max-width: 767px) {
  .businessAreas__imgWrap img {
    height: 200px;
  }
}
.businessAreas__desc {
  font-size: 1rem;
  color: #313031;
  text-align: center;
  margin-bottom: 60px;
  line-height: 2;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.businessAreas__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .businessAreas__list {
    width: 85%;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 70px;
  }
}
.businessAreas__card {
  display: flex;
  flex-direction: column;
  padding: 0 0 5px 0;
  position: relative;
  min-height: 420px;
}
.businessAreas__cardHead {
  padding: 20px 24px 35px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 5px;
  border: 1px solid #313031;
}
@media (max-width: 767px) {
  .businessAreas__cardHead {
    padding: 20px 20px 30px 20px;
    margin-bottom: 10px;
  }
}
.businessAreas__cardEn {
  font-size: 1.25rem;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: bold;
  color: #313031;
  font-style: italic;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .businessAreas__cardEn {
    font-size: 1.25rem;
  }
}
.businessAreas__cardJa {
  font-size: 1.5rem;
  color: #313031;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-weight: bold;
  line-height: 0.5;
}
@media (max-width: 767px) {
  .businessAreas__cardJa {
    font-size: 1.25rem;
  }
}
.businessAreas__cardImgWrap {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  margin: 16px 0 0 0;
  position: relative;
}
.businessAreas__cardImgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .businessAreas__cardImgWrap:hover .businessAreas__imgBtn {
    background: #d89731;
    color: #ffffff;
  }
}
.businessAreas__imgBtn {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #d89731;
  color: #ffffff;
  font-size: 1.25rem;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: bold;
  border-radius: 12px 0 0 0;
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.125rem;
  z-index: 2;
}
@media (max-width: 767px) {
  .businessAreas__imgBtn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
.businessAreas__cardBody {
  padding: 16px 0px 0 0px;
  font-size: 1rem;
  color: #313031;
  line-height: 2;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  flex: 1 1 auto;
}
@media (max-width: 767px) {
  .businessAreas__cardBody {
    padding: 25px 0 15px 0;
  }
}
.businessAreas__cardBtn {
  display: inline-block;
  background: #313031;
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: bold;
  border-radius: 2px;
  padding: 8px 32px;
  margin: 24px 0 0 24px;
  text-decoration: none;
  transition: background 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .businessAreas__cardBtn:hover {
    background: #d89731;
    color: #ffffff;
  }
}

.businessServices {
  background: #FAFAFA;
  padding: 150px 0 120px 0;
}
@media (max-width: 767px) {
  .businessServices {
    padding: 70px 0 40px 0;
  }
}
.businessServices__inner {
  width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .businessServices__inner {
    width: 100%;
    padding: 0;
  }
}
.businessServices__title {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 4.0625rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #313031;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .businessServices__title {
    line-height: 1.1;
    margin-bottom: 0;
    font-size: 3rem;
  }
}
.businessServices__subtitle {
  font-size: 1.25rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .businessServices__subtitle {
    font-size: 1rem;
    margin-bottom: 60px;
  }
}
.businessServices__leadWrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .businessServices__leadWrap {
    width: 85%;
    margin: auto;
    flex-direction: column;
    gap: 24px;
  }
}
.businessServices__lead {
  flex: 1 1 70%;
  color: #313031;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .businessServices__lead {
    font-size: 1.5rem;
    margin-right: 0;
    margin-bottom: 16px;
    text-align: left;
    letter-spacing: 0;
    line-height: 1.5;
  }
}
.businessServices__desc {
  font-size: 1rem;
  color: #313031;
  text-align: left;
  margin-bottom: 60px;
  line-height: 2;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
@media (max-width: 767px) {
  .businessServices__desc {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
.businessServices__list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  width: 100%;
  background: #ffffff;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .businessServices__list {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 130px 0 40px 0;
  }
}
.businessServices__card {
  background: #ffffff;
  border: 1px solid #313031;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  padding: 40px 32px 32px 32px;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .businessServices__card:hover {
    box-shadow: 0 8px 24px rgba(49, 48, 49, 0.12);
    border-color: #d89731;
  }
}
.businessServices__cardIcon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}
.businessServices__cardIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.businessServices__cardTitle {
  font-size: 1.25rem;
  font-weight: bold;
  color: #313031;
  margin-bottom: 16px;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.businessServices__cardText {
  font-size: 1rem;
  color: #313031;
  line-height: 2;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}

.business-list {
  width: 90%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.business-list__item {
  display: flex;
  align-items: center;
  border: 1px solid #d89731;
  padding: 0;
  border-radius: 76px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 180px;
  padding-top: 20px;
  padding-bottom: 40px;
}
.business-list__icon {
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #d89731;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 65px;
  position: absolute;
  left: 0;
  top: 0;
}
.business-list__icon svg {
  width: 48px;
  height: 48px;
  fill: #fff;
}
.business-list__body {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}
.business-list__col--title {
  min-width: 200px;
  max-width: 200px;
  flex: 0 0 120px;
  color: #c88a2d;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.3;
  display: flex;
  align-items: left;
  justify-content: flex-start;
  padding-top: 30px;
}
.business-list__col--desc {
  flex: 1;
  font-size: 1rem;
  color: #333;
  line-height: 2;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}
.business-list__col--desc ol {
  width: 90%;
}
.business-list__col--desc ol li {
  padding: 28px 0;
  border-bottom: 1px solid #c7c7c7;
}
@media (max-width: 767px) {
  .business-list__col--desc ol li {
    width: 90%;
    margin: auto;
  }
}
.business-list__col--desc ol li h4 {
  font-weight: 600;
  font-size: 1.25rem;
}
.business-list__col--desc ol li p {
  font-size: 1rem;
}
.business-list__title {
  margin: 0 0 8px 0;
  color: #d89731;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: auto;
  letter-spacing: 0.125rem;
  padding-top: 5px;
}
@media (max-width: 767px) {
  .business-list__title {
    font-size: 1.5rem;
    text-align: center;
  }
}
.business-list__desc {
  margin: 0;
  color: #313031;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 0 50px 0 20px;
}
@media (max-width: 768px) {
  .business-list__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0 40px 0;
    border-radius: 40px;
    position: relative;
    margin-bottom: 80px;
  }
  .business-list__icon {
    width: 112px;
    height: 112px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: -60px;
  }
  .business-list__icon img {
    width: 60%;
  }
  .business-list__body {
    flex-direction: column;
    gap: 8px;
  }
  .business-list__col--title, .business-list__col--desc {
    max-width: 100%;
    flex: none;
    justify-content: center;
    margin: auto;
  }
  .business-list__col--title h3, .business-list__col--desc h3 {
    font-size: 1.5rem;
    text-align: center;
    margin: 50px 0 20px 0;
  }
}
@media (max-width: 768px) and (max-width: 767px) {
  .business-list__col--title h3, .business-list__col--desc h3 {
    margin: 30px 0 10px 0;
  }
}
@media (max-width: 768px) {
  .business-list__col--title p, .business-list__col--desc p {
    width: 85%;
    margin: auto;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
@media (max-width: 768px) and (max-width: 767px) {
  .business-list__col--title p, .business-list__col--desc p {
    width: 100%;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .business-list__title {
    font-size: 1.1rem;
    text-align: left;
  }
}

.businessRegion {
  position: relative;
  padding: 120px 0 80px 0;
  background: #FAFAFA;
  overflow: hidden;
  margin-top: 80px;
}
.businessRegion__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg width='20' height='20' xmlns='http://www.w3.org/2000/svg'><line x1='0' y1='0' x2='0' y2='20' stroke='%23c7c7c7' stroke-width='2' stroke-dasharray='4%2C3'/><line x1='0' y1='0' x2='20' y2='0' stroke='%23c7c7c7' stroke-width='2' stroke-dasharray='4%2C3'/></svg>");
  background-size: 20px 20px;
  opacity: 0.4;
}
.businessRegion__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .businessRegion__inner {
    width: 100%;
    padding: 0;
  }
}
.businessRegion__title {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 4.0625rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #232323;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .businessRegion__title {
    font-size: 3rem;
  }
}
.businessRegion__subtitle {
  font-size: 1.25rem;
  color: #232323;
  text-align: center;
  margin-bottom: 56px;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: bold;
}
@media (max-width: 767px) {
  .businessRegion__subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}
.businessRegion__main {
  display: flex;
  width: 100%;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .businessRegion__main {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    margin: auto;
    margin-bottom: 28px;
  }
}
.businessRegion__main-col--left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 320px;
  max-width: 600px;
}
@media (max-width: 767px) {
  .businessRegion__main-col--left {
    max-width: 87%;
    margin: auto;
  }
}
.businessRegion__main-col--right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 320px;
  max-width: 600px;
}
@media (max-width: 767px) {
  .businessRegion__main-col--right {
    max-width: 100%;
    justify-content: center;
  }
}
.businessRegion__main-img {
  width: 100%;
  max-width: 520px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .businessRegion__main-img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
  }
}
.businessRegion__lead {
  font-size: 1.75rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  color: #313031;
  margin-bottom: 32px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .businessRegion__lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-top: 30px;
  }
}
.businessRegion__desc {
  font-size: 1rem;
  color: #313031;
  line-height: 2;
  margin-bottom: 0;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
@media (max-width: 767px) {
  .businessRegion__desc {
    font-size: 0.875rem;
    margin-top: 15px;
  }
}
.businessRegion__categories {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  margin-top: 10px;
  background: #ffffff;
  padding: 40px;
}
@media (max-width: 767px) {
  .businessRegion__categories {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding: 60px 30px;
  }
}
.businessRegion__category {
  background: #ffffff;
  border: 2px solid #232584;
  border-radius: 40px;
  padding: 32px 24px 24px 24px;
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}
@media (max-width: 767px) {
  .businessRegion__category {
    width: 100%;
    min-width: 0;
    min-height: 120px;
    padding: 24px 12px 16px 12px;
  }
}
.businessRegion__category-icon {
  width: 144px;
  height: 144px;
  margin-bottom: 18px;
}
.businessRegion__category-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.businessRegion__category-title {
  font-size: 1.125rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  color: #232584;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .businessRegion__category-title {
    font-size: 1.5rem;
  }
}

.businessGallery {
  background: #FAFAFA;
  padding: 0px 0 100px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .businessGallery {
    padding: 0px 0 60px 0;
  }
}
.businessGallery__inner {
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .businessGallery__inner {
    padding: 0;
  }
}
.businessGallery .businessGallerySwiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.businessGallery .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}
.businessGallery .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    WORKSページのスタイル
------------------------------------ */
.secWorks {
  background: #FAFAFA;
}
.secWorks__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0 5rem 0;
}
.secWorks__title {
  font-size: 2.1875rem;
  font-weight: bold;
  letter-spacing: 0.075rem;
  margin-bottom: 2rem;
  color: #313031;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
}
.secWorks__filter {
  display: block;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .secWorks__filter {
    width: 80%;
    padding: 0;
    margin: auto;
    margin-bottom: 25px;
  }
}
.secWorks__selectWrap {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .secWorks__selectWrap {
    display: block;
    width: 100%;
  }
}
.secWorks__selectWrap::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: #313031 url("../../assets/img/arr-w-u.svg") no-repeat;
  background-position: center center;
  background-size: 40%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100px;
  pointer-events: none;
}
.secWorks__filterLabel {
  font-size: 0.875rem;
  color: #313031;
  letter-spacing: 0.075rem;
  display: block;
  font-style: italic;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.secWorks__filterSelect {
  border: none;
  border-bottom: 1.5px solid #313031;
  background: transparent;
  font-size: 1rem;
  padding: 0.25rem 1.75rem 0.25rem 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  min-width: 17.5rem;
  color: #313031;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .secWorks__filterSelect {
    width: 100%;
    min-width: 100%;
    padding: 0;
    margin: auto;
    padding: 10px 0;
  }
}
.secWorks__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  margin-bottom: 3.5rem;
  margin-top: 100px;
  justify-content: space-between;
}
@media (max-width: 1001px) {
  .secWorks__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .secWorks__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
    margin-bottom: 15px;
  }
}
.secWorks__card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-width: 0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .secWorks__card {
    width: 85%;
    margin: 0 auto 30px auto;
  }
}
.secWorks__imgWrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.secWorks__imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  background: #eee;
}
.secWorks__meta {
  padding: 1rem 0 0 0;
}
.secWorks__meta .secWorks__date {
  font-size: 1.25rem;
  color: #313031;
  font-weight: bold;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01875rem;
  font-family: "ropa-mix-pro", sans-serif;
  font-style: italic;
}
.secWorks__meta .secWorks__title {
  font-size: 1.125rem;
  color: #313031;
  font-weight: bold;
  margin-bottom: 0.375rem;
  letter-spacing: 0.0125rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.secWorks__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1.25rem 1.125rem 0;
  margin-top: 50px;
}
.secWorks__tag {
  display: inline-block;
  font-size: 0.90625rem;
  color: #313031;
  border: 1px solid #bbb;
  border-radius: 1rem;
  padding: 0.125rem 0.875rem;
  background: #FAFAFA;
  letter-spacing: 0.0125rem;
  line-height: 1.5;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.secWorks__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .secWorks__pagination {
    width: 85%;
    margin: auto;
  }
}
.secWorks__pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.secWorks__pagination ul li {
  border-bottom: 1px solid #313031;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 100;
}
.secWorks__pagination ul li a, .secWorks__pagination ul li span {
  display: block;
  padding: 0.875rem 1.25rem;
  color: #313031;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: opacity 0.2s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
@media (max-width: 767px) {
  .secWorks__pagination ul li a, .secWorks__pagination ul li span {
    font-size: 0.875rem;
    padding: 13px;
  }
}
.secWorks__pagination ul li a:hover {
  opacity: 0.5;
}
.secWorks__pagination ul .dot {
  padding: 0.875rem 1.25rem;
  padding-top: 10px;
}
.secWorks__pagination ul .current {
  position: relative;
  font-weight: bold;
}
.secWorks__pagination ul .current::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #d89731;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 90;
  border-radius: 5px;
}

/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    WORKSページのスタイル
------------------------------------ */
.secNews {
  background: #FAFAFA;
}
.secNews__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0 5rem 0;
}
.secNews__filterGroup {
  margin-bottom: 50px;
}
.secNews__title {
  font-size: 1.125rem;
  letter-spacing: 0.075rem;
  margin-bottom: 2rem;
  color: #313031;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
@media (max-width: 767px) {
  .secNews__title {
    font-size: 1.125rem;
  }
}
.secNews__filter {
  display: block;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .secNews__filter {
    width: 80%;
    padding: 0;
    margin: auto;
    margin-bottom: 25px;
  }
}
.secNews__selectWrap {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .secNews__selectWrap {
    display: block;
    width: 90%;
  }
}
.secNews__selectWrap::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: #313031 url("../../assets/img/arr-w-u.svg") no-repeat;
  background-position: center center;
  background-size: 40%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100px;
  pointer-events: none;
}
.secNews__filterLabel {
  font-size: 0.875rem;
  color: #313031;
  letter-spacing: 0.075rem;
  display: block;
  font-style: italic;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.secNews__filterSelect {
  border: none;
  border-bottom: 1.5px solid #313031;
  background: transparent;
  font-size: 1rem;
  padding: 0.25rem 1.75rem 0.25rem 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  min-width: 17.5rem;
  color: #313031;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .secNews__filterSelect {
    width: 100%;
    min-width: 100%;
    padding: 0;
    margin: auto;
    padding: 10px 0;
  }
}
.secNews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  margin-bottom: 3.5rem;
  margin-top: 100px;
  justify-content: space-between;
}
@media (max-width: 1001px) {
  .secNews__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .secNews__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
    margin-bottom: 15px;
  }
}
.secNews__card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-width: 0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .secNews__card {
    width: 85%;
    margin: 0 auto 30px auto;
  }
}
.secNews__imgWrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.secNews__imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  background: #eee;
}
.secNews__date {
  font-size: 1.25rem;
  color: #313031;
  font-weight: bold;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01875rem;
  font-family: "ropa-mix-pro", sans-serif;
  font-style: italic;
}
.secNews__meta {
  padding: 1rem 0 0 0;
}
.secNews__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1.25rem 1.125rem 0;
  margin-top: 50px;
}
.secNews__tag {
  display: inline-block;
  font-size: 0.90625rem;
  color: #313031;
  border: 1px solid #bbb;
  border-radius: 1rem;
  padding: 0.125rem 0.875rem;
  background: #FAFAFA;
  letter-spacing: 0.0125rem;
  line-height: 1.5;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.secNews__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .secNews__pagination {
    width: 85%;
    margin: auto;
  }
}
.secNews__pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.secNews__pagination ul li {
  border-bottom: 1px solid #313031;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: 100;
}
.secNews__pagination ul li a, .secNews__pagination ul li span {
  display: block;
  padding: 0.875rem 1.25rem;
  color: #313031;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: opacity 0.2s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
@media (max-width: 767px) {
  .secNews__pagination ul li a, .secNews__pagination ul li span {
    font-size: 0.875rem;
    padding: 13px;
  }
}
.secNews__pagination ul li a:hover {
  opacity: 0.5;
}
.secNews__pagination ul .dot {
  padding: 0.875rem 1.25rem;
  padding-top: 10px;
}
.secNews__pagination ul .current {
  position: relative;
  font-weight: bold;
}
.secNews__pagination ul .current::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #d89731;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 90;
  border-radius: 5px;
}

/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    PLOCYページのスタイル
------------------------------------ */
.policy {
  background: #FAFAFA;
  min-height: 100vh;
  padding: 2.5rem 0 5rem 0;
}
@media (max-width: 767px) {
  .policy {
    padding: 2.5rem 0 3.125rem 0;
  }
}
.policy__inner {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .policy__inner {
    padding: 0;
  }
}
.policy__title {
  font-size: 1.375rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-weight: bold;
  color: #313031;
  margin-bottom: 2rem;
  letter-spacing: 0.075rem;
}
@media (max-width: 767px) {
  .policy__title {
    width: 85%;
    font-size: 1.25rem;
    margin: auto;
    margin-bottom: 1.5625rem;
  }
}
.policy__lead {
  font-size: 1rem;
  color: #313031;
  margin-bottom: 2rem;
  line-height: 2;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.policy__section {
  background: #ffffff;
  margin-bottom: 1.75rem;
  padding: 1.75rem 2rem;
}
@media (max-width: 767px) {
  .policy__section {
    padding: 2.1875rem 1.5625rem;
    margin-bottom: 2.5rem;
  }
}
.policy__sectionTitle {
  font-size: 1.125rem;
  font-weight: bold;
  color: #0E2E42;
  border-bottom: 1px solid #0E2E42;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  letter-spacing: 0.03125rem;
}
.policy__sectionBody {
  font-size: 0.875rem;
  color: #313031;
  line-height: 2;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}

/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    CONTACTページのスタイル
------------------------------------ */
.secContact {
  background: #FAFAFA;
  min-height: 100vh;
  padding: 2.5rem 0 5rem 0;
}
.secContact__inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.contactForm__row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.contactForm__row--privacy {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contactForm__row--submit {
  margin-top: 1.5rem;
  align-items: center;
}
.contactForm__label {
  font-size: 1rem;
  color: #313031;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  margin-bottom: 0.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.contactForm__required {
  display: inline-block;
  font-size: 0.75rem;
  color: #e08a8a;
  background: #f7f7f7;
  border: 1px solid #e08a8a;
  border-radius: 0.75rem;
  padding: 0 0.5rem;
  margin-left: 0.25rem;
  font-weight: normal;
  vertical-align: middle;
  letter-spacing: 0;
  position: relative;
  top: 13px;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.contactForm__input, .contactForm__textarea {
  width: 100%;
  background: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #313031;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  box-sizing: border-box;
  outline: none;
  transition: box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(49, 48, 49, 0.04);
}
.contactForm__input::-moz-placeholder, .contactForm__textarea::-moz-placeholder {
  color: #bdbdbd;
  opacity: 1;
}
.contactForm__input::placeholder, .contactForm__textarea::placeholder {
  color: #bdbdbd;
  opacity: 1;
}
.contactForm__input:focus, .contactForm__textarea:focus {
  box-shadow: 0 0 0 2px #d89731;
}
.contactForm__textarea {
  min-height: 7.5rem;
  resize: vertical;
}
.contactForm__selectWrap {
  position: relative;
  width: 100%;
}
.contactForm__selectWrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2.75rem;
  height: 47px;
  background: #d89731;
  border-radius: 0 0.75rem 0.75rem 0;
  pointer-events: none;
  z-index: 999;
  box-sizing: border-box;
  transition: height 0.2s;
}
.contactForm__selectWrap::before {
  content: "";
  position: absolute;
  right: 1.125rem;
  top: 22px;
  transform: translateY(-50%) rotate(45deg);
  width: 0.625rem;
  height: 0.625rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  z-index: 9999;
  pointer-events: none;
}
.contactForm__select {
  width: 100%;
  background: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 3.75rem 0.75rem 1rem;
  font-size: 1rem;
  color: #313031;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  box-shadow: 0 1px 4px rgba(49, 48, 49, 0.04);
  height: 3rem;
  line-height: 1.5rem;
}
.contactForm__checkboxLabel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #313031;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.contactForm__checkbox {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 40px;
  height: 40px;
  margin: 0 12px 0 0;
  position: relative;
  cursor: pointer;
  background: #fff;
  border: 2px solid #222;
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.contactForm__checkbox::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: #fff;
  z-index: 1;
}
.contactForm__checkbox::after {
  content: "";
  display: none;
  position: absolute;
  left: 10px;
  top: 8px;
  width: 13px;
  height: 18px;
  border-right: 3px solid #d89731;
  border-bottom: 3px solid #d89731;
  transform: rotate(45deg);
  z-index: 2;
}
.contactForm__checkbox:checked {
  border-color: #d89731;
}
.contactForm__checkbox:checked::after {
  display: block;
}
.contactForm__privacyText {
  font-size: 0.875rem;
  color: #313031;
  margin-left: 0.25rem;
}
.contactForm__privacyText a {
  color: #d89731;
  text-decoration: underline;
}
.contactForm__submit {
  width: 13.75rem;
  height: 3rem;
  background: #fff;
  color: #d89731;
  border: 2px solid #d89731;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  cursor: pointer;
  margin: 0 auto;
  display: block;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.contactForm__submit p {
  text-align: center;
}
.contactForm__submit:hover {
  background: #d89731;
  color: #fff;
}

.contactForm__select.wpcf7-not-valid,
.contactForm__input.wpcf7-not-valid,
.contactForm__textarea.wpcf7-not-valid {
  border: 1.5px solid #e08a8a !important;
  background: #fff0f0;
  color: #313031;
}

.contactForm__row .wpcf7-not-valid-tip {
  color: #e08a8a;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  margin-left: 0.125rem;
  display: block;
  font-weight: 500;
  letter-spacing: 0;
}

.contactForm__checkbox.wpcf7-not-valid {
  border-color: #e08a8a !important;
  background: #fff0f0;
}

/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    CONTACTページのスタイル
------------------------------------ */
.thanks {
  background: #FAFAFA;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0 5rem 0;
}
.thanks__inner {
  background: #FAFAFA;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  border-radius: 0.75rem;
}
.thanks__title {
  font-size: 1.75rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  color: #313031;
  font-weight: normal;
  letter-spacing: 0.075rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .thanks__title {
    font-size: 1.5rem;
  }
}
.thanks__text {
  font-size: 1rem;
  color: #313031;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  line-height: 2;
  margin-bottom: 3.5rem;
  text-align: justify;
}
@media (max-width: 767px) {
  .thanks__text {
    width: 90%;
    margin: auto;
    margin-bottom: 3.5rem;
    font-size: 0.875rem;
  }
}
.thanks__btn {
  display: inline-block;
  width: 11.25rem;
  padding: 0.75rem 0;
  background: transparent;
  color: #d89731;
  border: 2px solid #d89731;
  border-radius: 0.375rem;
  font-size: 1.125rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.thanks__btn:hover {
  background: #d89731;
  color: #ffffff;
}

/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    SINGLEページのスタイル
------------------------------------ */
.single {
  background: #FAFAFA;
  min-height: 100vh;
  padding: 40px 0 80px 0;
}
@media (max-width: 767px) {
  .single {
    padding: 0;
    margin-top: 45px;
  }
}
.single__inner {
  max-width: 1160px;
  margin: 0 auto;
  background: #ffffff;
  padding: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .single__inner {
    background: none;
  }
}
.single__eyecatch {
  width: 100%;
}
.single__eyecatch img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .single__eyecatch img {
    border-radius: 0;
  }
}
.single__meta {
  width: 90%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 50px 0 0 0;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .single__meta {
    width: 100%;
  }
}
.single__date {
  font-weight: bold;
  font-size: 1.5rem;
  color: #232323;
  font-family: "ropa-mix-pro", sans-serif;
  font-style: italic;
  line-height: 1.2;
}
.single__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.single__tag {
  font-size: 0.75rem;
  color: #232323;
  border: 1px solid #bbb;
  border-radius: 1rem;
  padding: 0.1rem 0.9rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  white-space: nowrap;
}
.single__title {
  width: 90%;
  max-width: 800px;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 18px 0 32px 0;
  padding: 0 40px;
  color: #232323;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
}
@media (max-width: 767px) {
  .single__title {
    width: 100%;
  }
}
.single__body {
  width: 90%;
  max-width: 800px;
  padding: 0 40px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .single__body {
    width: 100%;
  }
}
.single__body .wp-block-image {
  width: 100%;
  margin-bottom: 20px;
}
.single__body .wp-block-image img {
  width: 100%;
}
.single__text {
  font-size: 0.875rem;
  color: #232323;
  line-height: 2.1;
  letter-spacing: 0.08em;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.single__images {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
  padding: 0 40px;
}
.single__image img {
  width: 90%;
  max-width: 800px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  margin: auto;
}
@media (max-width: 767px) {
  .single__image img {
    width: 100%;
  }
}
.single__pagination {
  width: 100%;
  margin: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .single__pagination {
    margin: 0px 0 100px 0;
  }
}
.single__pagination ul {
  display: flex;
  gap: 0px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.single__pagination-item {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 1.125rem;
  color: #232323;
  border-bottom: 1px solid #313031;
  padding: 15px 30px 15px 30px;
  text-align: center;
  font-weight: 100;
}
.single__pagination-item a, .single__pagination-item span {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: opacity 0.2s;
}
.single__pagination-item a:hover {
  opacity: 0.5;
}
.single__pagination-item.is-current {
  position: relative;
  border-bottom: 2px solid #d89731;
}
.single__pagination-item.is-current a, .single__pagination-item.is-current span {
  color: #313031;
}

/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    WORKSページのスタイル
------------------------------------ */
.secRecruit__left-bk {
  width: 40%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../img/secRecruit__left-bk.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .secRecruit__left-bk {
    display: none;
  }
}

.secRecruit__right-bk {
  width: 40%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  background: url(../img/secRecruit__right-bk.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .secRecruit__right-bk {
    display: none;
  }
}

.secRecruit {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .secRecruit {
    max-width: 100%;
  }
}
.secRecruit::before {
  width: 24px;
  height: 100%;
  content: "";
  position: absolute;
  left: -24px;
  top: 0;
  background: #d89731;
}
@media (max-width: 767px) {
  .secRecruit::before {
    display: none;
  }
}
.secRecruit::after {
  width: 24px;
  height: 100%;
  content: "";
  position: absolute;
  right: -24px;
  top: 0;
  background: #d89731;
}
@media (max-width: 767px) {
  .secRecruit::after {
    display: none;
  }
}
.secRecruit__inner {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .secRecruit__inner {
    max-width: 100%;
  }
}
.secRecruit__fv {
  width: 100%;
}
.secRecruit__fv-inner {
  width: 100%;
  position: relative;
}
.secRecruit__fv-img {
  width: 100%;
  height: 100%;
}
.secRecruit__fv-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 85%;
  margin: 0 auto;
}
.secRecruit__fv-btn p {
  text-align: center;
}
.secRecruit__fv-btn p span {
  font-size: 1rem;
  font-weight: 700;
  color: #38403b;
  background: #ffffff;
  border: 1px solid #38403b;
  padding: 15px 40px;
  position: relative;
  transition: all 0.3s ease;
}
.secRecruit__fv-btn p span:hover {
  background: #38403b;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.secRecruit__philosophy {
  width: 100%;
  background: #FAFAFA;
}
.secRecruit__philosophy-inner {
  width: 85%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 0;
}
.secRecruit__philosophy-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin-bottom: 40px;
  border-left: 24px solid #232584;
  padding-left: 50px;
}
.secRecruit__philosophy-title .en {
  display: block;
  font-size: 3.375rem;
  font-style: italic;
  color: #333;
  font-family: "ropa-mix-pro", sans-serif;
}
.secRecruit__philosophy-title .ja {
  display: block;
  font-size: 1.125rem;
  color: #222;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin-top: 4px;
  margin-bottom: 25px;
}
.secRecruit__philosophy-text {
  font-size: 1rem;
  color: #444;
  line-height: 2;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  text-align: justify;
  padding-right: 10px;
}
.secRecruit__philosophy-img {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.secRecruit__philosophy-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.secRecruit__vision {
  width: 100%;
  background: #FAFAFA;
}
.secRecruit__vision-inner {
  width: 85%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 20px 0;
}
.secRecruit__vision-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin-bottom: 40px;
  border-left: 24px solid #232584;
  padding-left: 50px;
}
.secRecruit__vision-title .en {
  display: block;
  font-size: 3.375rem;
  font-style: italic;
  color: #333;
  font-family: "ropa-mix-pro", sans-serif;
  line-height: 1;
  padding-top: 20px;
}
.secRecruit__vision-title .ja {
  display: block;
  font-size: 1.125rem;
  color: #222;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin-top: 4px;
  margin-bottom: 25px;
}
.secRecruit__vision-block {
  width: 100%;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.secRecruit__vision-lead {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  position: relative;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  line-height: 1.8;
  padding-right: 70px;
}
.secRecruit__vision-num {
  position: absolute;
  top: -40px;
  right: -55px;
  margin: 0;
}
.secRecruit__vision-num img {
  height: 140px;
  width: auto;
  display: block;
}
.secRecruit__vision-text {
  font-size: 1rem;
  color: #444;
  line-height: 2;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin-bottom: 18px;
  text-align: justify;
  padding-right: 10px;
}
.secRecruit__vision-img {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 8px;
}
.secRecruit__vision-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.secRecruit__message {
  width: 100%;
  background: #FAFAFA;
}
.secRecruit__message-inner {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 0;
}
.secRecruit__message-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}
.secRecruit__message-title .en {
  display: block;
  font-size: 3rem;
  color: #333;
  font-family: "ropa-mix-pro", sans-serif;
  line-height: 1.2;
}
.secRecruit__message-title .ja {
  display: block;
  font-size: 1.125rem;
  color: #222;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  margin-bottom: 25px;
}
.secRecruit__message-img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 32px;
}
.secRecruit__message-img img {
  width: 100%;
  height: auto;
  display: block;
}
.secRecruit__message-lead {
  width: 85%;
  font-size: 1.25rem;
  color: #222;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  text-align: left;
  margin: 0 auto;
  margin-bottom: 32px;
  line-height: 2.2;
  padding-top: 35px;
}
.secRecruit__message-text {
  width: 85%;
  font-size: 1rem;
  color: #444;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  line-height: 2.2;
  text-align: justify;
  margin: 0 auto;
  display: block;
  padding-bottom: 35px;
}

.secRecruit__goodPoint {
  width: 100%;
  background: #FAFAFA;
}
.secRecruit__goodPoint-inner {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 0;
}
.secRecruit__goodPoint-title {
  font-size: 3rem;
  font-weight: bold;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}
.secRecruit__goodPoint-title .en {
  display: block;
  font-size: 3rem;
  color: #333;
  font-family: "ropa-mix-pro", sans-serif;
  line-height: 1.2;
}
.secRecruit__goodPoint-title .ja {
  display: block;
  font-size: 1.125rem;
  color: #222;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  margin-bottom: 25px;
}
.secRecruit__goodPoint-list {
  width: 85%;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.secRecruit__goodPoint-item {
  width: 100%;
  background: #d89731;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 18px 24px;
  color: #fff;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  gap: 5px;
}
.secRecruit__goodPoint-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 8px;
}
.secRecruit__goodPoint-label .point {
  font-size: 0.625rem;
  font-family: "ropa-mix-pro", sans-serif;
  letter-spacing: 0.1em;
  opacity: 0.8;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  padding-left: 3px;
}
.secRecruit__goodPoint-label .num {
  font-size: 2rem;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: bold;
  line-height: 1;
  margin-top: 2px;
  font-style: italic;
}
.secRecruit__goodPoint-text {
  font-size: 1rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  line-height: 1.7;
  color: #fff;
}

.secRecruit__roles {
  width: 100%;
  background: #FAFAFA;
}
.secRecruit__roles-inner {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 0;
}
.secRecruit__roles-title {
  font-size: 3rem;
  font-weight: bold;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin-bottom: 25px;
  text-align: center;
  width: 100%;
}
.secRecruit__roles-title .en {
  display: block;
  font-size: 3rem;
  color: #333;
  font-family: "ropa-mix-pro", sans-serif;
  line-height: 1.2;
}
.secRecruit__roles-title .ja {
  display: block;
  font-size: 1.125rem;
  color: #222;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  margin-bottom: 25px;
}
.secRecruit__roles-list {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.secRecruit__roles-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: none;
}
.secRecruit__roles-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
}
.secRecruit__roles-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.secRecruit__roles-label {
  display: inline-block;
  background: #d89731;
  color: #fff;
  font-size: 1.25rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 6px 32px;
  margin-bottom: 18px;
  margin-left: 0;
  letter-spacing: 0.1em;
}
.secRecruit__roles-text {
  font-size: 1rem;
  color: #444;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  line-height: 2;
  text-align: justify;
  width: 100%;
}

.secRecruit__interview {
  width: 100%;
  background: #FAFAFA;
  padding: 60px 0;
}
.secRecruit__interview-inner {
  width: 100%;
  margin: 0 auto;
}
.secRecruit__interview-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}
.secRecruit__interview-title .en {
  display: block;
  font-size: 3rem;
  color: #333;
  font-family: "ropa-mix-pro", sans-serif;
  line-height: 1.2;
}
.secRecruit__interview-title .ja {
  display: block;
  font-size: 1.125rem;
  color: #222;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  margin-bottom: 25px;
}
.secRecruit__interview-swiper {
  width: 100%;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
}
.secRecruit__interview-swiper .swiper-wrapper {
  display: flex;
}
.secRecruit__interview-card {
  background: #f7f7f6;
  border-radius: 40px;
  padding: 40px 18px 32px 18px;
  width: 273px !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s;
  border: 2px solid #232584;
}
.secRecruit__interview-card .secRecruit__interview-title {
  font-size: 1.25rem;
  color: #232584;
  margin-bottom: 24px;
  line-height: 1.6;
  text-align: left;
  width: 100%;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
}
.secRecruit__interview-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-bottom: 18px;
}
.secRecruit__interview-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.secRecruit__interview-meta {
  width: 100%;
  margin-bottom: 12px;
  text-align: left;
}
.secRecruit__interview-year {
  display: inline-block;
  background: #232584;
  color: #fff;
  font-size: 1rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 700;
  padding: 4px 18px;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  margin-right: 50px;
}
.secRecruit__interview-role {
  display: inline-block;
  background: #232584;
  color: #fff;
  font-size: 1rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 700;
  padding: 4px 18px;
  letter-spacing: 0.08em;
}
.secRecruit__interview-comment {
  font-size: 1rem;
  color: #444;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  line-height: 2;
  margin-top: 18px;
  text-align: left;
  letter-spacing: 0.02em;
  min-height: 90px;
}
.secRecruit__interview-more {
  width: 85%;
  display: block;
  margin-top: 24px;
  padding: 12px 32px;
  border: 1px solid #232584;
  color: #232584;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.secRecruit__interview-more:hover {
  background: #232584;
  color: #fff;
}

.secRecruit__construction {
  width: 100%;
  padding: 40px 0;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  background: #FAFAFA;
}
.secRecruit__construction-inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.secRecruit__construction-head {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
.secRecruit__construction-en {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #232323;
  line-height: 1.2;
  letter-spacing: 0;
}
.secRecruit__construction-sub {
  font-size: 1.125rem;
  color: #232323;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
}
.secRecruit__construction-title-area {
  width: 100%;
  background: #232584;
  padding: 24px 32px 18px 32px;
  margin-bottom: 32px;
  border-radius: 0;
  text-align: left;
}
.secRecruit__construction-title {
  color: #fff;
  font-size: 2rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.secRecruit__construction-list {
  width: 85%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  margin-top: 50px;
}
.secRecruit__construction-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 48px;
  position: relative;
  min-height: 260px;
  background: none;
}
@media (max-width: 767px) {
  .secRecruit__construction-item {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }
}
.secRecruit__construction-texts {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
}
@media (max-width: 767px) {
  .secRecruit__construction-texts {
    width: 90%;
    align-items: flex-start;
    margin: auto;
    margin-bottom: 60px;
  }
}
.secRecruit__construction-num {
  font-family: "ropa-mix-pro", sans-serif;
  font-style: italic;
  font-size: 4rem;
  color: #232323;
  font-weight: bold;
  margin-bottom: 18px;
  text-align: left;
  line-height: 0.5;
}
.secRecruit__construction-label {
  font-size: 2rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-weight: 400;
  color: #232323;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.secRecruit__construction-desc {
  font-size: 0.875rem;
  color: #232323;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  margin: 0;
  padding: 0;
  list-style: none;
}
.secRecruit__construction-desc li {
  margin-bottom: 6px;
  line-height: 1.7;
  position: relative;
  padding-left: 1.2em;
}
.secRecruit__construction-desc li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #232323;
  font-size: 0.75rem;
  top: 2px;
}
.secRecruit__construction-iconwrap {
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: -25px;
}
.secRecruit__construction-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secRecruit__construction-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.secRecruit__inner .other {
  padding-top: 40px;
}
.secRecruit__inner .other::before {
  width: 100%;
  height: 40px;
  background: #FAFAFA;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}
.secRecruit__inner .other__inner {
  width: 90%;
  margin: auto;
  display: block;
}
.secRecruit__inner .other__card {
  display: block;
  margin: auto;
  margin-bottom: 25px;
}

.secRecruit__career {
  position: relative;
  background: #FAFAFA;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 32px;
}
.secRecruit__career::before {
  content: "";
  position: absolute;
  top: 0px;
  right: -1500px;
  width: 2000px;
  height: 2000px;
  background: transparent;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: #d89731;
  z-index: 2;
}
.secRecruit__career-item {
  border-bottom: 1px solid #313031;
  padding: 10px;
}
.secRecruit__career-inner {
  position: relative;
  z-index: 3;
  padding: 32px 24px 50px 24px;
}
@media (max-width: 767px) {
  .secRecruit__career-inner {
    padding: 32px 0px 100px 0px;
  }
}
.secRecruit__career-head {
  text-align: center;
  margin-bottom: 32px;
}
.secRecruit__career-title {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
  margin-top: 80px;
  color: #ffffff;
}
.secRecruit__career-sub {
  font-size: 1.125rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  margin-bottom: 88px;
  color: #ffffff;
  letter-spacing: 0.08em;
}
.secRecruit__career-desc {
  width: 95%;
  margin: auto;
  font-size: 1rem;
  color: #313031;
  margin-bottom: 62px;
  line-height: 2;
  text-align: left;
}
.secRecruit__career-timeline {
  width: 95%;
  margin: auto;
}
.secRecruit__career-timeline img {
  width: 100%;
  height: auto;
}
.secRecruit__career-step {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  min-height: 120px;
}
.secRecruit__career-age {
  min-width: 80px;
  font-size: 1.25rem;
  font-family: "ropa-mix-pro", sans-serif;
  font-weight: bold;
  background: #d89731;
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 0;
  text-align: center;
  margin-right: 32px;
  margin-top: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 2;
}
.secRecruit__career-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border: 1px solid #313031;
  border-radius: 0;
  overflow: hidden;
}
.secRecruit__career-item {
  padding: 18px 20px;
  border-bottom: 1px solid #313031;
  color: #313031;
  font-size: 1rem;
  background: #ffffff;
}
.secRecruit__career-item:last-child {
  border-bottom: none;
}
.secRecruit__career-item--license {
  color: #d89731;
  font-weight: bold;
  background: #ffffff;
}
.secRecruit__career-item.orange {
  color: #d89731;
  font-weight: bold;
  background: #ffffff;
}

.secRecruit__certification {
  position: relative;
  background: #FAFAFA;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 32px;
}
.secRecruit__certification::before {
  content: "";
  position: absolute;
  top: 0px;
  right: -1440px;
  width: 2000px;
  height: 2000px;
  background: transparent;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: #d89731;
  z-index: 2;
}
.secRecruit__certification-inner {
  position: relative;
  z-index: 3;
  padding: 32px 20px 50px 20px;
}
@media (max-width: 767px) {
  .secRecruit__certification-inner {
    padding: 32px 0px 100px 0px;
  }
}
.secRecruit__certification-title {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
  margin-top: 60px;
  color: #ffffff;
  text-align: center;
}
.secRecruit__certification-sub {
  font-size: 1.125rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  margin-bottom: 68px;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-align: center;
}
.secRecruit__certification-desc {
  width: 95%;
  margin: auto;
  font-size: 1rem;
  color: #313031;
  margin-bottom: 32px;
  line-height: 2;
  padding: 24px 0;
}
.secRecruit__certification-timeline {
  width: 95%;
  margin: auto;
}
.secRecruit__certification-timeline img {
  width: 100%;
  height: auto;
}

.secRecruit__daily-routine {
  position: relative;
  background: #FAFAFA;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 32px;
}
.secRecruit__daily-routine::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -1180px;
  width: 2000px;
  height: 1690px;
  background: transparent;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: #d89731;
  z-index: 2;
}
.secRecruit__daily-routine-inner {
  position: relative;
  z-index: 3;
  padding: 32px 20px 50px 20px;
}
@media (max-width: 767px) {
  .secRecruit__daily-routine-inner {
    padding: 32px 0px 100px 0px;
  }
}
.secRecruit__daily-routine-title {
  font-family: "ropa-mix-pro", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
  margin-top: 60px;
  color: #ffffff;
  text-align: center;
}
.secRecruit__daily-routine-sub {
  font-size: 1.125rem;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  margin-bottom: 68px;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-align: center;
}
.secRecruit__daily-routine-desc {
  width: 95%;
  font-size: 1rem;
  color: #313031;
  margin: auto;
  margin-bottom: 32px;
  line-height: 2;
  padding: 24px 0;
}
.secRecruit__daily-routine-schedule {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.secRecruit__daily-routine-schedule .daily-schedule-svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 350px;
}

/* ----------------------------------
    基本スタイル
------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  padding-top: 90px;
  background: #FAFAFA;
}
@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

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

[pc-only] {
  display: block !important;
}
@media (max-width: 767px) {
  [pc-only] {
    display: none !important;
  }
}

[sp-only] {
  display: none !important;
}
@media (max-width: 767px) {
  [sp-only] {
    display: block !important;
  }
}

.no_scroll {
  touch-action: none !important;
  -webkit-overflow-scrolling: none !important;
  overflow: hidden !important;
  /* Other browsers */
  overscroll-behavior: none !important;
  height: 100% !important;
}
/*# sourceMappingURL=app.css.map */
