@charset "utf-8";
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";
/* CSS Document */
/* -------------------------------------------- Basic Setting */	
html { scroll-behavior: smooth;}

body{
	font: 14px/1.6 "Hiragino Kaku Gothic Pro",Osaka,"メイリオ","ＭＳ Ｐゴシック","MS PGothic",Verdana,Arial,sans-serif;
	margin:0;
	color:#313131;
	width: 100%;
	max-width: 100%;	
	
}

/*--
a{
    color:blue;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:visited{
    color:blue;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:hover {
    color: #F5A862;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
--*/

@media screen and (min-width: 768px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 767px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}

.anchor {
  display: block;
    padding-top: 100px;
    margin-top: -100px;
}

.anchorB {
  display: block;
    padding-top: 300px;
    margin-top: -200px;
}


/* -------------------------------------------- Header */
.header-box {
  height: 80px;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color:rgba(0,22,38,0.7);
  z-index: 100;
  display: flex;
  justify-content: space-between;
}

header .logo {
	width: 20%;
	height: 80px;
	display:table-cell;
	text-align: left;
	line-height: 80px;
	font-size: 20px;
	font-weight: 600;
	padding-left:40px;
	background: #001626;
}
header .logo a img {
	height:70%;
	vertical-align: middle;
	float:left;
	margin-right:10px;
	padding-top:20px;
	transition: .5s;
}
header .logo a:hover img {
	opacity:0.4;
}


header .logo h1 {
	display:block;
	margin-left:10px;
	color:#999999;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-weight:bold;
	font-size:1rem;
}


@media screen and (max-width: 767px){
	.psBanner {
		width:80%;
	}
}



header nav.pc-menu {
  width: 90%;
}

header nav.pc-menu ul {
  width: 100%;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

header nav.pc-menu ul li {
  width: 33%;
}

header nav.pc-menu ul li a {
  display: block;
  width: 100%;
  text-align: center;
	transition:.5s;
	color:#d7e1e8;
	font-weight:bold;
	position:relative;
	border-left:solid 1px #223e52;
	height:80px;
	padding-top:20px;
}

header nav.pc-menu ul li a::after{
	position:absolute;
	left:0;
	content:'';
	width:100%;
	height:4px;
	background:#2bb9a4;
	bottom:-1px;
	transform:scale(0,1);
	transform-origin:left top;
	transition:transform 0.3s;
}

header nav.pc-menu ul li a:hover::after {
	transform:scale(1,1);
}

header nav.pc-menu ul li a span {
	display:block;
	color:#2bb9a4;
	font-size:.6rem;
	font-weight:normal;
	line-height:10px;	
}

.sm {
  display: none;
}



/**********************************　
以下、ハンバーガーメニューの設定　
************************************/

@media screen and (max-width: 767px){
  header nav.pc-menu {
    display: none;
  }
	header .logo {
		width: 80%;	
		padding-left:20px;
	}
	header .logo h1 {
		font-size:.8rem;
		display:none;
	}

  #hamburger {
    background-color: transparent;
    position: relative;
    cursor: pointer;
    margin: 10px 0 0 auto;
    height: 60px;
    width: 60px;
	  z-index:2000;
  }

  #hamburger .icon span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 4px;
    background-color: #eeeeee;
    border-radius: 8px;
    transition: ease 0.75s;
  }

  .icon span:nth-of-type(1) {
    top: 16px;
  }
  .icon span:nth-of-type(2) {
    top: 28px;
  }
  .icon span:nth-of-type(3) {
    bottom: 16px;
  }

  .close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 28px;
  }

  .close span:nth-of-type(2) {
    opacity: 0;
  }

  .close span:nth-of-type(3) {
      transform: rotate(-45deg);
      top: 28px;
  }

  .sm {
      top: 80px;
      left: 0px;
      position: absolute;
      z-index: 10;
      width: 100%;
      background-color: rgba(34, 49, 52, 0.5);
  }
  .sm ul {
	  width:100%;
	  display:flex;
    flex-direction: column;
  }
	.sm ul li {
		width:100%;
		text-align: center; 
		 border-top: solid 0.5px rgba(255, 255, 255, 0.2);
		padding-top:30px;
		padding-bottom:30px;
	}

  .sm ul a {    
	  color:#ffffff;   
  }
}

/* -------------------------------------------- Layout共通 */
.wrapper {
	width:100%;
	max-width: 100%;
}

.container {
	width:900px;
	margin:0 auto;
}

@media screen and (max-width: 767px){
	.container {
		width:96%;
	}
	.wrapper {
		width:100%;
		max-width: 100%;
	}
}
/* -------------------------------------------- title共通 */
.cmnTitle {
	margin:0 auto 60px;
	padding-top:20px;
	text-align:center;
}

.cmnTitle h2 {
  position: relative;
  display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:2rem;
}
.cmnTitle h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 100px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #2bb9a4;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
	.cmnTitle h2 {
		font-size:1.5rem;
	}
	.cmnTitle h2:before {
		width:50px;
	}
}
/* -------------------------------------------- Hero */
.hero {
	width: 100%;
	height:380px;
	background:#2c3b46 url("../i/pc_hero_m.jpg")top center no-repeat;
	background-size:cover;
	z-index: 1;
	margin:0;
	padding:0;
}

@media screen and (max-width: 767px){
	.hero {			
        width: 100%;
		height:650px;
		background:url("../i/sp_hero.jpg")top center no-repeat;
		background-size:contain;
	}
	
}

