@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  inset: 10px auto auto 0;
  gap: 10px 20px;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 300px;
  margin: 0 0 45px auto;
}
.global-select select {
  padding: 15px 37px 15px 15px;
}

/*
# c-logo__wrap
------------------------*/
.c-logo__wrap {
  width: 490px;
}
.c-logo__wrap .logo-text {
  font-size: var(--font-size-22);
  letter-spacing: 0.16em;
}

/*
# c-entry__button
------------------------*/
.c-entry__button {
  color: var(--color-white);
  font-size: var(--font-size-18);
  background: url(../../img/common/mail_ic.png) left 40px center no-repeat, var(--accent-color);
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 10px 0 35px;
}

/*
# c-tel__list
------------------------*/
.c-tel__list .tel__num small {
  margin-right: 10px;
  color: var(--accent-color);
}
.c-tel__list .c-tel__item {
  line-height: 1.2;
}
.c-tel__list .c-tel__item .tel__num {
  font-size: var(--font-size-26);
}
.c-tel__list .c-tel__item .tel__num small {
  font-size: var(--font-size-20);
}
.c-tel__list .c-tel__item .tel__text {
  display: block;
}
.c-tel__list .c-fax__item .tel__num {
  font-size: var(--font-size-18);
}
.c-tel__list .c-fax__item .tel__num small {
  font-size: var(--font-size-18);
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
}
.com-table tr th {
  padding: 20px 10px;
  width: 300px;
  vertical-align: top;
  background: #dbdbdb;
}
.com-table tr td {
  width: calc(100% - 300px);
  padding: 20px 20px;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
  line-height: 1.3;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 30px;
}
.com-content p:last-child {
  margin-bottom: 0;
}

.com-text {
  line-height: 2.2;
  letter-spacing: var(--body-letter-spacing);
}
.com-text.pc-center {
  text-align: center;
}

#g-map h4 {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 350px;
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*
# com-button
------------------------*/
.com-button {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--primary-color);
  text-align: center;
  font-size: var(--font-size-17);
  position: relative;
}
.com-button::before, .com-button::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 1;
}
.com-button::before {
  right: 5%;
}
.com-button::after {
  right: 6.5%;
}
.com-button:hover::before {
  right: 4%;
}
.com-button:hover::after {
  right: 5.5%;
}

/*==========================================
共通タイトル
===========================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.1em;
}

.section-title {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 35px;
}
.section-title.pc-left {
  text-align: left;
}
.section-title span {
  display: block;
  letter-spacing: 0.1em;
}
.section-title .title-en {
  color: var(--accent-color);
  font-size: var(--font-size-22);
}
.section-title .title-ja {
  font-size: var(--font-size-38);
  line-height: 1.5;
}

.headline-title {
  font-size: var(--font-size-25);
  border-bottom: 1px solid var(--color-gray-dark);
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
}
.headline-title::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background: var(--accent-color);
  inset: auto auto -1px 0;
}

.second-title {
  font-size: var(--font-size-38);
  padding-bottom: 15px;
  margin-bottom: 55px;
  position: relative;
  text-align: center;
}
.second-title:before {
  position: absolute;
  content: "";
  inset: auto 0 0;
  width: 30px;
  height: 1px;
  margin: 0 auto;
  background: var(--accent-color);
}
.second-title.pc-left {
  text-align: left;
}
.second-title.pc-left::before {
  inset: auto auto 0 0;
}

/*==========================================
header
===========================================*/
#header {
  position: relative;
  padding: 5px 125px 0 2.34375%;
  background: var(--color-white);
}
#header .header__right {
  width: 555px;
}
#header .header__info {
  gap: 20px;
}
#header .header__tel-list {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
}
#header .header__entry-button {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100px;
  height: 100%;
  color: var(--color-gray);
  padding: 35px 0 0;
  background-position: 50% 35%;
}
#header .header__nav-list {
  gap: 10px 20px;
}
#header .header__nav-item {
  font-size: var(--font-size-17);
}
#header .header__nav-item:has(.dropdown-menu__list) {
  position: relative;
}
#header .header__nav-item:has(.dropdown-menu__list) .header__nav-link:hover {
  cursor: default;
}
#header .header__nav-item:has(.dropdown-menu__list):hover .dropdown-menu__list {
  visibility: visible;
  opacity: 1;
}
#header .header__nav-item:not(:has(.dropdown-menu__list)) .header__nav-link:hover {
  color: var(--accent-color);
}
#header .header__nav-item:not(:has(.dropdown-menu__list)) .header__nav-link.current {
  color: var(--accent-color);
}
#header .header__nav-link {
  padding: 10px 0;
  display: block;
}
#header .header__nav .dropdown-menu__list {
  position: absolute;
  inset: 50px 0 auto;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  z-index: 1001;
  background: var(--color-gray-light);
  transition: 0.2s all ease-in;
  font-size: var(--font-size-15);
}
#header .header__nav .dropdown-menu__list .dropdown-menu__link {
  padding: 12px 20px;
  display: block;
}
#header .header__nav .dropdown-menu__list .dropdown-menu__link:hover {
  color: var(--accent-color);
}
#header .header__nav .dropdown-menu__list .dropdown-menu__link.current {
  color: var(--accent-color);
}
#header .header__nav .dropdown-menu__list .dropdown-menu__link.current:before {
  content: "・";
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: clamp(600px, 49.316vw, 830px);
  position: relative;
}
#top-mv .mv__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-mv .mv__catch {
  width: 76.5625%;
  margin: 0 auto;
  position: absolute;
  font-size: 6.2rem;
  letter-spacing: 0.3em;
  line-height: 1.4;
  inset: auto 0 17.4698%;
  text-shadow: 0 0 10px rgba(var(--color-white-rgb), 0.47);
}

