/* =========================================================
	Common
========================================================= */


section#nav {
  position: sticky;
  top: 90px;
  z-index: 9999;
  max-width: 1280px;
  margin: 0 auto 3.5rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	border-radius:0.5rem;
	padding:0!important;
	transform:translate(0, -50%);
}

.section__nav {
  display: flex;
  margin: 0!important;
  padding: 0!important;
  list-style: none;
}

.section__nav li {
  position: relative;
  margin: 0!important;
  flex: 1;
}

.section__nav li::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: #e60012;
  opacity: 0;
  transform: scaleX(0);
  transition: 0.25s ease;
}

.section__nav li.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.section__nav a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 16px 20px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
	color:#111!important;
}

.section__nav a::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: #e60012;
}

.section__nav li.is-active a {
  color: #e60012;
}

@media (max-width: 992px) {
  #nav {
    display:none;
  }

}


.page-header {
  position: relative;
  overflow: hidden;
  padding: 1rem 0rem 1rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
margin:0!important;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
/*  background:
    linear-gradient(
      135deg,
      rgba(0, 25, 55, 0.88) 0%,
      rgba(0, 48, 90, 0.72) 45%,
      rgba(0, 0, 0, 0.45) 100%
    );*/
  z-index: 1;
}

.page-header__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  margin: 0 auto;
	min-height:
}

.page-header__content {
padding:3.5rem 0 4.5rem 0;
}

.page-header__title {
  margin: 0;
	font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.page-header__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 28px;
  background: #e60012;
}

.page-header__description {
  margin-top: 36px;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}

.page-header__breadcrumb {
  font-size: 0.9rem;
  line-height: 1;
  color: rgba(255,255,255,0.95);
	text-align:right;
}

.page-header__breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.page-header__breadcrumb a:hover {
  opacity: 0.7;
}


/* =========================================================
PAGE CONTENT
========================================================= */

main.page-main{
	background-image:url(../../assets/images/common/section__bg--geometric.svg);
	background-size:100% auto;
	background-repeat:repeat-y;
	background-position:0% 0%;
	padding-bottom:6rem;
}


.page-content {
  width: min(100%, 1360px);
  margin: 0px auto 6rem;
  padding: 0 40px;
}

.page-content a{
	color:#1e63b8;
}

/* =========================================================
CONTENT BASIC
========================================================= */

.page-content h2 {
  position: relative;
  margin: 100px 0 40px;
  padding-left: 24px;
  font-size: clamp(2.8rem, 3vw, 4rem);
  line-height: 1.4;
  font-weight: 700;
}

.page-content h2::before {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 6px;
  height: 1.2em;
  background: #e60012;
}


/* =========================================================
SP
========================================================= */

@media screen and (max-width: 992px) {

  .page-header {
    padding:
      140px
      24px
      80px;
  }

  .page-header__title {
    font-size: 2.25rem;
  }

  .page-header__description {
    margin-top: 28px;
    font-size: 1.15rem;
    line-height: 1.5;
  }

  .page-header__breadcrumb {
    margin-top: 1.25rem;
    font-size: 1rem;
  }

  .page-content {
/*    margin: 60px auto;*/
    padding: 0 1rem;
  }

  .page-content h2 {
    margin: 72px 0 32px;
    padding-left: 18px;
    font-size: 2.8rem;
  }

  .page-content h3 {
    font-size: 1.15rem;
  }

  .page-content p,
  .page-content li {

  }

  .page-content th,
  .page-content td {
    padding: 12px;
  }

}


body.page:not(.home) main section{
	background-color:#fff;
	box-shadow:0px 3px 8px rgba(0,0,0,0.15);
	margin:0 0 2.5rem;
	padding:2.5rem;
}
body.page:not(.home) main section section{
	box-shadow:none;
	padding:initial;
	margin:initial;
}

@media screen and (max-width:992px){
	body.page:not(.home) main section{
		padding:1.25rem;
		}
}


/* =========================================================
heading
========================================================= */

.section__title{
	font-size:1.75rem!important;
	position:relative;
	margin:1rem 0 2.5rem!important; 
	font-family: "Inter", sans-serif;
	letter-spacing:0.05em;
}

.section__title:before{
	position:absolute;
	content:'';
	width:2.5rem;
	height:3px;
	background-color:#e60012;
	left:0;
	top:-1rem;
	display:block;
}







/* =========================================================
IR情報
========================================================= */



.disclosure-policy {
 display:flex;
	gap:2rem;
	flex-wrap:wrap;
}

.disclosure-policy__item {
 width:calc(50% - 1rem);
	display:flex;
	gap:1rem;
}

.disclosure-policy__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px!important;
  height: 72px!important;
  border-radius: 50%;
  background: #f5f5f5;
}

.disclosure-policy__icon img {
  width: 42px;
  height: auto;
	display:block;
}

.disclosure-policy__content{
	width:calc(100% - 72px - 1rem);
}

.disclosure-policy__title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 0.5rem;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  color: #111;
}

.disclosure-policy__title span {
  font-size: 26px;
  font-weight: 700;
}

.disclosure-policy__content p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  #disclosure.ir {
    padding: 36px 20px 40px;
  }

  #disclosure .section__title {
    margin-bottom: 32px;
    font-size: 24px;
  }

  .disclosure-policy {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .disclosure-policy__item {
	  width:100%;
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .disclosure-policy__icon {
    width: 56px;
    height: 56px;
  }

  .disclosure-policy__icon img {
    width: 32px;
  }

  .disclosure-policy__title {
    gap: 10px;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .disclosure-policy__title span {
    font-size: 20px;
  }

  .disclosure-policy__content p {
    font-size: 13px;
    line-height: 1.8;
  }
}



.ir-contact {
  margin-top: 40px;
  text-align: center;
}

.ir-contact__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 54px;
  padding: 0 60px 0 42px;

  background: #e60012;
  color: #fff!important;
  text-decoration: none;

  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  transition: .3s ease;
}

.ir-contact__button:hover {
  background: #c40010;
}

.ir-contact__button::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;

  width: 22px;
  height: 22px;

  border-radius: 50%;
  background: #fff;

  transform: translateY(-50%);
}