@media  screen and (min-width: 1100px) {
	.hero {
		width: 100%;
		height:400px;
		background:url("../i/pc_hero_2025.jpg")top center no-repeat;
		background-size:contain;
	}
}


/* -------------------------------------------- Hero */
.slider {	
	width: 100%;
	max-width: 100%;
	padding:40px;
	z-index: 1;
}

ul.sliderBox {
	width:900px;
	margin:60px auto;
	display:flex;
	justify-content: space-around;
}

ul.sliderBox li {
	width:29%;
}

ul.sliderBox li a {
	transition:.5s;
}

ul.sliderBox li a img {
	width:100%;
	background:#fff;
}

ul.sliderBox li a:hover {
	opacity:0.5;
}

@media screen and (max-width: 767px){
	ul.sliderBox {
		width:80%;
		margin:30px auto;
		flex-direction: column;
	}
	ul.sliderBox li {
		width:100%;
		margin:0 auto 20px;
	}
}


.slider-8 .slick-slide {
  width: 300px;
  position: relative;
  overflow: hidden;
}
.slider-8 .slick-slide a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px){
	.slider-8 .slick-slide {
		width:130px;
	}
	.slick-prev, .slick-next {
		width:10px;
	}
}

.slider-2 .slick-slide {
  width: 360px;
  height: 189px;
  margin: 0 40px;
  position: relative;
  overflow: hidden;
}
.slider-2 .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-2 .slick-slide a img {
	transition:.5s;
		border-radius:10px;
	border:solid 1px #cccccc;
}
.slider-2 .slick-slide a img:hover {
	opacity:0.5;
}

.slider-2 .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #cae9e4;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 70px;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.slider-2 .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #2bb9a4;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 15px;
  transform: rotate(45deg);
}
.slider-2 .slick-next {
  right: 0;
}
.slider-2 .slick-prev {
  left: 0;
}
.slider-2 .slick-next::before {
  left: 10px;
}
.slider-2 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 12px;
}
.dots-2 {
	width:100%;
	text-align:center;
	margin:0 auto;
	overflow: hidden;
}


.dots-2 .slick-dots {
  text-align: center;
	margin:0 auto;
	overflow: hidden;
}
.dots-2 .slick-dots li {
  display: inline-block;
}
.dots-2 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.dots-2 .slick-dots .slick-active button {
  background: #2bb9a4;
}
@media screen and (max-width: 767px){
	.dots-2 {
		width:100%;
		
	}
	ul.slick-dots {
		margin:0 auto;
	}
}
/* -------------------------------------------- bookFirst */
.bookIntro {
	width: 100%;
	max-width: 100%;
	background:url("../i/ray_light.png"), linear-gradient(-225deg, #42afb5 20%, #012b67 70%);
	background-repeat:no-repeat,no-repeat;
	background-position:-100px -100px, top center;
	z-index: 0;
	clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
	margin:0;
	padding:140px 0 200px;
}

.bookIntro dl {
	width:800px;
	margin:0 auto 100px;
	display:flex;
	justify-content: space-between;
	
}
.bookIntro dl dt {
	width:28%;
}
.bookIntro dl dt img {
	width:100%;
	box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.4);
}

.bookIntro dl dt a {
	width:100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:20px auto 0;
    max-width: 100%;
    padding: 10px 25px;
    font-family: "Noto Sans Japanese";
	font-size:1.1rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    line-height: 1.8;
    background: #e85398;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
	box-shadow: 5px 5px 5px 5px rgba(0,0,0,0.4);
}
.bookIntro dl dt a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.bookIntro dl dt a:hover {
  background-color:#eda5c6;
  color: #FFF;
}
.bookIntro dl dt a:hover:after {
  right: 1.4rem;
}
.bookIntro dl dt a .fa-amazon {
	margin-right:10px;
}

.bookIntro dl dd {
	width:65%;
	color:#ffffff;
	font-family: "Noto Sans JP", sans-serif;
	font-size:1rem;
}
.bookIntro dl dd strong {
	font-size:1.5rem;
	font-weight:bold;
}

@media screen and (max-width: 767px) {
	.bookIntro {
		clip-path: polygon(0 3%, 100% 0%, 100% 100%, 0% 100%);
	}
	.bookIntro dl {
		width:70%;
		flex-direction: column;
	}
	.bookIntro dl dt {
		width:100%;
		margin-bottom:20px;
	}
	.bookIntro dl dd {
		width:100%;
		font-size:.9rem;
	}
	.bookIntro dl dd strong {
		font-size:1.2rem;
	}
}

@media screen and (min-width: 1500px) {
	.bookIntro dl {
		width:900px;
	}
	.bookIntro dl dt {
		width:28%;
	}
	.bookIntro dl dd {
		width:66%;
	}
}
/* -------------------------------------------- Message */
.message {
	margin-top:-150px;
	width: 100%;
	max-width: 100%;
	display:flex;
	justify-content: space-between;
	clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
}

.messageLeft {
	flex: 1;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
}

.messageLeft img {
	max-width: 100%;
    height: auto;
    display: block;
}

.messageRight {
    flex: 1;
    margin-right: calc(50% - 50vw);
    margin-left: 0;
	background-color:#f2f2e9;
	position:relative;
}

.messageRight p {
	color:#333333;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:1.4vh;
	background-image:url("../i/qtn_start.jpg"), url("../i/qtn_end.jpg");
	background-repeat:no-repeat,no-repeat;
	background-position:top left,bottom right;
	padding:30px;
	line-height:220%;
	width:380px;
	position:absolute;
	top:50px;
	left:50px;
}