/*==========================================
footer
===========================================*/
#footer {
  background: var(--color-gray-dark);
  padding: 50px 0 75px;
}
#footer .footer__inbox {
  position: relative;
}
#footer .footer__headline {
  padding-bottom: 40px;
  margin-bottom: 35px;
  border-bottom: 1px solid #999;
}
#footer .footer__headline-left {
  width: 550px;
}
#footer .footer__headline-left .footer__logo-wrap {
  width: 100%;
}
#footer .footer__headline-right {
  width: 455px;
  gap: 20px;
}
#footer .footer__headline-right .footer__tel-list {
  text-align: right;
  line-height: 1.5;
}
#footer .footer__headline-right .footer__tel-list .c-fax__item .tel__num {
  font-size: var(--font-size-24);
}
#footer .footer__headline-right .footer__tel-list .c-fax__item .tel__num small {
  font-size: var(--font-size-16);
}
#footer .footer__bottom-wrap .footer__bottom-left {
  width: 400px;
}
#footer .footer__bottom-wrap .footer__bottom-left .footer__address {
  margin-bottom: 20px;
}
#footer .footer__bottom-wrap .footer__bottom-left .footer__insta {
  display: inline-block;
  margin-bottom: 20px;
}
#footer .footer__bottom-wrap .footer__bottom-right {
  width: 430px;
}
#footer .footer__bottom-wrap .footer__bottom-right .footer__nav {
  gap: 40px;
}
#footer .footer__bottom-wrap .footer__bottom-right .footer__nav-item {
  font-size: var(--font-size-15);
  margin-bottom: 25px;
}
#footer .footer__bottom-wrap .footer__bottom-right .footer__nav-link:hover {
  opacity: 1;
  color: var(--accent-color);
}
#footer .footer__bottom-wrap .footer__bottom-right .footer__nav .dropdown-menu.nolink:hover {
  cursor: default;
}
#footer .footer__bottom-wrap .footer__bottom-right .footer__nav .dropdown-menu__list {
  margin-top: 10px;
}
#footer .footer__bottom-wrap .footer__bottom-right .footer__nav .dropdown-menu__list .dropdown-menu__item {
  margin-bottom: 15px;
}
#footer .footer__bottom-wrap .footer__bottom-right .footer__nav .dropdown-menu__list .dropdown-menu__item:last-child {
  margin-bottom: 0;
}
#footer .footer__bottom-wrap .footer__bottom-right .footer__nav .dropdown-menu__list .dropdown-menu__item .dropdown-menu__link {
  padding-left: 15px;
  position: relative;
}
#footer .footer__bottom-wrap .footer__bottom-right .footer__nav .dropdown-menu__list .dropdown-menu__item .dropdown-menu__link::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 1px;
  background: var(--body-font-color);
  inset: 0 auto 0 0;
  margin: auto 0;
  z-index: 1;
}
#footer .footer__bottom-wrap .footer__bottom-right .footer__nav .dropdown-menu__list .dropdown-menu__item .dropdown-menu__link:hover {
  opacity: 1;
  color: var(--accent-color);
}

