@charset "utf-8";

/* 共通 */
html{
	scroll-behavior: smooth;
}
* {
	margin: 0;
	padding: 0;
	vertical-align:baseline;
	background:transparent;
	text-decoration: none;
	font-family: ften-mincho-text, serif;
	font-family: feffra, noto-sans-cjk-jp, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
	list-style: none;
}
body {
	min-width: 320px;
	transition: width 1s ease-in-out 0.01s;
}
/* ヘッダーここから */
header{
	z-index:99;
	width: 100%;
	position:fixed;
	background: #3356AD;
	display: flex;
	justify-content: space-between;
  }
  #topLogo{
	display: inline-block;
	padding: 20px 0;
	margin: 0 0 0 100px;
	width: 350px;
  }
  #topLogo img{
	width: 100%;
  }
  #headerButtun{
	padding: 15px 0;
	margin: 0 100px 0 0 ;
  }
  #headerButtun ul li{
	display: inline;
	margin: 0 30px;
  }
  #headerButtun li a{
	color:#fff;
	font-size: 13px;
  }
  #headerButtun #contact {
	color:#fff;
	font-size: 13px;
	display: inline-block;
	padding: 10px 20px;
	border: 2px solid #fff; /* 線の色 */
	border-radius: 30px; /* 角の丸み */
	transition: background-color 0.3s; /* 背景色の変化にトランジション */	
  }
  #headerButtun #contact:hover {
	background-color: #007BFF; /* ホバー時の背景色 */
	color: white; /* ホバー時の文字色 */
}
  

@media screen and (max-width: 1370px) {
	}
