@charset "utf-8";

/*共通*******************************************************************/

/*ページ共通********/

/**page-header*********************************/

.page-header {
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: 600px;
	background-size: cover;
	background-position: center;
}
.header-wrapper {
	position: relative;
}
.page-ttl {
	display: inline-block;
	padding: 20px 0 0 40px;
	line-height: 1.4;
	letter-spacing: 0.4em;
	border-radius: 20px 0 0 0;
	background: #fff;
	position: absolute;
	right: 0;
	bottom: 0;
}

.page-ttl .en_ttl {
	display: none;
}

/**breadcrumbs**/
.breadcrumbs {
	font-size: 12px;
	color: #666;
	padding-top: 10px;
	padding-bottom: 10px;
	position: relative;
	z-index: 2;
}


@media(max-width:991px){
	.breadcrumbs {
		order: 3;
		margin-top: 10px;
		margin-left: auto;
		margin-right: 0;
	}
	.page-ttl {
		position: relative;
		padding: 10px 0 0 0;
		letter-spacing: 0;
	}
	.page-ttl h1 {
		font-size: 24px;
	}
}


/**シンプルヘッダー*********************************/


.no_kv_header h1 {
	position: relative;
	margin-bottom: 30px;
}
.no_kv_header h1:after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 0;
	left: 0;
	bottom: -30px;
	margin: 0 auto;
	background-image: url(../images/dot_pink.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

@media (max-width: 500px) {
	.no_kv_header h1 {
		margin-bottom: 20px;
	}
	.no_kv_header h1:after {
		width: 15px;
		height: 15px;
		bottom: -20px;
	}
}


/************************************************************
問い合わせフォーム
************************************************************/
.contact .page-header {
	background-image: url(../images/contact-header.webp);
}


#mail_form dl {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
#mail_form dl:last-child {
	margin-bottom: 0;
}
#mail_form dl dt {
	width: 250px;
	font-weight: 500;
	padding-left: 15px;
}
#mail_form dl dd {
	width: calc(100% - 250px);
}

.require {
	position: relative;
}
.require:after {
	content: "*";
	display: inline-block;
	color: red;
	position: absolute;
	top: 2px;
	left: 0;
}
span.require {
	padding-left: 15px;
}

#mail_form input[type="text"], #mail_form input[type="email"], #mail_form input[type="tel"],#mail_form textarea, #classification{
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #cccccc;
    color: #222;
    font-size: 16px;
}
#mail_form input[type="number"]{
    width: 100px;
    padding: 15px 10px;
    border: 1px solid #cccccc;
    color: #222;
    font-size: 16px;
}
.p-postal-code {
	width:150px !important;
}
#zipcode, #classification {
	max-width: 200px !important;
}
/* Chrome, Safari */
input::-webkit-input-placeholder{
    color: #999;
}
/* Firefox */
input::-moz-placeholder{
    color: #999;
}
/* Firefox 18以前 */
input:-moz-placeholder{
    color: #999;
}
/* IE */
input:-ms-input-placeholder{
    color: #999;
}
#mail_form .wpcf7-list-item {
	display: block;
}

/*チェックボックスStyle*/
.check .wpcf7-list-item input[type="checkbox"]{
  display: none;
}
.check .wpcf7-list-item-label {
  position: relative;
  padding-left: 33px;
}
		
.check .wpcf7-list-item-label:before{
  width: 20px;
  height: 20px;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  border: 1px solid #c3c3c3;
  border-radius: 2px;
}

.wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 9px;
    margin-top: -9px;
    top: 50%;
    left: 3px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color:  #ED1D24;
}

span.wpcf7-list-item{
  margin-left: 0!important;
  margin-right: 20px!important;
}


/*RadioボタンStyle*/
.radio .wpcf7-list-item input[type="radio"]{
  display: none;
}
.radio .wpcf7-list-item-label {
  position: relative;
  padding-left: 33px;
}
		
.radio .wpcf7-list-item-label:before{
  width: 20px;
  height: 20px;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
}