@media screen and (max-width: 767px){
	.message {
		flex-direction:column;
		clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
		height:600px;
	}
	.messageLeft {
		flex:4;
		width:100%;
		margin:0 auto;
	}
	.messageRight {
		margin-top:-220px;
		flex:4;
		width:100%;		
	}
	.messageRight p {	
		font-size:1.7vh;
		top:80px;
		left:40px;
		right:50%;
		width:80%;
	}
}



@media screen and (min-width: 1500px) {
	.message {
		margin-top:-100px;
		clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
	}	
	.messageRight p {
		font-size:1.9vh;
		top:80px;
		width:650px;
	}
}

/* -------------------------------------------- thesis */
.thesis {
	margin-top:-200px;
	padding-top:200px;
	padding-bottom:150px;
	width: 100%;
	max-width: 100%;
	background:#f2f2e9;
	clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
}

dl.mainTheme {
	width:800px;
	margin:0 auto 40px;
	display:flex;
	justify-content: space-around;
}
dl.mainTheme dt {
	width:40%;
}
dl.mainTheme dt img {
	width:100%;
}
dl.mainTheme dd {
	width:55%;
	color:#000000;
	font-family: "Noto Sans JP", sans-serif;
	font-size:1rem;
	line-height:210%;
}

dl.mainTheme dd h3 {
	color:#000000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:1.5rem;
	margin-bottom:10px;
}
@media screen and (max-width: 767px) {
	.thesis {
		padding-top:120px;
		padding-bottom:100px;
		clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0% 100%);
	}
	dl.mainTheme {
		width:80%;
		flex-direction:column;
	}
	dl.mainTheme dt {
		margin-bottom:20px;
		width:100%;
	}
	dl.mainTheme dd {
		width:100%;
	}
	dl.mainTheme dd h3 {
		font-size:1.2rem;
	}	
}
.beforeAfter {
	display:flex;
	justify-content: space-between;
	width:800px;
	padding:30px 10px;
	margin:0 auto 40px;
	background:#ffffff;
	border-radius:10px;
	border:solid 10px #bee5db;
}

ul.badReason {
	width:50%;
	margin-left:20px;
	background:url("../i/batsu.png")50% 50% no-repeat;
	background-size:contain;
	position: relative;
}

ul.badReason:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -30px;
	border: 30px solid transparent;
	border-left: 30px solid #bee5db;
}

ul.badReason li {
	color:#000000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:1rem;
	line-height: 250%;
	margin-bottom:10px;
}
ul.badReason li span {
	display:inline-block;
	color:#ec5398;
	margin-right:5px;
}
ul.goodResult {
	width:40%;
	background:url("../i/maru.png")50% 50% no-repeat;
	background-size:contain;
}
ul.goodResult li {
	color:#000000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:1rem;
	line-height: 250%;
	margin-bottom:10px;
}

ul.goodResult li span {
	display:inline-block;
	color:#ec5398;
	margin-right:5px;
}

.balloonFrame {
	width:650px;
	margin: 0 auto -10px;
}

.balloon {
  position: relative;
  display: inline-block;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #e2e199;
}

.balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #e2e199;
}

.balloon h4 {
  margin: 0;
  padding: 0;
	color:#000000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
}
@media screen and (max-width: 767px){
	.beforeAfter {
		flex-direction: column;
		width:80%;
	}
	ul.badReason {
		width:100%;
		margin-bottom:60px;
		margin-left:0;
		text-align:center;
		background-size:65%;
	}
	ul.badReason:after {
		content: "";
  position: absolute;
  top: 115%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 30px solid #bee5db;
	}
	ul.badReason li {
		line-height:180%;
	}
	ul.goodResult {
		width:100%;		
		text-align:center;
	}
	ul.goodResult li {
		line-height:150%;
	}
	.balloonFrame {
		width:57%;
	}
}
/* -------------------------------------------- Lead Management*/
.leadMgmt {
	width: 100%;
	max-width: 100%;
}
dl.aboutLm {
	width:800px;
	margin:0 auto 40px;
	display:flex;
	justify-content: space-around;
}
dl.aboutLm dt {
	width:40%;
}
dl.aboutLm dt img {
	width:100%;
}
dl.aboutLm dd {
	width:55%;
	color:#000000;
	font-family: "Noto Sans JP", sans-serif;
	font-size:.9rem;
	line-height:210%;
}

dl.aboutLm dd h3 {
	color:#000000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:1.6rem;
	margin-bottom:10px;
}
@media screen and (max-width: 767px) {
	dl.aboutLm {
		width:90%;
		flex-direction:column;
	}
	dl.aboutLm dt {
		width:100%;
		margin-bottom:20px;
	}
	dl.aboutLm dd {
		width:100%;
		font-size:1rem;
	}
}
/* -------------------------------------------- 5 element */
.fiveElm {
	width: 100%;
	max-width: 100%;
	margin:0 auto 40px;
}

.fiveElmTitle {
	margin:0 auto 20px;
	text-align:center;
}

.fiveElmTitle h2 {
	font-family: "Noto Sans JP", sans-serif;
	font-size:2rem;
	font-weight:bold;
	color:#2bb9a4;
}
.fiveElmTitle h5 {
	font-family: "Noto Sans JP", sans-serif;
	font-size:1.4rem;
	color:#333333;
}

