@charset "utf-8";
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";
/* CSS Document */
/* -------------------------------------------- Basic Setting */	
html { 
	
}

body{
	font: 14px/1.6  "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "Noto Sans JP",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(35,114,186,0.95);
  z-index: 100;
  display: flex;
  justify-content: space-between;
}

header .logo {
	width: 30%;
	height: 72px;
	display:table-cell;
	text-align: left;
	line-height: 80px;
	font-size: 20px;
	font-weight: 600;
	padding-left:40px;
	transition:.5s;
}

header .logo:hover {
	opacity:.5;
}

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:#ffffff;
	font-weight:bold;
	font-size:1rem;
}

@media screen and (max-width: 767px){
	.psBanner {
		width:80%;
	}
}

header nav.pc-menu {
  width: 70%;
}

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 #8aa1b7;
	height:80px;
	padding-top:20px;
	
}

header nav.pc-menu ul li a::after{
	position:absolute;
	left:0;
	content:'';
	width:100%;
	height:4px;
	background:#f9fc03;
	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:#9db2c6;
	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: 72px;
      left: 0px;
      position: absolute;
      z-index: 10;
      width: 100%;
      background-color: rgba(18, 61, 108, 0.7);
  }
  .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共通 */
.tagHeading {
	display:block;
	width: fit-content;
	text-align:center;
	padding: 10px 20px 5px;
    margin: 0 auto 20px;
    background: #fff8e8;
    border-left: solid 20px #ffc06e;
	box-shadow: 6px 6px #888888;
}



.tagHeading h2 {
	font-size:1.8rem;
	font-weight:bold;
	color:#3a5269;
}

.tagHeading span {
	font-size:.7rem;
	color:#fba705;
}

p.subHeading {
	font-size:1rem;
	color:#3a5269;
	font-weight:600;
	text-align:center;
	margin:0 auto 40px;
}

.subTitle {
	text-align:center;
	margin:0 auto 20px;
}
.subTitle h3 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  color:#3a5269;
  font-size:1.2rem;
  font-weight:bold;
}

.subTitle h3:before, .subTitle h3:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  background-color: #3a5269;
}

.subTitle h3:before {
  left:0;
}
.subTitle h3:after {
  right: 0;
}

.normalHeading {
	display:block;
	text-align:center;
    margin: 0 auto 20px;
}

.normalHeading h2 {
	font-size:1.8rem;
	font-weight:bold;
	color:#3a5269;
}

.normalHeading span {
	font-size:.7rem;
	color:#fba705;
}

@media screen and (max-width: 767px){
	.tagHedding h2 {
		font-size:1.2rem;
	}
}


/* -------------------------------------------- Hero */
.hero {	
	width: 100%;
	background:url("../i/hero_pc02.png")50% -100px no-repeat,url("../i/thesis_back.png")bottom center no-repeat;
	background-size:120%,contain;
	z-index: 1;
	margin:0;
	padding:0 0 140px 0;
}

@media screen and (max-width: 767px){
	.hero {			
        width: 100%;
		background:url("../i/hero_pc02.png")40% 5% no-repeat,url("../i/thesis_back.png")bottom center no-repeat;
		background-size:250%,260%;
		padding:0 0 80px 0;
	}
	
}

.hero h1 {
	padding-top:10px;
	margin:0 auto;
	width: fit-content;
	color:#000000;
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight:bold;
	font-size:2.2rem;	
	z-index:3;
}

.hero h1 span {
	font-size:4rem;
	color:#ffffff;
    -webkit-text-stroke: 6px black;
  text-stroke: 6px black;
  paint-order: stroke;
}

.pictureWrap {
	text-align:center;
	max-width: 1000px;
    margin: 0 auto 20px;
    height: auto;
    display: block;
	z-index:2;
}

.pictureWrap img {
	width:100%;
}

.hero h2 {
	
	margin-left:auto;
	margin-right:auto;
	margin-bottom:20px;
	width: fit-content;
	color:#000000;
	font-weight:bold;
	font-size:1.7rem;	
	z-index:3;
}

