@charset "utf-8";
/* CSS Document */

/*
Theme Name:株式会社三城商事　ホームページ

Description:株式会社三城商事様専用テーマ

Author:有限会社きららナビデザインワークス
*/


/* 共通設定 */

/*変更*/
html {
  scrollbar-gutter: stable;
  background-color: #2c2c2c;
}
/*変更*/
body {
  position: relative;
  background-color: white;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  color: #333;
  font-size: 17px;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
}
main {
  width: 100%;
}
section {
  padding: 5% 0;
}
a {
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
dl,
dd {
  margin: 0;
}
h1 {
  margin: 0;
}
h2,
h3,
h4 {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 1280px) {
  body {
    font-size: 16px;
    line-height: 1.8;
  }
  .break {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .break_sp {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  body {
    min-width: 360px;
    overflow-x: scroll;
    font-size: 16px;
    line-height: 1.8;
  }
  section {
    padding: 10% 0;
  }
}


/* header */
.header {
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 120px;
  transition: background-color 0.3s ease;
}
.change-color {
  background: rgba(255, 255, 255, 0.8);
}
.header_hum_menu {
  display: none;
}
.head {
  display: flex;
  justify-content: space-between;
  height: 100%;
  padding: 0 0.75vw;
}
.head_title {
  width: 25vw;
}
.head_title a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.head_mark {
  width: 25%;
  height: 120px;
}
.head_mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.head_titleText {
  width: 75%;
  color: #253093;
  font-size: 1.8rem;
  font-weight: bold;
  white-space: nowrap;
}
.head_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(100vw - 25vw);
  font-size: 1vw;
}
.head_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.1vw;
  width: calc(100% - 305px);
  height: 100%;
  padding-right: 1rem;
  box-sizing: border-box;
}
.head_list_item {
  position: relative;
  font-weight: bold;
}
.head_list_item a {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  padding: 20px 10px;
  box-sizing: border-box;
  color: #253093;
}
.head_list_slidedown {
  position: relative;
  z-index: auto;
}
.head_list_slidedown a {
  padding-right: 20px;
  box-sizing: border-box;
}
.head_list_slidedown::after {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  content: "\f078";
  color: #253093;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  transition: 0.6s;
}
.head_list_slidedown.open {
  z-index: 1;
}
.head_list_slidedown.open::after {
  transform: rotate(-180deg);
  color: #4d51d1;
}
.head_submenu {
  position: relative;
  display: none;
  width: 250px;
  border: 1px solid #253093;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
}
.head_submenu li:not(:last-child) {
  border-bottom: 1px solid #4da0d1;
}
.head_submenu li:first-child {
  border-radius: 5px 5px 0 0;
}
.head_submenu li:last-child {
  border-radius: 0 0 5px 5px;
}
.head_submenu span::after {
  position: absolute;
  right: 10px;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  height: fit-content;
  content: "\f105";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  transition: 0.6s;
}
.open .head_submenu {
  display: block;
  animation: slide_down 1s forwards;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2424;
}
@keyframes head_list_slidedown {
  from {
  }
  to {
    padding-top: 10px;
  }
}
.head_list_slidedown {
  padding-right: 10px;
  display: flex;
  align-items: center;
}
.head_submenu li {
  background: #f5f9ff;
}
.head_list li:hover {
  opacity: 0.9;
}
.head_list li:hover .head_submenu li {
  opacity: 1;
}
.head_list_item a:hover {
  color: #4d51d1;
}
.head_btn {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  width: 305px;
  box-sizing: border-box;
}
.head_btn_item {
  width: 160px;
  height: 80px;
  margin: auto 0;
  font-size: 15px;
  line-height: 1.4;
}
.head_btn_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
}
.head_btn-cyan {
  background: #4da0d1;
  transition: background-color 0.5s ease;
}
.head_btn-cyan a:hover {
  background: #5ABCF6;
  transition: background-color 0.5s ease;
}
.head_btn-blue {
  background: #4d51d1;
  transition: background-color 0.5s ease;
}
.head_btn-blue a:hover {
  background: #5055FF;
  transition: background-color 0.5s ease;
}
@media screen and (max-width: 1280px) {
  .head_titleText {
    font-size: 2vw;
  }
  .head_menu {
    font-size: 1.2vw;
  }
  .head_list {
    gap: 0;
    width: calc(100% - 225px);
  }
  .head_btn {
    width: 225px;
  }
  .head_btn_item {
    width: 120px;
    height: 55px;
    font-size: 13px;
  }
}
@media screen and (max-width: 1024px) {
  .head {
    display: none;
  }
  .head_title {
    width: 35vw;
  }
  .head_titleText {
    font-size: 3vw;
  }
  .header_hum_menu {
    display: block;
    height: 100px;
  }
  .hum_menu_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 100px);
    height: 100px;
    padding-left: 20px;
    box-sizing: border-box;
  }
  .hamburger-overlay {
		position: fixed;
		top: 20px;
		right: 20px;
		z-index: 1000;
		width: 60px;
		height: 60px;
		border: none;
		background: #fff;
    border: 2px solid #4D51D1;
		cursor: pointer;
	}
	.hamburger-overlay__line {
		position: absolute;
		left: 17px;
		width: 26px;
		height: 2px;
		background-color: #4D51D1;
		transition: all .6s;
	}
	.hamburger-overlay__line:nth-of-type(1) { top: 19px; }
	.hamburger-overlay__line:nth-of-type(2) { top: 28px; }
	.hamburger-overlay__line:nth-of-type(3) { top: 37px; }
	.hamburger-overlay.active .hamburger-overlay__line {
		background-color: #4D51D1;
	}
	.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
		transform: translateY(9px) rotate(-45deg);
	}
	.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
		opacity: 0;
	}
	.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
		transform: translateY(-9px) rotate(45deg);
	}
	.nav-overlay {
		position: fixed;
		top: 0;
		right: 0;
		width: 65%;
		height: 100vh;
		padding: 5rem 3rem 0 3rem;
		box-sizing: border-box;
		background-color: #4F7EEF;
		visibility: hidden;
		opacity: 0;
		transition: all .6s;
		z-index: 900;
	}
	.nav-overlay.active {
		visibility: visible;
		opacity: 1;
		overflow: auto;
	}
	.nav-overlay_titleBox {
		display: flex;
		align-items: center;
	}
	.nav-overlay_titleImg {
		width: 75px;
	}
	.nav-overlay_titleImg img {
		width: 100%;
		height: auto;
	}
	.nav-overlay_title {
		padding-left: 1rem;
		font-size: 2rem;
		color: #fff;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
	}
	.nav-overlay__content {
		width: 100%;
		box-sizing: border-box;
	}
	.nav-overlay__list {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.nav-overlay__item {
		opacity: 0;
		transform: translateY(20px);
		transition: all .6s;
		background-repeat: repeat-x;
		background-position: bottom;
    border-bottom: 0.5px solid #fff;
	}
	.nav-overlay.active .nav-overlay__item {
		opacity: 1;
		transform: translateY(0);
	}
	.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
	.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
	.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
	.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
	.nav-overlay__link {
		display: inline-block;
		padding: 20px;
		color: #fff;
		text-decoration: none;
		transition: color .3s;
	}
	.nav-overlay__link:hover {
		color: #4a90e2;
	}
	.nav-overlay__item {
		width: 100%;
	}
  .nav-overlay__item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

	.overlay_list_outer {
		display: block;
		padding-bottom: 20px;
	}
	.overlay_list {
		display: flex;
		flex-wrap: wrap;
		margin-left: 1rem;
		padding: 0.5rem 1.5rem;
		border: 1px solid #D9CED1;
		box-sizing: border-box;
	}
	.overlay_listItem {
		position: relative;
	}
	.overlay_listItem a {
		padding: 15px 20px;
	}
	.overlay_listItem a::before {
		position: absolute;
		top: 1.6rem;
		left: 0;
		content: "";
		width: 0.8rem;
		height: 3px;
		margin-right: 0.5rem;
		background: #fff;
		border-radius: 5px;
	}
}
@media screen and (max-width: 600px) {
	.header_pc {
		height: 80px;
	}
	.header_pc_logo {
		width: 45%;
	}
	.header_pc_contact {
		display: none;
	}
  .header,
  .header_hum_menu,
  .head_title {
    height: 80px;
  }
  .hum_menu_container {
    padding-left: 10px;
  }
  .hum_menu_container {
    display: block;
    height: 80px;
  }
  .head_title {
    width: 100%;
  }
  .head_title a {
    width: 100%;
    height: 80px;
  }
  .head_mark {
    width: 25%;
    height: 80px;
  }
  .head_titleText {
    width: 75%;
    font-size: 5vw;
  }
  .head_btn {
    display: none;
  }
	.hamburger-overlay {
		top: 10px;
	}
	.nav-overlay {
		width: 100%;
		padding: 1rem 2rem 2rem 2rem;
	}
	.overlay_list {
		display: block;
	}
	.overlay_listItem a {
		padding: 7px 20px;
	}
	.overlay_listItem a::before {
		top: 1.2rem;
	}
}