@media screen and (min-width: 1399px) {
	#navArea{
		display: none;
	}
	nav {
		display: none;
	}
}
@media screen and (max-width: 1400px) {
	#topLogo{
		margin:0 0 0 40px;
	  }
	#headerButtun{
		display: none;
	}
	#global{
		display: none;
	}
	nav .inner #headerTel {
	  display: block;
	  color: #fff;
	  font-size: 17px;
	  padding: 1.5em;
	  text-decoration: none;
	  transition-duration: 0.2s;
	  text-align: center;
	  line-height: 20px;
	}
	nav {
	  display: block;
	  position: fixed;
	  top: 0;
	  left: -9999px;
	  bottom: 0;
	  width: 60vw;
	  background: #3356AD;
	  overflow-x: hidden;
	  overflow-y: auto;
	  -webkit-overflow-scrolling: touch;
	  transition: all .5s;
	  z-index: 3;
	  opacity: 0;
	}
	.open nav {
	  left: 0;
	  opacity: 1;
	}
	nav .inner {
	  padding: 25px;
	}
	nav .inner ul {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	}
	nav .inner ul li {
	  position: relative;
	  margin: 0;
	  border-bottom: 1px solid #fff;
	}
	nav .inner ul li a {
	  display: block;
	  color: #fff;
	  font-size: 17px;
	  padding: 1.5em;
	  text-decoration: none;
	  transition-duration: 0.2s;
	}
	nav .inner ul li a:hover {
	  background: #ff3214;
	}
	.toggle_btn {
	  display: block;
	  position: fixed;
	  top: 17px;
	  right: 30px;
	  width: 30px;
	  height: 30px;
	  transition: all .5s;
	  cursor: pointer;
	  z-index: 3;
	}
	.toggle_btn span {
	  display: block;
	  position: absolute;
	  left: 0;
	  width: 30px;
	  height: 2px;
	  background-color: #fff;
	  border-radius: 4px;
	  transition: all .5s;
	}
	.toggle_btn span:nth-child(1) {
	  top: 4px;
	}
	.toggle_btn span:nth-child(2) {
	  top: 14px;
	}
	.toggle_btn span:nth-child(3) {
	  bottom: 4px;
	}
	.open .toggle_btn span {
	  background-color: #fff;
	}
	.open .toggle_btn span:nth-child(1) {
	  -webkit-transform: translateY(10px) rotate(-315deg);
	  transform: translateY(10px) rotate(-315deg);
	}
	.open .toggle_btn span:nth-child(2) {
	  opacity: 0;
	}
	.open .toggle_btn span:nth-child(3) {
	  -webkit-transform: translateY(-10px) rotate(315deg);
	  transform: translateY(-10px) rotate(315deg);
	}
	#mask {
	  display: none;
	  transition: all .5s;
	}
	.open #mask {
	  display: block;
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background: #000;
	  opacity: .8;
	  z-index: 2;
	  cursor: pointer;
	}
	main {
	  padding: 50px;
	}
}
@media screen and (max-width: 767px) {
	nav {
	  width: 100vw;
	}
	#topLogo{
		padding: 20px 0;
		margin: 0 0 0 40px;
		width: 200px;
	  }
}
/* ヘッダーここまで */
/* トップここから */
#topBunner{
	width: 100%;
	padding-top: 73px;
}
#topBunner div {
	position: relative;
    background-image: url('../images/pbplus_topimg.jpg');
    background-size: cover; /* 画像を要素に合わせて拡大 */
    background-position: center; /* 画像を中央に配置 */
    background-repeat: no-repeat; /* 画像を繰り返さない */
    height: 40vh; /* 高さを100%ビューポートに設定 */
    margin: 0; /* デフォルトのマージンをリセット */
	width: 100%;
}
#topBunner div img{
	position: absolute;
	top:10vh;
	left:150px;
	width: 40%;
}
#topBunnerMobile{
	display: none;
}
@media screen and (max-width: 1280px) {
	#topBunner div img{
		top:100px;
		left: 50px;
		width: 60%;
	}	
}
@media screen and (max-width: 600px) {
	#topBunner{
		display: none;
	}
	#topBunnerMobile{
		padding-top: 65px;
		display: block;
		width: 100%;
	}
	#topBunnerMobile img{
		width: 100%;
	}
}
.wide1280px{
	width: 1280px;
	margin: 100px auto;
}
@media screen and (max-width: 1280px) {
	.wide1280px{
		width: 780px;
		margin: 100px auto;
	}
}
@media screen and (max-width: 767px) {
	.wide1280px{
		width: 90%;
	}
}
.categoly{
	text-align: center;
	font-weight:lighter;
	font-style: italic;
	color: #3356AD;
	font-size: 60px;
	text-decoration: underline; 
    text-decoration-color: #3356AD;
	text-decoration-thickness: 2px;
	text-underline-offset: 10px;
}
.categolySub{
	text-align: center;
	font-size: 25px;
	letter-spacing: 0.2em;
	margin:10px 0;
}
#what .box{
	position: relative;
}
.fa-circle-check{
	color: #3356AD;
}
#what .box .center{
	padding: 20px 0;
	margin: 0 auto;
	text-align: center;
}
#what .boxTitle{
	display: inline-block;
	text-align: center;
	font-size:25px;
	padding: 10px 30px;
	border-radius: 30px;
	background-color: #fff;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
	width: 900px;
}
@media screen and (max-width: 1280px) {
	#what .boxTitle{
		font-size: 18px;
		width: 90%;
	}
}
#what .point{
	width: 50%;
	margin: 0 auto;
}
#what .point .back{
	background-color: #3356AD;
	color: #fff;
	padding: 0 15px;
	margin-right: 10px;
}
#what .point p{
	margin-bottom: 15px;
	font-size: 18px;
}
@media screen and (max-width: 1280px) {
	#what .point{
		width: 70%;
		margin: 0 auto;
	}
	#what .point p{
		font-size: 15px;
	}
}
#fourPoint{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#fourPoint div{
	width: 48%;
	background-color: #3356AD;
	padding: 2.5% 0;
	border-radius: 10px;
	margin: 1%;
}
#fourPoint p{
	text-align: center;
	color: #fff;
	font-size:20px;
}
#advantage #ilust{
	width: 100%;
}
#advantage #ilust img{
	width: 100%;
}
@media screen and (max-width: 1020px) {
	#fourPoint{
		display: block;
	}
	#fourPoint div{
		width: 80%;
		margin: 20px 10%;
	}
	#advantage #ilust{
		width: 80%;
		margin: 0 10%;
	}
}
@media screen and (max-width: 414px) {
	#fourPoint div{
		width: 100%;
		margin: 10px 0;
	}
	#advantage #ilust{
		width: 90%;
	}
	#fourPoint p{
		font-size:12px;
	}
}