.ir-contact__button::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;

  width: 5px;
  height: 5px;

  border-top: 2px solid #e60012;
  border-right: 2px solid #e60012;

  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 767px) {
  .ir-contact__button {
    width: 100%;
    max-width: 320px;
  }
}

.ir-contact__button svg {
  position: absolute;
  right: 16px;
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: #fff;
  fill: none;
  stroke: #e60012;
  stroke-width: 2;
}


/* =========================================================
	About
========================================================= */

section.about#message .message__container{
	display:flex;
	flex-wrap:wrap;
	gap:3rem;
}

section.about#message .message__container .message__text{
	width:calc(60% - 1.5rem);
}

section.about#message .message__container .message__image{
	width:calc(40% - 1.5rem);
}

.message__copy{
	font-family: "Noto Serif JP", serif;
	font-size:1.75rem;
	margin:0 0 1.75rem;
}

section.about#message figure img{
	display:block;
	margin:0 0 0.5rem;
}

section.about#message figcaption {
	text-align:right;
}

section.about#message figcaption img{
	margin:0 0 0 auto;
}


@media screen and (max-width:992px){
	section.about#message .message__container{
		flex-direction:column;
		gap:1rem;
	}
	section.about#message .message__container .message__text{
		width:100%;
	}
	section.about#message .message__container .message__image{
		width:50%;
		margin:0 auto;
	}
}

section.about#mission{
	background-image:url(../../assets/images/about/mission__bg.webp);
	background-repeat:no-repeat;
	background-position:100% 50%;
	background-size:cover;
	background-repeat:no-repeat;
	aspect-ratio:2247 / 1209;
	padding:0!important;
}

section.about#mission .mission__inner{
	padding:2.5rem;
}

section.about#mission .mission__copy{
	font-family: "Noto Serif JP", serif;
	font-size:1.75rem;
	margin:0 0 0.5rem;	
}

section.about#mission .mission__copy--en{
	font-family: "Noto Serif JP", serif;
	font-size:0.85rem;
	margin:0 0 1.5rem;	
}


section.about#mission .mission__container{
	display:flex;
}

section.about#mission .mission__container .mission__text{
	width:45%;
	max-width:90%;
}


section.about#vision{
	background-image:url(../../assets/images/about/vision__bg.webp);
	background-repeat:no-repeat;
	background-position:100% 50%;
	background-size:cover;
	background-repeat:no-repeat;
	aspect-ratio:2247 / 1209;
	padding:0;
}

section.about#vision .vision__inner{
	padding:2.5rem;
}


section.about#vision .vision__copy{
	font-family: "Noto Serif JP", serif;
	font-size:1.75rem;
	margin:0 0 0.5rem;	
}

section.about#vision .vision__copy--en{
	font-family: "Noto Serif JP", serif;
	font-size:0.85rem;
	margin:0 0 1.5rem;	
}


section.about#vision .vision__container{
	display:flex;
}

section.about#vision .vision__container .vision__text{
	width:50%;
	max-width:90%;
}

section.about#mission .mission__image--sp{
	display:none;
}

section.about#vision .vision__image--sp{
	display:none;
}

section.about#value {
	background-color:#efeeef;
}

@media screen and (max-width:992px){
	section.about#mission {
		background-image:none;
	}
	section.about#mission .mission__container{
		flex-direction:column;
		gap:1rem;
	}
	section.about#mission .mission__container .mission__text{
		width:100%;
		max-width:100%;
	}
	section.about#mission .mission__container .message__image{
		width:50%;
		margin:0 auto;
	}
	section.about#mission .mission__image--sp{
		display:block;
	}
	section.about#mission .mission__copy{
		font-size:1.5rem;
	}
	section.about#mission .mission__inner{
		padding:1.25rem;
	}

	section.about#vision {
		background-image:none;
	}
	section.about#vision .vision__container{
		flex-direction:column;
		gap:1rem;
	}
	section.about#vision .vision__container .vision__text{
		width:100%;
		max-width:100%;
	}
	section.about#vision .vision__container .vision__image{
		width:50%;
		margin:0 auto;
	}
	section.about#vision .vision__image--sp{
		display:block;
	}
	section.about#vision .vision__copy{
		font-size:1.5rem;
	}
	section.about#vision .vision__inner{
		padding:1.25rem;
	}


}


/* =========================================================
	Company
========================================================= */


dl.company {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-top: 1px solid #ddd;
  font-size: 16px;
  line-height: 1.8;
}