.radio .wpcf7-list-item-label:after{
	content: '';
	display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
   border: 4px solid #00a1d6;
    position: absolute;
    left: 2px;
    top: 2px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}
.wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label:after {
    opacity: 1;
}

span.wpcf7-list-item{
  margin-left: 0 !important;
  margin-right: 20px !important;
}
span.wpcf7-list-item.last {
	margin-right: 0 !important;
}

#mail_form input[type="submit"] {
	display: block;
	width: 100%;
	height: 100%;
	background: none;
	border: none;
	color:#019FE6;
	font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.wpcf7-spinner {
	display: none;
}

#mail_form #amount{
    width: calc(100% - 50px);
}


/* セレクトフィールドのデザイン（ブルー矢印） */
#mail_form select.wpcf7-form-control, #birth-year {
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #cccccc;
    color: #222;
    font-size: 16px;
    background: #fff;
    appearance: none; /* デフォルトの矢印を非表示 */
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23019FE6' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 30px; /* 矢印分のスペース確保 */
    cursor: pointer; /* カーソルをポインターに設定 */
}

/*生年月日フィールドのスタイル*/
#birth-year {
    padding: 15px 10px;
    border: 1px solid #cccccc;
    color: #222;
    font-size: 16px;
}
#bd-field {
	display: flex;
	justify-content: space-between;
}
.bd-item {
	width: 32%;
}
.bd-item select {
	width: calc(100% - 1.5em) !important;
}


/*個人情報保護方針のスタイル*/
#mail_form dl.privacy-policy-wrapper dd {
	width: 100%;
}
#mail_form .rule {
	padding: 20px;
	border: 1px solid #cccccc;
	height: 200px;
	overflow: scroll;
}
.check-disabled {
	opacity:0.3;
}


.grecaptcha-badge { 
    visibility: hidden; 
}

@media(min-width:768px){
#mail_form input[type="submit"]:hover {
	background-color: #fff;
  color: #2FB6C7 !important;
}
}




@media (max-width:767px) {
	#mail_form dl dt, #mail_form dl dd {
		width: 100%;}
	#mail_form dl dt {
		margin-bottom: 10px;}
	#mail_form dl dt.required {
		padding-left: 45px;}
	p#form_submit input[type="submit"] {
        width: 200px;
    	height: 50px;
    	border-radius: 25px;}
}


.gmap{
    position : relative;
    height : 0;
    padding-bottom : 40%;
    overflow : hidden;
}
 
.gmap iframe,
.gmap object,
.gmap embed{
    position : absolute;
    top : 0;
    left : 0;
    width : 100%;
    height : 100%;
}

@media (max-width:767px) {
	.table_item {
		padding: 10px 0;
		width: 80px;
		font-size: 13px;}
	.table_content {
		padding: 10px 0 10px 10px;
		width: calc(100% - 80px);
		font-size: 13px;}
	.gmap{
		padding-bottom : 60%; }
	}


/************************************************************
プライバシーポリシー・免責事項
************************************************************/
.privacy-policy .page-header {
	background-image: url(../images/privacy-policy-header.webp);
}
.disclaimer .page-header {
	background-image: url(../images/disclaimer-header.webp);
}


/* 法的文書の共通スタイル */
.legal-document {
  max-width: 800px;
  margin: 2rem auto;
  line-height: 1.8;
  color: #333;
}

/* アンカーリンクの高さ調整（固定ヘッダー対策） */
.legal-document section {
  margin-bottom: 2rem;
  scroll-margin-top: 120px; /* ヘッダーの高さに合わせて調整 */
}

.legal-document h2 {
  font-size: 18px;
  margin-bottom: 0.75rem;
}

.legal-document ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-document address {
  font-style: normal;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 5px;
	margin-top: 10px;
}

/************************************************************
インバウンド業務
************************************************************/
.inbound .page-header {
	background-image: url(../images/inbound-header.webp);
	background-position: center top;
}


/** #inbound_02 *****/

#inbound_02 {
	background: linear-gradient(158deg, #7BC2D4 0%, #0090D1 75%);
}

