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


/*********************************************ＰＣレイアウト********************************************/

@media screen and (min-width: 1536px){

body {
	margin-top: 85px; /* メニューの高さと同じ値を指定 */
	
}

.bxslider__container{
	background-color: #FFFFFF;
	text-align:center;
	position: relative;
	overflow: hidden;
	margin-bottom:80px;
	}

.common-section__container {
	width: 100%;
	padding: 0 2%;           /* 左右に2%の余白 */
	box-sizing: border-box;  /* パディングを含めた幅計算 */
	margin: 0 auto;          /* 中央寄せ（必要に応じて） */
	}

.common-section__content
	{
	width:100%;
	max-width:1436px;
	background-color: #FFFFFF;
	text-align:left;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 50px 0px; /* 上下左右の余白を50pxに設定 */
	}

.section-title__wrapper{
        display: flex;
        justify-content: center; /* 水平方向の中央寄せ */
	overflow: auto;
	}

.section-title__content{
	width:100%;
	max-width:1436px;
	height:100px;
	margin: 0px 50px; /* 左右の余白を50pxに設定 */
	}

.section-subtitle__wrapper{
	width:100%;
	height: auto;
	overflow: auto;
        margin-top:-20px;
	}

.section-subtitle__content{
	width:300px;
	color: #3261B9;
	border-bottom-style: solid;
	border-width: 2px;
	border-color: #3261B9;
	}

.trust-section__wrapper
	{
	display: flex;
	flex-direction: column;
	flex-grow: 1; /* 余白がありつつも適切に伸縮 */
	background-color: #83B7E6;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 50px 0px; /* 上下の余白を50pxに設定 */
	padding: 40px 50px 50px;
	}

.trust-section__content
	{
	width:100%;
	max-width:1436px;
	background-color: #FFFFFF;
	text-align: justify;
	hyphens: auto;
	overflow-x: hidden;
	overflow-y: auto;
	border-radius: 10px;
	}

.features-section__wrapper
	{
        display: flex;
        justify-content: center; /* 水平方向の中央寄せ */
	background-color: #F0F0F0;
	overflow: auto;
	margin-top: 50px;
	margin-bottom: 30px;
	}

.features-section__content
	{
	max-width:1436px;
	background-color: #F0F0F0;
	text-align:left;
	margin: 0px 50px;
	padding-top: 50px;
	padding-bottom: 30px;
	overflow-x: hidden;
	overflow-y: auto;
	}

.flow-section__wrapper
	{
        display: flex;
        justify-content: center; /* 水平方向の中央寄せ */
	width:100%;
	background-color: #F0F0F0;
	overflow: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	}

.flow-section__content
	{
	width:100%;
	max-width:1436px;
	background-color: #F0F0F0;
	text-align:left;
	margin: 0px 50px; /* 左右の余白を50pxに設定 */
	}

.testimonial-section__wrapper {
	display: flex;
	justify-content: center;
	background-color: #FFFFFF;
	overflow-x: hidden;
	overflow-y: auto;
	margin-top: 50px;
	margin-bottom: 50px;
}

.testimonial-section__box {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	max-width: 1436px;
	background-color: #3261B9;
	text-align: left;
	margin: 0px 50px;
	border-radius: 9px;
}

.testimonial__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20%;
	max-width: 100px;
	font-size: 3.75rem;
	background-color: #FFFFFF;
	border-radius: 10px;
	margin: 20px;
	padding: 20px;
	box-sizing: border-box;
}

.testimonial__text-box--right,
.testimonial__text-box--left {
	flex-grow: 1;
	position: relative;
	margin: 26px;
	padding: 20px;
	font-size: 1.0rem;
	background-color: #FFFFFF;
	border-radius: 10px;
	box-sizing: border-box;
}

.testimonial__text-box--right::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
	border: 15px solid transparent;
	border-right: 15px solid #FFFFFF;
}

.testimonial__text-box--left::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
	border: 15px solid transparent;
	border-left: 15px solid #FFFFFF;
}

/*pickup******************************************/