#copyright {
  word-break: normal;
  text-align: center;
  position: absolute;
  inset: auto auto 0 0;
  color: #999;
}
#copyright small {
  font-size: var(--font-size-15);
}
#copyright a {
  color: #999;
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  display: flex;
  align-items: center;
  height: 500px;
}
.lower-sv .sv__title {
  width: clamp(1080px, 66.6666%, 1280px);
  margin: 0 auto;
}
.lower-sv .sv__title span {
  font-size: var(--font-size-45);
  letter-spacing: 0.08em;
  background: var(--primary-color);
  color: var(--color-white);
  padding: 10px 15px;
}

#about-sv {
  background: url(../../img/sv/about-sv_bg.jpg) center/cover no-repeat;
}

#jobs-sv {
  background: url(../../img/sv/jobs-sv_bg.jpg) center/cover no-repeat;
}

#education-sv {
  background: url(../../img/sv/education-sv_bg.jpg) center/cover no-repeat;
}

#welfare-sv {
  background: url(../../img/sv/welfare-sv_bg.jpg) center/cover no-repeat;
}

#staff-sv {
  background: url(../../img/sv/staff-sv_bg.jpg) center/cover no-repeat;
}

#faq-sv {
  background: url(../../img/sv/faq-sv_bg.jpg) center/cover no-repeat;
}

#recruit-sv {
  background: url(../../img/sv/recruit-sv_bg.jpg) center/cover no-repeat;
}

#contact-sv {
  background: url(../../img/sv/contact-sv_bg.jpg) center/cover no-repeat;
}

#news-sv {
  background: url(../../img/sv/news-sv_bg.jpg) center/cover no-repeat;
}

#complete-sv {
  background: url(../../img/sv/complete-sv_bg.jpg) center/cover no-repeat;
}

#site-sv {
  background: url(../../img/sv/site-sv_bg.jpg) center/cover no-repeat;
}

#privacy-sv {
  background: url(../../img/sv/privacy-sv_bg.jpg) center/cover no-repeat;
}

#e404-sv {
  background: url(../../img/sv/e404-sv_bg.jpg) center/cover no-repeat;
}

/*==========================================
top
===========================================*/
/*
# top-column
------------------------*/
#top-column {
  padding: 110px 0 100px;
}
#top-column .column__inner {
  border: 1px solid;
  position: relative;
  padding: 125px 55px 50px;
}
#top-column .column__inner .column__title {
  width: 555px;
  position: absolute;
  inset: -30px auto auto -1px;
}
#top-column .column__inner .column__title-text {
  width: 455px;
  padding: 15px 25px 15px 55px;
  background: var(--primary-color);
  color: var(--color-white);
  font-size: var(--font-size-27);
  line-height: 1.5;
}
#top-column .column__inner .column__title-text small {
  display: block;
  font-size: var(--font-size-20);
}
#top-column .column__inner .column__title-month {
  width: 100px;
  font-size: var(--font-size-38);
  color: var(--accent-color);
  background: var(--color-gray-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#top-column .column__inner .column__title-month::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0px;
  border-color: transparent var(--color-gray-dark) transparent transparent;
  margin: auto 0;
  inset: 0 auto 0 -20px;
}
#top-column .column__inner .column__title-month small {
  font-size: var(--font-size-23);
}
#top-column .column__inner .column__subtitle {
  border-bottom: 1px solid var(--color-gray);
  font-size: var(--font-size-25);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