.box-ttl {
	padding: 10px 40px;
	border-radius:20px 20px 0 0;
	line-height: 1.5;
}

.box-ttl-01 {
	background-color: #1473C0;
}
.box-ttl-02 {
	background-color: #03B7F8;
}
.box-ttl-03 {
	background-color: #2ED7F5;
}

.before-after {
	padding: 30px 40px;
	background: #fff;
	border-radius:0 0 20px 20px ;
}

.before, .after {
	width: 40%;
}

.ttl-maru {
	width:95px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}
.ttl-txt {
	width: calc(100% - 105px);
}

.before .ttl-maru {
	background: #ADCBD9;
}
.after .ttl-maru {
	background: #B71A36;
}

/** #inbound_03 *****/
.gry-box {
	background: #f0f8fb;
	padding: 40px;
	border-radius: 16px;
}

/** #inbound_04 *****/
.wht-box {
	width: 28%;
	padding: 20px;
	border-radius: 14px;
	background: #fff;
}

/** #inbound_05 *****/
#inbound_05 h3 {
	padding: 10px 30px;
	background: #52A1CE;
}

.case-study-inner {
	padding: 60px;
}

.case-study-cont {
	flex-grow: 1;
	margin-left: 30px;
}

.case-study-before, .case-study-after {
	padding: 40px;
	border-radius: 16px;
}

/** #inbound_06 *****/
#inbound_06 ul li {
	border-radius: 16px;
	overflow: hidden;
}

.plan {
	background: #0692C9;
	color: #fff;
	padding: 5px 0;
}

.plan-inner {
	padding: 10px 30px 30px;
}

.maru-item {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #0692C9;
}
.plan-item {
	width: calc(100% - 60px);
	flex-grow: 1;
	margin-left: 10px;
}

/** #cta *****/
#cta {
	background: #ECF2F1;
}


@media(max-width:991px){
	#inbound_01 .txt-70, #inbound_02 .txt-80 {
		font-size: 36px;
	}
	#inbound_01 .txt-56, #inbound_02 .txt-60, #inbound_03 .txt-50, #inbound_04 .txt-50, #inbound_06 .txt-50, #inbound_07 .txt-50 {
		font-size: 28px;
	}
	#inbound_02 .txt-50 {
		font-size: 22px;
	}
	#inbound_01 .txt-30 {
		font-size: 16px;
	}
	#inbound_05 h4 {
		font-size: 18px;
	}
	.box-ttl {
		padding: 10px 15px;
		border-radius:10px 10px 0 0;
	}
	.box-ttl img {
		width: 55px;
		height: 55px;
	}
	.before-after {
		border-radius:0 0 10px 10px;
		padding: 20px 15px;
		flex-direction: column;
		align-items: center;
	}
	.before, .after {
		width: 100%;
	}
	.ttl-maru {
		width:70px;
	}
	.ttl-txt {
		width: calc(100% - 80px);
	}
	.arrow-wrapper img {
		transform:rotate(90deg);
		margin: 20px 0;
	}
	#inbound_03 .gry-box {
		padding: 20px;
		border-radius: 10px;
	}
	#inbound_03 .gry-box .txt-60 {
		line-height: 1.5;
		font-size: 28px;
	}
	#inbound_03 .gry-box .txt-40 {
		line-height: 1.5;
		font-size: 24px;
	}
	#inbound_03 .gry-box h3 {
		margin-bottom: 10px;
	}
	.wht-box {
		width: 100%;
	} 
	#inbound_04 .flex-between {
		flex-direction:column;
		align-items: center;
	}
	#inbound_05 .per-40 {
		text-align: center;
		margin-bottom: 20px;
	}
	#inbound_05 .per-40 img {
		width: 80%;
		max-width: 400px;
	}
	.case-study-inner {
    padding: 20px;
	}	
	.case-study-before, .case-study-after {
		flex-direction: column;
		align-items: center;
		row-gap: 20px;
		padding: 20px;
		border-radius: 10px;
	}
	.case-study-cont {
		margin-left: 0;
	}
	.case-study-before img, .case-study-after img {
		width: 200px;
		height: auto;
		transform: translateX(-12px);
	}
	#inbound_06 ul {
		row-gap: 30px;
	}
	#inbound_06 ul li {
		width: 100%;
		border-radius: 10px;
	}
	.plan-inner {
    padding: 10px 20px 20px;
	}

}


