@charset "UTF-8";
/* リセット */
html.win{
  --full_screen_width: 100% !important;
  width: 100%;
}
/* header */
.l-header{
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	background: #fff;
}
.l-header__inner{
	width: 100%;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
}
.l-header-logo{
	width: 16%;
	max-width:135px;
	margin: 0 1%;
}
.l-header-logo a{
	display: inline-block;
}
.l-header-logo img{
  width: 100%;
}
.l-header-links{
	width: 82%;
	max-width: 920px;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
.l-header-linkList{
	width: 53%;
	padding-right: 2%;
	text-align: right;
	font-size: 12px;
	color: #333;
}
.l-header-linkList ul{
	margin-top: 5px;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	flex-wrap: wrap;
	font-size: 13px;
}
.l-header-linkList ul li{
	margin-left: 5%;
}
.l-header-linkList ul li:first-child{
	margin-left: 0;
}
.l-header-linkPanel{
	width: 47%;
	max-width: 431px;
}
.l-header-linkPanel ul{
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
.l-header-linkPanel ul li{
	height: 100%;
	max-height: 70px;
	min-height: 70px;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	border-left: 2px solid #e3e3e3;
	font-size: 12px;
	color: #333;
}
.l-header-linkPanel ul li.l-header-icon__view{
	width: 20%;
	min-width: 50px;
}
.l-header-linkPanel ul li.l-header-icon__interested{
	width: 30%;
	min-width: 86px;
}
.l-header-linkPanel ul li.l-header-icon__login{
	width: 20%;
	min-width: 50px;
}
.l-header-linkPanel ul li.l-header-link__registration{
	width: 30%;
	min-width: 60px;
	background: #b49660;
	border-left: none;
}
.l-header-linkPanel ul li.l-header-icon a{
	display: inline-block;
	padding-top: 25px;
	position: relative;
}
.l-header-linkPanel ul li.l-header-icon a:before{
	content:"";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.l-header-linkPanel ul li.l-header-icon.l-header-icon__view a:before{
	background: url(/images/renewal2025/icon_view.svg) no-repeat;
	background-size: cover;
	width: 20px;
	height: 20px;
}
.l-header-linkPanel ul li.l-header-icon.l-header-icon__interested a:before{
	background: url(/images/renewal2025/icon_interested.svg) no-repeat;
	background-size: cover;
	width: 21px;
	height: 20px;
}
.l-header-linkPanel ul li.l-header-icon.l-header-icon__login a:before{
	background: url(/images/renewal2025/icon_login.svg) no-repeat;
	background-size: cover;
	width: 16px;
	height: 20px;
}
.l-header-linkPanel ul li.l-header-link__registration a{
	color: #fff;
	font-size: 15px;
	font-weight: bold;
}
@media (min-width: 769px){
	.pc-none{
		display: none !important;
	}
}
@media (max-width: 768px){
	.sp-none{
		display: none !important;
	}
	header{
		height: 50px;
	}
	.l-header{
		position: relative;
	}
	.l-header-logo{
		width: 40%;
		max-width: 170px;
		min-width: 105px;
    margin: 0;
    text-align: center;
	}
  .l-header-logo a{
    display: flex;
  }
	.l-header-logo img{
    width: auto;
		height: auto;
    max-height: 40px;
		padding: 5px;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
	}
  .l-header-logo a.l-header-logo__premium{
    padding: 5px;
  }
  .l-header-logo a.l-header-logo__premium img{
    width: 100%;
    padding: 0;
  }
	.l-header-links{
		width: 60%;
    max-width: none;
	}
	.l-header-linkList{
		position: absolute;
		top: 50px;
		right: -800px;
		transition: right 0.5s ease;
		width: 100%;
		height: 100vh;
		padding: 0;
		background: linear-gradient(to bottom right, #0f4b8a, #08294c);
		text-align: left;
		overflow-y: auto;
	}
	.l-header-linkList.open{
		right: 0;
	}
	.l-header-linkList ul{
		display: block;
		margin: 35px 20px;
	}
	.l-header-linkList ul li{
		margin: 20px 0 0 0;
	}
	.l-header-linkList ul li:first-child{
		margin-top: 0;
	}
	.l-header-linkList ul li a{
		color: #fff;
		font-size: 15px;
		font-weight: bold;
	}
	.l-header-linkPanel{
		width: 100%;
    max-width: none;
	}
	.l-header-linkPanel ul{
		-webkit-box-pack: end;
    justify-content: flex-end;
	}
	.l-header-linkPanel ul li{
		max-height: 50px;
    min-height: 50px;
		font-size: 10px;
	}
	.l-header-linkPanel ul li.l-header-icon__view,
	.l-header-linkPanel ul li.l-header-icon__interested,
	.l-header-linkPanel ul li.l-header-icon__login{
		width: 60px;
		min-width: auto;
	}
	.l-header-linkPanel ul li.l-header-icon a{
		padding-top: 18px;
	}
	.l-header-linkPanel ul li.l-header-icon.l-header-icon__view a:before{
		width: 15px;
    height: 15px;
	}
	.l-header-linkPanel ul li.l-header-icon.l-header-icon__interested a:before{
		width: 16px;
    height: 15px;
	}
	.l-header-linkPanel ul li.l-header-icon.l-header-icon__login a:before{
		width: 12px;
    height: 15px;
	}
	.l-header-linkPanel ul li.l-header-link__hamburger{
		position: relative;
		width: 50px;
		background: linear-gradient(to bottom right, #0f4b8a, #08294c);
	}
	.l-header-linkPanel ul li.l-header-link__hamburger span{
		transition: all .3s;
		position: absolute;
		height: 1px;
		background-color: #fff;
		width: 18px;
		z-index: 10;
	}
	.l-header-linkPanel ul li.l-header-link__hamburger span:nth-of-type(1){
		top: 20px;
	}
	.l-header-linkPanel ul li.l-header-link__hamburger span:nth-of-type(2){
		top: 25px;
	}
	.l-header-linkPanel ul li.l-header-link__hamburger span:nth-of-type(3){
		top: 30px;
	}
	.l-header-linkPanel ul li.l-header-link__hamburger.open span:nth-of-type(1){
		top: 25px;
    transform: translateY(0px) rotate(-45deg);
	}
	.l-header-linkPanel ul li.l-header-link__hamburger.open span:nth-of-type(2){
		opacity: 0
	}
	.l-header-linkPanel ul li.l-header-link__hamburger.open span:nth-of-type(3){
		top: 25px;
    transform: translateY(0px) rotate(45deg);
	}
	.c-closeBtn__hamburger{
		width: 90%;
    max-width: 105px;
    margin: 0 auto 35px;
    border: 1px solid #fff;
		text-align: center;
	}
	.c-closeBtn__hamburger:hover{
		cursor: pointer;
		opacity: 0.8;
	}
	.c-closeBtn__hamburger p{
		color: #fff;
		font-size: 14px;
		padding: 10px;
	}
  .c-cta__hamburger{
    width: 100%;
    margin-bottom: 20px;
    position: relative;
  }
  .c-cta__hamburger img{
    width: 100%;
  }
  .c-cta__hamburger .c-cta__btn{
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 100%;
    text-align: center;
  }
}
main{
	margin-top: 70px;
}
main.bg-main{
	background: linear-gradient(to right, rgba(242, 242, 242, 1) 60%, rgba(8, 41, 77, 0.02) 60%), rgba(242, 242, 242, 1);
  padding-bottom: 100px;
}
@media (max-width: 768px){
	main{
		margin-top: 50px;
	}
  main.bg-main{
		background: #f2f2f2;
    padding-bottom: 50px;
	}
}


/* TOP：keyvisual */
.c-keyVisual-slider {
  display: none;
}
.c-keyVisual-slider.slick-initialized {
  display: block;
}
.c-keyVisual-inner{
  width: 100%;
  margin: 0 auto;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
  background: linear-gradient(to bottom right, #0f4b8a, #08294c);
}
.c-keyVisual-img{
  width: 55%;
}
.c-keyVisual-txt{
  width: 45%;
  color: #fff;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.c-keyVisual-txtInner{
  padding: 8%;
}
.c-keyVisual-txt__01{
  font-size: 14px;
}
.c-keyVisual-txt__02{
  font-family: "Noto Serif JP", sans-serif;
  font-size: clamp(16px, 4.75vw, 59px);
  line-height: 1.25;
  font-weight: normal;
}
.c-keyVisual-txt__02 span{
  font-family: "EB Garamond", "Merriweather", "Libre Baskerville", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(16px, 5vw, 70px);
}
.c-keyVisual-txt__03{
  margin-top: 15px;
  width: 100%;
  max-width: 515px;
}
.c-keyVisual-txt__04{
  margin-top: 15px;
  font-size: 10px;
  line-height: 1.75;
}
.c-keyVisual-txt__05{
  margin-top: 15px;
}
.c-keyVisual-txt__05 a,
.c-cta__btn a{
  display: inline-block;
  padding: 20px 30px;
  background: #b49660;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}
.c-keyVisual-txt__05 a span,
.c-cta__btn a span{
  color: #fff;
  padding-right: 10px;
  position: relative;
}
.c-keyVisual-txt__05 a span:after,
.c-cta__btn a span:after{
  content: "";
  display: block;
  background: url(/images/renewal2025/icon_keyvisual_link.svg) no-repeat;
  background-size: cover;
  width: 6px;
  height: 11px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-notes__keyVisual{
  margin-top: 15px;
  color: #fff;
  font-size: 9px;
}
/* slickslider */
.c-keyVisual-slider.slick-dotted.slick-slider{
  margin-bottom: 0;
}
.c-keyVisual-slider .slick-dots{
  left: 20px;
  bottom: 60px;
  width: auto;
}
.c-keyVisual-slider .slick-dots li{
  width: 50px;
  height: 2px;
  margin: 0 0 0 5px;
}
.c-keyVisual-slider .slick-dots li:first-child{
  margin-left: 0;
}
.c-keyVisual-slider .slick-dots li button{
  width: 50px;
  height: 2px;
  padding: 0;
}
.c-keyVisual-slider .slick-dots li button:before{
  content: '';
  width: 50px;
  height: 2px;
  background-color: #fff;
  opacity: .5;
}
.c-keyVisual-slider .slick-dots li.slick-active button:before{
  opacity: 1;
}
.c-keyVisual-slider picture{
  display: block;
  aspect-ratio: 790 / 478;
}
.c-keyVisual-slider picture img{
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px){
  .c-keyVisual-inner{
    display: block;
  }
  .c-keyVisual-img{
    width: 100%;
    max-width: none;
  }
  .c-keyVisual-slider .slick-dots{
    left: 0;
    right: 0;
    bottom: 10px;
  }
  .c-keyVisual-txt{
    width: 100%;
  }
  .c-keyVisual-txtInner{
    padding: 15px 20px 50px;
  }
  .c-keyVisual-txt__01{
    font-size: 13px;
  }
  .c-keyVisual-txt__02{
    font-size: 44px;
  }
  .c-keyVisual-txt__02 span{
    font-size: 53px;
  }
  .c-keyVisual-txt__03{
    margin: 15px auto 0;
  }
  .c-keyVisual-txt__05{
    margin-top: 10px;
    text-align: center;
  }
  .c-keyVisual-txt__05 a{
    font-size: 14px;
  }
  .c-slider-spNone .c-slider-item[aria-hidden="true"],
  .c-slider-spNone2 .c-slider-item[aria-hidden="true"]{
    opacity: 1;
    pointer-events: auto;
  }
  .c-slider-spNone .c-slider-item:nth-child(n + 4),
  .c-slider-spNone2 .c-slider-item:nth-child(n + 4){
    display: none;
  }
  .c-notes__keyVisual{
    margin-top: 10px;
  }
}


/* TOP：searchArea */
.c-searchArea{
  width: 100%;
  max-width: 1020px;
  margin: -2.5% auto 0;
}
.c-searchArea-inner{
  margin: 0 10px;
  padding: 30px;
  background: linear-gradient(to bottom right, #0f4b8a, #08294c);
  position: relative;
}
.c-searchArea-box{
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.c-searchArea-ttl{
  margin-right: 2.25%;
  width: 7.75%;
  min-width: 60px;
}
.c-searchArea-ttl p{
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.c-searchArea-form{
  width: 90%;
}
.c-searchArea-formDef{
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  column-gap: 1%;
}
.c-form-input{
  background: #fff;
}
.c-form-input select,
.c-form-input input{
  color: #333;
}
.c-form-input select{
  width: calc(100% - 42px);
  -webkit-appearance: none;
  appearance: none;
  padding: 0 27px 0 15px;
  background: url(/images/renewal2025/icon_search_select.svg) no-repeat;
  background-size: 12px auto;
  background-position: right 15px center;
}
.c-form-input input{
  width: calc(100% - 30px);
  padding: 0 15px;
}
.c-form-input__business,
.c-form-input__place,
.c-form-input__income{
  width: 26.5%;
  position: relative;
}
.c-selectIcon {
  display: none;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.c-form-input__btn{
  width: 17.5%;
  background: #B49660;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.c-form-input__btn:hover{
  opacity: 0.8;
}
.c-form-input__btn .search_button{
  display: block;
  width: 100%;
}
.c-form-input__btn .search_button p{
	line-height: 2;
}
.c-form-input__btn .search_button p span{
	padding-left: 20px;
	position: relative;
}
.c-form-input__btn .search_button p span:before{
	content: "";
	background: url(/images/renewal2025/icon_search.svg) no-repeat;
	background-size: cover;
	width: 14px;
	height: 14px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.c-form-input__business select,
.c-form-input__place select,
.c-form-input__income select,
.c-form-input__numberonly select{
  width: 100%;
  height: 100%;
  min-height: 50px;
  vertical-align: bottom;
  border: none;
}
.c-form-input__income input{
  width: 100%;
  height: 100%;
  min-height: 50px;
  vertical-align: bottom;
  padding: 0;
  border: none;
}
.c-formHidden{
  display: none;
  margin-top: 10px;
}
.c-formHidden-input{
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  column-gap: 1%;
}
.c-form-input__numberonly{
  width: 26.5%;
}
.c-form-input__keyword{
  width: 54%;
}
.c-form-input__numberonly select,
.c-form-input__keyword input{
  height: 100%;
  min-height: 50px;
  vertical-align: bottom;
  border: none;
}
.tag_search_check.c-search-tag label span{
  color: #fff;
  font-size: 11px;
  border: 1px solid #fff;
  padding: 4px 8px;
}
.c-searchArea-moreBtn{
  margin: 20px 0 0;
  text-align: center;
}
.c-searchArea-moreBtn p{
  display: inline-block;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding-right: 15px;
  position: relative;
  cursor: pointer;
}
.c-searchArea-moreBtn p:after{
  content: "";
  background: url(/images/renewal2025/icon_search_more.svg) no-repeat;
  background-size: cover;
  width: 9px;
  height: 5px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-searchArea-moreBtn.open p:after{
  transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
}
.c-searchArea-linkBtn{
  position: absolute;
  right: 0;
  bottom: 0;
}
.c-searchArea-linkBtn a{
  display: inline-block;
  background: #0a3f79;
  color: #fff;
  font-size: 12px;
  padding: 10px 20px;
}
.c-searchArea-linkBtn a span{
  padding-right: 10px;
  position: relative;
  display: inline-block;
  line-height: 1;
}
.c-searchArea-linkBtn a span:after{
  content: "";
  background: url(/images/renewal2025/icon_keyvisual_link.svg) no-repeat;
  background-size: cover;
  width: 6px;
  height: 11px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 768px){
  .c-searchArea{
    margin: -30px auto 0;
  }
  .c-searchArea-inner{
    padding: 30px 20px 60px;
  }
  .c-searchArea-box{
    display: block;
  }
  .c-searchArea-ttl{
    margin: 0;
    width: 100%;
    min-width: auto;
    text-align: center;
  }
  .c-searchArea-form{
    width: 100%;
    margin-top: 20px;
  }
  .c-searchArea-formDef,
  .c-formHidden-input{
    display: block;
  }
  .c-form-input__business,
  .c-form-input__place,
  .c-form-input__income,
  .c-form-input__btn,
  .c-form-input__numberonly,
  .c-form-input__keyword{
    width: 100%;
  }
  .c-form-input__btn{
    font-size: 15px;
    min-height: 50px;
  }
  .c-searchArea-formDef .c-form-input,
  .c-formHidden-input .c-form-input{
    margin-top: 10px;
  }
  .c-searchArea-formDef .c-form-input:first-child,
  .c-formHidden-input .c-form-input:first-child{
    margin-top: 0;
  }
  .search_button__sp.open{
    display: none;
  }
}


/* TOP：recruitment */
.c-recruitment{
  margin-top: 100px;
}
.c-recruitment.c-recruitment__company{
  margin-top: 80px;
}
.c-container{
  margin: 0 20px;
}
.c-container-inner{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}
.c-link-all{
  position: absolute;
  top: 3px;
  right: 0;
}
.c-link-all p{
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid #333;
}
.c-link-all a{
  display: block;
  color: #333;
  font-size: 13px;
  line-height: 1;
  padding-right: 10px;
  position: relative;
}
.c-link-all a:after{
  content: "";
  background: url(/images/renewal2025/icon_view_all.svg) no-repeat;
  background-size: cover;
  width: 6px;
  height: 11px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-heading h2,
.c-heading__sub h3{
  display: inline-block;
  color: #08294d;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}
.c-heading__sub h3{
  line-height: 1;
}
.c-heading h2 small{
  font-size: 15px;
  margin-left: 5px;
}
.c-slider-itemInner__recruitment{
  padding: 20px;
}
.c-recruitment-label{
  display: inline-block;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 5px 15px;
}
.c-recruitment-label_new{
  background: #83101a;
}
.c-recruitment-label_update{
  background: #08294d;
}
.c-recruitment-ttl{
  margin-top: 10px;
  color: #08294d;
  font-size: 17px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  min-height: 50px;
}
.c-recruitment-ttl span{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-recruitment-sub{
  margin-top: 10px;
  color: #333;
  font-size: 14px;
  font-weight: bold;
}
.c-recruitment-bottom{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
}
.c-recruitment-bottom p{
  margin-top: 15px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.c-recruitment-bottom p:first-child{
  margin-top: 0;
}
.c-recruitment-bottom p:before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-recruitment-bottom p.c-recruitment-position:before{
  background: url(/images/renewal2025/icon_position.svg) no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
}
.c-recruitment-bottom p.c-recruitment-place:before{
  background: url(/images/renewal2025/icon_place.svg) no-repeat;
  background-size: cover;
  width: 14px;
  height: 16px;
}
.c-recruitment-bottom p.c-recruitment-reward:before{
  background: url(/images/renewal2025/icon_reward.svg) no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
}
.c-recruitment-bottom p.c-recruitment-period:before{
  background: url(/images/renewal2025/icon_period.svg) no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
}
.c-recruitment-btn{
  margin-top: 20px;
  width: 100%;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
.c-recruitmentBtn{
  width: 48%;
  min-width: 90px;
  margin-right: 2%;
  text-align: center;
  background: #f0f0f0;
  border: 1px solid #f0f0f0;
  padding: 10px 5px;
}
.c-recruitment-btn .c-recruitmentBtn:last-child{
  margin-right: 0;
}
.c-recruitmentBtn p,
.c-recruitmentBtn a{
  display: inline;
  color: #333;
  font-size: 13px;
  position: relative;
}
.c-recruitmentBtn__favorite{
  cursor: pointer;
}
.c-recruitmentBtn__favorite p{
  padding-left: 25px;
}
.c-recruitmentBtn__favorite p:before{
  content: "";
  background: url(/images/renewal2025/icon_favorite.svg) no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-recruitmentBtn.c-recruitmentBtn__favorite:hover{
  background: #fff;
  border: 1px solid #b49660;
}
.c-recruitmentBtn.c-recruitmentBtn__favorite:hover p{
  color: #b49660;
}
.c-recruitmentBtn__favorite:hover p:before{
  background: url(/images/renewal2025/icon_favorite_hover.svg) no-repeat;
}
.c-recruitmentBtn.c-recruitmentBtn__favorite.i_del_detail_favorite_button p:before{
  background: url(/images/renewal2025/icon_favorite_on.svg) no-repeat;
}
.c-recruitmentBtn__detail a{
  padding-right: 15px;
}
.c-recruitmentBtn__detail a:after{
  content: "";
  background: url(/images/renewal2025/icon_detail.svg) no-repeat;
  background-size: cover;
  width: 5px;
  height: 9px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-recruitmentBtn.c-recruitmentBtn__detail:hover{
  background: linear-gradient(to bottom right, #0f4b8a, #08294c);
}
.c-recruitmentBtn.c-recruitmentBtn__detail:hover a{
  color: #fff;
}
.c-recruitmentBtn.c-recruitmentBtn__detail:hover a:after{
  background: url(/images/renewal2025/icon_detail_hover.svg) no-repeat;
}
.c-recruitmentBtn.c-recruitmentBtn__detail a:hover{
  opacity: 1;
}
@media (max-width: 768px){
  .c-recruitment {
    margin-top: 40px;
  }
  .c-recruitment.c-recruitment__company{
    margin-top: 25px;
  }
  .c-link-all{
    position: static;
    text-align: right;
  }
  .c-link-all p{
    margin-top: 20px;
  }
}


/* slickslider */
.c-slider-content{
  width: 100%;
  max-width: 1440px;
  margin: 25px auto 0;
}
.c-slider-content .slick-prev{
  left: 8%;
}
.c-slider-content .slick-next{
  right: 8%;
}
.c-slider-content .slick-prev,
.c-slider-content .slick-next{
  width: 46px;
  height: 46px;
  background: rgba(51, 51, 51, 0.3);
  z-index: 20;
}
.c-slider-content .slick-prev:before,
.c-slider-content .slick-next:before{
  background: url(/images/renewal2025/icon_slider_arrow.svg) no-repeat;
  background-size: cover;
  content: "";
  width: 7px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
}
.c-slider-content .slick-prev:before{
  transform: translate(-50%, -50%) rotate(180deg);
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
}
.c-slider-content .slick-next:before{
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.c-slider-item{
  background: #fff;
  margin: 0 10px;
}
.c-slider-item[aria-hidden="true"]{
  opacity: 0.3;
  pointer-events: none;
}
.c-slider-content .slick-prev:hover,
.c-slider-content .slick-prev:focus,
.c-slider-content .slick-next:hover,
.c-slider-content .slick-next:focus{
  background: #08294d;
}
.c-slider-content .slick-prev:before,
.c-slider-content .slick-next:before{
  opacity: 1;
}
@media (max-width: 768px){
  .c-slider-item{
    margin: 0;
  }
  .c-slider-content .slick-prev,
  .c-slider-content .slick-next{
    width: 28px;
    height: 28px;
  }
  .c-slider-content .slick-prev:before,
  .c-slider-content .slick-next:before{
    width: 5px;
    height: 9px;
  }
  .c-slider-content .slick-prev{
    left: -15px;
  }
  .c-slider-content .slick-next{
    right: -15px;
  }
  .c-slider-content .slick-dotted.slick-slider{
    margin-bottom: 0;
  }
  .c-slider-dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
  }
  .c-slider-dots li {
      width: 10px;
      height: 10px;
      margin: 0 5px;
      background: #fff;
      border-radius: 50%;
      cursor: pointer;
  }
  .c-slider-dots li:hover,
  .c-slider-dots li.slick-active {
      background: #08294d;
      border: 1px solid #fff;
  }
  .c-slider-dots li button {
      display: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      outline: none;
      padding: 0;
      border: none;
      background-color: transparent;
  }
}


/* case */
.c-case{
  margin-top: 100px;
}
.c-heading.c-heading__line h2{
  font-size: 24px;
  padding-left: 15px;
  position: relative;
}
.c-heading.c-heading__line h2:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #0f4b8a, #08294c);
}
.c-case-img img{
  width: 100%;
}
.c-case-textBox{
  padding: 20px;
}
.c-case-ttl{
  color: #151515;
  font-size: 16px;
  font-weight: bold;
}
.c-case-textBottom{
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e8e8e8;
}
.c-case-textBottom p{
  color: #333;
  font-size: 14px;
  line-height: 1;
  margin-top: 10px;
}
.c-case-textBottom p:first-child{
  margin-top: 0;
}
@media (max-width: 768px){
  .c-case{
    margin-top: 40px;
  }
}


/* activeRecruitment */
.c-activeRecruitment{
  margin-top: 100px;
}
.c-activeRecruitment-content{
  margin-top: 25px;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  column-gap: 30px;
}
.c-activeRecruitment-box{
  width: 50%;
  background: linear-gradient(to bottom right, #0f4b8a, #08294c);
  padding: 20px 30px 20px 20px;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}
.c-activeRecruitment-box:after{
  content: "";
  background: url(/images/renewal2025/icon_keyvisual_link.svg) no-repeat;
  background-size: cover;
  width: 6px;
  height: 11px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-activeRecruitment-box img{
  width: 32%;
  max-width: 158px;
  padding-right: 4%;
  margin-right: 5.75%;
  border-right: 1px solid #e8e8e8;
}
.c-activeRecruitment-box span{
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}
.c-activeRecruitment-box span small{
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: normal;
}
@media (max-width: 768px){
  .c-activeRecruitment{
    margin-top: 40px;
  }
  .c-activeRecruitment-content{
    margin-top: 20px;
    display: block;
  }
  .c-activeRecruitment-box{
    margin-top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }
  .c-activeRecruitment-content .c-activeRecruitment-box:first-child{
    margin-top: 0;
  }
  .c-activeRecruitment-box:after{
    content: none;
  }
  .c-activeRecruitment-box img{
    width: 40.5%;
    max-width: 128px;
    padding-right: 3.25%;
    margin-right: 3.25%;
  }
  .c-activeRecruitment-box span{
    font-size: 15px;
  }
  .c-activeRecruitment-box span small{
    font-size: 12px;
  }
}


/* specialFeature */
.c-bg-wt{
  margin-top: 100px;
  padding: 100px 0;
  background: #fff;
}
.c-specialFeature__office{
  margin-top: 25px;
}
.c-specialFeature__company{
  margin-top: 80px;
}
.c-specialFeature-img img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.c-specialFeature-textBox{
  margin-top: 15px;
}
.c-specialFeature-ttl{
  color: #333;
  font-size: 17px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-slider-item__specialFeature .c-specialFeature-img{
  overflow:hidden;
}
.c-slider-item__specialFeature .c-specialFeature-img img{
  transition:.5s all;
}
.c-slider-item__specialFeature:hover .c-specialFeature-img img{
  transform:scale(1.1,1.1);
}
@media (max-width: 768px){
  .c-bg-wt{
    margin-top: 40px;
    padding: 40px 0;
  }
  .c-specialFeature__company{
    margin-top: 30px;
  }
  .c-slider-item__specialFeature{
    display: inline-block;
    margin-top: 10px;
  }
  .c-slider-common__specialFeature .c-slider-item__specialFeature:first-child{
    margin-top: 0;
  }
  .c-slider-itemInner__specialFeature{
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
  }
  .c-specialFeature-img{
    width: 50%;
    max-width: 168px;
  }
  .c-specialFeature-img img{
    height: 100px;
  }
  .c-specialFeature-textBox{
    width: 45%;
    margin: 0 0 0 5%;
  }
  .c-specialFeature-ttl{
    font-size: 15px;
    -webkit-line-clamp: 3;
  }
}


/* agent */
.c-agent{
  background: linear-gradient(to bottom right, #0f4b8a, #08294c);
  padding: 100px 20px;
}
.c-agent-heading h2{
  color: #fff;
  font-size: 35px;
  margin: 0;
}
.c-agent-lead{
  margin-top: 30px;
  text-align: center;
}
.c-agent-lead p{
  color: #fff;
  font-size: 15px;
}
.c-btn__service{
  margin: 50px 0;
  text-align: center;
}
.c-btn__service a{
  display: inline-block;
  min-width: 328px;
  padding: 20px 0;
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}
.c-btn__service a span{
  padding-right: 15px;
  position: relative;
}
.c-btn__service a span:after{
  content: "";
  background: url(/images/renewal2025/icon_view_all_wt.svg) no-repeat;
  background-size: cover;
  width: 6px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-slider-common__agent{
  width: 100%;
  max-width: 1045px;
  margin: 0 auto;
}
.c-agent .c-link-all{
  position: static;
  text-align: right;
  margin-bottom: 20px;
}
.c-agent .c-link-all p{
  border-bottom: 1px solid #fff;
}
.c-agent .c-link-all a{
  color: #fff;
  padding-right: 15px;
}
.c-agent .c-link-all a:after{
  background: url(/images/renewal2025/icon_view_all_wt.svg) no-repeat;
  width: 6px;
  height: 10px;
}
.c-slider-agent{
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  align-items: stretch;
  gap: 15px;
}
.c-slider-item.c-slider-item__agent{
  margin: 0;
  flex: 1;
}
.c-agent-img img{
  width: 100%;
}
.c-agent-textBox{
  padding: 20px;
}
.c-agent-textBox p{
  color: #333;
}
.c-agent-name{
  font-size: 16px;
  font-weight: bold;
}
.c-agent-position{
  margin-top: 5px;
  font-size: 15px;
}
.c-agent-voice{
  margin-top: 10px;
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px){
  .c-agent{
    padding: 50px 20px;
  }
  .c-agent-heading h2{
    font-size: 26px;
  }
  .c-agent-lead{
    text-align: left;
  }
  .c-btn__service{
    margin: 35px 0;
  }
  .c-btn__service a{
    min-width: 238px;
    padding: 15px 0;
  }
  .c-slider-agent{
    display: block;
  }
}


/* c-entry-btn */
.c-entry-btn{
  margin: 100px 20px 0;
}
.c-entry-btnInner{
  width: 470px;
  margin: 0 auto;
  text-align: center;
}
.c-entry-btn a{
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 40px 20px;
  background: #b49660;
  line-height: 1;
}
.c-entry-btn a span{
  padding-right: 15px;
  position: relative;
}
.c-entry-btn a span:after{
  content: "";
  background: url(/images/renewal2025/icon_view_all_wt.svg) no-repeat;
  background-size: cover;
  width: 6px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 768px){
  .c-entry-btn{
    margin: 40px auto 0;
  }
  .c-entry-btnInner{
    width: 100%;
    max-width: 335px;
  }
  .c-entry-btn a{
    padding: 30px 15px;
  }
}


/* article */
.c-article{
  margin-top: 100px;
}
.c-article-img img{
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  vertical-align: bottom;
}
.c-article-text{
  padding: 25px 20px;
}
.c-article-ttl{
  height: 48px;
  position: relative;
}
.c-article-ttl span{
  color: #151515;
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-article-lead{
  margin-top: 10px;
  color: #333;
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px){
  .c-article{
    margin-top: 40px;
  }
  .c-slider-item__article{
    display: inline-block;
    margin-top: 10px;
    width: 100%;
  }
  .c-slider-common__article .c-slider-item__article:first-child{
    margin-top: 0;
  }
  .c-slider-itemInner__article{
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
  }
  .c-article-img{
    width: 50%;
    max-width: 168px;
  }
  .c-article-text{
    width: 40%;
    margin: 0 5%;
    padding: 0;
  }
  .c-article-ttl{
    height: auto;
  }
  .c-article-ttl span{
    font-size: 15px;
    -webkit-line-clamp: 3;
    position: static;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }
  .c-article-lead{
    display: none;
  }
}


/* info */
.c-info{
  margin-top: 100px;
}
.c-info-content{
  margin-top: 25px;
  padding: 30px;
  background: #fff;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
}
.c-info-img{
  width: 35%;
  max-width: 370px;
  margin-right: 4.75%;
}
.c-info-text{
  width: 60.25%;
}
.c-info-text img{
  max-width: 207px;
}
.c-info-ttl{
  margin-top: 20px;
  color: #151515;
  font-size: 18px;
  font-weight: bold;
}
.c-info-lead{
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.75;
}
@media (max-width: 768px){
  .c-info{
    margin-top: 40px;
  }
  .c-info-content{
    padding: 20px;
    display: block;
  }
  .c-info-img{
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .c-info-text{
    width: 100%;
    margin-top: 20px;
  }
  .c-info-text img{
    max-width: 180px;
  }
}


/* faq */
.c-faq{
  margin-top: 100px;
}
.c-faq-content{
  margin-top: 25px;
  padding: 0 30px;
  background: #fff;
}
.c-faq-item{
  border-top: 1px solid #e8e8e8;
  padding: 20px 0;
}
.c-faq-content .c-faq-item:first-child{
  border-top: none;
}
.c-faq-q{
  position: relative;
  padding-left: 40px;
  cursor: pointer;
}
.c-faq-q:hover{
  opacity: 0.8;
}
.c-faq-q:before{
  content: "Q";
  color: #08294d;
  font-size: 26px;
  font-family: "EB Garamond", sans-serif;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-faq-q span{
  display: block;
  color: #08294d;
  font-size: 16px;
  font-weight: bold;
  padding-right: 35px;
  position: relative;
}
.c-faq-q span:before{
  content: "";
  width: 18px;
  height: 1px;
  background: #08294d;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-faq-q span:after{
  content: "";
  width: 18px;
  height: 1px;
  background: #08294d;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.c-faq-q.open span:after{
  transform: rotate(0);
}
.c-faq-a{
  display: none;
  margin-top: 20px;
  color: #08294d;
  font-size: 15px;
  padding-left: 40px;
  position: relative;
}
.c-faq-a:before{
  content: "A";
  color: #08294d;
  font-size: 30px;
  font-family: "EB Garamond", sans-serif;
  font-weight: normal;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (max-width: 768px){
  .c-faq{
    margin-top: 40px;
  }
  .c-faq-content{
    padding: 0 20px;
  }
  .c-faq-q{
    font-size: 15px;
    padding-left: 30px;
  }
  .c-faq-q:before{
    font-size: 24px;
  }
  .c-faq-q span{
    padding-right: 30px;
  }
  .c-faq-q span:before,
  .c-faq-q span:after{
    width: 14px;
  }
  .c-faq-a{
    font-size: 14px;
    padding-left: 30px;
  }
  .c-faq-a:before{
    font-size: 28px;
  }
}


/* footer */
.l-footer{
  background: linear-gradient(to bottom right, #0f4b8a, #08294c);
  padding: 80px 20px 15px;
}
.l-footer__inner{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.c-footer-heading{
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 20px;
  margin-top: 40px;
}
.c-footer-heading p{
  color: #fff;
}
.l-footer__inner .c-footer-heading:first-child{
  margin-top: 0;
}
.c-footer-headingBorder{
  border-bottom: 1px solid #fff;
}
.c-footer-content__area{
  margin-top: 20px;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
  column-gap: 3%;
}
.c-footer-content__area table{
  width: 48.5%;
  margin-bottom: 0;
}
.c-footer-content__area table tr{
  width: 100%;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  margin-top: 10px;
}
.c-footer-content__area table tr:first-child{
  margin-top: 0;
}
.c-footer-content__area table tr td,
.c-footer-content__area table tr td a,
.c-footer-content__area table tr th a{
  color: #fff;
  font-size: 12px;
}
.c-footer-content__area table tr td{
  font-weight: bold;
}
.c-footer-content__area table tr th a{
  font-weight: normal;
  vertical-align: top;
}
.c-footer-content__area table tr td {
  width: 30%;
  padding-right: 5%;
}
.c-footer-content__area table tr th{
  display: block;
  width: 70%;
  max-width: 219px;
}
.c-footer-content__area table tr th ul{
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.c-footer-content__area table tr th ul li{
  margin-right: 10px;
}
.c-footer-content__industry{
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
  column-gap: 3%;
}
.c-footerIndustry-item{
  width: 48.5%;
}
.c-footerIndustry-subHeading{
  font-size: 12px;
  font-weight: bold;
  padding-bottom: 20px;
}
.c-footerIndustry-subHeading p{
  color: #fff;
}
.c-footerIndustry-item ul{
  margin-top: 20px;
}
.c-footerIndustry-item ul li{
  margin-top: 10px;
  line-height: 1;
}
.c-footerIndustry-item ul li:first-child{
  margin-top: 0;
}
.c-footerIndustry-item ul li a{
  color: #fff;
  font-size: 12px;
  font-weight: normal;
}
.c-footer-content__service{
  margin-top: 20px;
  width: 100%;
  max-width: 980px;
}
.c-footer-content__service ul{
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 10px;
}
.c-footer-content__service ul li{
  margin-right: 70px;
  line-height: 1;
}
.c-footer-content__service ul li a{
  color: #fff;
  font-size: 12px;
}
.c-footer-content__company{
  margin-top: 20px;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  column-gap: 20px;
}
.c-footerCompany-item__img{
  width: 210px;
}
.c-footerCompany-item__img img{
  width: 100%;
}
.c-footerCompany-item__txt p{
  color: #fff;
}
.c-footerCompany-item__txt p.name{
  font-size: 14px;
  font-weight: bold;
}
.c-footerCompany-item__txt p.address{
  font-size: 12px;
}
.c-footerCompany-item__txt p.tel{
  color: #fff;
  font-family: 'EB Garamond','Noto Sans JP',sans-serif, serif;
  font-size: 28px;
  margin: 10px 0 5px;
}
.c-footerCompany-item__txt p.tel a[href^="tel"]{
  color: #fff;
}
.c-footerCompany-item__txt p.small{
  font-size: 11px;
}
.c-footer-content__link{
  margin-top: 30px;
}
.c-footer-content__link ul{
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px 2%;
}
.c-footer-content__link ul li{
  width: 45%;
  padding-left:20px;
  position: relative;
  line-height: 2;
}
.c-footer-content__link ul li:before{
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 7px;
}
.c-footer-content__link ul li.bengoshi:before{
  background: url(/images/renewal/footer_icon1.png) no-repeat;
  background-size: cover;
}
.c-footer-content__link ul li.jimu:before{
  background: url(/images/renewal/footer_icon2.png) no-repeat;
  background-size: cover;
}
.c-footer-content__link ul li.houmu:before{
  background: url(/images/renewal/footer_icon3.png) no-repeat;
  background-size: cover;
}
.c-footer-content__link ul li.somu:before{
  background: url(/images/renewal/footer_icon4.png) no-repeat;
  background-size: cover;
}
.c-footer-content__link ul li a{
  color: #fff;
  font-size: 12px;
  display: block;
}
.c-footer-content__nav{
  margin-top: 50px;
}
.c-footer-content__nav ul{
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px 15px;
}
.c-footer-content__nav ul li a{
  color: #fff;
  font-size: 12px;
}
.c-footer-content__copyright{
  margin-top: 20px;
  text-align: center;
}
.c-footer-content__copyright p{
  font-family: 'EB Garamond','Noto Sans JP',sans-serif, serif;
  color: #fff;
  font-size: 10px;
}
.c-footer-content__recaptcha{
  margin-top: 5px;
  text-align: center;
}
.c-footer-content__recaptcha p{
  color: #fff;
  font-size: 9px;
}
.c-footer-content__recaptcha p a{
  color: #fff;
  border-bottom: 1px solid #fff;
}
.grecaptcha-badge{
  visibility: hidden;
}
@media screen and (max-width: 768px){
  .l-footer{
    padding: 50px 20px 15px;
  }
  .c-footer-headingBorder{
    border: none;
  }
  .c-footer-heading{
    border-bottom: 1px solid #fff;
  }
  .c-accordion__parent p{
    position: relative;
    padding-right: 34px;
  }
  .c-accordion__parent p:after{
    content: "";
    display: block;
    background: url(/images/renewal2025/icon_accordion.svg) no-repeat;
    width: 14px;
    height: 8px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: all .3s;
  }
  .c-accordion__parent.open p:after{
    transform: rotate(180deg);
  }
  .c-accordion__child{
    display: none;
  }
  .c-footer-content__area table{
    margin-top: 10px;
    width: 100%;
  }
  .c-footer-content__area table:first-child{
    margin-top: 0;
  }
  .c-footer-content__industry{
    margin-top: 20px;
  }
  .c-footerIndustry-item{
    width: 100%;
    margin-top: 20px;
  }
  .c-footer-content__industry .c-footerIndustry-item:first-child{
    margin-top: 0;
  }
  .c-footerIndustry-subHeading{
    border-bottom: 1px solid #fff;
    display: inline-block;
  }
  .c-footer-content__service ul{
    display: block;
  }
  .c-footer-content__service ul li{
    margin: 10px 0 0 0;
  }
  .c-footer-content__service ul li:first-child{
    margin-top: 0;
  }
  .c-footer-content__company{
    display: block;
  }
  .c-footerCompany-item__txt{
    margin-top: 20px;
  }
  .c-footer-content__link ul{
    display: block;
  }
  .c-footer-content__link ul li{
    width: 100%;
    margin-top: 10px;
  }
  .c-footer-content__link ul li:first-child{
    margin-top: 0;
  }
  .c-footer-content__nav{
    margin-top: 40px;
  }
  .c-footer-content__nav ul{
    display: block;
  }
  .c-footer-content__nav ul li{
    margin-top: 5px;
  }
  .c-footer-content__copyright{
    margin-top: 40px;
  }
}


/* breadcrumb */
.c-breadcrumb{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 20px;
}
.c-breadcrumb ul{
  margin: 0 1%;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	align-items: center;
  flex-wrap: wrap;
  row-gap: 5px;
}
.c-breadcrumb ul li{
	color: #333;
	font-size: 11px;
	line-height: 1;
	margin-left: 10px;
	padding-left: 10px;
	position: relative;
}
.c-breadcrumb ul li:before{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	border-left: 1px solid #333;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) rotate(25deg);
	-webkit-transform: translateY(-50%) rotate(25deg);
	-ms-transform: translateY(-50%) rotate(25deg);
}
.c-breadcrumb ul li:first-child{
	margin-left: 0;
	padding-left: 0;
}
.c-breadcrumb ul li:first-child:before{
	border-left: none;
}
@media (max-width: 768px){
  main.bg-main{
		position: relative;
	}
  .c-breadcrumb{
    position: absolute;
		bottom: 15px;
    left: 20px;
    width: auto;
    max-width: none;
    margin: 0;
    padding-top: 0;
  }
  .c-breadcrumb ul{
    margin: 0;
  }
	.c-breadcrumb ul li{
		color: #333;
    font-size: 10px;
	}
	.c-breadcrumb ul li:before{
		border-color: #333;
	}
}


/* agent */
.c-kv{
	background: linear-gradient(to bottom right, #0f4b8a, #08294c);
	padding: 20px 0 90px;
}
.c-kv-inner{
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}
.c-bg-bl .c-breadcrumb{
  width: auto;
  max-width: none;
  margin: 0 1%;
  padding-top: 0;
}
.c-bg-bl .c-breadcrumb ul{
  margin: 0;
}
.c-bg-bl .c-breadcrumb ul li{
  color: #fff;
}
.c-bg-bl .c-breadcrumb ul li:before{
  border-color: #fff
}
.c-kv-content{
	margin-top: 60px;
	text-align: center;
}
.c-kv-heading{
	color: #fff;
	font-size: 35px;
	font-family: 'Noto Serif JP', serif;
}
.c-kv-content .c-kv-lead{
	margin-top: 30px;
	color: #fff;
	line-height: 1.75;
}
.c-kv-content .c-entry-btn{
	margin: 60px 0 0;
}
.c-kv-content .c-entry-btnInner{
	width: 240px;
}
.c-kv-content .c-entry-btn a{
	padding: 20px 5px;
}
.c-kv-content .c-entry-btn a span{
	color: #fff;
	font-size: 15px;
  vertical-align: top;
}
@media (max-width: 768px){
	.c-kv{
		padding: 50px 20px;
	}
	.c-kv-content{
		margin-top: 0;
	}
	.c-kv-heading{
		font-size: 24px;
	}
	.c-kv-content .c-kv-lead{
		margin-top: 20px;
		text-align: center;
	}
	.c-kv-content .c-entry-btn{
		margin: 40px 0 0;
	}
	.c-kv-content .c-entry-btnInner{
		width: 200px;
	}
	.c-kv-content .c-entry-btn a span{
		font-size: 14px;
	}
  .c-bg-bl .c-breadcrumb{
    margin: 0;
  }
  .c-bg-bl .c-breadcrumb ul li{
    color: #333;
  }
  .c-bg-bl .c-breadcrumb ul li:before{
    border-color: #333;
  }
}
/* agent-list */
.c-agent-content{
	padding: 100px 20px 0;
}
.c-agent-contentInner{
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
}
.c-agent-list{
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 40px 30px;
}
.c-agent-list__img .c-agent-item{
	width: calc(50% - 15px);
}
.c-agent-itemMain{
	background: #fff;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	align-items: center;
}
.c-agent-list__img .c-agent-img{
	width: 44.59%;
}
.c-agent-img img{
	vertical-align: top;
}
.c-agent-list__img .c-agent-txt{
	margin: 2% 6%;
	width: 43.41%;
}
.c-agent-list__noimg .c-agent-item{
	width: calc(33.33% - 20px);
}
.c-agent-list__noimg .c-agent-itemMain{
	padding: 25px 20px 35px;
}
.c-agent-heading{
	color: #08294d;
	font-size: 18px;
	font-weight: bold;
}
.c-agent-list__img .c-agent-heading{
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.c-agent-list__noimg .c-agent-heading{
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
  min-height: 81px;
}
.c-agent-txt .c-agent-name{
	margin-top: 10px;
	color: #333;
	font-size: 14px;
	font-weight: revert;
}
.c-agent-btn{
	margin-top: 20px;
}
.c-agent-btn a{
	display: block;
	text-align: center;
	background: #b49660;
	padding: 20px 10px;
	line-height: 1;
}
.c-agent-btn a span{
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	vertical-align: middle;
	padding-right: 15px;
	position: relative;
}
.c-agent-btn a span:after{
	content: "";
	background: url(/images/renewal2025/icon_view_all_wt.svg) no-repeat;
	background-size: cover;
	width: 6px;
	height: 10px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.c-agent-list__noimg{
	margin-top: 40px;
}
a.c-agent-item{
	position: relative;
}
a.c-agent-item:hover{
	opacity: 0.8;
}
.c-agent-detailsBtn{
	position: absolute;
	right: 20px;
	bottom: 20px;
}
.c-agent-detailsBtn p{
	color: #333;
	font-size: 13px;
	padding-right: 10px;
  border-bottom: 1px solid #333;
	position: relative;
}
.c-agent-detailsBtn p:after{
	content: "";
	background: url(/images/renewal2025/icon_detail.svg) no-repeat;
	background-size: cover;
	width: 5px;
	height: 9px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
@media (max-width: 768px){
	.c-agent-content{
		padding-top: 40px;
	}
	.c-agent-list{
		display: block;
	}
	.c-agent-list__img .c-agent-item,
	.c-agent-list__noimg .c-agent-item{
		width: 100%;
	}
	.c-agent-list__img .c-agent-img{
		width: 39.4%;
	}
	.c-agent-heading{
		font-size: 16px;
	}
  .c-agent-list__img .c-agent-heading{
    -webkit-line-clamp: 3;
  }
	.c-agent-list__noimg .c-agent-heading{
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
    min-height: auto;
	}
	.c-agent-list__img .c-agent-txt{
		margin: 2% 5%;
		width: 50.6%;
	}
	.c-agent-list__noimg .c-agent-itemMain{
		padding: 20px 20px 35px;
	}
  .c-agent-list__noimg .c-agent-itemMain .c-agent-txt{
		width: 100%;
	}
	.c-agent-btn{
		margin-top: 15px;
	}
	.c-agent-list .c-agent-item{
    display: block;
		margin-top: 25px;
	}
	.c-agent-list .c-agent-item:first-child{
		margin-top: 0;
	}
	.c-agent-list__noimg{
		margin-top: 25px;
	}
}
/* consultation */
.c-consultation-content{
	margin-top: 100px;
	padding: 0 10px;
}
.c-consultation-contentInner{
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	background: linear-gradient(to bottom right, #0f4b8a, #08294c);
	padding: 100px 20px 10px;
	text-align: center;
}
.c-consultation-heading{
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-size: 30px;
}
.c-consultation-lead{
	margin-top: 20px;
	color: #fff;
	font-size: 15px;
}
.c-consultation-img{
	width: 100%;
	max-width: 608px;
	margin: 40px auto 0;
}
.c-consultation-list{
	width: 100%;
	max-width: 845px;
	margin: 40px auto 0;
}
.c-consultation-list ul{
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
.c-consultation-list ul li{
	width: calc(20% - 12px);
}
.c-consultation-list ul li a{
	display: block;
}
.c-consultation-list ul li img{
	width: 100%;
	vertical-align: middle;
}
.c-consultation-btn{
	margin-top: 70px;
}
.c-consultation-btn a{
	display: block;
	background: #b49660;
	padding: 30px 20px;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	line-height: 1;
}
.c-consultation-btn a span{
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	vertical-align: middle;
	position: relative;
	padding-right: 20px;
}
.c-consultation-btn a span:after{
	content: "";
	background: url(/images/renewal2025/icon_view_all_wt.svg) no-repeat;
	background-size: cover;
	width: 9px;
	height: 15px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.c-notes__agent{
  margin-top: 90px;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  text-align: left;
}
@media (max-width: 768px){
	.c-consultation-content{
		margin-top: 40px;
	}
	.c-consultation-contentInner{
		padding: 40px 20px 10px;
	}
	.c-consultation-heading{
		font-size: 22px;
	}
	.c-consultation-list ul{
		gap: 10px;
	}
	.c-consultation-list ul li {
    width: calc(33.33% - 6.66px);
	}
	.c-consultation-btn{
		margin-top: 30px;
	}
	.c-consultation-btn a{
		padding: 20px 5px;
	}
	.c-consultation-btn a span{
		font-size: 15px;
		padding-right: 12px;
	}
	.c-consultation-btn a span:after{
		width: 6px;
    height: 10px;
	}
  .c-notes__agent{
    margin-top: 30px;
    font-size: 9px;
  }
}


/* thanks */
.is__pc {
  display: block;
}
.is__sp {
  display: none;
}
.entry-thanks-page .contents_box {
  max-width: 1200px;
}
.entry-thanks_section p{
  color: #333;
}
.entry-thanks-page .entry-thanks_section * {
  text-align: center;
}
.entry-thanks-page .contents_box {
  padding-top: 2.5rem;
}
.entry-thanks-page .contents_box .entry-thanks_section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff;
  margin-top: 3rem;
}
.entry-thanks-page .thanks-p01 {
  font-size: 14px;
}
.entry-thanks-page .thanks-p02 {
  color: #08294d;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
  font-size: 20px;
  margin: 1.5rem auto;
}
.entry-thanks-page .thanks-p03 {
  line-height: 2;
}
.entry-thanks-page .thanks-p04 {
  font-size: 12px;
  margin-top: 1rem;
}
.entry-thanks-page .thanks-p05 {
  color: #08294d;
  font-family: 'Noto Serif JP', serif;
  margin: 50px auto 1.5rem;
  font-size: 16px;
  font-weight: bold;
}
.entry-thanks-page .thanks-p06 {
  color: #08294d;
  font-family:  "EB Garamond", sans-serif;
  margin-bottom: 1rem;
  font-size: 24px;
}
.entry-thanks-page .thanks-p07 {
  color: #08294d;
  font-family:  "EB Garamond", sans-serif;
  font-size: 24px;
}
.blue-line_h2 {
  font-size: 24px;
  padding-left: 15px;
  position: relative;
  display: inline-block;
  color: #08294d;
  font-weight: bold;
  margin: 0;
  font-family: 'Noto Serif JP', serif;
}
.blue-line_h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #0f4b8a, #08294c);
}
.entry-thasnk-sec2 {
  background-color: #fff;
  padding: 100px 0;
  margin-bottom: 3rem;
}
.entry-thasnk-sec2 ul {
  display: flex;
  gap: 1.5rem;
  margin-top: 25px;
}
.entry-thasnk-sec2 ul li {
  width: calc((100% - 4.5rem) / 4);
}
.entry-thasnk-sec2 ul li dl dt {
  display: flex;
  color: #08294d;
  align-items: center;
  gap: 1rem;
  font-weight: bold;
}
.entry-thasnk-sec2 ul li dl dt span {
  background: linear-gradient(135deg, #0f4b8a, #08294c);
  color: #fff;
  font-family: "EB Garamond", sans-serif;
  font-size: 14px;
  font-weight: normal;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry-thasnk-sec2 ul li dl dd {
  line-height: 1.5;
  padding-top: 1rem;
  color: #333;
}
.entry-thanks-page2 {
  padding-top: 3rem;
}
.c-magazine .c-article-lead {
  font-size: 14px;
}
.c-magazine .c-slider-content{
  max-width: 1120px;
}
.c-step-container{
  margin-top: 100px;
  padding: 0 20px;
  background: #fff;
}
.c-step-container .entry-thasnk-sec2{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.c-heading.c-heading__line h2 {
  font-family: 'Noto Serif JP', serif;
}
.c-slider-spNone2 .slick-slide {
  /* opacity: 0.3; */
  transition: opacity 0.3s ease;
}
.c-slider-spNone2 .slick-slide.visible-slide {
  opacity: 1;
}
.c-slider-content .c-slider-spNone2  .slick-next {
  right: -2%;
}
.c-slider-content .c-slider-spNone2  .slick-prev {
  left: -2%;
}
.entry-thanks-page2 .bottom-section {
  margin-bottom: 100px;
}
.c-bnr{
  margin-top: 100px;
  padding: 0 20px;
  text-align: center;
}
.c-bnr figure{
  display: inline-block;
}
.entry-thanks-page2 .bottom-section figure {
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px){
  .is__pc {
    display: none;
  }
  .is__sp {
    display: block;
  }
  .entry-thanks-page .contents_box .entry-thanks_section {
    padding: 1.5rem 1rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  .entry-thanks-page .thanks-p03 {
    text-align: left;
  }
  .entry-thanks-page .thanks-p03 br {
    display: none;
  }
  .entry-thanks-page .thanks-p04 {
    text-align: left;
  }
  .entry-thanks-page .thanks-p05 {
    margin: 2rem auto 16px;
    font-size: 15px;
  }
  .entry-thanks-page .thanks-p06, .entry-thanks-page .thanks-p07 {
  font-size: 18px;
  }
  .entry-thasnk-sec2 {
  padding: 40px 0;
  }
  .entry-thasnk-sec2 ul {
    flex-wrap: wrap;
  }
  .entry-thasnk-sec2 ul li {
    width: 100%;
  }
  .entry-thanks-page2  {
    padding: 0;
  }
  .paddingtop30  {
    padding-top: 30px;
  }
  .entry-thanks-page2 .bottom-section {
    margin-bottom: 40px;
  }
  .c-bnr{
    margin-top: 40px;
  }
  .c-step-container{
    margin-top: 40px;
  }
}
.c-magazine-img img{
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: cover;
  vertical-align: bottom;
}
.c-magazine-text{
  padding: 25px 20px;
}
.c-magazine-ttl{
  height: 72px;
  position: relative;
}
.c-magazine-ttl span{
  color: #151515;
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-magazine-lead{
  margin-top: 10px;
  color: #333;
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px){
  .c-slider-item__magazine{
    margin-top: 10px;
    display: inline-block;
    width: 100%;
  }
  .c-slider-common__magazine .c-slider-item__magazine:first-child{
    margin-top: 0;
  }
  .c-slider-itemInner__magazine{
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
  }
  .c-magazine-img{
    width: 50%;
    max-width: 168px;
  }
  .c-magazine-text{
    width: 40%;
    margin: 0 5%;
    padding: 0;
  }
  .c-magazine-ttl{
    height: auto;
  }
  .c-magazine-ttl span{
    font-size: 15px;
    position: static;
    transform: none;
    -webkit-transform: none;
  }
  .c-magazine-lead{
    display: none;
  }
}


/* agent/single & agent/single2 */
.contents_section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px){
  .contents_section {
      padding: 0 1rem;
  }
}
@media screen and (max-width: 834px) {
  .contents_section {
      padding-top: 2rem;
  }
}

.agentsingle-page .agsi__white {
  background-color: #fff;
  padding: 70px;
  margin-top: 40px;
}
@media screen and (max-width: 768px){
  .agentsingle-page .agsi__white {
      padding: 20px;
      margin-top: 0px;
  }
}
.agentsingle-page .agsi__white-flex {
  display: flex;
  gap: 9%;

}
@media screen and (max-width: 768px) {
  .agentsingle-page .agsi__white-flex {
      flex-direction: column;
      gap: 1rem;
  }
}
.agentsingle-page .agsi__white-flex .agsi__white-element01 {
  width: calc((100% - 2rem) / 8 * 3);
}
@media screen and (max-width: 768px) {
  .agentsingle-page .agsi__white-flex .agsi__white-element01 {
      width: 100%;
  }
}
.agentsingle-page .agsi__white-flex .agsi__white-element01 figure img {
  width: 100%;
  vertical-align: middle;
}
.agentsingle-page .agsi__white .agsi__white__link {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .agentsingle-page .agsi__white .agsi__white__link {
      margin-top: 1rem;
  }
}
.agentsingle-page .agsi__white .agsi__white__link a {
  width: 100%;
  background-color: #b49660;
  color: #fff;
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
}
.agentsingle-page .agsi__white .agsi__white__link a::before {
  position: absolute;
  content: '';
  top: 50%;
  left: calc(50% + 84px);
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(0, -50%) rotate(45deg);
}
.agentsingle-page .agsi__white .agsi__white__link2 {
  max-width: 300px;
  margin: 2rem auto 0;
}
.agentsingle-page .agsi__white-flex .agsi__white-element02 {
  width: calc((100% - 3rem) / 8 * 5);
}
@media screen and (max-width: 768px) {
  .agentsingle-page .agsi__white-flex .agsi__white-element02 {
      width: 100%;
  }
}
.agentsingle-page .agsi__white-flex .agsi__white-element02 p.c-agent-heading,
.agentsingle-page .agsi__white-flex .agsi__white-element02 h2 {
  color: #08294d;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .agentsingle-page .agsi__white-flex .agsi__white-element02 p.c-agent-heading,
  .agentsingle-page .agsi__white-flex .agsi__white-element02 h2 {
      font-size: 19px;
  }
}
.agentsingle-page .agsi__white-flex .agsi__white-element02 h2,
.agentsingle-page .agsi__white-flex .agsi__white-element02 h3 {
  position: relative;
  padding-left: 1rem;
  font-family: 'Noto Serif JP', serif;
  margin: 30px 0 15px;
  font-size: 18px;
  color: #08294d;
  font-weight: bold;
}
.agentsingle-page .agsi__white-flex .agsi__white-element02 h2::before,
.agentsingle-page .agsi__white-flex .agsi__white-element02 h3::before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  height: 100%;
  width: 5px;
  background: linear-gradient(to bottom right, #0f4b8a, #08294c);
}
.agentsingle-page .agsi__white-flex .agsi__white-element02 p {
  line-height: 2;
}
.agsi__white-flex .agsi__white-element p.c-agent-heading,
.agsi__white-flex .agsi__white-element h2 {
  color: #08294d;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .agsi__white-flex .agsi__white-element p.c-agent-heading,
  .agsi__white-flex .agsi__white-element h2 {
      font-size: 19px;
  }
}
.agsi__white-flex .agsi__white-element h2,
.agsi__white-flex .agsi__white-element h3 {
  position: relative;
  padding-left: 1rem;
  font-family: 'Noto Serif JP', serif;
  margin: 30px 0 15px;
  font-size: 18px;
  color: #08294d;
  font-weight: bold;
}
.agsi__white-flex .agsi__white-element h2::before,
.agsi__white-flex .agsi__white-element h3::before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  height: 100%;
  width: 5px;
  background: linear-gradient(to bottom right, #0f4b8a, #08294c);
}
.agsi__white-flex .agsi__white-element p {
  line-height: 2;
}


/* about */
.about-page figure img {
  width: 100%;
}
.about-page .about_wrapper01 .link__tenshokusodan {
  display: block;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: 3rem;
}
.about-page .about_wrapper01 .link__tenshokusodan a {
  background-color: #b49660;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 1rem 3rem;
  display: block;
  position: relative;
}
.about-page .about_wrapper01 .link__tenshokusodan a:hover {
  opacity: 0.8;
}
.about-page .about_wrapper01 .link__tenshokusodan a::before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  left: 82%;
  transform: translate(0,-50%) rotate(45deg);
}
.about-page .about_wrapper01 h1,
.about-page .about_wrapper01 h2,
.about-page .about_wrapper01 p {
  color: #fff;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
}
@media screen and (max-width: 768px){
  .about-page .about_wrapper01 h2{
      text-align: center;
  }
  .about-page .about_wrapper01 p {
      text-align: left;
  }
  .about-page .about_wrapper01 .link__tenshokusodan a{
      font-size: 14px;
  }
}
.about-page .about_wrapper01 p  {
  line-height: 2;
}
.about-page .about_wrapper01 {
  padding: 20px 10px 5px;
  background: linear-gradient(to bottom right, #0f4b8a, #08294c);
}
.about-page .about_wrapper01 .about__topcaption {
  text-align: left;
  font-size: 10px;
}
.about-page .about_wrapper01 figure.about-topimg {
  width: 100%;
  max-width: 675px;
  margin: 2.5rem auto;
}
.about-page .about_wrapper02 {
  margin-top: 100px;
  padding: 0 20px;
}
.about-page .about_wrapper02 .el02-box {
  position: relative;
}
.about-page .about_wrapper02 .el02-box figure {
  position: absolute;
  width: clamp(360px,calc(100vw*460 / 1000),670px);
  left: 0;
  z-index: 1;
  top: -30px;
}
.about-page .about_wrapper02 .el02-box:nth-child(odd) figure {
  left: unset;
  right: 0;
}
@media screen and (max-width: 768px){
  .about-page .about_wrapper02 .el02-box figure {
      width: calc(100% + 36px * 2);
      left: -36px;
      top: unset;
      bottom: calc(100% - 50px);
  }
  .about-page .about_wrapper01 {
    padding: 40px 20px 5px;
  }
  .about-page .about_wrapper01 figure.about-topimg {
      margin: 1.5rem auto 2rem;
  }
  .about-page .about_wrapper01 .about__topcaption{
    margin: 0 -10px;
      font-size: 9px;
  }
}
@media screen and (max-width: 768px){
  .about-page .about_wrapper02 .el02-box:nth-child(odd) figure {
      left: -36px;
      right: unset;
  }
}
.about-page .about_wrapper02 .el02-box dl {
  display: block;
  width: clamp(360px,calc(100vw*460 / 1000),670px);
  margin-left: auto;
  background: linear-gradient(to right, #214780, #132C4F);
  padding: 3rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px){
  .about-page .about_wrapper02 .el02-box dl {
      width: 100%;
  }
}
.about-page .about_wrapper02 .el02-box:nth-child(odd) dl {
  margin-left: unset;
  margin-right: auto;
}
.about-page .about_wrapper02 .el02-box dl:not(:first-child){
  margin-top: 7rem;
}
@media screen and (max-width: 768px){
  .about-page .about_wrapper02 .el02-box dl:not(:first-child){
      margin-top: calc(100vw * 350 / 460);
  }
}
.about-page .about_wrapper02 .el02-box dl span {
  color: #fff;
  font-size: 32px;
  font-family: 'Noto Serif JP', serif;
}
.about-page .about_wrapper02 .el02-box dl dt {
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  margin: 1rem 0;
}
.about-page .about_wrapper02 .el02-box dl dd {
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  line-height: 2;
}
.about-page .link__tenshokutoroku {
  display: block;
  margin: 100px auto 0;
  width: fit-content;
}
.about-page .about_wrapper02 .link__tenshokutoroku.link__tenshokutoroku-margintop5 {
  margin-top: 0;
}
.about-page .about_wrapper02 .link__tenshokutoroku.link__tenshokutoroku-margintop2 {
  margin-top: 100px;
}
.about-page .link__tenshokutoroku a {
  background-color: #b49660;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 1rem 3rem;
  display: block;
  position: relative;
}
.about-page .link__tenshokutoroku a:hover {
  opacity: 0.8;
}
.about-page .link__tenshokutoroku a::before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  left: 85%;
  transform: translate(0,-50%) rotate(45deg);
}
.about-page .c-breadcrumb-wrapper{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.about-page .c-about-kvContent{
  width: 100%;
  max-width: 1280px;
  margin: 40px auto 0;
}
@media (max-width: 768px){
.about-page .c-about-kvContent{
    margin-top: 0;
  }
  .about-page .blue-line_h2.blue-line_h2Small{
    font-size: 22px;
  }
  .about-page .link__tenshokutoroku{
    margin-top: 40px;
  }
  .about-page .about_wrapper02 .link__tenshokutoroku.link__tenshokutoroku-margintop2 {
    margin-top: 40px;
  }
}
.about-page .text_wrapper.top_job_title {
  font-size: 35px;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
}
.about-page .about_wrapper02 .text_wrapper.top_job_title{
  color: #08294d;
}
@media screen and (max-width: 768px){
.about-page .text_wrapper.top_job_title {
    font-size: 32px;
  }
  .about-page .about_wrapper02 .text_wrapper.top_job_title{
    font-size: 26px;
  }
}
.about-page .about_wrapper02_inner{
width: 100%;
max-width: 1280px;
margin: 0 auto;
}
.about-page .blue-line_h2 {
  font-size: 24px;
  padding-left: 15px;
  position: relative;
  display: inline-block;
  color: #08294d;
  font-weight: bold;
  margin: 0;
  font-family: 'Noto Serif JP', serif;
}
.about-page .blue-line_h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #0f4b8a, #08294c);
}
.about-page .entry-thasnk-sec2 {
  background-color: #fff;
  padding: 3rem 0;
  margin-bottom: 3rem;
}
.about-page .entry-thasnk-sec2 ul {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
.about-page .entry-thasnk-sec2 ul {
      flex-wrap: wrap;
  }
}
.about-page .entry-thasnk-sec2 ul li {
  width: calc((100% - 4.5rem) / 4);
}
@media screen and (max-width: 768px){
.about-page .entry-thasnk-sec2 ul li {
      width: 100%;
  }
}
.about-page .entry-thasnk-sec2 ul {
  margin-top: 1rem;
}
.about-page .entry-thasnk-sec2 ul li dl dt {
  display: flex;
  color: #08294d;
  align-items: center;
  gap: 1rem;
  font-weight: bold;
}
.about-page .entry-thasnk-sec2 ul li dl dt span {
  background: linear-gradient(135deg, #0f4b8a, #08294c);
  color: #fff;
  font-size: 11px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .entry-thasnk-sec2 ul li dl dd {
  line-height: 1.5;
  padding-top: 1rem;
}
.about-page .entry-thanks-page2 {
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
.about-page .entry-thanks-page2  {
      padding: 0;
  }
}
.about-page .aboutpage-otherservice {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 4rem;
  gap: 3rem;
  margin-top: 25px;
}
.about-page .aboutpage-otherservice .aboutpage-otherservice__div {
  width: calc((100% - 3rem) / 2);
}
.about-page .aboutpage-otherservice .aboutpage-otherservice__div p{
color: #333;
line-height: 1.75;
}
@media screen and (max-width: 768px){
  .about-page .aboutpage-otherservice .aboutpage-otherservice__div {
      width: 100%;
      margin-top: 30px;
      padding-top: 30px;
      border-top: 1px solid #e8e8e8;
  }
  .about-page .aboutpage-otherservice .aboutpage-otherservice__div:first-child{
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}
.about-page .aboutpage-otherservice .aboutpage-otherservice__div h3 {
  color: #08294d;
  margin: 20px 0 15px;
  font-weight: bold;
  font-size: 16px;
}
.about-page .aboutpage-otherservice .aboutpage-otherservice__div figure {
  height: 40px;
}
.about-page .aboutpage-otherservice .aboutpage-otherservice__div figure img {
  height: 100%;
  object-fit: contain;
  width: fit-content;
}
@media screen and (max-width: 768px){
.about-page .aboutpage-otherservice .aboutpage-otherservice__div figure{
  height: auto;
  text-align: center;
}
  .about-page .aboutpage-otherservice .aboutpage-otherservice__div figure img {
      width: 100%;
  }
  .about-page .aboutpage-otherservice{
    display: block;
    padding: 2rem 1rem;
  }
}
.c-about-kvContent .text_wrapper.top_job_title{
  margin-bottom: 20px;
}
.c-about-content{
  margin-top: 150px;
}
.c-about-item{
  margin-top: 170px;
  position: relative;
}
.c-about-content .c-about-item:first-child{
  margin-top: 0;
}
.c-about-item__img{
  width: 52.35%;
  max-width: 670px;
  position: absolute;
  top: -70px;
  left: 0;
}
.c-about-item__img img{
  width: 100%;
  vertical-align: bottom;
}
.c-about-item__txt{
  width: 50.79%;
  max-width: 650px;
  margin-left: auto;
  position: relative;
  z-index: 10;
}
.c-about-item__txt{
  background: linear-gradient(to bottom right, #0f4b8a, #08294c);
  padding: 60px 60px 90px;
}
.c-about-item__reverse .c-about-item__img{
  left: auto;
  right: 0;
}
.c-about-item__reverse .c-about-item__txt{
  margin-left: initial;
  margin-right: auto;
}
.c-about-item__txt p{
  color: #fff;
}
.c-about-item__num{
  font-family: "EB Garamond", sans-serif;
  font-size: 40px;
}
.c-about-item__heading{
  margin-top: 30px;
  font-family: 'Noto Serif JP', serif;
  font-size: 25px;
}
.c-about-item__lead{
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.75;
}
@media screen and (max-width: 768px){
  .about-page .about_wrapper02{
    margin-top: 40px;
    padding: 0;
  }
  .c-about-content{
    margin-top: 40px;
  }
  .c-about-item__txtInner{
    padding: 40px 30px;
  }
  .c-about-item__img{
    width: 100%;
    max-width: none;
  }
  .c-about-item__txt{
    padding: 0;
    width: calc(100% - 40px);
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .c-about-item__reverse .c-about-item__txt{
    margin-left: auto;
  }
}
.c-heading.c-heading__line h2 {
  font-family: 'Noto Serif JP', serif;
}
@media screen and (max-width: 481px){
  .c-consultation-list ul li {
    width: calc(50% - 5px);
  }
}
.c-consultation-list__about{
  margin-top: 25px;
  max-width: unset;
}
.c-otherservice{
  margin-top: 100px;
  padding: 0 20px;
}
.c-otherservice__inner{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 0;
}
@media screen and (max-width: 768px){
  .c-otherservice{
    margin-top: 40px;
  }
}


/* entry */
.entry-page h1,
.entry-page h2 {
  color: #214780;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 1rem;
}
.entry-page .contents_box__caption {
  line-height: 2;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .entry-page .contents_box__caption  {
      margin-bottom: 0;
  }
}
.entry-page{
  padding: 100px 20px;
}
.entry-page .contents_box {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  gap: 5rem;
  /* padding: 5rem 20px 0; */
  padding: 0;
  width: 100%;
  max-width: 1150px;
}
@media screen and (max-width: 768px){
  .entry-page{
    padding: 50px 20px;
  }
}
@media screen and (max-width: 768px){
  .entry-page .contents_box {
      flex-direction: column;
      gap: 2rem;
  }
}
.entry-page .contents_box .contents_box__flex:first-child {
  width: 47.83%;
  max-width: 550px;
}
.entry-page .contents_box .contents_box__flex:nth-child(2){
  width: 41.74%;
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  main.entry-page .contents_box .contents_box__flex:first-child, main.entry-page .contents_box .contents_box__flex:nth-child(2) {
      width: 100%;
      max-width: none;
  }
}
.entry-page .contents_box__flex .entry__box {
  background-color: #fff;
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  .entry-page .contents_box__flex .entry__box {
      margin: 0 auto 2rem;
  }
  .entry-page .contents_box__flex .entry__box{
    max-width: none;
  }
}
.entry-page .entry__feature {
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 2rem 0.5rem;
}
.c-notes__entry{
  margin-top: 1.5rem;
  color: #4d4d4d;
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .entry-page .entry__feature {
    margin-top: 15px;
    padding: 30px 20px 5px;
  }
  .c-notes__entry{
    font-size: 9px;
  }
}
.entry-page hr {
  margin-block-start: 0;
  margin-block-end: 0;
  margin: 0;
  border-top: 1px solid #e8e8e8;
}
.entry-page hr.hr-margin {
  margin: 1rem 0;
}
.entry-page .entry__feature h2,
.entry-page .entry__feature h3 {
  color: #214780;
  font-size: 18px;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  margin: 1rem;
  font-weight: bold;
}
.entry-page .entry__feature h2:first-child,
.entry-page .entry__feature h3:first-child {
  margin-bottom: 30px;
  margin-top: 0;
}
.entry-page .entry__feature h2:not(:first-child),
.entry-page .entry__feature h3:not(:first-child){
  margin-top: 40px;
}
.entry-page .entry__feature .entry__feature-img {
  width: 100%;
  margin: 0 auto;
}
.entry-page figure img {
  width: 100%;
}
.entry-page .taboff {
  display: none;
}
.entry-page .tabon {
  display: block;
}
.entry-page .contents_box__flex .entry__box .tab__box form .tab p {
  line-height: 2;
  font-weight: bold;
}
.entry-page .contents_box__flex .entry__box .tab__box form .tab p a {
  text-decoration: underline;
  color: #2e7bbe;
}
@media screen and (max-width: 768px){
  .entry-page .contents_box__flex .entry__box .tab__box form .tab p a {
      text-align: center;
  }
}
.entry-page .entry-flex {
  display: flex;
  gap: 1rem;
}
.entry-page .entry-flex.entry-flex_jc-sb {
  justify-content: space-between;
}
.entry-page .entry-flex.entry-flex_jc-sb>div:first-child {
  min-width: 140px;
}
.entry-page label:hover {
  cursor: pointer;
  opacity: 0.8;
}
.entry-page label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  outline: none;
  padding: 0!important;
  display: block;
}
.entry-page input[type="checkbox"] {
  display: inline-block;
  width: fit-content;
}
.entry-page label.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 50px;
}
.entry-page .radio-label input[type="radio"]:checked::before {
content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #214780, #132C4F);
}
.entry-page .contents_box .entry__box h2,
.entry-page .contents_box .entry__box h3 {
  color: #fff;
  background: linear-gradient(to bottom right, #0f4b8a, #08294c);
  text-align: center;
  padding: 0.8rem;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-weight: bold;
}
.entry-page .contents_box .entry__box ol {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-family: 'Noto Serif JP', serif;
  padding-top: 2rem;
  background-color: #fff;
  margin-bottom: 10px;
}
.entry-page .contents_box .entry__box ol li {
  color: #333;
  font-size: 15px;
  font-weight: bold;
  opacity: 0.4;
  font-family: "EB Garamond", sans-serif;
}
.entry-page .contents_box .entry__box ol li.current_step {
  color: #08294d;
  opacity: 1;
}
.entry-page .contents_box .entry__box .tab__box {
  background-color: #fff;
  padding: 1rem;
}
.entry-page .contents_box .entry__box .tab p span {
  color: #b62122;
}
.entry-page .contents_box .entry__box .tab.step1 label {
  font-weight: bold;
}
.entry-page .contents_box .entry__box .tab.step1 .choice-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #f2f2f1;
  padding: 1.5rem;
  margin-top: 0.7rem;
  border: 1px solid #999;
}
.entry-page .contents_box .entry__box .tab.step4 .step4-agreebtn {
  width: fit-content;
  margin: 0 auto;
}
.entry-page .btn-prenext {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px){
  .entry-page .btn-prenext {
      flex-direction: column-reverse;
      gap: 1rem;
      margin-top: 1rem;
  }
}
.entry-page .prestep_btn {
  appearance: unset;
  border: none;
  background: none;
  border-bottom: 1px solid #333;
  position: relative;
  padding-left: 1rem;
  font-size: 13px;
  color: #333;
}
.entry-page .prestep_btn::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(-45deg);
}
.entry-page .nextstep_btn {
  background-color: #b0935f;
  color: #fff;
  width: 200px;
  border: none;
  padding: 1rem;
  margin-left: auto;
  display: block;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .entry-page .nextstep_btn {
      margin: 0 auto;
  }
}

.entry-page input[type="text"], .entry-page input[type="email"], .entry-page input[type="tel"] , .entry-page select{
  border: none;
  background: #f2f2f2;
  border-radius: 0;
  padding: 1rem;
  height: 50px;
  width: 100%;
  border: 1px solid #999;
}
.entry-page input[type="tel"] {
  width: 100%;
}
.entry-page .birthday-select  {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.entry-page .birthday-select select {
  width: calc((100% - 10px) / 3);
  border: none;
  background: #f2f2f2;
  height: 50px;
  border: 1px solid #999;
}