#top-column .column__inner .column__content {
  width: 550px;
  min-height: 215px;
}
#top-column .column__inner .column__content .column__text {
  padding-right: 45px;
}
#top-column .column__inner .column__img {
  width: 415px;
  height: 280px;
  position: absolute;
  inset: 50px 55px auto auto;
}

/*
# top-about
------------------------*/
#top-about {
  padding: 90px 0 95px;
  background: url(../../img/top/about_bg.jpg) right center/cover no-repeat;
}
#top-about .about__content {
  width: 630px;
}
#top-about .about__button {
  width: 340px;
  margin-top: 45px;
}

/*
# top-data
------------------------*/
#top-data {
  padding: 115px 0 105px;
  background: url(../../img/top/data_bg.jpg) bottom center/cover no-repeat;
}
#top-data .data__title {
  line-height: 1.5;
  font-size: var(--font-size-50);
  margin-bottom: 100px;
}
#top-data .data__title span {
  color: var(--accent-color);
  font-size: 7.4rem;
}
#top-data .data__main-list {
  padding-bottom: 70px;
  margin-bottom: 90px;
  gap: 0 65px;
  background: url(../../img/top/data_ill.png) right 35px bottom no-repeat;
}
#top-data .data__main-list .data__main-item {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}
#top-data .data__main-list .data__main-item:nth-child(odd) {
  margin-top: -225px;
}
#top-data .data__main-list .data__main-item-title {
  font-size: var(--font-size-40);
}
#top-data .data__main-list .data__main-item-text {
  font-size: var(--font-size-44);
}
#top-data .data__main-list .data__main-item-text span {
  font-size: 10rem;
  color: var(--accent-color);
}
#top-data .data__sub-list {
  gap: 155px 50px;
}
#top-data .data__sub-list .data__sub-item {
  width: 540px;
  background: var(--color-white);
  padding: 50px 45px;
}
#top-data .data__sub-list .data__sub-item:nth-child(4n-3), #top-data .data__sub-list .data__sub-item:nth-child(4n) {
  margin-top: -60px;
}
#top-data .data__sub-list .data__sub-item:nth-child(4n-3) {
  margin-left: -50px;
}
#top-data .data__sub-list .data__sub-item:nth-child(4n) {
  margin-right: -50px;
}
#top-data .data__sub-list .data__sub-item-title {
  border-left: 6px solid var(--accent-color);
  font-size: var(--font-size-30);
  margin-bottom: 30px;
  padding-left: 15px;
  line-height: 1.3;
}
#top-data .data__sub-list .data__sub-item-text {
  text-align: center;
}