.hero p {
	text-align:center;
	margin:0 auto;
	width: fit-content;
	color:#000000;
	font-weight:normal;
	font-size:1rem;	
	line-height:180%;
	z-index:3;
}

@media screen and (max-width: 767px){
	.hero h1 {		
		line-height:150%;
		font-size:2.3rem;
	}
	
	.pictureWrap img   {
		width:90%;
	}
	.hero h2 { 
		font-size:1.1rem;
	}
	.hero p {
		width:85%;
	}

}
@media screen and (max-width: 480px) {
	.medal {
		transform: scale(0.6);   /* 40%縮小 */
		right: -10px;
		top: -20px;
	}
}

@media screen and (min-width: 1550px){
	.hero {
		width: 100%;
		background:url("../i/hero_pc.png")50% -300px no-repeat,url("../i/thesis_back.png")bottom center no-repeat;
		background-size:120%,contain;
		z-index: 1;
		margin:0;
		padding:0 0 140px 0;
	}
}

/* -------------------------------------------- FOURTH ADVANTAGE */

/* 格子ボックス */
.advantage {
	width: 100%;
	max-width: 100%;
	padding-top:30px;	
	background:#327cac url(../i/trainer_back.png) repeat-x bottom left;
	overflow:hidden;
}
.graphBox {
	width:1000px;
	padding:40px;
	background:url("../i/graph_back.jpg")top left repeat;
	box-shadow: 7px 10px #1f5b82;
	margin:40px auto 120px;	
}

@media screen and (max-width: 767px){
	.graphBox {
		width:96%;
		padding:10px;
	} 
}

.fPowerWrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 100px;
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
	background:url(../i/arrow_circurate.png)center center no-repeat;
}

.fPowerBox {
	position: relative;
	padding: 40px 20px 20px;
	color: #333;
	overflow: visible; /* はみ出しを許可 */
	height:280px;
	border-radius: 10px;
	box-shadow: 6px 6px #888888;
	
}

.fPowerBox img {
	position: absolute;
	top: -20px;       /* 上にはみ出す量 */
	right: 0;
	left:0;     /* 右にはみ出す量 */
	width: 55%;      /* 適宜調整 */
	height: auto;
	margin: 0 auto;
}