/************************************************************
アウトバウンド業務
************************************************************/
.outbound .page-header {
	background-image: url(../images/outbound-header.webp);
	background-position: center 65%;
}

/**ベースカラーの置き換え**/
.outbound #content .blu {
	color: #05a97e;
}
.outbound #content .bg-blu {
	background-color: #05a97e;
}

#outbound_02 {
	background: linear-gradient(158deg, #64bf9e 0%, #00bc91 75%);
}

.outbound .box-ttl-01 {
	background-color: #108c90;
}
.outbound .box-ttl-02 {
	background-color: #05a97e;
}
.outbound .box-ttl-03 {
	background-color: #1ad683;
}

.outbound .ttl-border {
    border-color: #05a97e;
}

.outbound .gry-box{
    background-color: #f0fbf2;
}
.outbound .bg-sax {
    background-color: #ccede0;
}

.border-box {
	row-gap:30px;
}

.border-box li {
	border: 3px solid;
	border-radius: 14px;
	overflow: hidden;
}
.border-box h3 {
	padding: 0 30px;
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	line-height: 1.5;
}
.outbound .border-box h3 {
	background-color: #05a97e;
}
.border-box p {
	padding: 10px 30px 30px;
}
.outbound .border-box li {
	border-color: #05a97e;
}

#outbound_05 h3 {
    padding: 10px 30px;
    background: #05a97e;
}

#outbound_06 ul li {
	border-radius: 16px;
	overflow: hidden;
}

.outbound .plan {
    background: #05a97e;
}
.outbound .maru-item {
    background: #05a97e;
}

.outbound #cta .blu {
	color: #019FE6;
}


@media(max-width:991px){
	#outbound_01 .txt-70, #outbound_02 .txt-80 {
		font-size: 36px;
	}
	#outbound_01 .txt-56, #outbound_02 .txt-60, #outbound_03 .txt-50, #outbound_04 .txt-50, #outbound_05 .txt-50, #outbound_06 .txt-50, #outbound_07 .txt-50 {
		font-size: 28px;
	}
	#outbound_02 .txt-50 {
		font-size: 22px;
	}
	#outbound_01 .txt-30 {
		font-size: 16px;
	}
	#outbound_05 h4 {
		font-size: 18px;
	}
	#outbound_03 .gry-box {
		padding: 20px;
		border-radius: 10px;
	}
	#outbound_03 .gry-box h3 span {
		line-height: 1.5;
		font-size: 26px;
	}
	#outbound_03 .gry-box h3 {
		margin-bottom: 10px;
	}
	#outbound_03 h3 {
		margin-bottom: 10px;
	}
	#outbound_03 .txt-60 {
		font-size: 36px;
		line-height:1.5;
	}
	#outbound_03 .txt-40 {
		font-size: 24px;
		line-height:1.5;
	}
	#outbound_04 .flex-between {
		flex-direction:column;
		align-items: center;
	}
	#outbound_05 .per-40 {
		text-align: center;
		margin-bottom: 20px;
	}
	#outbound_05 .per-40 img {
		width: 80%;
		max-width: 400px;
	}
	#outbound_06 ul {
		row-gap: 30px;
	}
	#outbound_06 ul li {
		width: 100%;
		border-radius: 10px;
	}
	.border-box li {
		width: 100%;
	}
	.border-box h3 {
		padding: 0 20px;
		height: 75px;
		font-size: 22px;
	}
	.outbound .border-box h3 {
		padding: 10px 20px;
		height: auto;
	}
	.border-box p {
    padding: 10px 20px 20px;
	}
}


/************************************************************
事務代行
************************************************************/
.office-work .page-header {
	background-image: url(../images/office-work-header.webp);
	
}