.fiveElm ul {
	display:flex;
	margin:0 auto 40px;
	justify-content: space-evenly;
	flex-wrap:wrap;
	align-items: center;
	width:900px;
	
}
.fiveElm ul li {
	width:32%;
	text-align:center;
	background-color:#2bb9a4;
	color:#e3ea31;
	font-weight:bold;
	font-family: "Noto Sans JP", sans-serif;
	font-size:1.2rem;
	line-height:120%;
	padding:10px 20px;
	margin-bottom:20px;
	clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
	height:60px;
	position:relative;
}

.fiveElm ul li span {	
	display: block;
	color:#ffffff;
	font-weight:normal;
	font-family: "Noto Sans JP", sans-serif;
	font-size:.8rem;
}

.fiveElm ul li:nth-child(4) span{
	font-size:.7rem;	
}

.fiveElm ul li .countFive {
	position:absolute;
	top:17px;
	left:10px;
	display:block;
	padding:0 5px;
	color:#000000;
	font-weight:bold;
	font-family: "Noto Sans JP", sans-serif;
	font-size:1rem;
	background:#ffffff;
	border:solid 2px #e3ea31;
	border-radius:20px;
}
.pushingCopy {
	margin:0 auto;
	width:600px;
	text-align:center;
	background:url("../i/underline.jpg")bottom center no-repeat;
	background-size:contain;
	padding-bottom:10px;
}

.pushingCopy h3 {
	color:#00375f;
	font-weight:bold;
	font-family: "Noto Sans JP", sans-serif;
	font-size:3rem;
}

@media screen and (max-width: 767px) {
	.fiveElm ul {
		width:90%;
		flex-wrap:wrap;
	}
	.fiveElm ul li {
		width:49%;
		margin-bottom:20px;
		padding:7px 20px 0;
		font-size:.8rem
	}
	.fiveElm ul li:nth-child(2){
		font-size:1.85vh;
	}
	.fiveElm ul li span {
		font-size:.5rem;
	}
	.pushingCopy {
		width:85%;
	}
	.pushingCopy h3 {
		font-size:1.7rem
	}
	.fiveElm ul li .countFive {
		font-size:.6rem;
		top:20px;
		left:6px;
	}
}


/* -------------------------------------------- Publish */
.publish {
	width: 100%;
	max-width: 100%;
}

.fParagraph {
	width:100%;
	max-width:100%;
	background:url("../i/publish_back01.jpg")top center no-repeat;
	background-size:cover;
	margin:0 auto 40px;
	padding-top:20px;
	height:1000px;
}
.problem {
	padding-top:40px;
	width:800px;
	margin:0 auto 20px;	
	display:block;
}


.problem h3 {
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:2vh;
	line-height:180%;
}
.problem p {
	font-size:1.6vh;
	line-height:160%;
	margin-bottom:20px;
}

.problem ul {
	display:flex;
	width:100%;
	margin:0 auto;
	justify-content: space-around;	
	flex-direction:column;
}

.problem ul li {
	width:100%;
	transform:none;
	text-align:center;
}

.problem ul li img {
	width:70%;
	clip-path: polygon(0 7%, 100% 0%, 100% 93%, 0 100%);
	margin:0 auto 20px;
}


.sParagraph {
	width:100%;
	max-width:100%;
	background:url("../i/publish_back02.jpg")top center no-repeat;
	background-size:cover;
	margin:0 auto 40px;
	height:600px;
	
}
.tParagraph {
	width:100%;
	max-width:100%;
	background:url("../i/publish_back03.jpg")top center no-repeat;
	background-size:cover;
	margin:0 auto 40px;	
	height:650px;
}

.foParagraph {
	width:100%;
	max-width:100%;
	background:url("../i/publish_back03.jpg")top center no-repeat;
	background-size:cover;
	margin:0 auto 40px;	
	height:500px;
}
.publish dl {
	width:750px;
	margin:0 auto;
	padding-top:90px;
	display:flex;
	justify-content: space-around;	
}
.sParagraph.publish dl {
	flex-direction:row-reverse;
}

.foParagraph dl {
	align-item:center;
}

.publish dl dt {
	align-self:center;
	width:47%;
	
}
.publish dl dt p {
	font-size:2.5vh;
}


.publish dl dt h3 {
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:2vh;
	line-height:180%;
}
.publish dl dt span {
	font-size:1.1vh;
	line-height:80%;
}

.publish dl dd {
	width:47%;
	transform:skewY(-3deg);
	overflow:hidden;
}
.publish dl dd img {
	width:100%;
	transform:skewY(3deg)scale(1.4);
}



@media screen and (max-width: 767px){
	.fParagraph {
		padding-top:10px;
		height:700px;
	}
	.problem {
		padding-top:10px;
		width:86%;
	}
	.problem ul {
		flex-direction: column;
	}
	.problem ul li {
		width:100%;
		margin-bottom:10px;
	}
	.problem ul li img {
		width:100%;
		margin-bottom:10px;
	}
	.tParagraph {
		height:700px;
	}
	.publish dl {
		width:80%;
		padding-top:30px;
		flex-direction:column;		
	}
	
	.publish dl dt {
		width:100%;
		margin-bottom:20px;
	}
	.publish dl dd {
		width:100%;
	}
	.publish dl dt h3 {
		font-size:3vh;		
	}
	.foParagraph {
		height:550px;
	}
}

/* -------------------------------------------- Lead Management Pre*/
.lmSeminar {
	width: 100%;
	max-width: 100%;
	margin:0 auto 40px;
}