#about #aboutBox{
	display: flex;
	justify-content: space-between;
}
#about #aboutBox div{
	width: 23%;
}
#about #aboutBox div img{
	width: 100%;
}
#about .aboutTitle{
	text-align: center;
	padding: 10px 0;
	color: #3356AD;
	font-size: 18px;
}
@media screen and (max-width: 1020px) {
	#about #aboutBox{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#about #aboutBox div{
		width: 45%;
		margin: 0 2.5%;
	}
}
#about .aboutCaption{
	text-align: justify;
	font-size: 12px;
}
#promotion a img{
	width: 100%;
}
#functionBox{
	display: flex;
	justify-content: center;
}
.functionButton {
	display: inline-block;
	width: 150px;
	height: 150px;
	text-align: center;
	text-decoration: none;
	color: #3356AD;
	background-color: #D3EDFB;
	box-shadow: 0px 5px 0px #3356AD;
	transition: .3s;
	border-radius: 50%;
	position: relative;
	margin: 0 50px;
  }
.functionButton:hover {
	box-shadow: unset;
	transform: translateY(4px);
}
.functionButton div{
	position: absolute;
	top: 50%; 
	left: 50%;
	transform: translate(-50%, -50%);
}
.functionButton span{
	display: block;
	padding: 8px 0;
}
.functionButton .number{
	font-size: 17px;
}
.functionButton .functionText{
	font-size: 28px;
}
.functionBox2{
	padding: 100px 0 0 0;
	text-align: center;
}
.functionBox2 .functionText01{
	display: inline-block;
	padding:5px 20px ;
	background-color: #3356AD;
	color: #fff;
	border-radius: 20px;
	font-size: 25px;
	margin: 0 0 15px 0;
	width: 800px;
}
.functionBox2 .functionText02{
	font-size: 25px;
}
.functionBox2 .functionText03{
	color: #3356AD;
	font-size: 50px;
}
.functionBox2 .functionText03 span{
	font-size: 30px;
}
.functionBox2 .functionText04{
	font-size: 15px;
	margin-bottom: 20px;
}
.functionBox2 .functionText05{
	font-size: 20px;
}
.functionBox2 .functionText05 span{
	font-size: 26px;
	background-color:yellow;
	padding: 0px 25px;
}
.blue{
	color: #3356AD;
}
.functionBox3{
	padding: 25px 0 0 0;
	width: 70%;
	margin: 0 15%;
}
.functionFlex{
	display: flex;
	justify-content: space-between;
	margin: 10px 0;
}
.functionText06{
	color: #3356AD;
	border-radius: 3px;
	padding: 5px 0;
	border:solid 1px #3356AD;
	font-size:20px;
	text-align: center;
	width: 30%;
}
.functionText07{
	text-align: justify;
	font-size: 13px;
	width: 65%;
}
.functionBox4{
	display: flex;
	justify-content: center;
	padding: 20px 0 0 0 ;
}
.functionBox4 p{
	font-size: 25px;
	width: 50%;
	text-align: justify;
}
.functionBox4 div{
	width: 20%;
}
.functionBox4 img{
	width: 100%;
}
.functionText08{
	display: inline-block;
	text-align: center;
	border-radius: 3px;
	padding: 5px 60px;
	border:solid 1px #3356AD;
	font-size:20px;
	text-align: center;
	color: #3356AD;
	margin-bottom: 20px;
}
@media screen and (max-width: 1020px) {
	.functionBox2 .functionText01{
		display: inline-block;
		padding:5px 20px ;
		background-color: #3356AD;
		color: #fff;
		border-radius: 20px;
		font-size: 18px;
		margin: 0 0 15px 0;
		width: 80%;
	}
	.functionBox2 .functionText02{
		font-size: 25px;
	}
	.functionBox2 .functionText03{
		font-size: 40px;
	}
	.functionBox2 .functionText03 span{
		font-size: 25px;
	}
	.functionBox2 .functionText04{
		font-size: 13px;
	}
	.functionBox2 .functionText05{
		font-size: 18px;
	}
	.functionText06{
		font-size:15px;
	}
	.functionText07{
		font-size: 12px;
	}
	.functionBox4 p{
		font-size: 16px;
		width: 60%;
		text-align: justify;
	}
	.functionBox4 div{
		width: 20%;
	}
	.functionBox4 img{
		width: 100%;
	}
	.functionText08{
		font-size:15px;
	}
}
@media screen and (max-width: 768px) {
	.functionButton {
		width: 100px;
		height: 100px;
	  }
	  .functionButton .number{
		font-size: 12px;
	}
	.functionButton .functionText{
		font-size: 18px;
	}
	
}
@media screen and (max-width: 600px) {
	#functionBox{
		display: block;
	}
	.functionButton {
		display: inline-block;
		width: 100%;
		height: 50px;
		text-align: center;
		text-decoration: none;
		color: #3356AD;
		background-color: #D3EDFB;
		box-shadow: 0px 5px 0px #3356AD;
		transition: .3s;
		border-radius: 5px;
		position: relative;
		margin: 15px auto;
		  }	.functionFlex {
		display: block;
	  }
	  .functionBox3{
		padding: 25px 0 0 0;
		width: 100%;
	}
	.functionText06{
		text-align: center;
		width: 70%;
	}
	.functionButton .number{
		display: inline;
	}
	.functionButton .functionText{
		display: inline;
		font-size: 15px;
	}
	.functionBox4{
		display: block;
	}
	.functionBox4 p{
		width: 100%;
	}
	.functionBox4 div{
		width: 60%;
		margin: 0 20%;
	}
}
#contactBunner .back {
	position: relative;
    background-image: url('../images/pbplus_contact.png');
    background-size: cover; /* 画像を要素に合わせて拡大 */
    background-position: center; /* 画像を中央に配置 */
    background-repeat: no-repeat; /* 画像を繰り返さない */
    height: 20vh; /* 高さを100%ビューポートに設定 */
    margin: 0; /* デフォルトのマージンをリセット */
}
#contactBunner .contactBox{
	position: absolute;
	display: flex;
	top: 50%; 
	left: 50%;
	transform: translate(-50%, -50%);
}
#contactBunner .contactBox p{
	color: #fff;
	font-size: 16px;
	margin-right: 20px;
}
#fotterContact {
	font-size: 13px;
	display: inline-block;
	padding: 10px 20px;
	border: 2px solid #fff; /* 線の色 */
	border-radius: 30px; /* 角の丸み */
	transition: background-color 0.3s; /* 背景色の変化にトランジション */	
 }
 #fotterContact a{
	color:#fff;
	font-size: 20px;
 }
 #fotterContact:hover {
	background-color: #007BFF; /* ホバー時の背景色 */
}
@media screen and (max-width: 1020px) {
	#contactBunner .back {
		height: 200px; /* 高さを100%ビューポートに設定 */
	}
	#contactBunner .contactBox{
		display: block;
	}
	#contactBunner .contactBox p{
		color: #fff;
		font-size: 12px;
		margin-bottom: 10px;
	}
	#fotterContact {
		margin: 0 auto;
		padding: 5px 30px;
	 }
	 #fotterContact a{
		text-align: center;
		font-size: 15px;
	 }
}
footer{
	z-index:99;
	width: 100%;
	background: #C9CACA;
	display: flex;
	justify-content: space-between;
  }
  #footerLogo{
	display: inline-block;
	padding: 20px 0;
	margin: 0 0 0 100px;
	width: 350px;
  }
  #footerLogo img{
	width: 100%;
  }
  #fotterButtun{
	padding: 15px 0;
	margin: 0 100px 0 0 ;
  }
  #fotterButtun ul li{
	display: inline;
	margin: 0 30px;
  }
  #fotterButtun li a{
	color:#3356AD;
	font-size: 13px;
  }
  #fotterButtun #contact {
	color:#3356AD;
	font-size: 13px;
	display: inline-block;
	padding: 10px 20px;
	border: 2px solid #3356AD; /* 線の色 */
	border-radius: 30px; /* 角の丸み */
	transition: background-color 0.3s; /* 背景色の変化にトランジション */	
  }
  #fotterButtun #contact:hover {
	background-color: #fff; /* ホバー時の背景色 */
	color: #3356AD; /* ホバー時の文字色 */
}
@media screen and (max-width: 1020px) {
	footer{
		display: block;
	}
	#footerLogo{
		display: block;
		margin: 0 auto;
	}
	#fotterButtun ul li{
		display: block;
		margin: 10px 0 ;
		text-align: center;
	  }
	  #fotterButtun #contact {
		display: block;
		width: 60%;
		margin: 0 auto;
	  }
}