dl.company dt,
dl.company dd {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

dl.company dt {
  font-weight: 700;
  color: #222;
  border-right: 1px solid #ddd;
  padding-right: 24px;
}

dl.company dd {
  margin: 0;
  color: #333;
  padding-left: 24px;
}

dl.company dd a {
  display: inline-block;
  margin-top: 6px;
  color: #1e6bb8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

dl.company dd a:hover {
  text-decoration: none;
}

.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: 10px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: #2f6fa8;
  text-decoration: none!important;
  background: #edf5fb;
  border: 1px solid #c9dceb;
  border-radius: 999px;
  transition: 0.3s ease;
}


.map-button:hover {
  color: #fff;
  background: #2f6fa8;
  border-color: #2f6fa8;
}

/* SP */
@media (max-width: 767px) {
  .map-button {
    margin-top: 8px;
    margin-left: 0;
    padding: 5px 11px;
    font-size: 11px;
  }

  .map-button::after {
    font-size: 11px;
  }
}

@media screen and (max-width: 992px) {
  dl.company {
    display: block;
    font-size: 15px;
  }

  dl.company dt {
    padding: 18px 0 6px;
    border-right: none;
    border-bottom: none;
  }

  dl.company dd {
    padding: 0 0 18px;
  }
}




/* Group Companies */





.group-companies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.group-company-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid #e5e8ec;
border-radius:0.5rem;
  box-shadow: 0 8px 12px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.group-company-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.group-company-card__name {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #111827;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.group-company-card__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
/*  border: 1px solid #d6e4ef;
  border-radius: 50%;
  background: #f3f8fb;
  color: #1d75a8;*/
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.group-company-card__list {
  margin: 0;
}

.group-company-card__item {
  margin: 0;
}

.group-company-card__item + .group-company-card__item {
  margin-top: 18px;
}

.group-company-card__item dt {
  margin: 0 0 7px;
color:#111;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.group-company-card__item dd {
  margin: 0;
  color: #444;
  font-size: 0.9rem;
  line-height: 1.8;
}

.group-company-card a {
  color: #1769aa;
  text-decoration: none;
}

.group-company-card a:hover {
  text-decoration: underline;
}

.group-company-card__map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 4px 11px;
  border: 1px solid #c9dff1;
  border-radius: 999px;
  background: #f4f9fd;
  color: #1769aa;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.group-company-card__map::after {
  content: "";
  width: 12px;
  height: 12px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.group-company-card__item--site {
  margin-top: auto;
  padding-top: 18px;
}

.group-company-card__item--site dd {
  word-break: break-all;
}

.group-company-card__item--site a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 3h7v7h-2V6.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3ZM5 5h6v2H7v10h10v-4h2v6H5V5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* 992px未満：2カラム */
@media screen and (max-width: 991px) {
  .group-companies {
    padding: 48px 0;
  }

  .group-companies__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .group-company-card {
    min-height: auto;
    padding: 24px 20px;
  }
}

/* 640px未満：1カラム */
@media screen and (max-width: 992px) {
  .group-companies__grid {
    grid-template-columns: 1fr;
  }
  .group-company-card__name {
    font-size: 16px;
  }

  .group-company-card__item dd {
    font-size: 13px;
  }
}




/* Network */


.company-network {
  padding: 56px 0 64px;
  background: #fff;
}

.company-network__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.company-network__title {
  position: relative;
  margin: 0 0 22px;
  padding-top: 18px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.04em;
}

.company-network__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 3px;
  background: #e50012;
}

.company-network__lead {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  font-weight: 500;
  color: #111;
}

.network-map {
  position: relative;
  min-height: 430px;
}

.network-map__visual {
  position: absolute;
  left: 50%;
  top: 105px;
  width: 260px;
  transform: translateX(-50%);
  z-index: 0;
}

.network-map__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.network-map__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.network-map__lines line {
  stroke: #e50012;
  stroke-width: 1;
}

.network-card {
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
  padding: 13px 16px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #c7ccd5;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.network-card--toyama {
  left: 0%;
  top: 0px;
  width: 340px;
}

.network-card--osaka {
  left: 0%;
  top: 220px;
  width: 330px;
}

.network-card--aichi {
  left: 0%;
  bottom: 0px;
  width: 330px;
}

.network-card--tokyo {
  right: 0%;
  top: 0px;
  width: 340px;
}

.network-card--kanagawa {
  right: 0;
  bottom:0px;
  width: 420px;
}

.network-card__area {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #003f8f;
}

.network-card__list,
.network-card__sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.network-card__list > li {
  position: relative;
  margin: 0;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
  color: #111;
}

.network-card__list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  transform: translateY(-50%);
}

.network-card__sublist {
  margin-top: 1px;
  margin-bottom: 2px;
}

.network-card__sublist > li {
  position: relative;
  padding-left: 1em;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.network-card__sublist > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* SP */
@media (max-width: 1200px) {
  .company-network {
    padding: 44px 0 52px;
  }

  .company-network__inner {
    width: 100%;
  }

  .company-network__lead {
    margin-bottom: 24px;
    text-align: left;
  }

  .network-map {
    min-height: 0;
  }

  .network-map__lines {
    display: none;
  }

  .network-map__visual {
    position: static;
    width: min(240px, 72%);
    margin: 0 auto 24px;
    transform: none;
  }

  .network-card {
    position: static;
    width: 100%;
    margin-top: 12px;
    padding: 14px 16px;
  }

  .network-card__area {
    font-size: 17px;
  }

  .network-card__list > li {
    font-size: 14px;
  }

  .network-card__sublist > li {
    font-size: 13px;
  }
}



/* History */

.history-chapters {
  max-width: 100%;
  margin: 0 auto;
  padding: 0px;
}

.history-chapter {
/*
  position: relative;
  padding: 2rem;
  background: #fff;
  border: 1px solid #e5e8ec;
  border-radius: 1rem;
  box-shadow: 0 16px 20px rgba(20, 32, 48, 0.05);
*/

}

.history-chapter + .history-chapter {
  margin-top: 48px;
}

.history-chapter__head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.history-chapter__label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 32px;
  padding: 0 14px;
  background: #e60012;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.history-chapter__title {
  margin: 0;
  color: #14243a;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.history-chapter__title span {
  display: inline-block;
  margin-left: 10px;
  color: #64748b;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.history-chapter__lead {
  margin: 0.5rem 0 1.75rem;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f5f8fb 0%, #ffffff 100%);
  border-radius: 12px;
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
}

.history-timeline {
  position: relative;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
	top:-8px;
	bottom:-8px;
  left: 160px;
  width: 1px;
  background: #d7dde5;
}

.history-chapter#first .history-timeline::before {
  top: 8px;
}

.history-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
}

.history-timeline__item + .history-timeline__item {
  margin-top: 24px;
}

.history-timeline__item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 155px;
  width: 11px;
  height: 11px;
  background: #0f3f6f;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #0f3f6f;
  z-index: 1;
}

.history-timeline__item time {
  color: #0f3f6f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  white-space: nowrap;
	padding-left:1.5rem;
}

.history-timeline__item h3 {
  margin: 0 0 6px;
  color: #14243a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.history-timeline__item p {
  margin: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.8;
}

img.history__image--01{
	display:block;
	width:25%;
	position:absolute;
	top:0;
	right:0;
}

/* SP */
@media screen and (max-width: 992px) {
  .history-chapters {
    padding: 0px;
  }

  .history-chapter {
    padding: 0;
	  margin-bottom:2rem;
  }

  .history-chapter + .history-chapter {
    margin-top: 32px;
  }

  .history-chapter__head {
    display: block;
    padding-bottom: 0.75rem;
  }

  .history-chapter__label {
    margin-bottom: 12px;
  }

  .history-chapter__title {
    font-size: 21px;
  }

  .history-chapter__title span {
    display: block;
    margin: 6px 0 0;
    font-size: 14px;
  }

  .history-chapter__lead {
    margin: 0rem 0 0.5rem;
    padding: 16px;
    font-size: 15px;
  }

  .history-timeline::before {
    left: 8px;
  }

  .history-timeline__item {
    display: block;
    padding-left: 32px;
  }

  .history-timeline__item + .history-timeline__item {
    margin-top: 28px;
  }

  .history-timeline__item::before {
    top: 8px;
    left: 3px;
    width: 10px;
    height: 10px;
  }

  .history-timeline__item time {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
	  padding-left:0;
  }

  .history-timeline__item h3 {
    font-size: 17px;
  }

  .history-timeline__item p {
    font-size: 15px;
  }

	img.history__image--01{
		display:block;
		width:100%;
		position:relative;
	}
}