/*
# top-links
------------------------*/
#top-links {
  padding: 65px 0 100px;
}
#top-links .links__title {
  font-size: var(--font-size-38);
  text-align: center;
  line-height: 1.5;
  background: url(../../img/top/links-ttl_ill.png) right 80px center no-repeat;
  padding: 60px 0 35px;
  margin-bottom: 20px;
}
#top-links .links__title span {
  color: var(--accent-color);
}
#top-links .links__list {
  gap: 20px;
}
#top-links .links__list .links__item {
  width: 345px;
}
#top-links .links__list .links__item:first-child {
  width: 100%;
}
#top-links .links__list .links__item:nth-child(2), #top-links .links__list .links__item:nth-child(3) {
  width: 530px;
}
#top-links .links__list .links__item-link {
  padding: 5px;
  border: 1px solid;
  display: block;
  height: 320px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
}
#top-links .links__list .links__item-link::before, #top-links .links__list .links__item-link::after {
  position: absolute;
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  inset: 0;
  margin: auto;
  z-index: -1;
}
#top-links .links__list .links__item-link::after {
  background: rgba(var(--color-black-rgb), 0.65);
}
#top-links .links__list .links__item-link:hover {
  opacity: 1;
}
#top-links .links__list .links__item-link:hover::after {
  background: none;
}
#top-links .links__list .links__item-link:hover .links__item-inner::before {
  filter: brightness(1.3);
}
#top-links .links__list .links__item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px 0 25px;
  position: relative;
  z-index: 1;
}
#top-links .links__list .links__item-jobs .links__item-link::before {
  background: url(../../img/top/links-jobs_img.jpg) center/100% no-repeat;
}
#top-links .links__list .links__item-education .links__item-link::before {
  background: url(../../img/top/links-education_img.jpg) center/100% no-repeat;
}
#top-links .links__list .links__item-welfare .links__item-link::before {
  background: url(../../img/top/links-welfare_img.jpg) center/100% no-repeat;
}
#top-links .links__list .links__item-welfare .links__item-inner {
  position: relative;
}
#top-links .links__list .links__item-welfare .links__item-inner::before {
  position: absolute;
  content: "";
  width: 298px;
  height: 328px;
  inset: -18px 13px auto auto;
  background: url(../../img/top/links-staff_women.png) center/100% no-repeat;
  z-index: 2;
}
#top-links .links__list .links__item-staff .links__item-link::before {
  background: url(../../img/top/links-staff_img.jpg) center/100% no-repeat;
}
#top-links .links__list .links__item-staff .links__item-inner {
  position: relative;
}
#top-links .links__list .links__item-staff .links__item-inner::before {
  position: absolute;
  content: "";
  width: 346px;
  height: 345px;
  inset: -35px auto auto -8px;
  background: url(../../img/top/links-staff_man.png) center/100% no-repeat;
  z-index: 2;
}
#top-links .links__list .links__item-faq .links__item-link::before {
  background: url(../../img/top/links-faq_img.jpg) center/100% no-repeat;
}
#top-links .links__list .links__item-recruit .links__item-link::before {
  background: url(../../img/top/links-recruit_img.jpg) center/100% no-repeat;
}
#top-links .links__list .links__item-text {
  line-height: 1.5;
  font-size: var(--font-size-40);
  position: relative;
  z-index: 3;
}
#top-links .links__list .links__item-text .links__item-num {
  display: block;
  letter-spacing: 0.2em;
  color: var(--accent-color);
}
#top-links .links__list .links__item-text .links__item-name {
  letter-spacing: 0.1em;
  color: var(--color-white);
}
#top-links .links__list .links__item-more {
  width: 95px;
  height: 60px;
  position: absolute;
  inset: auto -2px -2px auto;
  color: var(--color-white);
  font-size: var(--font-size-20);
  display: flex;
  align-items: center;
  z-index: 2;
}
#top-links .links__list .links__item-more::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  z-index: -1;
  inset: 0 0 0 auto;
}

/*
# top-entry
------------------------*/
#top-entry {
  padding: 100px 0;
  background: url(../../img/top/entry_bg.jpg) center/cover no-repeat;
}
#top-entry .entry__tel-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}
#top-entry .entry__tel-list .c-tel__item .tel__num {
  font-size: var(--font-size-39);
}
#top-entry .entry__tel-list .c-tel__item .tel__num small {
  font-size: var(--font-size-26);
}
#top-entry .entry__tel-list .c-tel__item .tel__text {
  text-align: center;
}
#top-entry .entry__tel-list .c-fax__item .tel__num {
  font-size: var(--font-size-30);
}
#top-entry .entry__tel-list .c-fax__item .tel__num small {
  font-size: var(--font-size-18);
}
#top-entry .entry__button {
  width: 380px;
  margin: 0 auto;
}
#top-entry .entry__button span {
  padding-left: 45px;
  background: url(../../img/common/mail_ic.png) left center no-repeat;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 85px 0;
}
#top-news .news__inbox {
  position: relative;
}
#top-news .news__post-list {
  width: 865px;
  min-height: 170px;
  padding-left: 40px;
  border-left: 1px solid var(--color-gray-dark);
}
#top-news .news__post {
  margin-bottom: 40px;
}
#top-news .news__post:last-child {
  margin-bottom: 0;
}
#top-news .news__post-link {
  gap: 20px;
}
#top-news .news__post-link:hover {
  transform: translateX(10px);
}
#top-news .news__post-link:hover .news__post-tag {
  background: var(--accent-color);
  color: var(--color-white);
}
#top-news .news__post-link:hover .news__post-title {
  text-decoration: underline;
}
#top-news .news__post-date {
  width: 95px;
  font-size: var(--font-size-16);
}
#top-news .news__post-tags {
  width: 130px;
  gap: 7px;
}
#top-news .news__post-tags .news__post-tag {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-size: var(--font-size-15);
  padding: 0 25px;
  border-radius: 27px;
  transition: all 0.3s;
}
#top-news .news__post-title {
  width: calc(100% - 265px);
}
#top-news .news__button {
  position: absolute;
  inset: auto auto 0 0;
  font-size: var(--font-size-17);
  padding-right: 45px;
}
#top-news .news__button::before, #top-news .news__button::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 1;
}
#top-news .news__button::before {
  right: 0;
}
#top-news .news__button::after {
  right: 10px;
}
#top-news .news__button:hover {
  text-decoration: underline;
}
#top-news .news__button:hover::before {
  right: -10px;
}
#top-news .news__button:hover::after {
  right: 0;
}

