/* ================================
  product
================================ */

/*共通パーツ*/
#wrap {
  width: 100%;
  overflow: hidden
}
#topBox {
  overflow: hidden;
	padding:240px 0 160px;
	position:relative;
}
#topBox img{
	display: block;
	width: 40%;
	height: auto;
	max-width: 800px;
	right: -2%;
	top: 4rem;
	z-index: -1;
	position:absolute;
}
#topBox .inBox {
	width: 100%;
	max-width: 1200px;
	margin:auto;
}
#topBox .inBox h1{
font-size: clamp(30px, 5vw, 70px);
margin-bottom: 1rem;
white-space: nowrap;
line-height: 1.1;
}
#topBox .inBox h1 br{ display: none;}
#topBox .inBox p{
font-size: clamp(16px, 2vw, 28px);
font-weight: bold;
line-height: 1.2;
}

#leadBox {
	background: linear-gradient(-225deg, #0d223e, #2e547f);
	padding: 6rem 0;
}
#leadBox p {
	max-width: 1200px;
	color: #fff;
	margin: auto;
	padding:0 5%;
	font-size: clamp(14px, 2vw, 20px);
}
@media screen and (max-width: 1280px),{
	#topBox .inBox {
	margin: 0;
	padding: 0 5%;
}
#topBox {
	padding:160px 0 120px;
}
}
@media screen and (max-width: 768px),{
	#topBox {
	padding:100px 0 60px;
}
#topBox .inBox p br{
	display: none;
}
#topBox .inBox h1{
white-space: normal;
}
#topBox .inBox h1 br{ 
	display: inline;
}
#leadBox {
  background: linear-gradient(-225deg, #0d223e, #2e547f);
  padding: 3rem 0;
}
}
@media screen and (max-width: 470px),{
  #topBox {
  padding: 100px 0 200px;
  }
#topBox .inBox p {
    font-size: clamp(16px, 2vw, 28px);
    font-weight: 400;
    line-height: 1.2;
}
	#topBox img{
	width: 250px;
	height: auto;
	right: -0%;
	top:auto;
	bottom: 0;
}
}

#about .fBox {
	display: flex;
	max-width: 1200px;
	margin: auto;
	justify-content: space-between;
	padding-bottom: 8rem;
}

#about h2 {
	font-size: clamp(30px, 4vw, 70px);
	text-align: center;
	padding: 4rem 0;
}
#about .advisorsBox {
	width: 32%;
	max-width: 380px;
}
#about .advisorsBox .nameBox .nameTitle {
	color: #fff;
	display: inline-block;
	background: #091c34;
	font-weight: bold; 
	font-size: clamp(12px, 2vw, 16px);
	padding: 8px 20px;
	position:relative;
	z-index: 2;
	bottom: -10px;
}

#about .advisorsBox .nameBox .advisorsName {
	color: #091c34;
  text-align: center;
	background: linear-gradient(-225deg, #d5f2e7, #d0e5ff);
	font-weight: bold; 
	font-size: clamp(20px, 2.2vw, 28px);
	padding: 40px 0;
}

#about h3 {
	font-size: clamp(20px, 4vw, 36px);
	display: flex;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto 4rem;
}
#about h3::before {
	content: "";
	width: 20px;
	height: 4px;
	background: #aac9f1;
	margin-right: 15px;
}

@media screen and (max-width: 1280px),{
#about .fBox {
	display: flex;
	margin: 0 5%;
}
#about h3 {
	font-size: clamp(20px, 3vw, 36px);
	display: flex;
	align-items: center;
	margin: 0 5% 2rem;
}
#about .advisorsBox .nameBox .advisorsName {
  padding: 30px 0;
}
}
@media screen and (max-width: 880px),{
#about .fBox {
	flex-wrap: wrap;
}
	#about .advisorsBox {
	width: 48%;
	max-width: 380px;
}
	#about .advisorsBox:last-child {
		margin-top: 1.5rem;
	}
}

@media screen and (max-width: 600px),{
#about h2 {
  padding: 3rem 0;
}
	#about .fBox {
		align-items: center;
		justify-content: center;
}
	#about .advisorsBox {
	width: 80%;
	max-width: 380px;
}
	#about .advisorsBox:nth-child(2),
	#about .advisorsBox:last-child {
		margin-top: 1.5rem;
	}
#about .advisorsBox .nameBox .advisorsName {
	font-size: 16px;
  padding: 20px 0;
}
#about .advisorsBox .nameBox .nameTitle {
  font-size:11px;
  padding: 5px 15px;
}
}
#operating {
	padding-bottom: 8rem;
}
#operating .tableBox{
	max-width: 1200px;
	width: 100%;
	margin: auto;
}
#operating table {
	width: 100%;
}
#operating tr {
	display: flex;
	background: #ecf5ff;
	margin-bottom: 0.5rem;
	align-items: center;
	border-radius: 10px;
}
#operating tr th,
#operating tr td {
	padding: 30px 0;
}

#operating tr th{
	text-align: center;
	width:35%;
	font-size: clamp(16px, 2vw, 24px);
	font-weight: bold;
	position:relative;
	color: #091c34;
}
#operating tr th::after {
 content: "";
	display: block;
 width: 1px;
 height: 50%;
 background: #73869f; 
}
#operating tr td {
	padding-right: 5%;
	padding-left: 5%;
	flex: 1;
	font-size: clamp(12px, 2vw, 16px);
}
#operating tr td i{
	margin-left:10px;
}
@media screen and (max-width: 1280px),{
	#operating .tableBox{
	margin: 0 5%;
		width: auto;
}
}
@media screen and (min-width: 601px),{
	#operating tr th::after {
	position:absolute;
	right: 0;
	 top: 50%;
   transform: translateY(-50%);
}
}
@media screen and (max-width: 600px),{
	#operating tr {
	flex-direction: column;
}
#operating tr th,
#operating tr td {
	padding: 15px;
}	
	
#operating tr th{
	width:auto;
}
#operating tr th::after {
 width: 30px;
 height: 1px;
	position: absolute;
	bottom:0;
	 left: 50%;
   transform: translate(-50%,-50%);
}

}