/**ベースカラーの置き換え**/
.office-work #content .blu {
	color: #c21141;
}
.office-work #content .bg-blu {
	background-color: #c21141;
}

#office-work_02 {
	background: linear-gradient(158deg, #e16d85 0%, #eaa4ba 75%);
}

.office-work .box-ttl-01 {
	background-color: #da3663;
}
.office-work .box-ttl-02 {
	background-color: #c21141;
}
.office-work .box-ttl-03 {
	background-color: #a0000c;
}

.office-work .ttl-border {
    border-color: #c21141;
}

.office-work .gry-box{
    background-color: #f0fbf2;
}
.office-work .bg-sax {
    background-color: #fad7e4;
}

.office-work .border-box li {
	border: 3px solid;
	border-radius: 14px;
	overflow: hidden;
}

.office-work .border-box h3 {
	background-color: #c21141;
}
.office-work .border-box p {
	padding: 10px 30px 30px;
}
.office-work .border-box li {
	border-color: #c21141;
}

#office-work_05 h3 {
    padding: 10px 30px;
    background: #c21141;
}

#office-work_06 ul li {
	border-radius: 16px;
	overflow: hidden;
}

.office-work .plan {
    background: #c21141;
}
.office-work .maru-item {
    background: #c21141;
}

.office-work #cta .blu {
	color: #019FE6;
}

@media(max-width:991px){
	#office-work_01 .txt-70, #office-work_02 .txt-80 {
		font-size: 36px;
	}
	#office-work_01 .txt-56, #office-work_02 .txt-60, #office-work_03 .txt-50, #office-work_04 .txt-50, #office-work_05 .txt-50, #office-work_06 .txt-50, #office-work_07 .txt-50 {
		font-size: 28px;
	}
	#office-work_02 .txt-50 {
		font-size: 21px;
	}
	#office-work_01 .txt-30 {
		font-size: 16px;
	}
	#office-work_05 h4 {
		font-size: 18px;
	}
	#office-work_03 .gry-box {
		padding: 20px;
		border-radius: 10px;
	}
	#office-work_03 .gry-box h3 span {
		line-height: 1.5;
		font-size: 26px;
	}
	#office-work_03 .gry-box h3 {
		margin-bottom: 10px;
	}
	#office-work_04 .flex-between {
		flex-direction:column;
		align-items: center;
	}
	#office-work_05 .per-40 {
		text-align: center;
		margin-bottom: 20px;
	}
	#office-work_05 .per-40 img {
		width: 80%;
		max-width: 400px;
	}
	#office-work_06 ul {
		row-gap: 30px;
	}
	#office-work_06 ul li {
		width: 100%;
		border-radius: 10px;
	}
}


/************************************************************
Q&A
************************************************************/

.faq .page-header {
	background-image: url(../images/faq-header.webp);
	
}

/* ===== FAQ レイアウトのベース ===== */

.faq-list li {
	padding: 23px 0;
	border-bottom: 1px dashed #ccc;
}
.faq-list li:first-child {
	border-top: 1px dashed #ccc;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  display: block;
  padding: 16px 50px 16px 90px; /* 左にアイコン分の余白 */
  cursor: pointer;
  font-size: 24px;
	font-weight: 700;
  line-height: 1.7;
  position: relative;
}


/* Qアイコン（左の丸） */
.faq-toggle::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0091d4;
  color: #fff;
  font-size: 32px;
	font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 右端の開閉矢印 */
.faq-toggle::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #64B4C3;
  border-right: 3px solid #64B4C3;
  transform: translateY(-50%) rotate(135deg); /* ▼風 */
  transition: transform .2s ease;
}

/* open時（▲風に反転） */
.faq-item.open .faq-toggle::after {
  transform: translateY(-50%) rotate(-45deg);
}

/* ===== A部分（薄い水色のボックス） ===== */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-a__inner {
  position: relative;
  margin-top: 8px;
  padding: 30px 24px 30px 90px; /* 左にAアイコン分の余白 */
  background: #F0F7F8;
  border-radius: 12px;
  color: #333;
  line-height: 1.7;
  font-size: 18px;
	font-weight: 500;
}
.bg-bgry .faq-a__inner {
	background: #fff;
}