/*==========================================
about
===========================================*/
/*
# about-philosophy
------------------------*/
#about-philosophy .philosophy__text {
  font-size: var(--font-size-18);
  margin-bottom: 20px;
}
#about-philosophy .philosophy__item {
  margin-bottom: 10px;
  padding: 25px 70px 30px;
}
#about-philosophy .philosophy__item:last-child {
  margin-bottom: 0;
}
#about-philosophy .philosophy__item-title {
  margin-bottom: 15px;
}
#about-philosophy .philosophy__item-title-num {
  font-size: var(--font-size-40);
  color: var(--accent-color);
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
}
#about-philosophy .philosophy__item-title-num::after {
  width: 1px;
  height: 50%;
  position: absolute;
  content: "";
  background: var(--accent-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}
#about-philosophy .philosophy__item-title-text {
  font-size: var(--font-size-26);
  vertical-align: super;
}

/*
# about-greeting
------------------------*/
#about-greeting .greeting__content {
  width: 605px;
}
#about-greeting .greeting__content .name {
  text-align: right;
  font-size: var(--font-size-24);
}

/*
# about-history
------------------------*/
#about-history .history__table tr {
  display: flex;
}
#about-history .history__table th,
#about-history .history__table td {
  padding: 20px 0;
}
#about-history .history__table th {
  width: 180px;
  border-bottom: 1px solid var(--accent-color);
}
#about-history .history__table td {
  width: calc(100% - 180px);
  padding-left: 75px;
  border-bottom: 1px solid var(--color-gray-dark);
}

/*
# about-company
------------------------*/
#about-company .company__table {
  margin-bottom: 55px;
}

/*==========================================
jobs
===========================================*/
/*
# jobs-intro
------------------------*/
#jobs-intro .intro__card {
  position: relative;
  margin-bottom: 80px;
}
#jobs-intro .intro__card:last-child {
  margin-bottom: 0;
}
#jobs-intro .intro__card-content {
  width: 540px;
  min-height: 400px;
}
#jobs-intro .intro__card-img {
  position: absolute;
  top: 0;
}
#jobs-intro .intro__card:nth-child(odd) .intro__card-img {
  left: -100px;
}
#jobs-intro .intro__card:nth-child(odd) .intro__card-content {
  margin-left: auto;
}
#jobs-intro .intro__card:nth-child(even) .intro__card-img {
  right: -100px;
}

/*==========================================
education
===========================================*/
/*
# education-personality
------------------------*/
#education-personality .personality__headline {
  margin-bottom: 15px;
}
#education-personality .personality__headline-list {
  width: 540px;
}
#education-personality .personality__headline-list .personality__headline-item {
  padding-left: 30px;
  background: url(../../img/education/personality-item_ic.png) left top 3px no-repeat;
  margin-bottom: 10px;
}
#education-personality .personality__headline-list .personality__headline-item:last-child {
  margin-bottom: 0;
}
#education-personality .personality__bottom {
  gap: 45px;
}
#education-personality .personality__bottom .personality__bottom-text {
  width: 560px;
  font-size: var(--font-size-20);
}