/* =========================================================
	Service
========================================================= */


.service {
  padding: 64px 0 72px;
  background: #fff;
}

.service__inner {
  width: 100%;
  margin: 0 auto;
}

.service .section__title {
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.04em;
}

.service .section__title .section__title--sub {
	font-size:0.85rem;
	display:block;
	position:relative;
}

section.service#intro{
	text-align:center;
}

section.service .intro__copy{
	font-size:1.25rem;

	margin:0 0 2.25rem;
}


section.service .service__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

section.service .service__item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 430px;
  align-items: center;
  min-height: 136px;
  background: #f5f8fc;
}

.service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-left: 8px;
}

.service__icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: #00508f;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service__body {
  padding: 18px 28px 18px 10px;
}

.service__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;

  letter-spacing: 0.08em;
}

.service__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.05em;
}

section.service .service__image {
  width: 100%;
  height: 136px;
  margin: 0;
  overflow: hidden;
}

.service__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SP */
@media (max-width: 767px) {
	section.service {
    padding: 48px 0 56px;
  }

  section.service .service__inner {
    width:100%;
  }

  section.service .section__title {
    margin-bottom: 20px;
    font-size: 19px;
  }

  section.service .service__list {
    gap: 14px;
  }

  section.service .service__item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 0;
  }

  section.service .service__icon {
    align-items: flex-start;
    padding: 22px 0 0;
  }

  section.service .service__icon svg {
    width: 42px;
    height: 42px;
  }

  section.service .service__body {
    padding: 20px 18px 18px 0;
  }

  section.service .service__title {
    margin-bottom: 8px;
    font-size: 18px;
  }

 section.service .service__text {
    font-size: 13px;
    line-height: 1.8;
  }

  section.service .service__image {
    grid-column: 1 / -1;
    height: 160px;
  }
}


/* Value */

/* ==============================
  提供価値
============================== */

.value {
  background: #fff;
}

/* 上部画像 */

section.service .value__visual {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

section.service .value__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* 下部5項目 */

section.service .value__content {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 48px 0 56px;
}

section.service .value__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

section.service .value__item {
  padding: 1.25rem 1.25rem;
  text-align: center;
}

section.service .value__item + .value__item {
  border-left: 1px solid #d9e3ee;
}

section.service .value__icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4fa;
  border-radius: 50%;
}

section.service .value__icon img {
  width: 56px;
  height: auto;
  display: block;
}

section.service .value__image{
	margin:0 0 1rem;
}

section.service .value__title {
  position: relative;
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

section.service .value__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: #003b78;
  transform: translateX(-50%);
}

section.service .value__text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #111;
	text-align:left;
}

/* ==============================
  tablet
============================== */

@media (max-width: 1100px) {
section.service .value__visual {
    height: 300px;
  }

  section.service .value__content {
    width: min(100% - 40px, 1360px);
  }

  section.service .value__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 0;
  }

  section.service .value__item {
    padding: 0 24px;
  }

  section.service .value__item + .value__item {
    border-left: none;
  }

  section.service .value__item:not(:nth-child(3n + 1)) {
    border-left: 1px solid #d9e3ee;
  }

  section.service .value__title {
    font-size: 18px;
  }

  section.service .value__text {
    font-size: 14px;
  }
}

/* ==============================
  SP：2列
============================== */

@media (max-width: 767px) {
  section.service .value__visual {
    height: 220px;
  }

  section.service .value__content {
    width: min(100% - 32px, 1360px);
    padding: 40px 0;
  }

  section.service .value__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  section.service .value__item {
    padding: 24px 14px;
    border: 1px solid #d9e3ee;
    border-radius: 12px;
    background: #fff;
  }

  section.service .value__item + .value__item {
    border-left: 1px solid #d9e3ee;
  }

  section.service .value__item:not(:nth-child(3n + 1)) {
    border-left: 1px solid #d9e3ee;
  }

  section.service .value__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
  }

  section.service .value__icon img {
    width: 40px;
  }

  section.service .value__title {
    margin-bottom: 18px;
    padding-bottom: 16px;
    font-size: 1rem!important;
    line-height: 1.55;
    letter-spacing: 0.04em;
  }

  section.service .value__title::after {
    width: 28px;
  }

  section.service .value__text {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  section.service .value__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - 14px) / 2);
    justify-self: center;
  }
}



/* =========================================================
	Contact
========================================================= */

section.contact{
	margin:3rem 0 0 0!important;
}

.contact-form {
  max-width: 960px;
  margin: 0 auto;
  color: #222;
}

.contact-form__lead {
  margin: 0 0 18px;
  line-height: 1.8;
}

.contact-form__notes {
  margin: 0 0 1.5rem;
}

.contact-form__notes li {
  position: relative;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
.contact-form__notes li p{
	margin:0;
	padding:0;
}

.contact-form__notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.contact-form__notes li + li {
  margin-top: 6px;
}

.contact-form__list {
  margin: 0;
}

.contact-form__item {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-top: 1px solid #ddd;
}

.contact-form__item:last-child {
  border-bottom: 1px solid #ddd;
}

.contact-form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 24px 24px 24px 0;
  font-weight: 700;
}

.contact-form__label em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 4px 8px;
  background: #c9151e;
  color: #fff;
  border-radius: 3px;
  font-size: 12px;
  font-style: normal;
  line-height: 1;
}

.message--notice{
	font-weight:400;
	color:#c00;
}

.contact-form__field {
  margin: 0;
  padding: 18px 0 18px 24px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  box-sizing: border-box;
}