.green  { background: #84bc93; }
.orange { background: #e58d25; }
.blue   { background: #8cb6c5; }
.red    { background: #dc6672; }

.fPowerCopy {
	position:absolute;
	left:0;
	right:0;
	bottom:10px;
	margin:0 auto;
	text-align:center;
}

.fPowerCopy h3 {
	margin-top: 20px;
	font-size: 1.3rem;
	font-weight:bold;
	color:#ffffff;
}

.fPowerCopy p {
	font-size: 0.9rem;
	line-height: 1.6;
	color:#ffffff;
}

@media screen and (max-width: 767px){
	.fPowerWrap {		
		gap: 40px;
		padding:20px 0;
		background-size:25%;
	}
	.fPowerCopy {
		padding:0 10px;
	}
	.fPowerBox {
		height:320px;
	}
	.fPowerBox img {
		right: 10px;   /* スマホでは少し控えめに */
		top: -15px;
		width: 80%;
	}
}
/* -------------------------------------------- POINT */
.pointSection {
  padding: 60px 20px;
}

.pointGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 60px auto;
}

.pointCard {
  position: relative;
  background: #f6f5e6;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border-radius:20px;
  border:1px dotted #555555;
  box-shadow: 6px 6px #888888;
}

.pointCard img {
  width: 80%;
  max-width: 100%;
  margin: 20px auto;
  border-radius:10px;
}

.pointCard h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
  color:#3a5269;
  border-bottom:solid 2px #3a5269;
}

.pointCard p {
  font-size: 0.9rem;
  line-height: 1.7;
  color:#3a5269;
}

/* 番号バッジ */
.pointNo {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.no1 { background: #8cc58c; }
.no2 { background: #6ab0de; }
.no3 { background: #b69363; }

@media screen and (max-width: 767px){
	.pointGrid {
		width:85%;
	}
}



/* -------------------------------------------- MOVIE */
.movieFrame {
	margin:0 auto;
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	height:466px;
	overflow: hidden;	
} 
.movieFrame iframe {
     position: absolute;
     top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
     width: 830px;
	height:466px;
	box-shadow: 6px 6px #888888;
	
}
@media screen and (min-width: 1100px){
	.movieFrame {
		 padding-bottom: 31%; /*アスペクト比 16:9の場合の縦幅*/
	}
	.movieFrame iframe {
	}
}

@media screen and (max-width: 767px){
	.movieFrame {
		width:96%;
		height:96%;
	}
	
	.movieFrame iframe {
		width:100%;
		height:100%;
	}
}

/* -------------------------------------------- STAFF */
.staff {
	width: 100%;
	max-width: 100%;
	padding-top:30px;	
	background-color:#e0ecf0;
	overflow:hidden;
}
.stFrame {
	width:1000px;
	margin:0 auto;
	max-width: 100%;
	padding-top:30px;	
	overflow:hidden;
}

.trainer {
	display:flex;
	width:100%;
	margin:0 auto 40px;
	justify-content: space-between;	
}

.trainer dl {
	display:flex;
	flex-direction: column;
	width:30%;
	border-radius:20px;
	overflow:hidden; 
}

.trainer dl dt {

}

.trainer dl dt img {
	width:100%;
}
.trainer dl dd {
	flex:1;
	background-color:#327cac;
	color:#ffffff;
	padding:15px;
}

.trainer dl dd h3 {
	font-weight:600;
	font-size:1.2rem;

}
.trainer dl dd h4 {
	font-weight:600;
	font-size:.9rem;
	margin-bottom:10px;
}
.trainer dl dd p {
	font-size:.9rem;
}

@media screen and (max-width: 767px){
	.stFrame {
		width:86%;
	}
	.trainer {
		flex-direction: column;
	}
	.trainer dl {
		width:100%;
		margin-bottom:20px;
	}
}

/* 開発者 */
.developer {
	display:block;
	width:800px;
	margin:0 auto 20px;
	color:#ffffff;
}

.developer dl {
	display:flex;
	justify-content: space-between;
	width:100%;
	background-color:#5aaddb;
	padding:20px;
	border-radius:20px;
}

.developer dl dt {
}

.developer dl dt img{
	width:100%;
	border-radius:20px;
}
.developer dl dd {
}
.developer dl dd dl {
	width:100%;
	display:flex;
	flex-direction: column;
}

.developer dl dd dl dt {
	margin-bottom:20px;
}
.developer dl dd dl dd {
	font-size:.82rem;
}

.developer h3 {
	font-weight:bold;
	font-size:1.2rem;
}
.developer h2 {
	font-size:1.5rem;
}
.developer h4 {
	font-size:1rem;
}

@media screen and (max-width: 767px){
	.developer {
		width:100%;
	}
	.developer dl {
		flex-direction: column;
	}
}

/* 運営責任者 */
.opMgr {
	display:flex;
	justify-content: space-between;
	width:800px;
	margin:0 auto 20px;
}
.opMgr h2 {
	font-size:1.2rem;
}
.opMgr h3 {
	font-size:.8rem;
}

.opMgr dl {
	display:flex;
	justify-content: space-between;
	flex-direction: column;
	width:48%;
	background-color:#5aaddb;
	padding:20px;
	border-radius:20px;
	color:#ffffff;
}

.opMgr dl dt {
	width:100%;
	margin-bottom:10px;
}

.opMgr dl dt dl {
	display:flex;
	justify-content: space-between;
	flex-direction: row;
	align-items:center;
	width:100%;
	padding:0;
}
.opMgr dl dt dl dt {
	width:30%;
}
.opMgr dl dt dl dt img {
	width:100%;
	border-radius:10px;
}

.opMgr dl dt dl dd {
	width:65%;
}

.opMgr dl dd {

}

@media screen and (max-width: 767px) {
	.opMgr {
		width:100%;
	}
	.opMgr dl dt dl {
		flex-direction:column;
	}
	.opMgr dl dt dl dt {
		width:100%;
	}
	.opMgr dl dt dl dd {
		width:100%;
	}
}

/* チームアシスタント */
.tmAst {
	display:flex;
	justify-content: space-between;
	flex-wrap:wrap;
	width:800px;
	margin:0 auto 20px;
}
.tmAst h3 {
	font-size:1rem;
	text-align:center;
	margin-bottom:5px;
	line-height:180%;
}

.tmAst h3 span {
	padding:0 10px 2px;
	border-bottom:2px solid #ffffff;
}
.tmAst dl {
	display:flex;
	flex-direction: column;
	width:30%;
	background-color:#88c6e8;
	padding:15px;
	border-radius:20px;
	color:#ffffff;
	margin-bottom:20px;
}
.tmAst dl dt {
	text-align:center;
	width:100%;
	margin-bottom:10px;
}
.tmAst dl dt img {
	width:80%;
	border-radius:50%;
}
.tmAst dl dd {
	width:100%;
	font-size:.8rem;
}
@media screen and (max-width: 767px) {
	.tmAst {
		width:100%;
	}
	.tmAst dl {
		width:47%;
	}
}

/* -------------------------------------------- Info */
.info {
	max-width:100%;
	width: 100%;
	margin: 0 auto;
	background-color:#f9f9ee;
	overflow:hidden;
}
.infoWrap {
	margin:40px auto;
	width:800px;
}

.infoWrap table {
	width:90%;
	margin:0 auto;
	border-collapse: collapse;
}

.infoWrap table th,
.infoWrap table td {
	padding:10px;
	vertical-align:middle;
	text-align:left;
}

.infoWrap table th {
	width:20%;
	font-size:1rem;
	font-weight:bold;
}
.infoWrap table td {
	font-size:.9rem;
}

.infoWrap table tr {
	border-bottom:solid 1px #888888;
}

.infoWrap table tr:first-child {
	border-top:solid 4px #888888;
}
.infoWrap table tr:last-child {
	border-bottom:solid 4px #888888;
}
@media screen and (max-width: 767px){
	.infoWrap {
		width:100%;
	}
}
.infoEntryWrap {
	width:500px;
	margin:0 auto 40px;
	text-align:center;
	display:flex;
	justify-content: space-around;
}
.realEntry{
    position: relative;
    padding: 20px 30px;
	width:80%;
	font-size:1.2rem;
	font-weight:bold;
	transition:.5s;
	background-color:#fba705;
	color:#ffffff;
	border-radius:20px;
}
.realEntry::before{
    content: "";
    position: absolute;
    top: 50%;   /* 縦軸をセンタリングする */ 
    right: 5px;
	color:#ffffff;
    transform: translateY(-50%);   /* 縦軸をセンタリングする */  
    border: 5px solid transparent;
    border-left: 8px solid #ffffff;   /* 好みで色を変えてください */  	
}

.realEntry:hover {
	opacity:.5;
}

.advNotice {
    position: relative;
    padding: 20px 30px;
	width:80%;
	font-size:1.2rem;
	font-weight:bold;
	transition:.5s;
	background-color:#fba705;
	color:#ffffff;
	border-radius:20px;
}

.advNotice h3 {
	font-size:2rem;
}
.advNotice h3 span {
	font-size:1rem;
}


.onlineEntry{
    position: relative;
    padding: 20px 30px;
	transition:.5s;
	width:40%;
	background-color:#ffffff;
	border:4px solid #2c324e;
	color:#2c324e;
}
.onlineEntry::before{
    content: "";
    position: absolute;
    top: 50%;   /* 縦軸をセンタリングする */ 
    right: 5px;
	color:#ffffff;
    transform: translateY(-50%);   /* 縦軸をセンタリングする */  
    border: 5px solid transparent;
    border-left: 8px solid #2c324e;   /* 好みで色を変えてください */  
	
}
.onlineEntry:hover {
	opacity:.5;
}

@media screen and (max-width: 767px){
	.infoEntryWrap {
		width:100%;
		flex-direction:column;
	}
	.realEntry {
		width:90%;
		margin:0 auto 20px;
	}
	.advNotice {
		width:90%;
		margin:0 auto 20px;
	}
	.onlineEntry {
		width:90%;
		margin:0 auto 20px;
	}
}

/* -------------------------------------------- Q&A */
.question {
	width: 100%;
	max-width: 100%;
	padding-top:40px;
	padding-bottom:40px;
	background-color:#f9f9ee;
	overflow:hidden;
}
.qaFrame {
	width:800px;
	margin:0 auto;
	max-width: 100%;
	padding-top:30px;	
	overflow:hidden;
}
.qaBox {
  margin-inline: auto;
  margin-top: 30px;
  margin-bottom:40px;
  max-width: 100%;
  position: relative;
  width: 100%;
}
.accordion-title {
	display:flex;
	align-items: center;
  color: #000;
  cursor: pointer;
  font-size: 1.2rem;
  background-color:#ffffff;
  padding: 10px 20px;
  border-radius:20px;
}

.accordion-title .qMark {
	display:flex;
	text-align:center;
	align-items: center;
	justify-content: center;
	width:50px;
	height:50px;
	font-size:2.5rem;
	padding:10px;
	font-weight:bold;
	color:#ffffff;
	background-color:#719bc2;
	border-radius:50%;
	padding: 0;        /* paddingは使わない */
	line-height: 1;    /* 行高の影響を排除 */
	flex-shrink: 0;
	margin-right:20px;
}

.accordion-title h2 {
	font-size:1.2rem;
	font-weight:bold;
	color:#333333;
}

.accordion-content {
  display: none;
  padding: 20px 20px 20px 30px;
}
.accordion-content dl {
	width:100%;
	display:flex;
}

.accordion-content dl dt {
	width:10%;
	font-size :2.5rem;
	font-weight:bold;
	color:#fba705;
	margin-right:20px;
}
.accordion-content dl dd {
	font-size:.9rem;
	line-height:180%;
	color:#333333;
}

.accordion-content p {
  font-size: 13px;
  line-height: 1.5;
}
/* タイトルの背景色 */
.accordion-item:nth-of-type(1) .accordion-title {
  background-color: #7f7fff;
}
.accordion-item:nth-of-type(2) .accordion-title {
  background-color: #66cdaa;
}
.accordion-item:nth-of-type(3) .accordion-title {
  background-color: #ff7f7f;
}
/* コンテンツボックスの枠線 */
.accordion-item:nth-of-type(1) .accordion-content {
  border-bottom: 2px solid #7f7fff;
  border-left: 2px solid #7f7fff;
  border-right: 2px solid #7f7fff;
}
.accordion-item:nth-of-type(2) .accordion-content {
  border-bottom: 2px solid #66cdaa;
  border-left: 2px solid #66cdaa;
  border-right: 2px solid #66cdaa;
}
.accordion-item:nth-of-type(3) .accordion-content {
  border-bottom: 2px solid #ff7f7f;
  border-left: 2px solid #ff7f7f;
  border-right: 2px solid #ff7f7f;
}
/* 矢印 */
.accordion-title {
  position: relative;
}
.accordion-title::after {
  border-right: solid 2px #719bc2;
  border-top: solid 2px #719bc2;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 38%;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 8px;
}
.accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {	
	.qaFrame {
		width:100%;
	}
	.qaBox {
		width:86%;
	}
	.accordion-title h2 {
		font-size:1rem;
	}
	.accordion-title .qMark {
		margin-right:10px;
	}
	.accordion-title h2 {
		padding-right:15px;
	}
}

/* -------------------------------------------- FLOATING*/
.floating {
	position: fixed;
	bottom: 10px;
	right: 10px;
	background-color: rgba(233, 55, 81, 0.8);
	z-index:99999;
	padding:20px 33px;
	border-radius:50%;
	text-align:center;
	
	line-height:100%;
}
.floating a {
	font-size:11px;
	line-height:110%;
	color:#ffffff;
	transition:.5s;	
}
.floating a:hover {
	opacity:.5;
}
.floating .fa-envelope {
	font-size:50px;
}

/*
.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;
}
*/





/* ------------------------------  */
.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%;
	}
}


/* -------------------------------------------- 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;
}