/*
# education-policy
------------------------*/
#education-policy .policy__text {
  margin-bottom: 30px;
}
#education-policy .policy__text:last-child {
  margin-bottom: 0;
}
#education-policy .policy__text:nth-of-type(1) {
  font-size: var(--font-size-20);
}
#education-policy .policy__text span {
  color: var(--accent-color);
}

/*
# education-training
------------------------*/
#education-training .training__inbox {
  position: relative;
}
#education-training .training__img {
  position: absolute;
  inset: 0 auto auto -100px;
}
#education-training .training__content {
  width: 540px;
  min-height: 410px;
  margin-left: auto;
}

/*
# education-qualification
------------------------*/
#education-qualification .qualification__inbox {
  position: relative;
}
#education-qualification .qualification__img {
  position: absolute;
  inset: 0 -100px auto auto;
}
#education-qualification .qualification__content {
  width: 540px;
  min-height: 410px;
}

/*==========================================
welfare
===========================================*/
#welfare-section .welfare__text {
  margin-bottom: 55px;
}
#welfare-section .welfare__list {
  gap: 45px 30px;
}
#welfare-section .welfare__list .welfare__card {
  width: 340px;
}
#welfare-section .welfare__list .welfare__card-title {
  font-size: var(--font-size-22);
  text-align: center;
  border-bottom: 1px solid var(--accent-color);
  margin-bottom: 10px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  line-height: 1.6;
}
#welfare-section .welfare__list .welfare__card-title small {
  display: block;
  font-size: var(--font-size-17);
}

/*==========================================
staff
===========================================*/
/*
# staff-archive
------------------------*/
#staff-archive .staff__list {
  gap: 30px;
}
#staff-archive .staff__list .staff__card {
  width: 340px;
}
#staff-archive .staff__list .staff__card-img {
  width: 100%;
  height: 220px;
}
#staff-archive .staff__list .staff__card-title {
  padding: 15px 0;
  border-bottom: 1px solid var(--accent-color);
  font-size: var(--font-size-22);
  text-align: center;
}

/*
# staff-single
------------------------*/
#staff-single .staff__post-wrap {
  background: var(--color-white);
  padding: 60px 70px;
}
#staff-single .staff__post-headline {
  margin-bottom: 35px;
}
#staff-single .staff__post-headline .staff__post-title {
  width: 500px;
  border-bottom: 1px solid var(--accent-color);
  padding: 0 0 15px 55px;
}
#staff-single .staff__post-headline .staff__post-title-belong {
  display: block;
  font-size: var(--font-size-18);
}
#staff-single .staff__post-headline .staff__post-title-name {
  font-size: var(--font-size-28);
}
#staff-single .staff__post-headline .staff__post-title-name small {
  font-size: var(--font-size-17);
}
#staff-single .staff__post-headline .staff__post-thumb {
  width: 440px;
  height: 300px;
}
#staff-single .staff__post-subtitle {
  font-size: var(--font-size-22);
}
#staff-single .staff__post-interview .interview__text {
  margin-bottom: 20px;
}
#staff-single .staff__post-interview .interview__item {
  margin-bottom: 30px;
}
#staff-single .staff__post-interview .interview__item:last-child {
  margin-bottom: 0;
}
#staff-single .staff__post-interview .interview__item-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
#staff-single .staff__post-interview .interview__item-content {
  width: 780px;
}
#staff-single .staff__post-interview .interview__item-title {
  padding-left: 45px;
  margin-bottom: 25px;
  position: relative;
  font-size: var(--font-size-18);
}
#staff-single .staff__post-interview .interview__item-title::before {
  position: absolute;
  content: "Q";
  width: 32px;
  height: 32px;
  background: var(--accent-color);
  color: var(--color-white);
  inset: 0 auto auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#staff-single .staff__post-interview .interview__item-text {
  background: var(--color-gray-dark);
  border-radius: 10px;
  padding: 25px 20px;
  position: relative;
}
#staff-single .staff__post-interview .interview__item-text:before {
  position: absolute;
  content: "";
  width: 49px;
  height: 29px;
  background: url(../../img/staff/interview-ans_arr.png) center/100% no-repeat;
  inset: 45px -44px auto auto;
}
#staff-single:has(.staff__post-schedule) .staff__post-interview {
  margin-bottom: 45px;
}
#staff-single .staff__post-schedule .schedule__item {
  margin-bottom: 15px;
  background: var(--color-gray-dark);
  border-radius: 10px;
  padding: 15px 0;
  font-size: var(--font-size-18);
}
#staff-single .staff__post-schedule .schedule__item:last-child {
  margin-bottom: 0;
}
#staff-single .staff__post-schedule .schedule__item-time {
  width: 160px;
  color: var(--accent-color);
  text-align: center;
}
#staff-single .staff__post-schedule .schedule__item-text {
  width: 715px;
}