.contact-form select {
  appearance: auto;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form__address {
  display: grid;
  gap: 16px;
}

.contact-form__address-row {
  display: grid;
  gap: 8px;
}

.contact-form__address-row--zip {
  grid-template-columns: auto 220px;
  align-items: center;
  justify-content: start;
}

.contact-form__zip-mark {
  font-weight: 700;
}

.contact-form__sub-label {
  font-weight: 700;
  font-size: 14px;
}

.contact-form__privacy {
  margin-top: 40px;
  padding: 28px;
  background: #f7f7f7;
  line-height: 1.8;
}

.contact-form__privacy a {
  color: #0068b7;
  text-decoration: underline;
}

.contact-form__acceptance {
  margin-top: 20px;
  font-weight: 700;
}

.contact-form__acceptance .wpcf7-list-item {
  margin-left: 0;
}

.contact-form__submit {
  margin-top: 36px;
  text-align: center;
}

.contact-form__submit input[type="submit"] {
  min-width: 260px;
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  background: #c9151e;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-form__submit input[type="submit"]:hover {
  opacity: 0.8;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
}

.wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px;
}

@media (max-width: 768px) {
  .contact-form__item {
    display: block;
    padding: 18px 0;
  }

  .contact-form__label {
    justify-content: flex-start;
    padding: 0 0 10px;
  }

  .contact-form__field {
    padding: 0;
  }

  .contact-form__address-row--zip {
    grid-template-columns: auto 1fr;
  }

  .contact-form__privacy {
    padding: 20px;
  }

  .contact-form__submit input[type="submit"] {
    width: 100%;
  }
}


#autozip {
  display: none !important;
}



/* =========================================================
	Recruit
========================================================= */


/* section 01 */
.recruit-hero {
  position: relative;
  min-height: clamp(560px, 48vw, 820px);
  overflow: hidden;
  color: #fff;
  background: #06172a;
	width:100vw;
	margin:0 calc(50% - 50vw) 3rem!important;

}

.recruit-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.recruit-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
}

.recruit-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(4, 16, 32, 0.92) 0%,
      rgba(4, 16, 32, 0.82) 24%,
      rgba(4, 16, 32, 0.38) 52%,
      rgba(4, 16, 32, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 13, 27, 0.12) 0%,
      rgba(3, 13, 27, 0.1) 55%,
      rgba(3, 13, 27, 0.45) 100%
    );
  pointer-events: none;
}

.recruit-hero__inner {
  position: relative;
  z-index: 3;
  width: min(100% - 48px, 1440px);
  min-height: clamp(560px, 48vw, 820px);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.recruit-hero__content {
  width: min(100%, 620px);
  padding: 80px 0;
}

.recruit-hero__label {
  margin: 0 0 48px;
  color: rgba(255, 255, 255, 0.92);
}

.recruit-hero__label span {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.recruit-hero__label small {
  display: block;
  margin-top: 8px;
  font-family: "Times New Roman", serif;
  font-size: clamp(12px, 0.85vw, 15px);
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.4;
}

.recruit-hero__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(42px, 5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-shadow: 0 0 18px rgba(0, 20, 40, 0.45);
}

.recruit-hero__catch {
  margin: 28px 0 0;
  font-family: "Times New Roman", serif;
  font-size: clamp(18px, 1.7vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.recruit-hero__text {
  margin-top: 44px;
  display: grid;
  gap: 28px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1vw, 1rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.recruit-hero__text p {
  margin: 0;
}

@media (max-width: 980px) {
  .recruit-hero {
    min-height: 680px;
  }

  .recruit-hero__bg img {
    object-position: 62% center;
  }

  .recruit-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 16, 32, 0.94) 0%,
        rgba(4, 16, 32, 0.78) 46%,
        rgba(4, 16, 32, 0.28) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 13, 27, 0.1) 0%,
        rgba(3, 13, 27, 0.25) 55%,
        rgba(3, 13, 27, 0.58) 100%
      );
  }

  .recruit-hero__inner {
    min-height: 680px;
	  align-items:flex-start;
  }

  .recruit-hero__content {
    width: min(100%, 560px);
  }
}

@media (max-width: 768px) {
  .recruit-hero {
    min-height: 720px;
  }

  .recruit-hero__bg img {
    object-position: 66% center;
  }

  .recruit-hero__overlay {
	  opacity:0.6;
    background:
      linear-gradient(
        90deg,
        rgba(4, 16, 32, 0.96) 0%,
        rgba(4, 16, 32, 0.84) 54%,
        rgba(4, 16, 32, 0.42) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 13, 27, 0.16) 0%,
        rgba(3, 13, 27, 0.28) 48%,
        rgba(3, 13, 27, 0.72) 100%
      );
  }

  .recruit-hero__inner {
    width: min(100% - 32px, 1440px);
/*    min-height: 720px;*/
/*    align-items: flex-end;*/
  }

  .recruit-hero__content {
    padding: 3.5rem 0 2.5rem;
  }

  .recruit-hero__label {
    margin-bottom: 32px;
  }

  .recruit-hero__title {
    font-size: clamp(30px, 3vw, 2.5rem);
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .recruit-hero__catch {
    margin-top: 22px;
    font-size: 16px;
  }

  .recruit-hero__text {
    margin-top: 32px;
    gap: 20px;
    font-size: 13px;
    line-height: 1.9;
  }
}


/* section 02 */

.recruit-graduates {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 8vw, 140px) 0 clamp(80px, 7vw, 120px);
  background: #f7f8fa;
}