dl.lmIntro {
	width:800px;
	margin:0 auto 40px;
	display:flex;
	justify-content: space-around;
}

dl.lmIntro dt {
	width:45%;
}
dl.lmIntro dt img {
	width:100%;
}

dl.lmIntro dd {
	width:45%;
	color:#000000;
	font-family: "Noto Sans JP", sans-serif;
	line-height:200%;
	font-size:1rem;
}

dl.lmIntro dd h3 {
	color:#000000;
	font-weight:bold;
	font-family: "Noto Sans JP", sans-serif;
	font-size:2.5vh;
	margin-bottom:5px;
}
dl.lmIntro dd span {
	font-size:.9rem;
}


@media screen and (max-width: 767px) {
	dl.lmIntro {
		width:85%;
		flex-direction: column;
		
	}
	dl.lmIntro dt {
		width:100%;
		margin-bottom:20px;
	}
	dl.lmIntro dd {
		width:100%;
		margin-bottom:20px;
	}
}

/* -------------------------------------------- Brief  */
.brief {
	max-width:100%;
	width: 100%;
	margin: 0 auto;
	padding:40px;
	overflow:hidden;
	text-align:center;
}

.brief dl {
	text-align:left;
	display:flex;
	flex-flow: row wrap;
	width: 700px;
	margin:0 auto;
	border:solid 1px #999999;
}
.brief dl dt {
	flex-basis: 25%;
	padding:10px;
	background-color:#dddddd;
	border-bottom: 1px solid #ccc;
}
.brief dl dd {
	padding:10px;
	flex-basis: 75%;
	background-color:#ffffff;
	border-bottom: 1px solid #ccc;
}

.brief dl dd strong {
	color:#fe4a04;
}
.brief dl dd a {
	position: relative;
}
.brief dl dd a::after {
	position: absolute;
		bottom: -3px;
		left: 0;
		display: block;
		content: "";
		width: 100%;
		height: 1px;
		background: #222;
		transform: scale(0,1);
		transform-origin: left top;
		transition: transform .3s ease;
}
.brief dl dd a:hover::after {
		transform: scale(1,1);	
}

@media screen and (max-width: 767px){
	.brief dl {
		width:90%;
		flex-direction:column;
	}
	.brief dl dt:nth-child(even) {
		background-color:#ffffff;
	}
	.brief dl dt {
		background-color:#dddddd;
	}
}

/* -------------------------------------------- Apply  */
.apply {
	max-width:100%;
	width: 100%;
	margin: 0 auto;
	overflow:hidden;
	text-align:center;
}

.applyGroup {
	width:800px;
	margin:0 auto 40px;	
}

.applyGroup dl {
	width:100%;
	margin:0 auto 20px;
}

.applyGroup dl dt {
	text-align:left;
	width:100%;	
	margin-bottom:10px;
	padding:10px;
	background-color:#cccccc;
	border-radius:10px;
	position: relative;
}
.applyGroup dl dt:before {
	 position: absolute;
    top: 20%;
    left: 20px;
    width: 6px;
    height: 60%;
    content: '';
    border-radius: 3px;
    background: #2bb9a4;
}

.applyGroup dl dt h4 {
	display:table;
	color:#000000;
	font-weight:bold;
	font-family: "Noto Sans JP", sans-serif;
	font-size:2.5vh;
	padding-left:30px;
}
.applyGroup dl dt h4 span {
	vertical-align: middle;
	border:solid 1px #2bb9a4;
	background-color:#F1F1E5;
	color:#000000;
	font-weight:bold;
	font-family: "Noto Sans JP", sans-serif;
	font-size:1.2vh;
	padding:5px 15px;
	margin-left:10px;
	border-radius:20px;	
}

.applyGroup dl dt h4 ins {
	font-weight:600;	
	font-size:1.8vh;
	text-decoration:none;
}

.applyGroup dl dd {
	display:flex;
	justify-content: space-between;	
}
.applyGroup dl dd dl {
	width:48%;
	text-align:center;
}

.applyGroup dl dd dl dt {
	text-align:center;
	color:#000000;
	font-weight:bold;
	font-family: "Noto Sans JP", sans-serif;
	font-size:1.6vh;
	margin-bottom:0;
	background-color:transparent;
}
.applyGroup dl dd dl dt:before {
	display:none;
}

.applyGroup dl dd dl dd {	
}

.btMember,.btNotMember {
	width:100%;
}
.btMember a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    max-width: 100%;
    padding: 10px 25px;
    font-family: "Noto Sans Japanese";
	font-size:2vh;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    line-height: 1.8;
    background: #e85398;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
}
.btMember a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btMember a:hover {
  background-color:#eda5c6;
  color: #FFF;
}
.btMember a:hover:after {
  right: 1.4rem;
}


.btNotMember a {
    background: #0b2237;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    max-width: 100%;
    padding: 10px 25px;
    font-family: "Noto Sans Japanese";
	font-size:2vh;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
}
.btNotMember a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btNotMember a:hover {
  background-color:#365470;
  color: #FFF;
}
.btNotMember a:hover:after {
  right: 1.4rem;
}
@media screen and (max-width: 767px){
	.applyGroup {
		width:90%;
	}
	.applyGroup dl dd {
		flex-direction: column;
	}
	.applyGroup dl dd dl {
		width:100%;
	}
	
}

/* -------------------------------------------- commonTitle */
.cTitle {
	padding-top:40px;
	margin:0 auto 20px;
	text-align:center;
} 