/*==========================================
faq
===========================================*/
#faq-archive .faq__item {
  margin-bottom: 45px;
}
#faq-archive .faq__item:last-child {
  margin-bottom: 0;
}
#faq-archive .faq__item-title, #faq-archive .faq__item-body {
  position: relative;
  padding-left: 45px;
}
#faq-archive .faq__item-title::before, #faq-archive .faq__item-body::before {
  position: absolute;
  width: 32px;
  height: 32px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  inset: 0 auto auto 0;
}
#faq-archive .faq__item-title {
  font-size: var(--font-size-18);
  border-bottom: 1px solid;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
#faq-archive .faq__item-title:before {
  background: var(--primary-color);
  content: "Q";
}
#faq-archive .faq__item-body:before {
  background: var(--accent-color);
  content: "A";
}

/*==========================================
recruit
===========================================*/
.recruit__page-list {
  gap: 40px;
}
.recruit__page-list .recruit__page-item {
  width: 520px;
}
.recruit__page-list .recruit__page-link::before, .recruit__page-list .recruit__page-link::after {
  transform: rotate(135deg);
  right: 6%;
}
.recruit__page-list .recruit__page-link::before {
  bottom: -8px;
}
.recruit__page-list .recruit__page-link::after {
  top: -8px;
}
.recruit__page-list .recruit__page-link:hover::before {
  bottom: -12px;
}
.recruit__page-list .recruit__page-link:hover::after {
  top: -4px;
}

.recruit__section:nth-of-type(odd) {
  background: var(--color-gray-light);
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 95px;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 115px);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 2px 10px;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
  margin: 10px 0;
}
.column__wrap .column__list .more-btn {
  width: 125px;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 210px;
  height: 200px;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 820px;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  margin-bottom: 20px;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 95px;
  padding: 3px 0;
}
.single__post-meta .category-label {
  width: calc(100% - 95px);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 10px;
}
.single__post-meta .category-label li a {
  padding: 3px 10px;
}

/*==========================================
  contact
  ===========================================*/
#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item {
  margin-bottom: 35px;
  border-bottom: none;
}
#contact .contact__form-item .contact__form-label {
  margin-bottom: 20px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#contact .contact__form-item .contact__form-input {
  padding: 0;
}
#contact .contact__form-item .contact__form-input.flex {
  display: flex;
  align-items: baseline;
  gap: 10px 20px;
}
#contact .contact__form-item .contact__form-input.flex span {
  font-size: var(--font-size-16);
}
#contact .contact__form-item .contact__form-input.flex .global-select {
  margin: 0;
}
#contact .contact__form-item .contact__form-input .contact__form-list {
  gap: 15px;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: center;
}
#contact .contact__form-value {
  padding: 20px 15px;
}
#contact .contact__form-select {
  width: 200px;
}
#contact .contact__form-select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact__form-select select {
  padding: 15px 30px 15px 10px;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 150px;
}
#contact .contact__form #address {
  margin-top: 15px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 300px;
}
#contact .contact__form textarea {
  height: 260px;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact__submits-wrap button {
  height: 75px;
}
#contact .contact__submits-wrap {
  gap: 35px;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 304px;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 270px;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 240px;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 70px;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
#site-map .sitemap__item-link {
  padding: 2% 0 2% 3%;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/