.recruit-graduates::before {
  content: "RECENT\A GRADUATES";
  white-space: pre;
  position: absolute;
  top: 18px;
  left: max(24px, calc((100vw - 1180px) / 2));
  z-index: 1;
  color: rgba(14, 42, 76, 0.055);
      font-family: "Times New Roman", serif;
  font-size: clamp(72px, 10vw, 10rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.recruit-graduates__inner {
  position: relative;
  z-index: 0;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

.recruit-graduates__content {
  position: relative;
  padding-top: 32px;
}

.recruit-graduates__label {
  margin: 0 0 18px;
  color: #d9151f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.recruit-graduates__title {
  margin: 0!important;
  color: #111;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 3vw, 2rem)!important;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.recruit-graduates__lead {
  margin: 22px 0 0;
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.recruit-graduates__text {
  margin-top: 30px;
  display: grid;
  gap: 18px;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}

.recruit-graduates__text p {
  margin: 0;
}

.recruit-graduates__button-wrap {
  margin-top: 42px;
}

.recruit-graduates__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 54px;
  padding: 0 58px 0 28px;
  border: 1px solid #d7d7d7;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.recruit-graduates__button span {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 1px;
  background: #d9151f;
  transform: translateY(-50%);
  transition: width 0.25s ease;
}

.recruit-graduates__button span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #d9151f;
  border-right: 1px solid #d9151f;
  transform: translateY(-50%) rotate(45deg);
}

.recruit-graduates__button:hover {
  border-color: #d9151f;
  color: #d9151f;
}

.recruit-graduates__button:hover span {
  width: 38px;
}

.recruit-graduates__visual {
  height:100%;
}

.recruit-graduates__visual::before {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(22, 54, 89, 0.28) 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: 1;
}

.recruit-graduates__visual img {

  z-index: 2;
  display: block;
  box-shadow: 0 18px 40px rgba(0, 20, 40, 0.08);
}

.recruit-graduates__visual01{
  position: relative;
	top:3rem;
	left:0;
	width:60%;
}

.recruit-graduates__visual02{
  position: absolute;
	bottom:3rem;
	right:0;
	width:30%;
}

@media (max-width: 992px) {
  .recruit-graduates__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .recruit-graduates__content {
    width: min(100%, 620px);
  }

  .recruit-graduates__visual {
    width: min(100%, 720px);
    margin-left: auto;
	 min-height:100vw;
  }
	.recruit-graduates__visual01{
		top:0;
	}
	.recruit-graduates__visual02{
	width:60%;
	}

  .recruit-graduates {
    padding: 72px 0 80px;
  }

  .recruit-graduates::before {
    top: 24px;
    left: 18px;
    font-size: 58px;
    letter-spacing: 0.05em;
  }

  .recruit-graduates__inner {
    width: min(100% - 32px, 1180px);
    gap: 36px;
  }

  .recruit-graduates__content {
    padding-top: 24px;
  }

  .recruit-graduates__label {
    margin-bottom: 14px;
  }

  .recruit-graduates__title {
    font-size: 28px;
    line-height: 1.55;
  }

  .recruit-graduates__lead {
    margin-top: 18px;
    font-size: 15px;
  }

  .recruit-graduates__text {
    margin-top: 24px;
    gap: 14px;
    font-size: 13px;
    line-height: 1.9;
  }

  .recruit-graduates__button-wrap {
    margin-top: 32px;
  }

  .recruit-graduates__button {
    width: 100%;
    min-width: 0;
  }

  .recruit-graduates__visual::before {
    right: 40%;
    bottom: 0.5rem;
    width: 90px;
    height: 90px;
    background-size: 8px 8px;
  }
}


/* section 03 */

.recruit-group {
  position: relative;
  padding: clamp(64px, 6vw, 96px) 0 clamp(72px, 7vw, 110px);
  background: #fff;
}

.recruit-group__inner {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.recruit-group__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 36px;
}

.recruit-group__label {
  margin: 0 0 10px;
  color: #d9151f;
  font-family: "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.recruit-group__title {
  margin: 0!important;
  color: #111;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 3vw, 2.25rem)!important;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.16em;
}

.recruit-group__lead {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.recruit-group__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.recruit-group__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 22px 10px 28px;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 24px rgba(0, 20, 40, 0.06);
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.recruit-group__card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #d9151f;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.recruit-group__card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 21, 31, 0.35);
  box-shadow: 0 16px 34px rgba(0, 20, 40, 0.1);
}

.recruit-group__card:hover::before {
  transform: scaleX(1);
}

.recruit-group__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.recruit-group__logo img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
}

.recruit-group__logo--text {
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  letter-spacing: 0.04em;
}

.recruit-group__arrow {
  position: absolute;
  right: 18px;
  bottom: 15px;
  width: 28px;
  height: 1px;
  background: #d9151f;
  transition: width 0.25s ease;
}

.recruit-group__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #d9151f;
  border-right: 1px solid #d9151f;
  transform: translateY(-50%) rotate(45deg);
}

.recruit-group__card:hover .recruit-group__arrow {
  width: 38px;
}

@media (max-width: 992px) {
  .recruit-group__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .recruit-group__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .recruit-group {
    padding: 56px 0 72px;
  }

  .recruit-group__inner {
    width: min(100% - 32px, 1180px);
  }

  .recruit-group__title {
    font-size: 28px;
    letter-spacing: 0.1em;
  }

  .recruit-group__lead {
    font-size: 13px;
  }

  .recruit-group__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .recruit-group__card {
    min-height: 92px;
    padding: 20px 56px 20px 20px;
    justify-content: flex-start;
  }

  .recruit-group__logo {
    justify-content: flex-start;
  }

  .recruit-group__logo img {
    max-height: 42px;
  }

  .recruit-group__logo--text {
    text-align: left;
  }

  .recruit-group__arrow {
    right: 22px;
    bottom: 50%;
    transform: translateY(50%);
  }
}

/* section 04 */
.recruit-career {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 8vw, 130px) 0;
  background: #eef4f8;
}