/* Aアイコン */
.faq-a__inner::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #B71A36;
  color: #fff;
  font-size: 32px;
	font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

#reform-faq {
	background-color: #DDF2F6;
}

.maker-hp-link-ttl span {
	background: #F0F7F8;
	padding: 0 10px;
	position: relative;
	z-index: 1;
}
.maker-hp-link-ttl {
	position: relative;
}
.maker-hp-link-ttl:before {
	content: "";
	display: block;
	width: 100%;
	border-top: 1px solid #3B8491;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
}

.maker-hp-link-logo {
	max-width: 210px;
}

.maker-hp-link {
	row-gap: 20px;
}

.maker-links a {
	display: inline-block;
	position: relative;
	padding-left: 26px;
}
.maker-links a:before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url(../images/arrow_01.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 4px;
	left: 0;
}
.maker-links {
	row-gap: 10px;
}

@media(max-width:767px){
	.faq-list li {
		padding: 10px 0;
	}
	.faq-toggle {
  	padding: 10px 33px 10px 60px; /* 左にアイコン分の余白 */
  	font-size: 18px;
		line-height: 1.5;
	}
	.faq-toggle::before {
  	left: 10px;
  	width: 40px;
  	height: 40px;
  	font-size: 24px;
	}
	.faq-toggle::after {
  	right: 10px;
	}
	.faq-a__inner {
  	padding: 20px 15px 20px 60px; /* 左にAアイコン分の余白 */
  	border-radius: 12px;
  	font-size: 15px;
	}
	.faq-a__inner::before {
  	left: 10px;
  	top: 10px;
  	width: 40px;
  	height: 40px;
  	font-size: 24px;
	}
}

@media(max-width:500px){
	.maker-hp-link {
		flex-direction: column;
		align-items: center;
	}
	.maker-hp-link .per-25 {
		width: auto;
	}
}


/************************************************************
会社概要
************************************************************/

.company .page-header {
	background-image: url(../images/company-header.webp);
}

.ttl_side_border2 {
	line-height: 1.3;
	padding-left: 0.4em;
	border-left: 4px solid #019FE6;
	letter-spacing: 0.15em;
}
.table_01 li {
	border-bottom: 1px dotted #019FE6;
	display: flex;
	flex-wrap: wrap;
}
.table_01 li:last-child {
	border-bottom: none;
}
.table_01 {
	border-top: 2px solid #019FE6;
	border-bottom: 2px solid #019FE6;
}
.table_01 .label {
	color: #019FE6;
	font-weight: 600;
	width: 30%;
	background: rgba(40,197,250,0.1);
	padding: 10px 30px;
}
.table_01 .value {
	width: 70%;
	padding: 10px 30px;
}
.branch {
	padding: 10px 30px;
	border-top: 2px solid #019FE6;
	border-bottom: 2px solid #019FE6;
}

@media(max-width:767px){
	.table_01 .label {
		width: 100%;
		padding: 10px 10px;
	}
	.table_01 .value {
		width: 100%;
		padding: 10px 10px;
	}
}


/************************************************************
採用情報
************************************************************/
.recruit .page-header {
	background-image: url(../images/newgrad_header.webp);
}

.recruit-half {
	width: calc(50% - 40px);
}

@media(max-width:991px){
	#recruit_01 .txt-56 {
		font-size: 25px;
	}
	#recruit_01 .txt-70 {
		font-size: 36px;
	}

	#recruit_01 .txt-30 {
		font-size: 16px;
	}
}

@media(max-width:767px){
	#recruit_02 .half, #recruit_02 .recruit-half {
		width: 100%;
	}
	#recruit_02 .flex-between {
		row-gap: 20px;
		margin-bottom: 40px;
	}
	#recruit_02 .flex-between.last {
		margin-bottom: 0;
	}
	
}