/* 1) 外側：背景＋中央寄せ */
.pickup-section__wrapper {
  background-color: #F0F0F0;
  margin: 50px 0;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

/* 2) 内側：max-widthだけ指定、幅は自動、自動マージンで中央寄せ */
.pickup-section__content {
  max-width: 1436px;    /* コンテンツ部分の最大幅 */
  margin: 0 auto;
  padding: 0 20px;      /* 端余白（必要に応じ調整） */
  box-sizing: content-box; /* パディングを幅に含めない */
  background: none;     /* 背景色は各カードだけでOK */
}

/* 3) カード部分はこれまで通り */
.pickup-section__card {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 10px;
  overflow: hidden;
}

/* 三角形ラベルもそのまま */
.triangle {
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 70px solid transparent;
  border-left:   70px solid #3261B9;

}
.label {
  position: absolute;
  top: 8px;
  left: 5px;
  transform: rotate(-45deg);
  /* …色・フォントは省略… */
}

.triangle {
	position: absolute;
	border-bottom: 70px solid transparent;
	border-left: 70px solid #3261B9;
	}

.label {
	position: absolute;
	top: 4px;
	left: 12px;
	font-size: 1.25rem;
	font-weight:bold;
	color: #fff;
	transform: rotate(-45deg);
	}

/*contact_area**********************************************/

.cta-banner__wrapper {
	width: 100%;
	display: block; /* 縦並びに変更 */
	background-color: #F0F0F0;
	margin-top: 50px;
	margin-bottom: 30px;
	padding: 50px 0;
	}

.cta-banner__image {
	width: 100%;
	text-align: center;
	margin-bottom: 40px;
	}

.contact_banner {
	max-width: 100%;
	height: auto;
	border-radius: 12px; /* 任意で角丸 */
	}

.cta-banner__form {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 0 20px;
	}

/*company_overview******************************************/

.company-section__wrapper {
  width: 100%;
  max-width: 1436px;
  margin: 50px auto 0;     /* 上に50px、左右は自動、下は0 */
  padding: 0;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

/* dl 自体も横幅いっぱいに広げる */
.company-overview__dl {
  width: 100%;
}

dl.company-overview__dl {
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  margin: 15px 20px 20px;
}

dl.company-overview__dl dt,
dl.company-overview__dl dd {
  border-top: 1px solid #CCCCCC;
  line-height:1.6;
  padding: 12px;
  margin: 0;
  font-weight:normal;
}

dl.company-overview__dl > div {
  display: flex;
  flex-wrap: wrap; /* dtの複数行にも対応できるように */
}

dl.company-overview__dl dt {
  background: #EDEDED;
  font-size: 0.875rem;
  width: 30%; /* ここは調整可：ラベル側の幅 */
  box-sizing: border-box;
}

dl.company-overview__dl dd {
  width: 70%;
  font-size: 0.875rem;
  background-color: #FAFAFA;
  box-sizing: border-box;
}

.company-overview__dl dd ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.company-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.company-btn {
  display: inline-block;
  background-color: #007ACC;
  color: #fff;
  font-size: 1.0rem;
  padding: 12px 24px;
  margin-bottom: 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 
    background-color 0.3s,
    color 0.3s,
    transform 0.2s,
    text-decoration 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.company-btn:hover {
  background-color: #005B99;
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-2px);
}

/* 住所部分 */
.footer_address {
  padding: 0.75em;
  border-radius: 4px;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #FFF;
  max-width: 1200px;
  margin: 1em auto 0 auto;
}

/*copyright**************************************************/

.copyright-section__wrapper
	{
        clear:both;
	background-color: #3261B9;
	overflow: auto;
	margin-top: 10px;
	}

.copyright-section__content
	{
	width:100%;
	max-width:1200px;
	background-color: #3261B9;
	padding: 20px;
	}

/*sp-bottom-nav**********************************************/

.sp-bottom-nav {
  display: none;
}

/***************************************************テキスト***************************************************/

h1{

	max-width: 252px; /* ロゴ画像に合わせて制限 */
	width: 100%; /* 親要素に応じて幅を調整 */
	height: auto;
	font-weight: normal;
	text-align: left;
	letter-spacing: 0em;
	margin: 0;
	}


h1 img {
	display: block;
	max-width: 100%; /* 親要素に収める */
	height: auto; /* アスペクト比を維持 */
	}

h2{
	font-size: 3rem;
	letter-spacing: 0em;
	font-weight:bold;
	text-align:left;
	}

h3{
	font-size: 3rem;
	letter-spacing: 0em;
	font-weight:bold;
	text-align:left;
	}

.highlight-header__wrapper{
	width:100%;
	max-width:1920px;
	height: auto;
	overflow: auto;

	}

.highlight-header__inner--right{
	float: right;
	height: auto;
	background-image: -webkit-gradient(linear, left top, right top, from(#6E9DF5), to(#3261B9));
	background-image: linear-gradient(90deg, #6E9DF5 0%, #3261B9 100%);
	border-radius: 10px 0px 0px 10px;
	}

.highlight-header__inner--left{
	float: left;
	height: auto;
	background-image: -webkit-gradient(linear, left top, right top, from(#3261B9), to(#6E9DF5));
	background-image: linear-gradient(90deg, #3261B9 0%, #6E9DF5 100%);
	border-radius: 0px 10px 10px 0px;
	}

.highlight-header__text{
	width:100%;
	height: auto;
	min-width:1000px;
	max-width:1000px;
	font-size: 2.5rem;
	letter-spacing: 0em;
	font-weight:bold;
	text-align:left;
        padding:30px;
        position: relative;
	}

.section-subtitle__text{
	font-size: 1.375rem;
	letter-spacing: 0em;
	font-weight:bold;
	text-align:center;
        margin-bottom:10px;
	}

.text_contact {
	font-size: 26px;
	letter-spacing: 0em;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 1.5;
	text-align: center; /* テキスト中央揃え */
	}

.h_headline{
	font-size: 2.0rem;
	line-height:1.5;
	letter-spacing: 0em;
	font-weight:bold;
	text-align: justify;
	hyphens: auto;
	color: #222222;
	border-left: solid 10px #3261B9;
        padding:10px;
        margin:20px;
	}

.text-paragraph--about{
	font-size: 1.125rem;
	line-height:1.5;
	letter-spacing: 0.03em;
	font-weight:normal;
	text-align: justify;
	hyphens: auto;
        margin:20px;
	}

.text-paragraph--photo-bg{
	font-size: 1.125rem;
	line-height:1.5;
	letter-spacing: 0.03em;
	font-weight:normal;
	text-align: justify;
	hyphens: auto;
        margin:20px;
	}

.text-paragraph--standard_headline{
	font-size: 2.0rem;
	line-height:1.5;
	letter-spacing: 0em;
	font-weight:bold;
	text-align: justify;
	hyphens: auto;
	color: #222222;
	border-left: solid 10px #3261B9;
        padding:10px;
	}

.text-paragraph--standard{
	font-size: 1.125rem;
	line-height:1.5;
	letter-spacing: 0.03em;
	font-weight:normal;
	text-align: justify;
	hyphens: auto;
	color: #222222;
        margin-top:20px;
        margin-bottom:20px;
	}

.text-paragraph--trust{
	font-size: 1.125rem;
	line-height:1.5;
	letter-spacing: 0.03em;
	font-weight:normal;
	text-align: justify;
	hyphens: auto;
	color: #222222;
        margin:20px;
	}

.text-paragraph--testimonial{
	font-size: 1.125rem;
	line-height:1.5;
	letter-spacing: 0.03em;
	font-weight:normal;
	text-align: justify;
	hyphens: auto;
	color: #222222;
	}

.text__features_number_headline{
	counter-increment: counter1;
	padding-top:10px;
	padding-left:78px;
	padding-right:6px;
	padding-bottom:10px;
	font-weight: bold;
	font-size: 1.75rem;
	line-height:1.5;
	letter-spacing: 0em;
	border: 2px solid #3261B9;
	color: #222222;
	}

.text__features_number_headline:before{
	content: counter(counter1);
	position: absolute;
	display: flex;
	align-items: center;
	justify-content:center;
	left: 0px;
	width: 58px;
	height: 100%;
	color: #fff;
	line-height:1.5;
	letter-spacing: 0em;
	background: #3261B9;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	}

.text__features_number_headline:after{
	content:"";
	display: block;
	position: absolute;
	left: 58px;
	height: 0;
	width: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 7px solid #3261B9;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	}

.text-paragraph--pickup-intro{
	font-size: 1.125rem;
	line-height:1.5;
	letter-spacing: 0.03em;
	font-weight:normal;
	text-align: justify;
	hyphens: auto;
	color: #222222;
        margin-top:20px;
        margin-bottom:50px;
	}

.text-headline--pickup{
	font-size: 2.0rem;
	letter-spacing: 0em;
	font-weight:bold;
	text-align: justify;
	hyphens: auto;
	color: #3261B9;
        margin-left:70px;
        padding-top:14px;
	}

.text-paragraph--pickup-card{
	font-size: 1.125rem;
	line-height:1.5;
	letter-spacing: 0.03em;
	font-weight:normal;
	text-align: justify;
	hyphens: auto;
	color: #222222;
        padding:30px;
	}

.text-footer--copyright{
	font-size: 1.0rem;
	letter-spacing: 0.03em;
	font-weight:normal;
	color: #FFFFFF;
	text-align:center;
	}

/****************************************************リスト****************************************************/

.step-list {
	list-style: none;
	margin: 50px 20px 50px 20px;
	}

.step-list li {
	position: relative;
	font-size: 1.375rem;
	margin: 40px 0 40px 0;
	padding: 0 0 0 40px;
	text-align: justify;
	}

.step-list li::before{
	position: absolute;
	left: 0;
	font-family: "Font Awesome 5 Free";
	font-size: 1.375rem;
	font-weight: 900;
	content: '\f058';
	color: #3261B9;
	}

/****************************************************マップ****************************************************/

.g_map{
        margin-top:20px;
        margin-left:20px;
        margin-right:20px;
        margin-bottom:20px;
	text-align:left;
	}
}