.recruit-career::before {
  content: "EXPERIENCED\A PROFESSIONALS";
  white-space: pre;
  position: absolute;
  top: 18px;
  left: max(24px, calc((100vw - 1180px) / 2));
  z-index: 1;
  color: rgba(14, 42, 76, 0.06);
  font-family: "Times New Roman", serif;
  font-size: clamp(64px, 9vw, 140px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.recruit-career__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 51% 1fr;
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
}

.recruit-career__visual {
  position: relative;
	height:100%;
}

.recruit-career__visual::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(rgba(22, 54, 89, 0.25) 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: 1;
}

.recruit-career__visual img {
  z-index: 2;
  display: block;
  box-shadow: 0 18px 40px rgba(0, 20, 40, 0.1);
}

.recruit-career__visual01{
	position:relative;
	top:3rem;
	left:0;
	width:60%;
} 

.recruit-career__visual02{
	position:absolute;
	bottom:3rem;
	right:0;
	width:60%;
} 

.recruit-career__content {
  position: relative;
  padding: 24px 0;
}

.recruit-career__label {
  margin: 0 0 18px;
  color: #d9151f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.recruit-career__title {
  margin: 0!important;
  color: #111;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(30px, 3.2vw, 2.25rem)!important;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.12em;
}

.recruit-career__lead {
  margin: 24px 0 0;
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.recruit-career__text {
  margin-top: 30px;
  display: grid;
  gap: 16px;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}

.recruit-career__text p {
  margin: 0;
}

.recruit-career__button-wrap {
  margin-top: 42px;
}

.recruit-career__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  min-height: 54px;
  padding: 0 58px 0 28px;
  border: 1px solid #d7d7d7;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 20, 40, 0.05);
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.recruit-career__button span {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 1px;
  background: #d9151f;
  transform: translateY(-50%);
  transition: width 0.25s ease;
}

.recruit-career__button span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #d9151f;
  border-right: 1px solid #d9151f;
  transform: translateY(-50%) rotate(45deg);
}

.recruit-career__button:hover {
  color: #d9151f;
  border-color: #d9151f;
  box-shadow: 0 12px 28px rgba(0, 20, 40, 0.09);
  transform: translateY(-2px);
}

.recruit-career__button:hover span {
  width: 38px;
}

@media (max-width: 992px) {
  .recruit-career__inner {
    grid-template-columns: 1fr;
    gap: 44px;
	  display:flex;
	  flex-direction:column-reverse;
  }

  .recruit-career__visual {
    width: min(100%, 720px);
	  min-height:100vw;
  }
	.recruit-career__visual01{
		width:75%;
		top:0;
	}
	.recruit-career__visual02{
		width:75%;		
		z-index:3!important;
		bottom:4.5rem;
	}
  .recruit-career__content {
    width: min(100%, 620px);
  }

  .recruit-career {
    padding: 72px 0 80px;
  }

  .recruit-career::before {
    top: 24px;
    left: 18px;
    font-size: 52px;
    letter-spacing: 0.04em;
  }

  .recruit-career__inner {
    width: min(100% - 32px, 1180px);
    gap: 34px;
  }

  .recruit-career__visual::after {
    right: 60%;
    bottom: 0.5rem;
    width: 86px;
    height: 86px;
    background-size: 8px 8px;
  }

  .recruit-career__content {
    padding: 20px 0 0;
  }

  .recruit-career__label {
    margin-bottom: 14px;
  }

  .recruit-career__title {
    font-size: 28px;
    line-height: 1.55;
    letter-spacing: 0.08em;
  }

  .recruit-career__lead {
    margin-top: 18px;
    font-size: 15px;
  }

  .recruit-career__text {
    margin-top: 24px;
    gap: 14px;
    font-size: 13px;
    line-height: 1.9;
  }

  .recruit-career__button-wrap {
    margin-top: 32px;
  }

  .recruit-career__button {
    width: 100%;
    min-width: 0;
  }
}

/* section 05 */
.recruit-group {
  position: relative;
  padding: clamp(64px, 6vw, 96px) 0 clamp(72px, 7vw, 110px);
  background: #fff;
}

.recruit-group--career {
  background: #f7f8fa;
}

.recruit-group__inner {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.recruit-group__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 36px;
}

.recruit-group__label {
  margin: 0 0 10px;
  color: #d9151f;
  font-family: "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.recruit-group__title {
  margin: 0!important;
  color: #111;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.16em;
}

.recruit-group__lead {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.recruit-group__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.recruit-group__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 24px 10px 32px;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 24px rgba(0, 20, 40, 0.06);
  color: #111;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.recruit-group__card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #d9151f;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.recruit-group__card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 21, 31, 0.35);
  box-shadow: 0 16px 34px rgba(0, 20, 40, 0.1);
}

.recruit-group__card:hover::before {
  transform: scaleX(1);
}

.recruit-group__company {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  text-align: center;
}

.recruit-group__company-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

.recruit-group__arrow {
  position: absolute;
  right: 18px;
  bottom: 15px;
  width: 28px;
  height: 1px;
  background: #d9151f;
  transition: width 0.25s ease;
}

.recruit-group__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #d9151f;
  border-right: 1px solid #d9151f;
  transform: translateY(-50%) rotate(45deg);
}

.recruit-group__card:hover .recruit-group__arrow {
  width: 38px;
}

@media (max-width: 980px) {
  .recruit-group__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .recruit-group__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .recruit-group {
    padding: 56px 0 72px;
  }

  .recruit-group__inner {
    width: min(100% - 32px, 1180px);
  }

  .recruit-group__title {
    font-size: 28px;
    letter-spacing: 0.1em;
  }

  .recruit-group__lead {
    font-size: 13px;
  }

  .recruit-group__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .recruit-group__card {
    min-height: 88px;
    padding: 20px 56px 20px 20px;
    justify-content: flex-start;
  }

  .recruit-group__company {
    justify-content: flex-start;
    text-align: left;
  }

  .recruit-group__company-name {
    font-size: 14px;
  }

  .recruit-group__arrow {
    right: 22px;
    bottom: 50%;
    transform: translateY(50%);
  }
}



/* sectoin last */


.recruit__section{
	border-radius:1.25rem;
	box-shadow:0px 5px 12px rgba(0,0,0,0.1);
	padding:1.5rem;
}

.recruit__section + .recruit__section{
	margin:2.5rem 0 0 0 ;
}

.recruit__section h4{
	  margin: 0 0 1.5rem;
  padding-left: 14px;
  border-left: 5px solid #b60005;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
}

/* 見出し */
.recruit__section h5 {
  margin: 1.0rem 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
}

/* 採用テーブル */
table.recruit {
  width: 100%;
  margin: 0 0 40px;
  border-collapse: collapse;
  border-top: 1px solid #ddd;
  font-size: 15px;
  line-height: 1.8;
}