.cTitle h2 {
	position: relative;
	display: inline-block;
	padding: 0 45px;
	font-family: "Noto Sans JP", sans-serif;
	font-size:2.5rem;
	font-weight:bold;
	color:#333333;
}
.cTitle span {
	position:absolute;
	right: 0;
	left: 0;
	top:50px;
	margin: 0 auto;	
	font-family: "Noto Sans JP", sans-serif;
	font-size:1.2rem;
	color:#e85398;
}

.bookPub .cTitle span {
	top:120px;
}

.cTitle h2:before, .cTitle h2:after {
  content: '';
  position: absolute;
  top: 0;
  display: inline-block;
  width: 7px;
  height: 80px;
  background-color: #004173;
  -webkit-transform: skewX(20deg);
  transform:skewX(20deg);
}

.cTitle h2:before {
  left:0;
}

.cTitle h2:after {
  right: 0;
}
.subTitle {
	margin:0 auto;	
	text-align:center;
}
.subTitle h3 {
	position: relative;
	display: inline-block;
	text-align:center;
	padding: 0 55px;
	font-family: "Noto Sans JP", sans-serif;
	font-size:.9rem;
	font-weight:bold;
}

.subTitle h3:before, .subTitle h3:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}

.subTitle h3:before {
  left:0;
}
.subTitle h3:after {
  right: 0;
}

.floating {
	position: fixed;
	bottom: 10px;
	left: 10px;
	background-color: rgba(232, 83, 152, 0.8);
	z-index:99999;
	padding:20px 15px;
	border-radius:60px;
	text-align:center;
}
.floating a {
	color:#ffffff;
	transition:.5s;	
}
.floating a:hover {
	opacity:.5;
}

.floating .fa-edit {
	font-size:2rem;
}

/*
.floating {
	position: sticky;
	right: 8px;
	bottom: 8px;
	display: none;
}
.floating a {
	display: block;
	color: #fff;
	background: #000;
	padding: 8px;
	text-decoration: none;
	opacity: 0.6;
}
.floating a:hover {
	opacity: 1;
}
*/

@media screen and (max-width: 767px){
	.cTitle h2 {
		font-size:1.1rem;
		padding: 0 25px;
	}
	.cTitle h2:before, .cTitle h2:after  {
		width: 5px;
		height: 60px;		
	}
	.cTitle span {
		top:30px;
		font-size:.8rem;
	}
	h3.subTitle {
		font-size:.9rem;
		padding:0 15px;
	}
	.bookPub .cTitle span {
		top:60px;
	}
}