/* footer */
/*修正箇所*/
/* footer {
  position: relative;
  width: 100%;
  height: 73vh;
  padding-top: 3%;
  padding-bottom: 3%;
  box-sizing: border-box;
  background: #f2f7ff;
} */
footer {
	position: relative;
	width: 100%;
	height: 73vh;
	padding-top: 3%;
	padding-bottom: 3%;
	box-sizing: border-box;
	background: #f2f7ff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
/* .foot {
  display: flex;
  justify-content: space-between;
  height: 90%;
} */
/* 修正箇所 */
.foot {
  display: flex;
  justify-content: space-between;
  /* height: 90%; */
}

.foot_group {
  width: 35%;
}
.foot_company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.foot_company_mark {
  display: flex;
  align-items: center;
  width: 20%;
}
.foot_company_mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.foot_company_name {
  width: 80%;
  margin: 0;
  color: #253093;
  font-size: 1.7rem;
  font-weight: bold;
  white-space: nowrap;
}
.foot_box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 30px;
}
.foot_inner {
  padding-left: 1rem;
  border-left: 3px solid #253093;
}
.foot_inner_category {
  font-weight: 600;
}
.foot_inner_address,
.foot_inner_number {
  font-size: 16px;
}
.foot_menu {
  display: flex;
  justify-content: flex-end;
  gap: 5rem;
  width: 65%;
  font-weight: 600;
}
.foot_menu_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #253093;
}
.foot_menu_list a {
  color: #253093;
}
.foot_service_list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 16px;
  font-weight: 400;
}
.foot_service_listItem a {
  position: relative;
  display: inline-block;
  padding-left: 1rem;
}
.foot_service_listItem a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #253093;
}
.foot_menu_listItem a:hover,
.foot_service_listItem a:hover,
.foot_policy a:hover {
  color: #4D51D1;
}
/* .foot_bottom {
  display: flex;
  justify-content: space-between;
  height: 10%;
  margin: auto auto 0 auto;
  border-top: 1px solid #253093;
  color: #253093;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
} */
.foot_bottom {
  display: flex;
  justify-content: space-between;
  /* height: 10%; */
  margin: auto auto 0 auto;
  border-top: 1px solid #253093;
  color: #253093;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.foot_policy {
  font-size: 1rem;
  font-weight: 600;
}
.foot_policy a {
  color: #253093;
}
@media screen and (max-width: 1280px) {
  .foot_group {
    width: 40%;
  }
  .foot_inner_address,
  .foot_inner_number {
    font-size: 1.2vw;
  }
  .foot_menu {
    width: 60%;
    gap: 3rem;
  }
  .foot_service_list {
    font-size: 1.2vw;
  }
  .foot_policy {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  footer {
    height: 30vh;
    min-height: 500px;
  }
  .foot_company_name {
    font-size: 1.4rem;
  }
  .foot_inner_address,
  .foot_inner_number {
    font-size: 14px;
  }
  .foot_menu {
    gap: 1rem;
  }
  .foot_service_list {
    font-size: 14px;
  }
  .foot_policy {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  footer {
    height: auto;
    padding-top: 5%;
  }
  .foot {
    display: block;
  }
  .foot_group {
    width: 100%;
  }
  .foot_menu {
    justify-content: flex-start;
    width: 100%;
    margin-top: 10%;
    padding: 7% 0 14% 0;
    box-sizing: border-box;
    border-top: 1px solid #253093;
  }
  .foot_menu_list {
    width: 50%;
    padding-left: 0.5rem;
  }
}



/* TOPに戻るボタン */
.page_top {
  width: 70px;
  height: 70px;
  position: fixed;
  z-index: 9998;
  right: 5px;
  bottom: 0;
  background: #253093;
  border-radius: 50%;
  transition: opacity 0.5s ease;
}
.page_top a {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  text-decoration: none;
}
.page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 20px;
  color: #fff;
  position: absolute;
  width: 20px;
  height: 20px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.page_top a::after {
  content: 'PAGE TOP';
  font-size: 10px;
  color: #fff;
  position: absolute;
  top: 36px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.page_top:hover {
  background: #4d8ed1;
}


/* 全ページ共通CONTACT */
.contact_line {
  display: none;
}
.common_contact {
  display: flex;
  height: 330px;
  color: #fff;
}
.common_contact p {
  margin: 0;
}
.common_contact_titleBox {
  display: flex;
  align-items: center;
  width: 50%;
  padding-left: 5%;
  box-sizing: border-box;
  background: #5b99f6;
  border-radius: 30px 0 0 30px;
}
.common_contact_title {
  display: flex;
  align-items: center;
  margin: 0;
}
.common_contact_titleText {
  padding-right: 2rem;
  border-right: 1px solid #fff;
  font-size: 3.3rem;
}
.common_contact_subTitle {
  padding-left: 2rem;
  font-size: 1.2rem;
  font-weight: bold;
}
.common_contact_box {
  width: 50%;
}
.common_contact_item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
}
.common_contact_item-cyan {
  background: #4f7eef;
  border-radius: 0 30px 0 0;
}
.common_contact_item-blue {
  background: #4d51d1;
  border-radius: 0 0 30px 0;
}
.common_contact_item a {
  color: #fff;
}
.common_contact_telText {
  font-size: 1.2rem;
  text-align: center;
}
.common_contact_telInner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.common_contact_telIcon,
.common_contact_formIcon {
  width: auto;
  height: 2rem;
  margin-right: 1rem;
  text-align: center;
}
.common_contact_telIcon img,
.common_contact_formIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.common_contact_tel {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.common_contact_telTime {
  font-size: 1rem;
  font-weight: 600;
}
.common_contact_formInner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.common_contact_form {
  font-size: 1.6rem;
}
.common_contact_item-blue:hover {
  background: #D4EBFF;
  transition: background-color 0.5s ease;
}
.common_contact_item-blue:hover .common_contact_form {
  color: #4d51d1;
  transition: color 0.5s ease;
}
@media screen and (max-width: 1280px) {
  .common_contact {
    min-height: 230px;
    height: 35vh;
  }
  .common_contact_titleText {
    font-size: 3.5vw;
  }
  .common_contact_subTitle {
    font-size: 1.4vw;
  }
  .common_contact_telText {
    font-size: 1.1rem;
  }
  .common_contact_tel {
    font-size: 1.6rem;
  }
  .common_contact_telTime {
    font-size: 14px;
  }
  .common_contact_form {
    font-size: 1.3rem;
  }
  .common_contact_telIcon,
  .common_contact_formIcon {
    height: 1.5rem;
    margin-right: 0.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .common_contact {
    height: 20vh;
  }
  .common_contact_titleText {
    padding-right: 1rem;
    font-size: 30px;
  }
  .common_contact_subTitle {
    padding-left: 1rem;
    font-size: 14px;
  }
  .common_contact_telText,
  .common_contact_form {
    font-size: 2vw;
  }
  .common_contact_telIcon,
  .common_contact_formIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1rem;
  }
  .common_contact_tel {
    font-size: 1.2rem;
  }
  .common_contact_telTime {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .contact {
    padding: 10% 0 22% 0;
  }
  .contact_line {
    display: block;
    width: 80%;
    height: 0.5px;
    margin: 0 auto;
    background: #4d51d1;
  }
  .common_contact {
    display: block;
    min-height: inherit;
    height: auto;
  }
  .common_contact_titleBox {
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 1rem 0;
    box-sizing: border-box;
    border-radius: 15px 15px 0 0;
    text-align: center;
  }
  .common_contact_title {
    justify-content: center;
  }
  .common_contact_box {
    width: 100%;
  }
  .common_contact_item {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
  }
  .common_contact_telText,
  .common_contact_form {
    font-size: 18px;
  }
  .common_contact_item-cyan {
    border-radius: 0;
  }
  .common_contact_item-blue {
    border-radius: 0 0 15px 15px;
  }
  .common_contact_telTime {
    font-size: 10px;
  }
}

/* 全ページ共通矢印ボタン */
.arrowBox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 30px;
  margin-left: 1rem;
  background: #fff;
  border-radius: 5px;
}
.arrow {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 2px;
  margin: 8.4px 0;
  border-radius: 9999px;
  background-color: #4d51d1;
}
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 15px;
  height: 2px;
  border-radius: 9999px;
  background-color: #4d51d1;
  transform-origin: calc(100% - 1px) 50%;
}
.arrow::before {
  transform: rotate(40deg);
}
.arrow::after {
  transform: rotate(-40deg);
}
.nobg_arrowBox {
  background: none;
}
.right_arrowBox {
  margin: 0 0 20px auto;
}
.arrow-navy,
.arrow-navy::before,
.arrow-navy::after {
  background: #253093;
}
.arrow-turquoise,
.arrow-turquoise::before,
.arrow-turquoise::after {
  background: #4da0d1;
}
.arrowBox-blue {
  margin: 0;
  background: #4d51d1;
}
.arrow-blue,
.arrow-blue::before,
.arrow-blue::after {
  background: #fff;
  transition: background-color 0.5s ease;
}
.top_news_listBtn:hover .change_arrow,
.top_news_listBtn:hover .change_arrow::before,
.top_news_listBtn:hover .change_arrow::after {
  background: #fff;
}
@media screen and (max-width: 1280px) {
  .arrowBox {
    width: 45px;
    height: 25px;
  }
  .arrow {
    width: 28px;
    height: 2px;
    margin: 7.8px 0;
  }
  .arrow::before,
  .arrow::after {
    width: 10px;
    height: 2px;
  }
  .right_arrowBox {
    margin: 0 0 10px auto;
  }
}
@media screen and (max-width: 1024px) {
  .min_arrowBox-navy,
  .min_arrowBox-turquoise {
    margin: 0.5rem 0 0 0;
  }
  .arrow {
    width: 22px;
  }
}


/* トップページ共通設定 */
.top-sec {
  padding: 8% 0;
}
.top_container {
  width: 80%;
  max-width: 1480px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .top_container {
    width: 86%;
  }
}

/* トップページ・HERO */
.top_hero {
  position: relative;
  width: 100%;
  height: 100vh;
}
.top_hero_movie {
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.top_hero_movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}


/* トップページ・ABOUT */
.top_about {
  display: flex;
  justify-content: center;
}
.top_about_box {
  position: relative;
  z-index: 11;
  width: 40%;
  max-width: 740px;
  margin: 0 0 0 auto;
}
.top_about_title {
  display: flex;
  align-items: center;
}
.top_about_titleText {
  padding-right: 2rem;
  border-right: 1px solid #4d51d1;
  color: #4d51d1;
  font-size: 5vw;
  line-height: 1.3;
}
.top_about_subTitle {
  padding-left: 2rem;
  color: #4d74d1;
  font-size: 1.2rem;
  font-weight: bold;
}
.top_about_textBox {
  padding-top: 2%;
  box-sizing: border-box;
}
.top_about_text {
  color: #253093;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2.4;
}
.top_about_img {
  position: relative;
  z-index: 10;
  width: 50%;
  overflow: hidden;
}
.top_about_img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 1280px) {
  .top_about_subTitle {
    font-size: 1.4vw;
  }
  .top_about_text {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1024px) {
  .top_about_titleText {
    padding-right: 1rem;
    font-size: 48px;
  }
  .top_about_subTitle {
    padding-left: 1rem;
    font-size: 14px;
  }
  .top_about_text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .top_about {
    display: block;
  }
  .top_about_box {
    width: 86%;
    margin: 0 auto;
  }
  .top_about_textBox {
    padding-top: 0;
    padding-bottom: 5%;
  }
  .top_about_img {
    width: 100%;
    overflow: hidden;
  }
}

/* トップページ・SERVICE */
.topService {
  background: #d4ebff;
}
.top_service {
  height: auto;
  padding: 3% 0 50px 0;
  box-sizing: border-box;
  background: #fff;
}
.top_service_titleBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  padding-bottom: 1.5%;
  box-sizing: border-box;
}
.top_service_title {
  display: flex;
  align-items: center;
  width: 40%;
  margin: 0;
}
.top_service_titleText {
  padding-right: 2rem;
  box-sizing: border-box;
  border-right: 1px solid #4d51d1;
  color: #4d51d1;
  font-size: 4vw;
  line-height: 1.3;
}
.top_service_subTitle {
  padding-left: 2rem;
  box-sizing: border-box;
  color: #4d74d1;
  font-size: 1.2rem;
  font-weight: bold;
}
.top_service_inner {
  width: 60%;
}
.top_service_innerText {
  color: #253093;
  text-align: end;
}
.top_service_inner {
  width: 60%;
}
.top_service_group {
  display: flex;
  justify-content: space-between;
  gap: 1.5%;
  width: 90%;
  max-width: 1320px;
  height: auto;
  margin: 0 auto;
}
.top_service_container {
  position: relative;
  width: calc(100% / 3);
  height: auto;
}
.top_service_img {
  width: 100%;
  height: 55%;
  overflow: hidden;
}
.top_service_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.top_service_container a:hover .top_service_img img{
  transform: scale(1.1);
}
.top_service_item {
  position: relative;
  height: auto;
  margin-top: -100px;
}
.top_service_numImg {
  width: 6vw;
  height: auto;
  aspect-ratio: 3 / 2;
  background: #4d51d1;
  text-align: center;
}
.top_service_numImg img {
  width: 60%;
  height: auto;
  object-fit: contain;
}
.top_service_itemBox {
  height: auto;
  padding: 1rem 1rem 0.5rem 1rem;
  box-sizing: border-box;
  background: linear-gradient(120deg, rgba(77, 81, 209, 1) 0%, rgba(77, 81, 209, 1) 50%, rgba(77, 160, 209, 1) 100%);
}
.top_service_itemTitle {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.top_service_itemText {
  margin: 0;
  padding: 0.5rem 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 1280px) {
  .top_service_subTitle {
    font-size: 1.4vw;
  }
  .top_service_item {
    margin-top: -80px;
  }
  .top_service_itemTitle {
    font-size: 18px;
  }
  .top_service_itemText {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .top_service_titleBox {
    display: block;
  }
  .top_service_title {
    width: 100%;
  }
  .top_service_titleText {
    padding-right: 1rem;
    font-size: 48px;
  }
  .top_service_subTitle {
    padding-left: 1rem;
    font-size: 14px;
  }
  .top_service_inner {
    width: 100%;
  }
  .top_service_innerText {
    text-align: left;
  }
  .top_service_item {
    margin-top: -50px;
  }
  .top_service_itemTitle {
    font-size: 1.6vw;
  }
  .top_service_itemText {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 600px) {
  .top_service {
    padding: 10% 0;
  }
  .top_service_titleBox {
    display: block;
    width: 86%;
  }
  .top_service_title,
  .top_service_inner {
    width: 100%;
  }
  .top_service_innerText {
    text-align: left;
  }
  .top_service_group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 86%;
  }
  .top_service_container {
    width: 100%;
  }
  .top_service_item {
    margin-top: -80px;
  }
  .top_service_numImg {
    width: 30%;
  }
  .top_service_itemTitle {
    font-size: 18px;
  }
  .top_service_itemText {
    font-size: 15px;
  }
}

/* トップページ・車両写真 */
.top_carImg {
  position: relative;
  width: 100%;
  height: 50vh;
  background: url(images/top-car-img.jpg) no-repeat center;
  background-size: cover;
}
.top_carImg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #034dff;
  opacity: 0.1;
}
@media screen and (max-width: 1024px) {
  .top_carImg {
    height: 20vh;
    min-height: 245px;

  }
}
@media screen and (max-width: 600px) {
  .top_carImg {
    min-height: inherit;
  }
}

/* トップページ・会社案内＆許認可・資格 */
.top_group {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  max-width: 1320px;
  width: 80%;
  margin: 0 auto;
}
.top_company,
.top_permission {
  width: 50%;
  aspect-ratio: 9/4;
  overflow: hidden;
}
.top_company a,
.top_permission a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.top_company_img,
.top_permission_img {
  width: 40%;
  height: 100%;
}
.top_company_img img,
.top_permission_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.top_company a:hover .top_company_img img,
.top_permission a:hover .top_permission_img img {
  transform: scale(1.1);
}
.top_company_titleBox,
.top_permission_titleBox {
  width: 60%;
  height: 100%;
  padding: 12% 1.5rem 0 2rem;
  box-sizing: border-box;
  color: #fff;
}
.top_company_titleBox {
  background: #253093;
}
.top_permission_titleBox {
  background: #4da0d1;
}
.top_company_titleText,
.top_permission_titleText {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}
.titleText_line {
  border-right: 1px solid #fff;
  padding-right: 2rem;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.top_company_titleItem,
.top_permission_titleItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1vw;
  font-weight: 600;
}
.top_company_subTitle,
.top_permission_subTitle {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  .top_company_subTitle,
  .top_permission_subTitle {
    font-size: 1.9vw;
  }
}
@media screen and (max-width: 1024px) {
  .top_company_titleBox,
  .top_permission_titleBox {
    min-height: 140px;
    padding: 5% 1.5rem 0 2rem;
  }
  .titleText_line {
    padding-right: 1rem;
    font-size: 14px;
  }
  .top_company_subTitle,
  .top_permission_subTitle {
    font-size: 18px;
  }
  .top_company_titleItem,
  .top_permission_titleItem {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .top_group {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .top_company,
  .top_permission {
    width: 90%;
    min-height: 137px;
    margin: 0 auto;
  }
  .top_company_titleBox,
  .top_permission_titleBox {
    padding: 1rem;
  }
}

/* トップページ・NEWS */
.topNews {
  background: #f5f9ff;
}
.top_news {
  max-width: 1140px;
  width: 70%;
  margin: 0 auto;
}
.top_news_titleBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5%;
  box-sizing: border-box;
}
.top_news_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  color: #4d51d1;
}
.top_news_titleText {
  padding-right: 2rem;
  box-sizing: border-box;
  border-right: 1px solid #4d51d1;
  color: #4d51d1;
  font-size: 4vw;
  line-height: 1.3;
}
.top_news_subTitle {
  padding-left: 2rem;
  box-sizing: border-box;
  color: #4d74d1;
  font-size: 1.2rem;
  font-weight: bold;
}
.top_news_listBtn-sp {
  display: none;
}
.top_news_listBtn,
.top_news_listBtn-sp {
  width: 230px;
  box-sizing: border-box;
  border: 1px solid #4d51d1;
  border-radius: 3px;
  transition: background-color 0.5s ease;
}
.top_news_listBtn:hover {
  background: #4d51d1;
}
.top_news_listBtn a,
.top_news_listBtn-sp a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  box-sizing: border-box;
}
.top_news_btnText {
  color: #4d51d1;
  font-size: 16px;
  transition: background-color 0.5s ease;
}
.top_news_listBtn:hover .top_news_btnText {
  color: #fff;
}
.top_news_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.top_news_listItem {
  background: #fff;
}
.top_news_listItem a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  box-sizing: border-box;
}
.top_news_spbreak{
  display: flex;
  align-items: center;
  width: calc(100% - 55px);
}
.top_news_listDate {
  width: 17%;
  color: #253093;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 5;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.top_news_listTitle {
  width: 83%;
  padding-left: 2rem;
  box-sizing: border-box;
  border-left: 1px solid #253093;
  font-size: 17px;
  font-weight: 400;
}
.top_news_listItem:hover .top_news_listTitle {
  color: #4d51d1;
}
@media screen and (max-width: 1280px) {
  .top_news_subTitle {
    font-size: 1.4vw;
  }
  .top_news_listBtn {
    width: 210px;
  }
  .top_news_btnText {
    font-size: 15px;
  }
  .top_news_listItem a {
    padding: 0 1rem;
  }
  .top_news_listDate {
    font-size: 1.1rem;
    text-align: center;
    line-height: 4.5;
  }
  .top_news_listTitle {
    padding-left: 1rem;
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .top_news_titleText {
    padding-right: 1rem;
    font-size: 38px;
  }
  .top_news_subTitle {
    font-size: 14px;
    padding-left: 1rem;
  }
  .top_news_listBtn {
    width: 180px;
  }
  .top_news_btnText {
    font-size: 15px;
  }
  .top_news_listDate {
    width: 25%;
    font-size: 17px;
  }
  .top_news_listTitle {
    width: 75%;
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .top_news {
    width: 86%;
  }
  .top_news_titleBox {
    display: block;
    margin-bottom: 1rem;
  }
  .top_news_listBtn {
    display: none;
  }
  .top_news_listBtn-sp {
    display: block;
    margin: 1rem auto 0 auto;
    width: 200px;
  }
  .top_news_btnText {
    font-size: 14px;
  }
  .top_news_title {
    justify-content: flex-start;
  }
  .top_news_listItem {
    padding: 1rem 0;
  }
  .top_news_spbreak {
    flex-direction: column;
  }
  .top_news_listDate {
    width: 100%;
    font-size: 1rem;
    text-align: left;
    line-height: 1.8;
  }
  .top_news_listDate span {
    padding-right: 1rem;
    border-right: 1px solid #253093;
  }
  .top_news_listTitle {
    width: 100%;
    margin: 0;
    padding-left: 0;
    border-left: none;
    font-size: 1rem;
  }
}

/* トップページ・RECRUIT */
.top_recruit {
  position: relative;
  max-width: 1320px;
  width: 80%;
  max-height: 580px;
  height: 70vh;
  margin: 0 auto;
  background: url(images/top-recruit.jpg) no-repeat center / cover;
}
.top_recruit a {
  position: relative;
  z-index: 102;
  display: block;
  width: 100%;
  height: 100%;
}
.top_recruit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #e89453;
  opacity: 0.3;1
}
.top_recruit_titleBox {
  position: relative;
  z-index: 101;
  width: 50%;
  height: 100%;
  padding: 4% 0 0 5%;
  box-sizing: border-box;
  color: #fff;
}
.top_recruit_titleText {
  display: inline-block;
  padding-right: 2rem;
  box-sizing: border-box;
  border-right: 1px solid #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 3;
}
.top_recruit_subTitle {
  display: block;
  padding-right: 2rem;
  box-sizing: border-box;
  font-size: 5vw;
  line-height: 1.3;
}
.top_recruit_textBox {
  padding-bottom: 7%;
  box-sizing: border-box;
}
.top_recruit_text {
  margin: 0;
}
.parallelogram {
  position: absolute;
  z-index: 100;
  top: 0;
  width: 50%;
  height: 90%;
  background: #ff803a;
  -webkit-clip-path: polygon(25% 0%, 80% 0, 56% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 80% 0, 56% 100%, 0% 100%);
}
.top_recruit_listBtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 230px;
  padding: 0 1rem;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 3px;
  transition: background-color 0.5s ease;
}
.top_recruit_btnText {
  font-size: 16px;
}
.arrow-white,
.arrow-white::before,
.arrow-white::after {
  background: #fff;
}
.top_recruit a:hover .top_recruit_listBtn {
  background: #fff;
}
.top_recruit a:hover .top_recruit_btnText {
  color: #ff803a;
}
.top_recruit a:hover .arrow-white,
.top_recruit a:hover .arrow-white::before,
.top_recruit a:hover .arrow-white::after {
  background: #ff803a;
}
@media screen and (max-width: 1280px) {
  .top_recruit_titleText {
    font-size: 1.4vw;
  }
  .top_recruit_listBtn {
    width: 210px;
  }
  .top_recruit_btnText {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .top_recruit {
    width: 86%;
    height: auto;
    aspect-ratio: 5/2.5;
  }
  .top_recruit_titleBox {
    padding: 2% 0 0 5%;
  }
  .top_recruit_titleText {
    font-size: 14px;
    padding-right: 1rem;
  }
  .top_recruit_subTitle {
    font-size: 48px;
  }
  .top_recruit_listBtn {
    width: 180px;
  }
  .top_recruit_btnText {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .top_recruit {
    aspect-ratio: 3/4;
  }
  .top_recruit_titleBox {
    width: 100%;
  }
  .top_recruit_textBox {
    padding: 15% 0 7% 0;
  }
  .top_recruit_btnText {
    font-size: 14px;
  }
  .parallelogram {
    width: 80%;
    height: 40%;
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  }
}


/* 下層ページ共通設定 */
.content_sec-notop {
  padding-top: 0;/* section共通 padding-topだけ消す */
}
.content_container {
  max-width: 1320px;
  width: 80%;
  margin: 0 auto;
  padding-top: 60px;
  box-sizing: border-box;
}
.content_container-notop {
  max-width: 1320px;
  width: 80%;
  margin: 0 auto;
}
.content_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50vh;
  padding-top: 120px;
  box-sizing: border-box;
}
.content_title_box {
  margin: 0;
}
.content_title_sub {
  display: inline-block;
  padding-right: 2rem;
  box-sizing: border-box;
  border-right: 1px solid #4d51d1;
  color: #4d51d1;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 3;
}
.content_title_text {
  display: block;
  font-size: 3.2vw;
  font-weight: bold;
  background: linear-gradient(90deg, #4d51d1, #4da0d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content_title_eng-cyan {
  color: #e1f1ff;
  font-size: 6vw;
  font-weight: 600;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
/* パンくずリスト */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  font-size: 16px;
}
.breadcrumb a {
  color: #253093;
}
.breadcrumb a:hover {
  color: #4d51d1;
 }
.breadcrumb li:not(:last-of-type)::after {
  content: "-";
  margin: 0 0.6em;
  color: #777;
}
.content_title_line {
  width: 84%;
  margin: 0 auto;
  height: 0.5px;
  background: #4d51d1;
}

.content_intro {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 1620px;
  margin: 1.5% 0 1.5% auto;
  padding: 3% 0;
  box-sizing: border-box;
  background: url(images/content-bg-img.png) no-repeat right / contain;
}
.content_intro_catch {
  color: #253093;
  font-size: 1.8rem;
  font-weight: 600;
}
.content_intro_text {
  max-width: 990px;
}
.content_intro_img {
  position: relative;
  width: 90%;
  height: 35vh;
  max-height: 305px;
  max-width: 1620px;
  margin: 0 0 0 auto;
  background: url(images/content_hero_maintenance.jpg) no-repeat center / cover;
}
.content_intro_img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #034dff;
  opacity: 0.2;
}
.content_cateTitle {
  padding: 0 0 0 2rem;
  background: linear-gradient(#253093 50%, #ff803a 50%) no-repeat;
  background-size: 0.5rem 100%;
  color: #253093;
  font-size: 2rem;
}
.content_cateTitle-green {
  background: linear-gradient(#306584 50%, #ff803a 50%) no-repeat;
  background-size: 0.5rem 100%;
  color: #306584;
}
.content_minititle {
  padding-bottom: 1.5rem;
  font-weight: 600;
}
.content_minititle-blue {
  padding: 0.5rem 2rem;
  box-sizing: border-box;
  border-radius: 30px;
  background: #4d74d1;
  color: #fff;
  font-size: 1.2rem;
}
.content_minititle-green {
  padding: 0.5rem 2rem;
  box-sizing: border-box;
  border-radius: 30px;
  background: #306584;
  color: #fff;
  font-size: 1.2rem;
}
.content_group {
  margin: 120px auto 0 auto;
  padding: 5% 0;
}
.content_group-nobg {
  margin: 0 auto;
  padding: 5% 0 0 0;
}
.content_box {
  width: 80%;
  max-width: 1320px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .content_title_sub {
    line-height: 1.8;
  }
  .content_title_text {
    line-height: 2.4;
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .content_title {
    padding-top: 100px;
    height: 30vh;
    min-height: 300px;
  }
  .breadcrumb {
    font-size: 14px;
  }
  .content_title_text {
    font-size: 42px;
    line-height: 1.8;
  }
  .content_title_text-sp {
    font-size: 32px;
  }
  .content_title_eng-cyan {
    font-size: 8vw;
  }
  .content_cateTitle {
    font-size: 28px;
  }
  .content_minititle {
    margin-bottom: 0;
  }
  .content_intro_catch,
  .content_intro_text {
    width: 89%;
  }
  .content_intro_img {
    height: 20vh;
    min-height: 205px;
  }
}
@media screen and (max-width: 600px) {
  .breadcrumb {
    font-size: 14px;
  }
  .content_title_text {
    font-size: 32px;
    line-height: 1.8;
  }
  .content_title {
    display: block;
    min-height: 250px;
    padding-top: 80px;
  }
  .content_title_sub {
    padding-right: 1rem;
    font-size: 14px;
  }
  .content_intro {
    background-position: bottom;
  }
  .content_title_text-sp {
    font-size: 26px;
    white-space: nowrap;
    letter-spacing: -1px;
  }
  .content_title_eng {
    display: none;
  }
  .content_cateTitle {
    padding-left: 1.5rem;
    font-size: 24px;
  }
  .content_intro_catch {
    font-size: 22px;
  }
  .content_minititle {
    text-align: center;
  }
  .content_minititle-green {
    padding: 0.5rem 1rem;
  }
}

/* 会社案内・企業理念 */
.company_policy {
  display: flex;
  justify-content: center;
}
.company_policy_img {
  width: 50%;
}
.company_policy_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.company_policy_box {
  display: flex;
  align-items: center;
  width: 50%;
  margin-left: 50px;
}
.company_policy_title {
  margin: 0;
  color: #253093;
  font-size: 2.5vw;
}
.company_policy_title-blue {
  display: inline-block;
  padding-right: 2rem;
  border-right: 1px solid #253093;
}
.company_policy_textBox {
  margin-top: 50px;
}
.company_policy_text {
  color: #253093;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2.4;
}
@media screen and (max-width: 1280px) {
  .company_policy_text {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1024px) {
  .company_policy {
    display: block;
  }
  .company_policy_img {
    width: 80%;
    margin: 0 auto;
  }
  .company_policy_box {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .company_policy_title {
    margin-top: 1rem;
  }
  .company_policy_title-blue {
    font-size: 32px;
  }
  .company_policy_text {
    font-size: 1rem;
  }
  .company_policy_textBox {
    margin-top: 1rem;
  }
}

.company_outline_list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.company_outline_listItem {
  display: flex;
  gap: 6px;
  width: 100%;
}
.company_outline_category {
  width: 20%;
  padding: 2rem;
  box-sizing: border-box;
  background: #D4EBFF;
  font-weight: bold;
}
.company_outline_text {
  width: 80%;
  padding: 2rem 1rem;
  box-sizing: border-box;
  background: #F9F9F9;
}
.company_outline_text-address {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.company_outline_textBox {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.company_outline_text-blue {
  display: inline-block;
  color: #253093;
  font-weight: bold;
}
.company_outline_address {
  display: inline-block;
}
.outline_text_listItem {
  display: flex;
  align-items: center;
}
.outline_text_listItem::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 1rem;
  border-radius: 3px;
  background: #4d74d1;
}
@media screen and (max-width: 600px) {
  .company_outline_listItem {
    flex-direction: column;
  }
  .company_outline_category {
    width: 100%;
    padding: 0.5rem 1rem;
  }
  .company_outline_text {
    width: 100%;
    padding: 1rem;
  }
  .outline_text_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .outline_text_listItem {
    align-items: first baseline;
  }
  .outline_text_listItem::before {
    content: "■";
    width: 12px;
    height: auto;
    background: none;
    color: #4d74d1;
    font-size: 12px;
  }

}
/* 会社案内・アクセス */
.company_access {
  display: flex;
  align-items: center;
}
.company_access_img {
  width: 45%;
  height: auto;
}
.company_access_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.company_access_container {
  width: 55%;
  padding: 0 5%;
}
.company_access_name {
  margin: 0;
  color: #253093;
  font-size: 1.1rem;
  font-weight: bold;
}
.company_access_inner {
  display: flex;
  align-items: center;
}
.company_access_address {
  width: calc(100% - 250px);
}
.company_access_btn {
  width: 250px;
  height: 65px;
  border: 1px solid #4D51D1;
}
.company_access_btnText {
  color: #4D51D1;
}
.company_access_btn a {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
}
.company_access_numBox {
  display: flex;
  gap: 2rem;
  border-top: 0.5px solid #253093;
}
.company_access_number-blue {
  padding-right: 0.5rem;
  color: #4D51D1;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .company_access_inner {
    display: block;
  }
  .company_access_address {
    width: 100%;
  }
  .company_access_numBox {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .company_access_container {
    padding: 0 5%;;
  }
  .company_access_btn {
    width: 200px;
    height: 60px;
  }
  .company_access_btnText {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .company_access {
    display: block;
  }
  .company_access_img {
    width: 100%;
    aspect-ratio: 3/2;
  }
  .company_access_img img {
    object-fit: cover;
  }
  .company_access_container {
    width: 100%;
    margin-top: 1rem;
    padding: 0;
  }
  .company_access_address {
    margin-top: 0;
    padding: 0 0.5rem;
    box-sizing: border-box;
  }
  .company_access_btn {
    width: 70%;
    margin: 0 auto;
  }
  .company_access_numBox {
    justify-content: space-around;
    border-bottom: 0.5px solid #253093;
    font-size: 18px;
  }
  .company_access_number-blue {
    display: block;
    font-size: 16px;
  }
}
/* 会社案内・沿革 */
.company_history {
  padding-top: 0;
}
.company_history_container {
  margin-top: 42.56px;
  padding: 3% 0;
  box-sizing: border-box;
  background: #F9F9F9;
}
.company_history_list {
  width: 70%;
  max-width: 880px;
  margin: 0 auto;
}
.company_history_listItem {
  display: flex;
  justify-content: center;
}
.company_history_ad {
  position: relative;
  width: 20%;
  margin: 0;
  padding: 0 0 3rem 0;
  box-sizing: border-box;
  border-right: 1px solid #4D51D1;
  color: #253093;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 1.0;
}
.company_history_ad::after {
  display: block;
  position: absolute;
  top: 0;
  right: -18px;
  width: 36px;
  height: 36px;
  background-image: url(images/history_circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: ""
}
.company_history_text {
  width: 80%;
  margin: 0;
  padding: 0 0 3rem 50px;
  box-sizing: border-box;
  color: #253093;
}
@media screen and (max-width: 1024px) {
  .company_history_ad {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 600px) {
  .company_history_list {
    width: 86%;
  }
  .company_history_container {
    margin-top: 26.6px;
    padding: 10% 0;
  }
  .company_history_ad::after {
    right: -13.5px;
    width: 24px;
    height: 24px;
  }
  .company_history_ad {
    width: 25%;
    font-size: 24px;
    line-height: 1.3;
  }
  .company_history_text {
    width: 75%;
    padding: 0 0 2rem 28px;
    font-size: 15px;
  }
}


/* SERVICE共通 */
.service_line {
  width: 80%;
  height: 0.5px;
  max-width: 1320px;
  margin: 0 auto;
  background: #253093;
}
.service_menu_title {
  font-size: 1.6rem;
  font-weight: bold;
}
.service_menu_list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.service_menu_item {
  width: calc(100% / 3);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border: 1.5px solid #4d51d1;
  background: #fff;
  transition: background-color 0.5s ease;
}
.service_menu_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #333;
  font-weight: 400;
}
.service_menu_item:hover {
  background: #f2f7ff;
  transition: background-color 0.5s ease;
}
.service_menu_img {
  display: inline-block;
  width: 35%;
  height: 100%;
}
.service_menu_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service_menu_name {
  width: 55%;
  margin: 0;
  padding-left: 1rem;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .service_menu_name {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .service_menu_list {
    gap: 1rem;
  }
  .service_menu_name {
    font-size: 11px;
  }
}
@media screen and (max-width: 600px) {
  .service_menu_title {
    margin-bottom: 0.5rem;
    font-size: 24px;
  }
  .service_menu_list {
    flex-direction: column;
    gap: 0.5rem;
  }
  .service_menu_item {
    width: 100%;
    box-sizing: border-box;
  }
  .service_menu_img {
    aspect-ratio: 3/2;
  }
  .service_menu_name {
    font-size: 15px;
  }
}


/* 環境事業部 */
.environment {
  padding: 5% 0;
  background: #f9f9f9;
}
.environment_box {
  display: flex;
  justify-content: center;
  gap: 5%;
  width: 80%;
  margin: 0 auto;
}
.environment_btn-blue,
.environment_btn-green {
  display: flex;
  align-items: center;
  width: 40%;
  max-width: 510px;
  height: 80px;
  background: #fff;
}
.environment_btn-blue a,
.environment_btn-green a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
}
.environment_btn-blue {
  border: 2px solid #4d74d1;
}
.environment_btn_text-blue {
  color: #253093;
  font-weight: 600;
}
.environment_btn-green {
  border: 2px solid #4590bc;
}
.environment_btn_text-green {
  color: #306584;
  font-weight: 600;
}
.environment_btn-blue i,
.environment_btn-green i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 40px;
  border-radius: 3px;
  color: #fff;
}
.environment_btn-blue i {
  background: #4d74d1;
}
.environment_btn-green i {
  background: #4590bc;
}
@media screen and (max-width: 600px) {
  .environment_box {
    flex-direction: column;
    gap: 10px;
  }
  .environment_btn-blue,
  .environment_btn-green {
    width: 90%;
    height: 60px;
    margin: 0 auto;
  }
  .environment_btn-blue a,
  .environment_btn-green a {
    padding: 0 1rem;
  }
  .environment_btn-blue i,
  .environment_btn-green i {
    width: 45px;
    height: 30px;
  }
}
.transport_title-blue,
.disposal_title-green {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 35vh;
  max-height: 305px;
  max-width: 1620px;
  margin: 0 0 0 auto;
}
.transport_titleInner-blue,
.disposal_titleInner-green {
  display: flex;
  align-items: center;
  width: 50%;
  height: 100%;
  padding-left: 5%;
  box-sizing: border-box;
}
.transport_titleInner-blue {
  background: #4d74d1;
}
.disposal_titleInner-green {
  background: #4590bc;
}
.transport_titleText,
.disposal_titleText {
  margin: 0 0 0.2rem 0;
  padding: 0.8rem 0;
  background: linear-gradient(90deg, #fff 0 50%, transparent 50% 100%) no-repeat bottom;
  background-size: 100% 3px;
  color: #fff;
  font-size: 1.8rem;
}
.transport_titleImg-blueSp,
.disposal_titleImg-greenSp {
  display: none;
}
.transport_titleImg-blue,
.disposal_titleImg-green {
  position: relative;
  width: 50%;
  height: 100%;
}
.transport_titleImg-blue {
  background: url(images/transport_title.jpg) no-repeat center / cover;
}
.transport_titleImg-blue::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #034dff;
  opacity: 0.1;
}
.disposal_titleImg-green {
  background: url(images/disposal_title.jpg) no-repeat center / cover;
}
.disposal_titleImg-green::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #4590bc;
  opacity: 0.2;
}
.transport_introBox,
.disposal_introBox {
  margin-top: 60px;
}
.transport_intro_catch,
.disposal_intro_catch {
  font-size: 1.6rem;
  font-weight: 600;
}
.transport_intro_catch {
  color: #253093;
}
.disposal_intro_catch {
  color: #306584;
}
.transport_intro_text,
.disposal_intro_text {
  width: 100%;
  max-width: 1040px;
}
.transport_cateGroup {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.transport_cateBox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48%;
  aspect-ratio: 2/0.8;
  background: #f2f7ff;
}
.transport_cateImg {
  width: 50%;
  height: 100%;
  margin: 0;
  padding: 5% 0 5% 5%;
  box-sizing: border-box;
}
.transport_cateImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.transport_cateName {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 0 1rem;
  box-sizing: border-box;
}
.transport_kojin {
  display: flex;
  margin-top: 2rem;
  box-sizing: border-box;
  border: 2px solid #4d51d1;
  border-radius: 5px;
}
.transport_kojin_inner {
  width: 55%;
  padding: 5%;
}
.transport_kojin_img {
  width: 45%;
  height: auto;
  text-align: center;
}
.transport_kojin_img img {
  width: 100%;
  object-fit: contain;
}
.transport_vehicle {
  box-sizing: border-box;
  height: auto;
  background: #f5f9ff;
}
.transport_vehicle_title {
  margin: 0;
  padding-bottom: 2rem;
  color: #253093;
  font-size: 1.4rem;
}
.transport_vehicle_date {
  font-size: 1rem;
}
.transport_vehicle_list {
  display: inline-grid;
  column-gap: 4%;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  width: 100%;
  margin: 0 auto;
  padding: 1rem 2rem;
  box-sizing: border-box;
  background: #fff;
  border-top: 1px solid #253093;
  border-bottom: 1px solid #253093;
}
.transport_vehicle_listItem {
  width: 97%;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 1rem 1rem;
  border-bottom: 0.5px solid #4d51d1;
}
.transport_vehicle_kind {
  width: 80%;
}
.transport_vehicle_units {
  width: 20%;
  text-align: center;
}
.transport_vehicle_total {
  margin: 0;
  padding-right: 2rem;
  width: 100%;
  color: #253093;
  text-align: right;
  font-weight: 400;
}
.vehicle_kind-no {
  border-bottom: none;
}
.transport_erea {
  display: flex;
  justify-content: space-between;
}
.transport_erea_box {
  width: 50%;
}
.transport_erea_list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.transport_erea_listItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
  background: #f2f7ff;
}
.transport_erea_permission {
  width: 50%;
  color: #4d51d1;
  font-weight: 600;
  line-height: 1.4;
}
.transport_erea_name {
  width: 50%;
}
.transport_erea_img {
  width: 50%;
  height: auto;
  padding: 0 5%;
  box-sizing: border-box;
}
.transport_erea_img img {
  width: 100%;
  object-fit: contain;
  object-position: top center;
}
.disposal_flow {
  padding: 3% 3% 6% 3%;
  box-sizing: border-box;
  border: 2px solid #4590bc;
  border-radius: 5px;
}
.disposal_flow_img-sp {
  display: none;
}
.disposal_flow_img {
  width: 100%;
　height: auto;
}
.disposal_flow_img img {
  width: 100%;
  object-fit: contain;
}
.disposal_recycle_title {
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  box-sizing: border-box;
  border-bottom: 1px solid #306584;
  color: #306584;
  font-size: 1.6rem;
}
.disposal_recycle_box {
  display: flex;
  justify-content: center;
  padding-bottom: 3%;
  box-sizing: border-box;
}
.disposal_recycle_inner {
  width: 50%;
}
.disposal_recycle_imgBox {
  width: 50%;
  aspect-ratio: 3/1.8;
  height: auto;
}
.disposal_recycle_text {
  padding-right: 2rem;
  box-sizing: border-box;
}
.disposal_recycle_img {
  width: 100%;
  height: auto;
}
.disposal_recycle_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.disposal_recycle_cap {
  width: 100%;
  text-align: right;
}
.disposal_thermal {
  background: #e8fcfb;
}
.disposal_thermal_container {
  padding: 3%;
  box-sizing: border-box;
  border-radius: 15px;
  background: #fff;
}
.disposal_thermal_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.disposal_thermal_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 28%;
  height: 170px;
  border: 2px solid #4590bc;
  font-size: 0.9vw;
}
.disposal_thermal_inner-finish {
  width: 32%;
}
.disposal_thermal_item {
  width: calc(100% - 100px);
  padding: 0 1rem;
  box-sizing: border-box;
}
.disposal_thermal_img {
  width: 135px;
  height: 100%;
}
.disposal_thermal_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.disposal_thermal_arrow {
  width: 6%;
  height: 70px;
  background: #4590bc;
  -webkit-clip-path: polygon(0 30%, 59% 30%, 60% 0%, 100% 50%, 60% 100%, 59% 70%, 0 70%);
  clip-path: polygon(0 30%, 59% 30%, 60% 0%, 100% 50%, 60% 100%, 59% 70%, 0 70%);
}
.disposal_material_flow {
  padding: 3%;
  box-sizing: border-box;
  background: #e8fcfb;
  border-radius: 15px;
}
.material_flow_container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.material_flow_box {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 90%;
  max-width: 990px;
  height: 170px;
  margin: 0 auto;
}
.material_flow_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  background: #fff;
}
.material_flow_numBox {
  width: 30%;
}
.material_flow_num {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  border-right: 1px solid #4da0d1;
  color: #4da0d1;
  font-size: 5vw;
  font-weight: bold;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 1;
}
.material_flow_item {
  width: 70%;
  padding-left: 5%;
  box-sizing: border-box;
}
.material_flow_name {
  color: #306584;
  font-weight: 600;
}
.material_flow_finishText {
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  background: #4590bc;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}
.material_flow_img {
  width: 30%;
}
.material_flow_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.material_flow_arrow {
  width: 8%;
  height: 20px;
  margin: 0 auto;
  background: #4590bc;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.disposal_material_ex {
  padding-top: 5%;
  box-sizing: border-box;
}
.material_ex_container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-content: flex-start;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
.material_ex_box {
  aspect-ratio: 1/1;
  width: 22%;
  margin: 0;
  background: #cae3f1;
}
.material_ex_img {
  width: auto;
  height: 80%;
  text-align: center;
}
.material_ex_img img {
  width: 70%;
  height: 100%;
  object-fit: contain;
}
.material_ex_name {
  height: 20%;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .disposal_thermal_inner {
    height: 120px;
  }
  .disposal_thermal_img {
    width: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .transport_title-blue,
  .disposal_title-green {
    height: 20vh;
    min-height: 205px;
  }
  .disposal_thermal_box {
    gap: 0.5rem;
  }
  .disposal_thermal_inner {
    height: 100px;
  }
  .disposal_thermal_item {
    width: calc(100% - 80px);
  }
  .disposal_thermal_itemText {
    font-size: 1.1vw;
  }
  .disposal_thermal_img {
    width: 80px;
  }
  .disposal_thermal_arrow {
    width: 4%;
    height: 50px;
  }
  .material_flow_num {
    font-size: 6vw;
  }
  .material_flow_finishText {
    font-size: 16px;
  }
  .material_ex_container {
    gap: 1rem;
  }
  .material_ex_name {
    font-size: 13px;
  }
}
@media screen and (max-width: 600px) {
  .transport_title-blue,
  .disposal_title-green {
    display: block;
  }
  .transport_titleImg-blue,
  .disposal_titleImg-green {
    display: none;
  }
  .transport_titleInner-blue,
  .disposal_titleInner-green {
    width: 100%;
  }
  .transport_titleText,
  .disposal_titleText {
    font-size: 26px;
    font-weight: bold;
  }
  .transport_introBox ,
  .disposal_introBox {
    margin-top: 30px;
  }
  .transport_intro_catch,
  .disposal_intro_catch {
    font-size: 20px;
  }
  .transport_titleImg-blueSp,
  .disposal_titleImg-greenSp {
    display: block;
    width: 86%;
    height: 25vh;
    margin: 0 auto;
  }
  .transport_cateGroup {
    align-items: baseline;
  }
  .transport_cateBox {
    display: block;
    height: 180px;
  }
  .transport_cateImg {
    width: 100%;
    height: 120px;
    padding: 5% 5% 10% 5%;
  }
  .transport_cateName {
    width: 100%;
    font-size: 15px;
    line-height: 1.4;
  }
  .transport_kojin {
    display: block;
  }
  .transport_kojin_inner {
    width: 100%;
    box-sizing: border-box;
  }
  .transport_kojin_text {
    width: 90%;
    margin: 0 auto;
  }
  .transport_kojin_img {
    width: 80%;
    margin: 0 auto;
  }
  .transport_vehicle_list {
    display: block;
    padding: 0 1rem;
  }
  .vehicle_kind-sp {
    border-bottom: 0.5px solid #4d51d1;
  }
  .transport_vehicle_total {
    padding-right: 0;
  }
  .transport_erea {
    display: block;
  }
  .transport_erea_box {
    width: 100%;
  }
  .transport_erea_listItem {
    display: block;
  }
  .transport_erea_permission,
  .transport_erea_name {
    width: 100%;
  }
  .transport_erea_img {
    width: 100%;
    margin-top: 0.7rem;
    padding: 0;
  }
  .disposal_flow_img {
    display: none;
  }
  .disposal_flow_img-sp {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .disposal_flow_img-sp img {
    width: 100%;
    height: auto;
  }
  .disposal_recycle_title {
    margin: 0;
    padding-bottom: 0.5rem;
    font-size: 24px;
  }
  .disposal_recycle_box {
    display: block;
  }
  .disposal_recycle_inner {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .disposal_recycle_text {
    padding: 0;
  }
  .disposal_recycle_imgBox {
    width: 90%;
    margin: 0 auto;
  }
  .disposal_recycle_cap {
    font-size: 15px;
  }
  .disposal_thermal_container,
  .disposal_material_flow {
    border-radius: 7px;
  }
  .disposal_thermal_box {
    flex-direction: column;
    width: 86%;
    margin: 0 auto;
  }
  .disposal_thermal_inner {
    width: 100%;
  }
  .disposal_thermal_item {
    width: calc(100% - 100px);
  }
  .disposal_thermal_itemText {
    font-size: 14px;
  }
  .disposal_thermal_img {
    width: 100px;
  }
  .disposal_thermal_arrow {
    width: 70px;
    height: 35px;
    -webkit-clip-path: polygon(70% 0, 70% 49%, 100% 50%, 50% 100%, 0 50%, 30% 50%, 30% 0);
    clip-path: polygon(70% 0, 70% 49%, 100% 50%, 50% 100%, 0 50%, 30% 50%, 30% 0);
  }
  .material_flow_container {
    gap: 0.5rem;
  }
  .material_flow_inner {
    display: block;
  }
  .material_flow_box {
    flex-direction: column-reverse;
    gap: 0;
    width: 86%;
    height: auto;
    margin: 0 auto;
  }
  .material_flow_inner {
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
  }
  .material_flow_numBox {
    width: 50px;
  }
  .material_flow_num {
    justify-content: flex-start;
    font-size: 28px;
  }
  .material_flow_item {
    width: 100%;
    padding: 0;
  }
  .material_flow_name {
    margin: 0.5rem 0;
  }
  .material_flow_text {
    margin: 0.5rem 0;
    font-size: 15px;
    line-height: 1.5;
  }
  .material_flow_img {
    width: 100%;
    height: 140px;
  }
  .material_flow_finishText {
    padding: 0.5rem;
    font-size: 15px;
  }
  .material_flow_arrow {
    width: 70px;
  }
  .material_ex_container {
    justify-content: space-between;
    gap: 0.5rem;
  }
  .material_ex_box {
    width: 122px;
    height: 122px;
  }
}

/* ビルメンテナンス事業部 */
.maintenance_intro_listItem {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.maintenance_intro_listItem::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 1rem;
  border-radius: 3px;
  background: #4d74d1;
}
.maintenance_category {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-content: flex-start;
  width: 100%;
  margin: 0 auto;
}
.maintenance_category_item {
  width: 22%;
  aspect-ratio: 5/4;
  margin: 0;
  background: #f2f7ff;
}
.maintenance_category_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  aspect-ratio: 4/3;
  margin: 10px auto 0 auto;
}
.maintenance_category_img img {
  width: 100%;
  height: 90%;
  object-fit: cover;
}
.maintenance_category_name {
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .maintenance_category {
    gap: 1rem;
  }
  .maintenance_category_item {
    width: 30%;
  }
}
@media screen and (max-width: 600px) {
  .content_maintenance_intro {
    width: 89%;
  }
  .maintenance_intro_listItem::before {
    content: "■";
    width: 12px;
    height: auto;
    background: none;
    color: #4d74d1;
    font-size: 12px;
  }
  .maintenance_category {
    justify-content: space-between;
    gap: 0.5rem;
  }
  .maintenance_category_item {
    width: calc(50% - 0.25rem);
    aspect-ratio: 1/0.95;
  }
  .maintenance_category_img {
    margin: 5px auto;
  }
  .maintenance_category_name {
    font-size: 14px;
  }
}

/* 建設事業部 */
.content_intro_img-construction {
  background-image: url(images/content_hero_construction.jpg);
}
.construction_flow {
  padding: 5% 0;
  box-sizing: border-box;
  background: #f2f7ff;
}
.construction_flow_group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 86%;
  max-width: 1080px;
  margin: 0 auto;
}
.construction_flow_box {
  display: flex;
  justify-content: space-between;
  padding: 3%;
  box-sizing: border-box;
  background: #fff;
}
.construction_flow_numBox {
  width: 15%;
  text-align: center;
}
.construction_flow_num {
  margin: 0;
  border-right: 1px solid #4d74d1;
  color: #4d51d1;
  font-size: 4vw;
  font-weight: bold;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 1.2;
}
.construction_flow_inner {
  width: 85%;
  padding-left: 3%;
}
.construction_flow_title {
  margin: 0;
  color: #4d74d1;
  font-size: 1.2rem;
  font-weight: 600;
}
.construction_flow_text {
  margin: 0;
}
.construction_flow_arrow {
  width: 70px;
  height: 25px;
  margin: 0 auto;
  background: #4d51d1;
  -webkit-clip-path: polygon(50% 25px, 0% 0%, 70px 0%);
  clip-path: polygon(50% 25px, 0% 0%, 70px 0%);
}
.construction_process {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.construction_process_box {
  width: 23%;
}
.construction_process_title {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 1rem;
  box-sizing: border-box;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.2;
  background-image: linear-gradient(90deg, #5b99f6, #4d51d1);
  -webkit-clip-path: polygon(0% 0%, 95% 1%, 100% 50%, 95% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 95% 1%, 100% 50%, 95% 100%, 0% 100%);
}
.construction_process_num {
  padding-right: 0.5rem;
  font-size: 20px;
}
.construction_process_inner {
  width: 100%;
  margin: 0;
}
.construction_process_img {
  width: 100%;
  aspect-ratio: 3/2;
}
.construction_process_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.construction_process_text {
  font-size: 16px;
}
.construction_process_line {
  width: 100%;
  height: 0.5px;
  margin-top: 45px;
  background: #A8A8A8;
}
@media screen and (max-width: 1024px) {
  .construction_flow_box {
    padding-left: 0;
  }
  .construction_flow_num {
    font-size: 5vw;
  }
  .construction_flow_title {
    font-size: 18px;
  }
  .construction_process_title {
    margin: 0 0 0.5rem 0;
    font-size: 1.5vw;
  }
  .construction_process_text {
    font-size: 1.3vw;
  }
  .construction_process_line {
    margin: 30px 0;
  }
}
@media screen and (max-width: 600px) {
  .construction_flow_group {
    gap: 0.5rem;
  }
  .construction_flow_box {
    display: block;
    padding: 8% 5%;
  }
  .construction_flow_numBox {
    width: 65px;
  }
  .construction_flow_num {
    font-size: 38px;
  }
  .construction_flow_inner {
    width: 95%;
  }
  .construction_flow_title {
    margin: 0.5rem 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
  }
  .construction_process {
    flex-direction: column;
    gap: 2rem;
  }
  .construction_process_box {
    width: 100%;
    border-bottom: 1px solid #a8a8a8;
  }
  .construction_process_box-sp {
    border-bottom: none;
  }
  .construction_process_title {
    font-size: 18px;
  }
  .construction_process_text {
    padding-bottom: 2rem;
    box-sizing: border-box;
    font-size: 1rem;
  }
  .construction_process_line {
    margin: 0 0 2rem 0;
    background: none;
  }
}


/* 許認可・資格 */
.permission_dl {
  width: 100%;
}
.permission_dl_environment {
  margin-bottom: 5%;
}
.permission_dl_list {
  width: 100%;
  border-collapse: collapse;
}
.permission_dl_list thead {
  background: #253093;
  color: #fff;
}
.permission_dl_list thead th {
  padding: 1rem 0;
}
.permission_dl_list th {
  font-weight: 600;
}
.permission_dl_kind {
  width: 30%;
}
.permission_dl_erea {
  width: 20%;
  border-left: 0.5px solid #fff;
  border-right: 0.5px solid #fff;
}
.permission_dl_no {
  width: 20%;
  border-right: 0.5px solid #fff;
}
.permission_dl_dl {
  width: 10%;
}
.dl_list-gray {
  background: #F9F9F9;
}
.permission_dl_list tbody th,
.permission_dl_list tbody td {
  padding: 0.5rem 1.5rem;
  box-sizing: border-box;
}
.permission_dl_list tbody th {
  text-align: left;
}
.dl_erea {
  border-right: 0.5px solid #bebebe;
  border-bottom: 0.5px solid #bebebe;
  border-left: 0.5px solid #bebebe;
}
.dl_no {
  border-right: 0.5px solid #bebebe;
  border-bottom: 0.5px solid #bebebe;
}
.dl_icon {
  border-bottom: 0.5px solid #bebebe;
}
.dl_icon a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dl_icon img {
  width: 50px;
  height: auto;
}
.dl_icon a:hover {
  opacity: 0.7;
}
.dl_kind,
.dl_erea-line,
.dl_no-line,
.dl_icon-line {
  border-bottom: 1px solid #253093;
}
.permission_list_container {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 1rem;
}
.permission_list_item {
  display: flex;
  align-items: center;
  width: 95%;
  padding: 2rem 1rem;
  box-sizing: border-box;
  background: #F9F9F9;
  font-weight: 600;
}
.permission_list_item::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 1rem;
  border-radius: 3px;
  background: #4d74d1;
}
@media screen and (max-width: 1024px) {
  .permission_list_item::before {
    content: "■";
    width: 12px;
    height: auto;
    background: none;
    color: #4d74d1;
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .permission_dl_list {
    width: 100%;
    font-size: 13px;
  }
  .permission_dl_list thead th,
  .permission_dl_list tbody th,
  .permission_dl_list tbody td {
    padding: 8px;
  }
  .permission_dl_kind {
    width: 20%;
  }
  .permission_dl_no {
    width: 30%;
  }
  .permission_dl_dl {
    width: 10%;
  }
  .dl_icon img {
    width: 35px;
  }
  .permission_list_container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .permission_list_item {
    width: 100%;
    padding: 1.5rem 1rem;
  }
}


/* サステナビリティ */
.content_title_sub-green {
  border-right: 1px solid #369245;
  color: #369245;
}
.content_title_text-green {
  background: linear-gradient(90deg, #276932, #86D14D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content_title_eng-green {
  color: #E7F6DB;
  font-size: 5vw;
}
.content_intro-green {
  background-image: url(images/content-bg-img-green.png);
}
.content_intro_catch-green {
  color: #276932;
}
.content_intro_img-sustainability {
  background-image: url(images/content_hero_sustainability.jpg);
}
.content_intro_img-sustainability::before {
  background: #276932;
  opacity: 0.3;
}
.sustaina_cateTitle-green {
  background: linear-gradient(#276932 50%, #D1CD4D 50%) no-repeat;
  background-size: 0.5rem 100%;
  color: #276932;
}
.sustaina_textBox {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .sustaina_textBox {
    width: 100%;
  }
  .content_title_text-green {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .content_title_text-green {
    font-size: 32px;
  }
}
/* サステナビリティ・解体工事の基本方針 */
.sustaina_policy {
  background: #F4FCF5;
}
.sustaina_policy_group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5%;
  box-sizing: border-box;
  background: #fff;
}
.sustaina_policy_container {
  display: flex;
  padding: 2rem;
  box-sizing: border-box;
  border: 2px solid #3EA74F;
  border-radius: 5px;
}
.sustaina_policy_img {
  width: 25%;
  aspect-ratio: 1/1;
}
.sustaina_policy_img img {
  width: 100%;
  object-fit: contain;
}
.sustaina_policy_box {
  width: 75%;
  padding: 0 2rem;
}
.sustaina_policy_titleBox {
  display: flex;
  align-items: center;
  margin: 0;
}
.sustaina_policy_number {
  display: inline-block;
  padding-right: 1rem;
  box-sizing: border-box;
  border-right: 1px solid #369245;
  color: #369245;
  font-size: 42px;
  font-weight: bold;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 1.4;
}
.sustaina_policy_title {
  display: inline-block;
  padding-left: 1rem;
  box-sizing: border-box;
  color: #369245;
  font-size: 22px;
  font-weight: 600;
}
.sustaina_policy_list {
  margin-left: 2rem;
  list-style-type: disc;
}
@media screen and (max-width: 600px) {
  .sustaina_policy_group {
    padding: 0;
    background: transparent;
  }
  .sustaina_policy_container {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
    background: #fff;
  }
  .sustaina_policy_img {
    width: 70%;
    margin: 0 auto;
  }
  .sustaina_policy_box {
    padding: 0;
    width: 100%;
  }
  .sustaina_policy_list {
    margin-left: 1.5rem;
  }
}
/* サステナビリティ・お客様にとってのメリット */
.sustaina_merit_container {
  margin-top: 3rem;
  padding-bottom: 2rem;
  box-sizing: border-box;
  border-bottom: 0.5px solid #A4A4A4;
}
.sustaina_merit_titleBox {
  display: flex;
  height: 80px;
}
.sustaina_merit_numBox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0;
  background: #3EA74F;
}
.sustaina_merit_number {
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.sustaina_merit_title {
  margin: 0;
}
.sustaina_merit_title span {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 10rem 0 2rem;
  box-sizing: border-box;
  background: #DBF6E0;
  font-size: 22px;
  font-weight: 600;
}
.sustaina_merit_inner {
  width: 80%;
  margin-left: 40px;
  padding-top: 1rem;
}
.sustaina_merit_text {
  padding-left: 2rem;
  box-sizing: border-box;
  border-left: 3px solid #A6E8B1;
}
@media screen and (max-width: 1024px) {
  .sustaina_merit_inner {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .sustaina_merit_title {
    width: calc(100% - 80px);
  }
  .sustaina_merit_title span {
    width: 100%;
    padding: 0 1rem;
    font-size: 18px;
    line-height: 1.4;
  }
  .sustaina_merit_inner {
    margin-left: 10px;
  }
}
/* サステナビリティ・解体工事とは */
.sustaina_about_container {
  display: flex;
  gap: 3rem;
}
.sustaina_about_box {
  width: 55%;
}
.sustaina_about_list {
  margin-left: 2rem;
  list-style-type: disc;
}
.sustaina_about_img {
  width: 45%;
  height: auto;
  margin-top: 32px;
}
.sustaina_about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 600px) {
  .sustaina_about_container {
    display: block;
  }
  .sustaina_about_box {
    width: 100%;
  }
  .sustaina_about_img {
    width: 100%;
  }
  .sustaina_about_img img {
    height: auto;
  	object-fit: contain;
  }
}
/* サステナビリティ・建設リサイクル法について */
.sustaina_law {
  background: #F9F9F9;
}
.sustaina_law_inner {
  width: 60%;
  padding: 3%;
  box-sizing: border-box;
  border: 2px solid #545454;
  background: #fff;
}
.sustaina_minititle {
  margin-top: 0;
}
.sustaina_minititle-gray {
  padding: 0.5rem 2rem;
  box-sizing: border-box;
  border-radius: 30px;
  background: #545454;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}
.sustaina_law_list {
  margin-left: 2rem;
  list-style-type: disc;
}
.sustaina_notification {
  display: flex;
  align-items: center;
  width: 80%;
  min-width: 1024px;
  margin-top: 1.5rem;
  border: 2px solid #369245;
  border-radius: 5px;
}
.sustaina_notification_titleBox {
  width: 25%;
  background: #369245;
  text-align: center;
}
.sustaina_notification_title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.sustaina_notification_inner {
  width: 75%;
  padding-left: 2rem;
  box-sizing: border-box;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .sustaina_notification {
    min-width: inherit;
    width: 100%;
    height: 150px;
  }
  .sustaina_notification_titleBox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
  }
  .sustaina_notification_inner {
    padding: 0 2rem;
  }
  .sustaina_notification_text {
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  .sustaina_law_inner {
    width: 100%;
    padding: 7% 5%;
  }
  .sustaina_minititle {
    text-align: center;
  }
  .sustaina_minititle-gray {
    padding: 0.5rem 1rem;
    font-size: 18px;
  }
  .sustaina_notification {
    display: block;
    height: auto;
    width: 100%;
  }
  .sustaina_notification_titleBox {
    width: 100%;
    height: auto;
  }
  .sustaina_notification_title {
    margin: 0.75rem 0;
  }
  .sustaina_notification_inner {
    width: 100%;
    padding: 7% 5%;
  }
}
/* サステナビリティ・廃棄物の処理について */
.sustaina_flow_container {
  margin-top: 3rem;
  padding: 5% 0;
  box-sizing: border-box;
  background: #F4FCF5;
}
.sustaina_minititle-flow {
  margin-bottom: 3rem;
  text-align: center;
}
.sustaina_minititle-long {
  padding: 1rem 7rem;
  box-sizing: border-box;
  font-size: 1.4rem;
}
.sustaina_flow_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
.sustaina_flow_listItem {
  width: calc((100% - 3rem) / 3);
  max-width: 325px;
  padding: 1.5rem 0;
  box-sizing: border-box;
  border: 0.75px solid #4DD163;
  background: #fff;
}
.sustaina_flow {
  display: flex;
  width: 90%;
  margin: 0 auto;
  padding: 0 0.5rem;
  box-sizing: border-box;
  border-radius: 5px;
}
.flow_step1 {
  align-items: center;
  padding: 0.5rem;
  box-sizing: border-box;
  border: 2px solid #3EA74F;
}
.flow_step1_text {
  width: calc(100% - 60px);
  margin: 0;
  padding-left: 1rem;
  box-sizing: border-box;
  color: #276932;
  font-weight: 600;
}
.sustaina_flow_number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 90px;
  background: #3EA74F;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.flow_step2 {
  padding: 1rem 0 1rem 1.5rem;
  box-sizing: border-box;
}
.flow_arrow {
  width: 44px;
  height: auto;
}
.flow_arrow img {
  width: 100%;
  object-fit: contain;
}
.flow_step2_text {
  margin: 0;
  padding-left: 1rem;
  font-weight: 600;
}
.flow_step3 {
  justify-content: center;
  background: #3EA74F;
}
.flow_step3_text {
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.flow_step5 {
  justify-content: center;
  border: 2px solid #3EA74F;
  background: #CAF1D0;
}
.flow_step5_text {
  color: #276932;
  font-weight: 600;
  text-align: center;
}
.flow_step4 {
  justify-content: center;
  padding: 0;
  text-align: center;
}
.flow_step4_text {
  margin: 1rem 0;
}
.sustaina_flow_box {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .sustaina_flow_list {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .sustaina_flow_listItem {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (max-width: 600px) {
  .sustaina_minititle-flow {
    margin-bottom: 1.5rem;
  }
  .sustaina_flow_container {
    padding: 15% 0 10% 0;
  }
  .sustaina_flow_list {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .sustaina_flow_listItem {
    width: 100%;
  }
  .sustaina_minititle-long {
    padding: 1rem 2rem;
    font-size: 20px;
  }
}




/* 採用情報 */
/* 採用メッセージ */
.recruit_message {
  display: flex;
  justify-content: space-between;
}
.recruit_message_container {
  width: 70%;
}
.recruit_message_img {
  width: 445px;
  height: auto;
}
.recruit_message_img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.recruit_message_textBox {
  margin: 0 120px;
}
.recruit_message_text {
  color: #253093;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2.4;
}
.recruit_message_titleBox {
  display: flex;
  justify-content: center;
  width: 30%;
  max-width: 365px;
  max-height: 600px;
  background-image: linear-gradient(35deg, #4d51d1, #4da0d1);
}
.recruit_message_title {
  margin: 0;
  padding-top: 20%;
  box-sizing: border-box;
  color: #fff;
  font-size: 38px;
  writing-mode: vertical-rl;
}
.recruit_message_title span {
  padding: 0 2rem 2rem 0;
  box-sizing: border-box;
  border-right: 1px solid #fff;
}
.recruit_message_line {
  height: 2px;
  margin-top: 7%;
  background: linear-gradient(to right, #fff 0%, #fff 8%, #5B99F6 8%, #5B99F6 100%);
}
@media screen and (max-width: 1280px) {
  .recruit_message_titleBox {
    max-height: 500px;
  }
  .recruit_message_text {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1024px) {  
  .recruit_message_container {
    width: 75%;
  }
  .recruit_message_img {
    width: 325px;
  }
  .recruit_message_textBox {
    margin: 0 55px;
  }
  .recruit_message_titleBox {
    width: 25%;
    max-height: 420px;
  }
  .recruit_message_title {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .recruit_message  {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .recruit_message_titleBox {
    width: 70%;
    min-height: 300px;
    margin: 0 auto;
  }
  .recruit_message_title {
    padding-top: 10%;
    font-size: 28px;
  }
  .recruit_message_container {
    width: 100%;
  }
  .recruit_message_img {
    width: 100%;
  }
  .recruit_message_textBox {
    width: 100%;
    margin: 0;
  }
  .recruit_message_text {
    margin: 0;
    font-size: 17px;
    line-height: 2.0;
  }
  .recruit_message_line {
    margin-top: 18%;
    background: linear-gradient(to right, #fff 0%, #fff 0%, #5B99F6 0%, #5B99F6 100%);
  }
}

/* 働く魅力 */
.recruit_cateTitle_container {
  position: sticky;
  top: 0;
  z-index: 8888;
  height: 220px;
  background: #fff;
  text-align: right;
}
.recruit_cateTitle {
  position: absolute;
  right: 10%;
  bottom: 20px;
}
.recruit_cateTitle span {
  position: relative;
  color: #253093;
  font-size: 2.5rem;
}
.recruit_cateTitle span::before {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: -60px;
  content: "";
  width: 45px;
  height: 0.5rem;
  background: linear-gradient(90deg,#253093 50%, #ff803a 50%) no-repeat;
}

.layer {
  margin-top: 0;
}
.panel {
  display: flex;
  justify-content: space-between;
  height: calc(100vh - 220px);
  position: sticky;
  top: 220px;
  left: 0;
}
.panel_img {
  width: 50%;
  height: 100%;
}
.panel_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title_desc {
  width: 50%;
  overflow: hidden;
  padding: 0 10% 0 5%;
  box-sizing: border-box;
  background: #F9F9F9;
  
}
.panel:nth-of-type(1) .title_desc,
.panel:nth-of-type(3) .title_desc,
.panel:nth-of-type(5) .title_desc {
  background: #fff;
}
.panel_title_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.panel_title_text {
  display: block;
  padding-right: 2rem;
  box-sizing: border-box;
  border-right: 1px solid #4D51D1;
  color: #4D51D1;
  font-size: 24px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 5.0;
}
.panel_title_text2 {
  border-right: 1px solid #4DA0D1;
  color: #4DA0D1;
}
.panel_title_text3 {
  border-right: 1px solid #3A9D86;
  color: #3A9D86;
}
.panel_title_text4 {
  border-right: 1px solid #FF803A;
  color: #FF803A;
}
.panel_title_text5 {
  border-right: 1px solid #FF3A6A;
  color: #FF3A6A;
}
.panel_title_no {
  display: block;
  padding-left: 2rem;
  box-sizing: border-box;
  width: 25%;
  height: auto;
}
.panel_title_no img {
  width: 100%;
  object-fit: cover;
}
.panel_catch {
  min-width: 500px;
  margin: 1rem 0 1.5rem 0;
  font-weight: 500;
  color: #fff;
  font-size: 2vw;
  font-family: "Zen Antique Soft", serif;
}
.panel_catch_text {
  display: inline-block;
  position: relative;
  margin-bottom: 0.5rem;
  padding: 0 4rem 0 1.5rem;
  box-sizing: border-box;
}
.bg.is-animated .panel_catch_text::before {
  animation: bg 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background-image: linear-gradient(to right, #4d51d1 0%, #4d51d1 65%, #4da0d1 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.bg.is-animated .panel_catch_text2::before {
  animation: bg 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background-image: linear-gradient(to right, #4DA0D1 0%, #4DA0D1 65%, #4DD1B3 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.bg.is-animated .panel_catch_text3::before {
  animation: bg 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background-image: linear-gradient(to right, #3A9D86 0%, #3A9D86 65%, #4DD163 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.bg.is-animated .panel_catch_text4::before {
  animation: bg 6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background-image: linear-gradient(to right, #FF803A 0%, #FF803A 65%, #FF6B8F 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.bg.is-animated .panel_catch_text5::before {
  animation: bg 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background-image: linear-gradient(to right, #FF3A6A 0%, #FF3A6A 65%, #E0FB35 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.inn {
  display: inline-block;
  position: relative;
  z-index: 1;
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.panel_catch_inner {
  width: 70%;
  min-width: 420px;
}
@media screen and (max-width: 1280px) {
  .recruit_cateTitle span {
    font-size: 2rem;
  }
  .recruit_cateTitle span::before {
    top: 14px;
    left: -60px;
    width: 40px;
    height: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_cateTitle_container {
    height: 190px;
  }
  .panel {
    flex-direction: column-reverse;
    height: calc(100vh - 190px);
    top: 190px
  }
  .panel_img {
    width: 100%;
    height: 50%
  }

  .title_desc {
    width: 100%;
    height: 50%;
    padding: 0 10%;
  }
  .panel_title_no {
    width: 20%;
    padding-left: 1rem;
  }
  .panel_title_text {
    font-size: 20px;
    padding-right: 1rem;
  }
  .panel_catch {
    font-size: 32px;
  }
  .panel_catch_inner {
    width: 85%;
    min-width: inherit;
  }
}
@media screen and (max-width: 600px) {
  .recruit_cateTitle_container {
    height: 160px;
  }
  .recruit_cateTitle {
    right: 5%;
  }
  .panel {
    height: auto;
    position: static;
  }
  .title_desc {
    height: auto;
    padding: 5% 5% 7% 5%;
  }
  .recruit_cateTitle span {
    font-size: 24px;
  }
  .recruit_cateTitle span::before {
    width: 35px;
    top: 10px;
    left: -45px
  }
  .panel_title_text {
    margin: 0;
    line-height: 4.0;
  }
  .panel_title_no {
    width: 30%;
  }
  .panel_catch {
    min-width: none;
    font-size: 5.8vw;
  }
  .panel_catch_text {
    padding: 0 1.5rem 0 1rem;
  }
  .panel_catch_inner {
    width: 95%;
  }
  .panel_img {
    height: 300px;
  }
}

/* 募集要項 */
.recruit_details_title {
  width: 90%;
  margin: 0 auto;
}
.recruit_details_title span {
  position: relative;
  padding-left: 60px;
  color: #253093;
  font-size: 2.5rem;
}
.recruit_details_title span::before {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 0;
  content: "";
  width: 45px;
  height: 0.5rem;
  background: linear-gradient(90deg,#253093 50%, #ff803a 50%) no-repeat;
}
.recruit_details_container {
  width: 90%;
  margin: 0 auto;
  padding-top: 1rem;
}
.recruit_details_list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.recruit_details_listItem {
  display: flex;
  background: #F9F9F9;
}
.recruit_details_category {
  width: 30%;
  padding: 2rem 1rem 2rem 2rem;
  box-sizing: border-box;
  color: #253093;
  font-weight: 600;
}
.recruit_details_category span::before {
  content: "■";
  padding-right: 1rem;
  box-sizing: border-box;
  color: #4D51D1;
}
.recruit_details_inner {
  width: 70%;
  padding: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  .recruit_details_title span {
    font-size: 2rem;
  }
  .recruit_details_title span::before {
    top: 14px;
    width: 40px;
    height: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .recruit_details_title {
    width: 100%;
  }
  .recruit_details_container {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .recruit_details {
    margin-top: 30px;
  }
  .recruit_details_title span {
    padding-left: 45px;
    font-size: 24px;
  }
  .recruit_details_title span::before {
    top: 10px;
    width: 35px;
  }
  .recruit_details_listItem {
    display: block;
  }
  .recruit_details_category {
    width: 100%;
    padding: 1rem 1rem 0 1rem;
  }
  .recruit_details_inner {
    width: 100%;
    padding: 0 1rem 1rem 3rem;
    line-height: 1.5;
  }
}





/* プライバシーポリシー */
.content_privacy {
  width: 80%;
  max-width: 1180px;
  margin: 0 auto;
}
.privacy_list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.privacy_list_item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid #4D74D1;
}
.privacy_list_item:last-child {
  margin-bottom: 0;
}
.privacy_list_title {
  margin: 0;
  color: #253093;
  font-size: 1.6rem;
}
@media screen and (max-width: 1280px) {
  .privacy_list_title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 600px) {
  .privacy_list li:last-child {
    border-bottom: none;
  }
}


/* お問合わせ */
.contact_tel_inner {
  width: 70%;
  max-width: 880px;
  padding: 2rem 0 2rem 6%;
  box-sizing: border-box;
  background: #F2F7FF;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.contact_tel_inner a {
  display: flex;
  align-items: center;
  width: 100%;
  color: #253093;
}
.contact_tel_text {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #253093;
}
.contact_tel_number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
}
.contact_form_list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.contact_form_item {
  display: flex;
  gap: 6px;
  padding: 1.5rem 0;
  box-sizing: border-box;
  border-bottom: 0.5px solid #A7A7A7;
}
.contact_form_list dt {
  display: flex;
  gap: 1rem;
  width: 30%;
  color: #253093;
  font-weight: 600;
}
.contact_form_item-first {
  border-top: 0.5px solid #A7A7A7;
}
.contact_form_list dd {
  width: 70%;
}
.contact_form_list 
.contact_form_select {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact_form_must {
  display: flex;
  align-items: center;
  width: 60px;
  height: 40px;
  padding: 0 1rem;
  box-sizing: border-box;
  border-radius: 3px;
  background: #4D74D1;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}
.contact_form_memo {
  font-size: 15px;
  font-weight: 400;
}
.contact_form_item textarea {
  width: 90%;
  padding: 0.5rem;
  box-sizing: border-box;
  border: none;
  background: #F2F7FF;
}
.campanyname,
.companykana,
.tantou,
.tantoukana,
.postnumber,
.address,
.tel,
.email {
  height: 70px;
  padding: 0 1.5rem;
  box-sizing: border-box;
  border: none;
  background: #F2F7FF;
}
.campanyname,
.companykana,
.email {
  width: 90%;
}
.tantou,
.tantoukana {
  width: 65%;
}
.address {
  width: 90%;
}
.contact_form_check {
  padding: 3% 0;
  text-align: center;
}
.contact_form_checkText a {
  color: #253093;
  text-decoration: underline;
}
.contact_form_checkText a:hover {
  color: #4d51d1;
}
.contact_form_checkBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  box-sizing: border-box;
  font-size: 1.2rem;
}
.private {
  width: 40px;
  height: 40px;
  font-size: 25px;
  font-weight: 600;
}
.contact_form_submitBox {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 990px;
  margin: 0 auto;
}
.contact_form_submit {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 430px;
  height: 105px;
  margin: 0 auto;
  background: #253093;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  cursor : pointer !important;
  transition: background-color 0.3s ease;
}
.contact_form_submit:hover {
  transition: background-color 0.3s ease;
}
input[type="submit"] {
  background-color: #253093;
  border-color: transparent;
  font-size: 1.2rem;
  font-weight: 500;
}
input[type="submit"]:disabled {
  color: #333;
  background: #F5F5F5;
  border-color: transparent;
  cursor: not-allowed !important;
}
.contact_form_submit-back {
  background: #E3EEFF;
  color: #253093;
  border-color: transparent;
}
.private {
  cursor : pointer !important;
}


@media screen and (max-width: 1024px) {
  .contact_tel_inner {
    width: 90%;
    max-width: 550px;
    padding: 2rem;
  }
  .contact_tel_number {
    font-size: 30px;
  }
  .contact_form_list dt {
    width: 35%;
  }
  .contact_form_list dd {
    width: 65%;
  }
  .contact_form_memo {
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
  }
}
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}
@media screen and (max-width: 600px) {
  .contact_tel_inner {
    width: 100%;
    padding: 1.5rem;
  }
  .contact_tel_inner a {
    justify-content: center;
  }
  .contact_tel_text {
    flex-direction: column;
  }
  .contact_tel_number {
    font-size: 28px;
  }
  .contact_form_item {
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
  }
  .contact_form_item p {
    margin: 0;
  }
  .contact_form_list dt,
  .contact_form_list dd {
    width: 100%;
  }
  .contact_form_category {
    padding-top: 0.2rem;
    font-size: 18px;
  }
  .contact_form_select {
    gap: 1rem;
  }
  .campanyname,
  .companykana,
  .tantou,
  .tantoukana,
  .postnumber,
  .address,
  .tel,
  .email {
    width: 100%;
    height: 55px;
  }
  .contact_form_item textarea {
    width: 100%;
  }
  .contact_form_check {
    padding: 3% 0 10% 0;
  }
  .contact_form_checkText {
    text-align: left;
  }
  .contact_form_checkBtn {
    padding: 0;
  }
  .contact_form_checkBtn {
    font-size: 18px;
  }
  .private {
    width: 20px;
    height: 20px;
  }
  .contact_form_submit {
    width: 90%;
    height: 80px;
  }
  .contact_form_submit a {
    justify-content: center;
  }
}


/* お知らせ */
.content_news {
  display: flex;
  justify-content: center;
  gap: 35px;
}
.content_news_container {
  width: 75%;
}
.content_news_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.content_news_listItem {
  padding: 1rem 2rem;
  box-sizing: border-box;
  background: #F2F7FF;
  transition: background-color 0.5s ease;
}
.content_news_listItem:hover {
  background: #E3EEFF;
}
.content_news_listItem a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #253093;
}
.content_news_listDate {
  padding-right: 2rem;
  border-right: 1px solid #253093;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.content_news_listTitle {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.content_news_category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #4D74D1;
  color: #fff;
  font-size: 15px;
}
.news_menu_listItem a {
  color: #253093;
}
@media screen and (max-width: 1024px) {
  .content_news {
    gap: 20px;
  }
  .content_news_listDate {
    font-size: 18px;
  }
  .content_news_listTitle {
    margin: 0;
    font-size: 1rem;
  }
  .content_news_category {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .content_news {
    flex-direction: column-reverse;
  }
  .content_news_container {
    width: 100%;
  }
  .content_news_listItem {
    padding: 1rem;
  }
  .content_news_listDate {
    padding-right: 1rem;
  }
  .content_news_category {
    display: block;
    width: 65px;
    padding: 0.5rem;
    box-sizing: border-box;
    font-size: 12px;
    white-space: nowrap;
  }
}

/* お知らせのサイドメニュー */
.content_news_menu {
  width: 25%;
}
.news_menu_title {
  margin: 0;
  padding: 1rem 0;
  box-sizing: border-box;
  background: #253093;
  color: #fff;
  text-align: center;
}
.news_menu_listItem {
  padding: 0 0 0 1rem;
  box-sizing: border-box;
  border-bottom: 0.5px solid #253093;
}
.news_menu_listItem a {
  display: flex;
  justify-content: space-between;
}
.news_menu_listText {
  font-weight: 600;
}
.news_menu_listItem:hover .news_menu_listText {
  color: #4D51D1;
}
@media screen and (max-width: 1024px) {
  .news_menu_title {
    padding: 0.5rem 0;
  }
}
@media screen and (max-width: 600px) {
  .content_news_menu {
    width: 100%;
  }
  .news_menu_title {
    display: none;
  }
  .news_menu_list {
    display: table;
    width: 100%;
    border-collapse: collapse;
  }
  .news_menu_listItem {
    display: table-cell;
    width: calc(100% / 3);
    padding: 0;
    border: 2px solid #253093;
  }
  .news_menu_listItem a {
    display: block;
    text-align: center;
  }
  .arrowBox-sp {
    display: none;
  }
}

/* お知らせのページネーション  */
.pagination {
    text-align: center;
}
.nav-links .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.nav-links a.page-numbers ,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: #fff;
    color: #4d51d1;
    border-radius: 50%;
    margin-right: 25px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #4d51d1;
}
.nav-links a.page-numbers:hover {
    color: #FFF;
    background-color: #999;
    border-color: #999;
    border-radius: 50%;
}
.nav-links .current {
    background: #4d74d1;
    color: #FFFFFF;
    padding: 0;
}

/* 前への「＜」、次への「＞」 */
.nav-links a.prev,
.nav-links a.next {
    border: 1px solid #004BB1;
    color: #004BB1;
    position: relative;
}
.nav-links .next::before,
.nav-links .prev::after {
    content: "";
    display: inline-block;
    width: 0.5px;
    height: 40px;
    background-color: rgb(224, 215, 215);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.nav-links .next::before {
    left: -15px;
}
.nav-links .prev::after {
    right: -15px;
}
.nav-links .dots {
    background: transparent;
    border: none;
}




/* お知らせ各ページ */
.content_single {
  height: 35vh;
}
.content_single_container {
  max-width: 1040px;
  width: 80%;
  margin: 0 auto;
}
.content_single_head {
  display: flex;
  align-items: center;
}
.content_single_listDate {
  padding-right: 2rem;
  border-right: 1px solid #253093;
  color: #4D51D1;
  font-size: 22px;
  font-weight: 600;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.content_single_category {
  padding-left: 2rem;
}
.content_single_title {
  color: #253093;
  font-size: 30px;
}
.content_single_inner {
  padding-bottom: 5%;
  box-sizing: border-box;
  border-bottom: solid 1px #bebebe;
}
.content_single_btn {
  margin: 3% auto 0 auto;
}
@media screen and (max-width: 1280px) {
  .content_single_container {
    max-width: 890px;
  }
}
@media screen and (max-width: 1024px) {
  .content_single {
    height: 10vh;
    min-height: 220px;
  }
  .content_single_container {
    max-width: 760px;
  }
}
@media screen and (max-width: 600px) {
  .breadcrumb_single {
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
  }
  .content_single {
    min-height: 140px;
  }
  .content_single_btn {
    display: block;
  }
  .content_single_listDate {
    padding-right: 1rem;
  }
  .content_single_category {
    padding-left: 1rem;
  }
  .content_single_title {
    font-size: 24px;
  }
  .content_single_btn {
    margin: 7% auto 0 auto;
  }
}




/*変更*/

.top_hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.top_hero_bird {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 302.46 195.16">  <path d="M302.4,152.83l-1.44-.71c-19.94-19.57-42.31-37.18-60.72-58.27-5.77-6.62-10.54-17.75-20.9-16.1s-38.59,23.64-45.59,31.66c-14.84,17.01,6.44,45.07,13.2,62.14,2.24,5.66,4.14,7.84-1.22,12.17-7,5.66-12.44,4.47-20.02,6.85-4.07,1.28-7.14,3.98-11.86,4.46-8.34.84-11.04-2.67-17.99-4.55-8.37-2.27-13.98-1.64-21.13-8.14-2.62-2.39-3.41-2.95-2.14-6.47,2.86-7.93,8.99-16.79,12.64-24.78,5.14-11.24,13.25-29.79,4.37-40.68-6.42-7.89-34.92-30.59-44.24-33.01-12.75-3.31-21.5,14-28.94,22.21-14.49,16-32.2,29.04-47.77,43.87-2.94,2.8-5.07,6.46-8.63,8.4-.35-38.78,13.63-76.51,39.11-105.52,4.23-4.81,18.38-20.16,24.13-20.99,3.07-.45,11.05,3.34,14.21,4.76,11.09,5,21.34,11.74,32.83,16.12,5.61,2.14,18.03,6.85,23.14,2.74,3.24-2.61,5.78-20.16,7.81-25.28,1.34-3.39,4.48-6.77,5.52-9.83C147.64,11.26,147.62,0,151.92,0s4.15,11.15,4.76,13.78,4.14,6.44,5.31,9.57c2.24,6,3.61,21.25,7.25,25.37,4.28,4.85,17.69-.04,22.89-1.99,13.3-4.99,25.36-12.75,38.43-18.2,2.96-1.23,6.34-3.14,9.57-2.68,4.81.69,13.65,9.4,17.17,13.06,29.07,30.21,46.32,71.63,45.1,113.92Z" fill="%23fff" /></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

.top_hero_bird {
  position: absolute;
  z-index: 4;
  width: 32vw;
  height: auto;
  aspect-ratio: 1.55;
  right: 13.6%;
  bottom: 25%;
  rotate: -24deg;
}

.top_hero_bird {
  transition: transform 0.3s ease-out, opacity 0.5s ease-out;
  transform: scale(1);
  transform-origin: center;
  opacity: 1;
}

.top_hero_bird.js-fly {
  opacity: 0.4;
  transition: 0.5s;
}

.top_hero_clip {
  clip-path: ellipse(540px 370px at 74% 54%);
  clip-path: ellipse(30.5vw 20vw at 74% 54%);
  width: 100vw;
  height: 100vh;
  background-image: url(images/top-hero-sky_temp.jpg);
  background-size: cover;
  position: absolute;
  right: 0%;
  top: 0%;
  background-position: bottom;
}

.top_hero_clip {
  transition: transform 0.3s ease-out;
  transform: scale(1);
  transform-origin: center;
}

.top_hero_textBox {
  position: absolute;
  z-index: 5;
  top: 20%;
  left: 10%;
  color: #253093;
  font-size: 3.5vw;
  font-family: "Zen Antique Soft", serif;
  line-height: 1.8;
}
.top_hero_name {
  position: absolute;
  z-index: 6;
  bottom: 0;
  left: 5%;
  margin: 0;
  color: #253093;
  font-size: 9vw;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 1.0;
}
@media screen and (max-width: 1025px) {
  .top_hero_textBox {
    font-size: 7vw;
  }
  .top_hero_name {
    font-size: 15vw;
  }
}

@media screen and (max-width: 1025px) {
  .top_hero_clip {
    clip-path: ellipse(50.5vw 34vw at 66% 78%);
  }
  .top_hero_bird {
    position: absolute;
    z-index: 4;
    width: 67vw;
    height: auto;
    aspect-ratio: 1.55;
    right: -2.4%;
    bottom: 10%;
    rotate: -24deg;
  }
}

@media screen and (max-width: 600px) {
  .top_hero_textBox {
    left: 28%;
    font-size: 8vw;
  }
  .top_hero_text {
    writing-mode: vertical-rl;
  }
}

.top_hero_clip {
  transition: transform 0.3s ease-out;
  transform: scale(1);
  transform-origin: center;
}