table.recruit th,
table.recruit td {
  padding: 18px 20px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

table.recruit th {
  width: 220px;
  background: #f7f7f7;
  color: #222;
  font-weight: 700;
  text-align: left;
}

table.recruit td {
  background: #fff;
  color: #333;
}

table.recruit tr:hover th,
table.recruit tr:hover td {
  background: #fafafa;
}

/* 空行がある場合 */
table.recruit th:empty,
table.recruit td:empty {
  padding: 0;
  height: 0;
  border-bottom: none;
}

/* SP */
@media screen and (max-width: 767px) {
  table.recruit h5 {
    margin: 36px 0 14px;
    font-size: 20px;
  }

  table.recruit ,
  table.recruit tbody,
  table.recruit tr,
  table.recruit th,
  table.recruit td {
    display: block;
    width: 100%;
  }

  table.recruit {
    font-size: 14px;
    border-top: none;
  }

  table.recruit tr {
    margin-bottom: 0.5rem;
    border: 1px solid #ddd;
  }

  table.recruit th,
  table.recruit td {
    padding: 0.35rem 0.5rem;
    border-bottom: none;
  }

  table.recruit th {
    background: #f2f2f2;
  }

  table.recruit td {
    background: #fff;
  }
}



.recruit-detail {
  padding: 80px 0;
  background: #fff;
}

.recruit-detail__inner {

  margin: 0 auto;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid #111;
  color: #111;
  font-size: 16px;
  line-height: 1.6;
}

.recruit-table__col-label {
  width: 15%;
}

.recruit-table__col-body {
  width: 35%;
}

.recruit-table th,
.recruit-table td {
  border: 1px solid #999;
  padding: 6px 8px;
  vertical-align: top;
}

.recruit-table th {
  background: #dbe4f2;
  font-weight: 700;
  text-align: left;
}

.recruit-table__section {
  padding: 8px;
  background: #dbe4f2;
  font-size: 18px;
  font-weight: 700;
  border-top: 2px solid #111;
  border-bottom: 1px solid #999;
}

.recruit-table td {
  background: #fff;
}

.recruit-table td.is-empty {
  background: transparent;
  color: #000;
  min-height: 30px;
}

.recruit-table__note {
  background: #fff;
  padding: 8px 10px;
}

.recruit-table__note p {
  margin: 0 0 4px;
}

.recruit-table__note p:last-child {
  margin-bottom: 0;
}




@media (max-width: 768px) {
  .recruit-detail {
    padding: 56px 0;
  }
	.recruit__section{
		padding:0.75rem;
		border-radius:0.75rem;
	}

  .recruit-detail__inner {
    overflow-x: auto;
  }

  .recruit-table {
    min-width: 900px;
    font-size: 14px;
  }

  .recruit-table__section {
    font-size: 16px;
  }

  .recruit-table th,
  .recruit-table td {
    padding: 6px;
  }
}


body.page-id-16 .page-header{
	display:none;
}

body.page-id-16 .page-content{
	width:100%;
	padding-top:0;
	overflow-x:hidden;
}


body.page-id-16 .page-content section:not(#recruit-hero){
	width:1280px;
	max-width:100%;
	margin-right:auto;
	margin-left:auto;
}


.recruit__detail {
  display: grid;
  grid-template-columns: 160px 1fr;
  margin: 0 0 1rem;
}

.recruit__detail dt,
.recruit__detail dd {
  margin: 0;
  padding: 0.25rem 0;
  line-height: 1.45;
}

.recruit__detail dt {
	position:relative;
}

.recruit__detail dt:after {
	content:'：';
	position:relative;
}

.recruit__detail--subheading{
	font-weight:600;
	margin:0 0 0.5rem;
}

/* SP */
@media (max-width: 767px) {
  .recruit__detail {
    grid-template-columns: 1fr;
  }

  .recruit__detail dt {
    padding: 14px 16px 8px;
    border-bottom: none;
  }

  .recruit__detail dd {
    padding: 0 16px 14px;
  }
}


/* =========================================================
	Privacy Policy
========================================================= */

.privacy {
  margin: 0 auto;
  padding: 80px 20px;
  color: #333;
  font-size: 16px;
  line-height: 1.9;
}


.privacy-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  position: relative;
  padding-left: 1.4em;
  color: #333;
  font-size: 16px;
  line-height: 1.9;
}

.privacy-list li + li {
  margin-top: 10px;
}

.privacy-list li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #005bac;
}

@media (max-width: 640px) {
  .privacy-list li {
    font-size: 14px;
    line-height: 1.8;
  }
}


/* テキスト */


.privacy p {
  margin: 0 0 28px;
}

.privacy a {
  color: #005bac;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}

.privacy a:hover {
  text-decoration: none;
}

/* 見出し section__title以外 */
.privacy h3:not(.section__title) {
  margin: 52px 0 18px;
  padding: 14px 18px;
  border-left: 5px solid #999999;
  background: #f5f5f5;
  color: #111;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

/* テーブル */
.privacy table {
  width: 100%;
  margin: 18px 0 36px;
  border-collapse: collapse;
  border-top: 1px solid #dcdcdc;
}

.privacy th,
.privacy td {
  padding: 18px 20px;
  border-bottom: 1px solid #dcdcdc;
  font-size: 15px;
  line-height: 1.8;
  vertical-align: top;
}

.privacy th {
  width: 260px;
  background: #f5f5f5;
  color: #111;
  font-weight: 700;
  text-align: left;
}

.privacy td {
  background: #fff;
}

/* テーブル内リスト */
.privacy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy li {
  position: relative;
  padding-left: 1.2em;
}

.privacy li + li {
  margin-top: 6px;
}

.privacy li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #444;
}

/* 「個人情報の管理について責任を有する者の名称」など */
.privacy > div > p,
.privacy > p {
  font-weight: 400;
}

.privacy > div > p {
  margin-top: 44px;
  margin-bottom: 16px;
  font-weight: 700;
}

/* 連続する会社情報テーブルの余白を少し詰める */
.privacy table + table,
.privacy div + div table {
  margin-top: 0;
}

/* SP */
@media (max-width: 640px) {
  .privacy {
    padding: 56px 16px;
    font-size: 14px;
    line-height: 1.8;
  }

  .privacy h3:not(.section__title) {
    margin: 40px 0 16px;
    padding: 12px 14px;
    font-size: 18px;
  }

  .privacy table,
  .privacy tbody,
  .privacy tr,
  .privacy th,
  .privacy td {
    display: block;
    width: 100%;
  }

  .privacy table {
    margin: 16px 0 28px;
    border-top: none;
  }

  .privacy tr {
    border: 1px solid #d6e0ea;
  }

  .privacy tr + tr {
    border-top: none;
  }

  .privacy th,
  .privacy td {
    box-sizing: border-box;
    padding: 13px 14px;
    border-bottom: none;
    font-size: 14px;
  }

  .privacy th {
    background: #f3f7fb;
  }

  .privacy td {
    background: #fff;
  }
}

section.privacy{
	margin:3rem 0 0 0!important;
}


.page-content section.report:first-child{
	margin-top:3rem!important;
}