/************************************************************
個人情報保護方針
************************************************************/

        .privacy-container h2 {
            font-size: 22px;
            color: #111;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-left: 10px;
            border-left: 5px solid #005bac;
        }
        .privacy-container h3 {
            font-size: 16px;
            color: #005bac;
            margin-top: 30px;
            margin-bottom: 12px;
        }
        .privacy-container h4 {
            font-size: 15px;
            color: #333;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        .privacy-container .lead-text {
            font-size: 15px;
            margin-bottom: 25px;
            text-align: justify;
        }
        .privacy-container .alert-text {
            color: #c00;
            font-weight: bold;
            font-size: 14px;
        }
        .privacy-container .policy-list {
            padding-left: 20px;
            margin-bottom: 30px;
        }
        .privacy-container .policy-list li {
            margin-bottom: 15px;
            text-align: justify;
        }
        .privacy-container ul {
            padding-left: 20px;
            margin: 5px 0;
        }
        .privacy-container ul li {
            margin-bottom: 5px;
        }
        .privacy-container .measures-list dt {
            font-weight: bold;
            color: #333;
            margin-top: 15px;
        }
        .privacy-container .measures-list dd {
            margin-left: 0;
            margin-bottom: 15px;
            text-align: justify;
        }
        .privacy-container .date-info {
            text-align: right;
            font-size: 14px;
            color: #666;
            margin: 30px 0;
        }
        .privacy-container .date-info .company-name {
            font-size: 16px;
            color: #111;
            font-weight: bold;
            margin-top: 10px;
        }
        .privacy-container .contact-box {
            background-color: #f2f7fa;
            border: 1px solid #cfe2fe;
            padding: 20px;
            border-radius: 6px;
            margin: 25px 0;
        }
        .privacy-container .contact-box ul {
            list-style: none;
            padding-left: 0;
        }
        .privacy-container .gray-box {
            background-color: #f8f9fa;
            border: 1px solid #e9ecef;
            padding: 20px;
            border-radius: 6px;
            margin-bottom: 20px;
        }
        .privacy-container .gray-box p {
            margin: 5px 0;
        }
        .privacy-container .font-large {
            font-size: 16px;
        }
        .privacy-container .sub-card {
            border: 1px solid #e0e0e0;
            padding: 15px 20px;
            border-radius: 4px;
            margin-bottom: 15px;
            background-color: #fff;
        }
        .privacy-container .sub-card h4 {
            margin-top: 0;
            color: #444;
        }
        .privacy-container .section-divider {
            border: 0;
            height: 1px;
            background: #ccc;
            margin: 40px 0;
        }
        .privacy-container .purpose-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 30px;
            font-size: 14px;
        }
        .privacy-container .purpose-table th, 
        .privacy-container .purpose-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
            vertical-align: top;
        }
        .privacy-container .purpose-table th {
            background-color: #f4f4f4;
            font-weight: bold;
        }
        .privacy-container .purpose-table tbody th {
            width: 30%;
            background-color: #fff;
            color: #333;
            font-weight: bold;
        }
        .privacy-container .purpose-table tbody td {
            width: 70%;
        }
        @media (max-width: 768px) {
            .privacy-container {
                padding: 20px;
                margin: 20px 10px;
            }
            .privacy-container .purpose-table, 
            .privacy-container .purpose-table thead, 
            .privacy-container .purpose-table tbody, 
            .privacy-container .purpose-table th, 
            /* ↓ 詳細度を上げて通常時スタイルに勝てるように、セレクタを細かく指定します */
            .privacy-container .purpose-table tbody th,
            .privacy-container .purpose-table tbody td, 
            .privacy-container .purpose-table tr {
                display: block !important;
                width: 100% !important;
                box-sizing: border-box;
            }
            .privacy-container .purpose-table thead {
                display: none !important;
            }
            .privacy-container .purpose-table tbody th {
                width: 100% !important;
                background-color: #f2f7fa;
            }
            .privacy-container .purpose-table tbody td {
                width: 100% !important;
            }
            .privacy-container .purpose-table tr {
                margin-bottom: 15px;
                border: 1px solid #ccc;
            }
        }