/* -------------------------------------------- 本紹介  */
.bookPub {
	width:100%;
	max-width: 100%;
	margin:0 auto;
}
.bookBack {
	width:100%;
	max-width: 100%;
	margin:40px auto 0;
	padding:50px 0;
	background:url("../i/pat_koshi.jpg")top left repeat;
	clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
	border-top:solid 1px #d3e5e2;
	border-bottom:solid 1px #d3e5e2;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

.bookBackWrap {
	width:100%;
	max-width: 100%;	
	filter: drop-shadow(0 0 1px rgba(117, 159, 152, 1));
}

.bookBack dl {
	width:700px;
	display:flex;
	justify-content: space-between;
	margin:40px auto 20px;
}

.bookBack dl dt {
	width:28%;
}
.bookBack dl dt img {
	width:100%;
	max-width: 100%;
	border:solid 1px #cccccc;
}

.bookBack dl dt a{
}
.bookBack dl dt a {
	width:100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:20px auto 0;
    max-width: 100%;
    padding: 10px 25px;
    font-family: "Noto Sans Japanese";
	font-size:1rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    line-height: 1.8;
    background: #e85398;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
}
.bookBack dl dt a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1.5rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.bookBack dl dt a:hover {
  background-color:#eda5c6;
  color: #FFF;
}
.bookBack dl dt a:hover:after {
  right: 1.4rem;
}
.bookBack dl dt a .fa-amazon {
	margin-right:10px;
}


.bookBack dl dd {
	width:68%;
}

.bookBack dl dd h3 {
	font-family: "Noto Sans JP", sans-serif;
	font-size:1.6rem;
	color:#333333;
	font-weight:bold;
	margin-bottom:30px;
}

.bookBack dl dd h5 {
	font-family: "Noto Sans JP", sans-serif;
	font-size:.9rem;
	margin-bottom:20px;
	color:#333333;
	font-weight:bold;
}

.bookBack dl dd ul li {
	font-family: "Noto Sans JP", sans-serif;
	font-size:.9rem;
	color:#333333;	
}
.bookBack p {
	width:700px;
	display:flex;
	justify-content: space-between;
	margin:0 auto 40px;
	font-size:1rem;
}
@media screen and (max-width: 767px) {
	.bookBack dl {
		width:80%;
		flex-direction:column;
	}
	.bookBack dl dt {
		width:100%;
		margin-bottom:20px;
	}
	.bookBack dl dd {
		width:100%;
	}
	.bookBack p {
		width:80%;
	}
}
/* -------------------------------------------- LEAD MGMT BANNER  */
ul.leadBnr {
	width:700px;
	margin:0 auto 40px;
	display:flex;
	justify-content: space-around;
}

ul.leadBnr li {
	width:45%;
}
ul.leadBnr li a figure img{
	transition:.5s;	
}

ul.leadBnr li a figure {
	width:100%;
}

ul.leadBnr li a figure img{
	width:100%;
}


ul.leadBnr li a figcaption {
	font-family: "Noto Sans JP", sans-serif;
	font-size:1.4vh;
	color:#d7e1e8;
	font-weight:bold;
	background:#444444;
	padding:5px 10px;
	text-align:center;
}

ul.leadBnr li a:hover figure img{
	opacity:.5;
}

@media screen and (max-width: 767px) {
	ul.leadBnr {
		flex-direction: column;
		width:80%;
	}
	ul.leadBnr li {
		width:100%;
	}
	ul.leadBnr li:first-child {
		margin-bottom:20px;
	}
}
/* -------------------------------------------- LEAD MGMT BANNER2  */
ul.leadBnr2 {
	width:800px;
	margin:0 auto 40px;
	display:flex;
	justify-content: space-around;
}

ul.leadBnr2 li {
	/*width:45%;*/
	color: #FFFFFF;
	border-radius:10px;
	padding: 15px 20px;
	width: 385px;
	display: table;
}
ul.leadBnr2 li span{font-size: 1.4em;font-weight: 600;}
ul.leadBnr2 a:hover li  {
	opacity:.5;
}
ul.leadBnr2 li#left_btn{background: #004173;}
ul.leadBnr2 li#right_btn{background: #2bb9a4 ;}
ul.leadBnr2 li#left_btn p{background:url("../i/icon_online.png") no-repeat ;padding-left: 100px;height: 80px;display: block;background-size: 80px;display: table-cell;vertical-align: middle;} 
ul.leadBnr2 li#right_btn p{background:url("../i/icon_real.png") no-repeat;padding-left: 100px;height: 80px;display: block;background-size: 80px;display: table-cell;vertical-align: middle;} 

@media screen and (max-width: 767px) {
	ul.leadBnr2 {
		flex-direction: column;
		width:80%;
	}
	ul.leadBnr2 li {
		width:100%;
	}
	ul.leadBnr2 li:first-child {
		margin-bottom:20px;
	}
}




/* -------------------------------------------- profile  */
.profile {
	width:100%;
	max-width: 100%;
	margin:0 auto;
	padding-top:50px;
	padding-bottom:50px;
	background-color:#004173;
	clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
	
}

.profile dl {
	display:flex;
	width:700px;
	justify-content: space-around;
	margin:0 auto;
	padding-top:40px;
	padding-bottom:40px;
}
.profile dl dt {
	width:30%;
}

.profile dl dt img {
	width:100%;
}

.profile dl dd {
	width:65%;
	font-family: "Noto Sans JP", sans-serif;
	font-size:.8rem;
	color:#ffffff;
	line-height:170%;
}

.profile dl dd h3 {
	font-family: "Noto Sans JP", sans-serif;
	font-size:2.5vh;
	color:#ffffff;
	font-weight:bold;	
	margin-bottom:10px;
}

.profile dl dd h5 {
	font-family: "Noto Sans JP", sans-serif;
	font-size:1.6vh;
	font-weight:bold;
	color:#ffffff;
	margin-bottom:10px;
}

@media screen and (max-width: 767px) {
	.profile dl {
		width:84%;
		flex-direction:column;
	}
	.profile dl dt {
		width:100%;
		margin-bottom:20px;
	}
	.profile dl dd {
		width:100%;
	}
	.profile dl dd h3 {
		margin-top:0;
	}
	.profile dl dd h5 {
		margin-top:10px;
	}
}

/* -------------------------------------------- Media */
.media {
	width: 100%;
	max-width: 100%;
}

.mediaList {
	margin:0 auto 10px;
	display:flex;
	flex-wrap:wrap;
	width:800px;
	justify-content: space-around;
}

.mediaList dl {
	width:40%;
	padding:20px;
	border-radius: 10px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	margin-bottom:40px;
}

.mediaList dl dt {
	width:100%;
	color:#000000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:1.4vh;
	margin-bottom:15px;
}
.mediaList dl dd {
	width:100%;
	display: inline-block;
	overflow: hidden;
}
.mediaList dl dd a {
	display: block;
	transition-duration: .5s;
}

.mediaList dl dd a img {
	width:100%;	
}
.mediaList dl dd a:hover {
	transform: scale(1.2);
	opacity:.7;
}


@media screen and (max-width: 767px){
	.mediaList {
		width:70%;
		flex-direction: column;
	}
	.mediaList dl {
		width:100%;
	}
}
@media screen and (min-width: 1500px) {
	.mediaList { 
		width:1200px;
	}
}
.mediaListPre {
	margin:0 auto 10px;
	display:flex;
	flex-wrap:wrap;
	width:800px;
	justify-content: space-around;
}

.mediaListPre dl {
	width:40%;
	padding:20px;
	border-radius: 10px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	margin-bottom:40px;
}

.mediaListPre dl dt {
	width:100%;
	color:#000000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:bold;
	font-size:1.4vh;
	margin-bottom:15px;
}
.mediaListPre dl dd {
	width:100%;
	display: inline-block;
	overflow: hidden;
}
.mediaListPre dl dd a {
	display: block;
	transition-duration: .5s;
}

.mediaListPre dl dd a img {
	width:100%;	
}
.mediaListPre dl dd a:hover {
	transform: scale(1.2);
	opacity:.7;
}


@media screen and (max-width: 767px){
	.mediaListPre {
		width:70%;
		flex-direction: column;
	}
	.mediaListPre dl {
		width:100%;
	}
}
@media screen and (min-width: 1500px) {
	.mediaListPre { 
		width:1200px;
	}
}

.more {
	margin:0 auto 40px;
	background-color:#eeeeee;
	color:#000000;
	text-align:center;
	border-radius:50px;
	width:90px;
	height:90px;
	padding-top:20px;
	transition:.5s;
}
.more:hover {
	background-color:#2bb9a4;
}
.arrowDown {
	text-align:center;
	margin:10px auto 0 auto;
  display: block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

/* ------------------------------  */
.contact {
	width: 100%;
	max-width: 100%;
	margin:0 auto 40px;
}



.contact a{
}
.contact a {
	width:300px;
    display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	padding: 1rem 4rem;
	border-radius: 10px;
	color: #fff;
	background: #2bb9a4;
}
.contact a:hover {
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: shad26 1.5s infinite;
	color: #fff;
}
@keyframes shad26 {
	0% {box-shadow: 0 0 0 0 #27acd9;}
	70% {box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);}
	100% {box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);}
}

/* -------------------------------------------- Inqury*/
.inqury {
	width: 100%;
	max-width: 100%;
}
.formCon {
	width:850px;
	margin:0 auto 40px;
}
.formCon dl {
	display:flex;
	justify-content: space-between;
	margin:0 auto;
	padding:30px 0;
	border-top:solid 1px #cccccc;
}
.formCon dl:last-child {
	border-bottom:solid 1px #cccccc;	
}

.formCon dl dt {
	width:23%;
	padding-left:10px;
	font-weight:bold;
	font-size:.9rem;
	color:#333333;
}

.formCon dl dt span {
	display:inline-block;
	padding:2px 8px;
	font-size:.7rem;
	color:#ffffff;
	background:#e85398;
	margin-left:10px;	
}

.formCon dl dd {
	width:72%;
	padding-left:10px;
	font-size:.9rem;
	color:#333333;
}

.formCon dl dd label {
	margin-right:20px;
}


.formCon dl dd ul {
	display:flex;
	justify-content: space-between;
	flex-wrap:wrap;
	margin:0 auto;
	width:100%;
}

.formCon dl dd ul li {
	width:47%;
	margin-bottom:15px;
}
.formCon dl dd ul li input {
	margin-right:5px;
}

.formCon .privacyRemind {
	margin:0 auto;
	padding:20px 0 0;
	width:100%;
	text-align:center;
}
.formCon .privacyRemind input {
	margin-right:10px;
}

.formCon .privacyRemind a {
	text-decoration:underline;
	transition: .5s;
}
.formCon .privacyRemind a:hover {
	opacity:.5;
}

@media screen and (max-width: 767px) {
	.formCon {
		width:80%;
	}
	.formCon dl {
		flex-direction: column;
	}
	.formCon dl dt,
	.formCon dl dd {
		width:100%;
	}
	.formCon dl dt {
		margin-bottom:10px;
	}
	.formCon dl dd ul li {
		width:100%;
	}
}


input[type="text"] {
  width: 100%;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
	border-radius:4px;
	border:solid 1px #999999;
	background-color:#f9f9f9;
}

input[type="text"]:focus {
}
input.applyBtn {
  display       : inline-block;
border:none;
  font-size     : 10pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 15px 47px;   /* 余白       */
  background    : #7d0000;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  opacity       : 1;           /* 透明度     */
  transition    : .3s;         /* なめらか変化 */
}
 
input.applyBtn:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  opacity       : 0.8;         /* カーソル時透明度 */
}

input.halfSize {
	width:200px;
}
input.oneThird {
	width:120px;
}
input.longSize {
	width:280px;
}

@media screen and (max-width: 767px) {
	input.halfSize,
	input.oneThird,
	input.longSize {
		width:100%;
	}
}

textarea {
  display: block;
  resize: horizontal;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
	border-radius:4px;
	border:solid 1px #999999;
	background-color:#f9f9f9;
	width:280px;
	height:200px;
}
@media screen and (max-width: 767px) {
	textarea {
		width:100%;
	}
}

.formCon button {
	cursor: pointer;
	margin:20px auto;
	width:400px;
	padding:20px 20px;
	background-color:#2bb9a4;
	color:#ffffff;
	font-weight:bold;
	font-size:1.1rem;
	transition:.5s;
	border-radius:10px;
	 position: relative;
}
.formCon button:hover {
	opacity:.7;
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: shad26 1.5s infinite;
	color: #fff;
}
.formCon button::after{
    /* 擬似要素で矢印アイコンをつくる */
    content: '';
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 10px;
    height: 10px;
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
}

@keyframes shad26 {
	0% {box-shadow: 0 0 0 0 #27acd9;}
	70% {box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);}
	100% {box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);}
}
@media screen and (max-width: 767px){
	.formCon button {
		width:80%;
	}
}
/* -------------------------------------------- ジャンプリンク調整 */
#qualityCompany::before,#AC15::before {
	display: block;
    height: 7rem;
    margin-top: -7rem;
    content: "";
}

/* -------------------------------------------- Footer */	
footer {
	width:100%;
	height:250px;
	background-color:#ffffff; 
	text-align:center;
	overflow:hidden;
	margin-top:40px;
}
ul.fNav {
	display:flex;
	justify-content: center;
	width:300px;
	margin:0 auto;
	padding:0 0 10px 0;
}
ul.fNav li{	
	margin:0 15px 0 0;
	color:#313131
	
}
ul.fNav li a{
	color:#313131;
		transition:.5s;
}
ul.fNav li a:hover{	
	color:#666666;
	border-bottom:solid 1px #666666;
	opacity:.5;
}
p {
	clear:both;
}

