/*
===================================================
	root
===================================================
*/
:root {
 --purple: #e4007f;
 --blue: #002870;
 --yellow: #fac75c;
 --pink: #fff2f9;
 --orange: #fe8f00;
}

/*
===================================================
	Reset
===================================================
*/
*{
 margin: 0px;
 padding: 0px;
}
li{
 list-style: none;
}
a{
 text-decoration: none;
 color: #333
}
a:hover{
 transition: .5s;
 opacity: .5;
}
a:hover img{
 transition: .5s;
 opacity: .5;
}
a:visited{
 color: #333;
}
address{
 font-style:normal;
}
h1,h2,h3,h4,h5,h6{
 line-height: 1.4em;
}
/*
===================================================
	Base Setting
===================================================
*/
body {
	line-height: 1.4em;
 letter-spacing: 0.05em;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS P Gothic","Osaka",arial,sans-serif;
}
img{
 max-width: 100%;
 height: auto;
 vertical-align: bottom;
}
.sp-visible{
 visibility: hidden;
 width: 0px;
 height: 0px;
}
.maxWidth{
 max-width: 1200px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
.maxWidth2{
 max-width: 1000px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
.maxWidth3{
 max-width: 800px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
#header{
 position: relative;
 background: rgba(0,40,110,0.5);
}
#header .logo{
 padding: 10px;
}
#header .contactArea{
 position: absolute;
 right: 0px;
 top: 0px;
 display: flex;
 text-align: right;
}
#header .contactArea .tel{
 padding: 10px;
}
#header .contactArea .tel *{
 vertical-align: middle;
}
#header .sp-menuArea .tel a{
 display: flex;
 align-items: center;
 justify-content: center;
}
#header .sp-menuArea .tel a span{
 display: inline-block;
 padding-right: 10px;
}
#header .contactArea .mail{
 background: #e4007f;
 display: flex;
 align-items: center;
 text-align: center;
 padding: 0 10px;
}
#header .contactArea .join{
 background: #f8b62b;
 display: flex;
 align-items: center;
 padding: 0 10px;
 line-height: 1.1em;
 font-size: 15px;
}
#nav>ul{
 text-align: center;
 letter-spacing: -.4em;
}
#nav>ul>li{
 display: inline-block;
 border-right: solid 1px #555;
 letter-spacing: normal;
 width: 20%;
}
#nav>ul>li:last-child{
 border:none;
}
#nav>ul>li>a{
 letter-spacing: normal;
 display: block;
 padding: 10px 20px;
 color: #fff;
 position: relative;
}
#nav>ul>li a:hover{
 opacity: 1;
}
#nav>ul>li:not(.loginBtn)>a:before{
 display: block;
 content: "";
 position: absolute;
 bottom: 0px;
 left: 0px;
 width: 0px;
 border-bottom: solid 2px #fff;
 transition: .5s;
}
#nav>ul>li:not(.loginBtn)>a:hover:before{
 width: 100%;
}
#nav>ul>li.loginBtn>a,
#footer .loginBtn a{
 color: var(--purple);
 background: #fff;
 border:solid 1px var(--purple);
 margin: 5px 10px;
 padding: 2px 10px;
 transition: .5s;
 display: block;
 text-align: center;
}
#nav .loginBtn a:hover,
#footer .loginBtn a:hover{
 opacity: 1;
 color: #fff;
 background: var(--purple);
}
#nav>ul>li.sublist{
 position: relative;
}
#nav>ul>li.sublist>a{
 padding-right: 30px;
}
#nav>ul>li.sublist>a:after{
 display: block;
 content: "";
 position: absolute;
 right: 12px;
 top: 16px;
 width: 8px;
 height: 8px;
 border-top: solid 2px #fff;
 border-right: solid 2px #fff;
 transform: rotate(45deg);
 transition: .5s;
}
#nav>ul>li.sublist>a:hover:after,
#nav>ul>li.sublist.active>a:after{
 transform: rotate(135deg);
}
#nav>ul>li.sublist .sublistData{
 visibility: hidden;
 opacity: 0;
 overflow: hidden;
 width: 100%;
 box-sizing: border-box;
 background: rgba(0,0,0,.7);
 position: absolute;
 top: 100%;
 left: 0px;
 padding: 1%;
 z-index: 2;
}
#nav>ul>li.sublist:hover .sublistData{
 visibility: visible;
 opacity: 1;
 transition: opacity .5s;
}
#nav>ul>li.sublist .sublistData li a{
 color: #fff;
 display: block;
 padding: 5px;
}
#nav>ul>li.sublist .sublistData li a:hover{
 background: rgba(0,0,0,0.4);
}

#main{

}
#footer{
 padding: 80px 0px 20px;
}
#footer .ttl{
 background: var(--purple);
 color: #fff;
 display: flex;
 align-items: center;
 justify-content: center;
}
#footer .ttl *{
 padding: 5px;
}
#footer .text1{
 display: flex;
 justify-content: center;
 align-items: center;
 background: #fff;
 padding: 20px;
 border:solid 1px var(--purple);
}
#footer .text1>p{
 padding: 10px;
}
#footer .text1 .time{
 display: flex;
}
#footer .text2{
 display: flex;
 border:solid 1px var(--purple);
 border-top: none;
 background: #fff;
}
#footer .text2>a{
 width: 50%;
 text-align: center;
 display: block;
 padding: 30px;
}
#footer .text2>a:first-child{
 border-right: solid 1px var(--purple);
}
#footer .footerList1 ul{
 display: flex;
 justify-content:center;
}
#footer .footerList1 ul li{
 border-right: solid 1px #fff;
}
#footer .footerList1 ul li:first-child{
 border-left: solid 1px #fff;
}
#footer .footerList1 ul li a{
 display: block;
 padding: 10px 20px;
}
#footer .footerList2{
 text-align: center;
}
#footer .footerList2>*{
 text-align: center;
 display: inline-block;
}
#footer .footerList2 ul{
 text-align: center;
}
#footer .footerList2 ul li{
 display: inline-block;
}
#footer .footerList2 ul li a{
 position: relative;
 display: block;
 padding: 0px 15px;
}
#footer .footerList2 ul li a:before{
 display: block;
 content: "";
 position: absolute;
 border-left: solid 8px #fff;
 border-top:solid 4px transparent;
 border-bottom:solid 4px transparent;
 left: 0px;
 top: 50%;
 margin-top: -4px;
}
#footer .copyright{
 border-top: solid 1px #fff;
}
#pagetop{
 position: fixed;
 z-index: 2;
 bottom: 15px;
 right: 15px;
 visibility: hidden;
 opacity: 0;
 text-align: center;
}
#pagetop.active{
 visibility: visible;
 opacity: 1;
}
#pagetop a .text{
 display: inline-block;
 background: #e4007f;
 color: #fff;
 position: relative;
 padding: 5px 15px;
}
#pagetop a .img{
 display: block;
 width: 100px;
 margin-top: 13px;
}
#pagetop a .img img{
 width: 100%;
 height: auto;
}
#pagetop a .text:before{
 display: block;
 position: absolute;
 content: "";
 border-top: solid 10px #e4007f;
 border-left: solid 10px transparent;
 border-right: solid 1px transparent;
 left: 42%;
 bottom: -10px;
}
.clearfix{
 overflow: hidden;
}
.fLeft{
 float: left;
}
.fRight{
 float: right;
}
.tLeft{
 text-align: left;
}
.tRight{
 text-align: right;
}
.tCenter{
 text-align: center;
}
.vTop{
 vertical-align: top;
}
.vMiddle{
 vertical-align: middle;
}
.vBottom{
 vertical-align: bottom;
}
.mb1em{
 margin-bottom: 1em;
}
.mb2em{
 margin-bottom: 2em;
}
.mb3em{
 margin-bottom: 3em;
}
.mb50{
 margin-bottom: 50px;
}
.mb100{
 margin-bottom: 100px;
}
.mt1em{
 margin-top: 1em;
}
.mt2em{
 margin-top: 2em;
}
.mt3em{
 margin-top: 3em;
}
.mt50{
 margin-top: 50px;
}
.mt100{
 margin-top: 100px;
}
.mr1em{
 margin-right: 1em;
}
.mr2em{
 margin-right: 2em;
}
.mr3em{
 margin-right: 3em;
}
.ml1em{
 margin-left: 1em;
}
.ml2em{
 margin-left: 2em;
}
.ml3em{
 margin-left: 3em;
}
.p10{
 padding: 10px;
}
.p20{
 padding: 20px;
}
.p30{
 padding: 30px;
}
.pb1em{
 padding-bottom: 1em;
}
.pb2em{
 padding-bottom: 2em;
}
.pb3em{
 padding-bottom: 3em;
}
.pb50{
 padding-bottom: 50px;
}
.pb100{
 padding-bottom: 100px;
}
.pt1em{
 padding-top: 1em;
}
.pt2em{
 padding-top: 2em;
}
.pt3em{
 padding-top: 3em;
}
.pt50{
 padding-top: 50px;
}
.pt100{
 padding-top: 100px;
}
.pr10{
 padding-right: 10px
}
.font-s{
 font-size: 80%;
}
.font-ss{
 font-size: 60%;
}
.font-m{
 font-size: 100%;
}
.font-l{
 font-size: 140%;
}
.font-ll{
 font-size: 180%;
}
.font-lll{
 font-size: 250%;
}
.orange,
.orange a,
a.orange{
 color: var(--orange) !important;
}
.bgOrange{
 background: var(--orange);
}
.bgOrange2{
 background: #fff8ec;
}
.purple,
.purple a,
a.purple{
 color: var(--purple) !important;
}
.purpleFrame{
 text-shadow: 1px 1px 2px #e4007f,
  2px 2px 2px #e4007f,
  0px 2px 2px #e4007f,
  0px -2px 2px #e4007f,
  -2px 2px 2px #e4007f,
  2px -2px 2px #e4007f,
  -1px -1px 2px #e4007f,
  -2px -2px 2px #e4007f;
}
.bgPurple{
 background: var(--purple);
}
.white,
.white a,
a.white{
 color: #fff !important;
}
.blue,
.blue a,
a.blue{
 color: var(--blue);
}
.bgWhite{
 background: #fff;
}
.bgBlue{
 background: var(--blue);
}
.bgYellow{
 background: var(--yellow);
}
.bgPink{
 background: var(--pink);
}
.bold{
 font-weight: bold;
}
.lh1_5em{
 line-height: 1.5em;
}
.lh2em{
 line-height: 2em;
}
.dNone{
 display: none;
}
.dIb{
 display: inline-block;
}

.flex{
 display: flex;
 justify-content: center;
}
.flex.sa{
 justify-content: space-around;
}
.flex.sb{
 justify-content: space-between;
}
.w10{
 width: 10%;
}
.w20{
 width: 20%;
}
.w30{
 width: 30%;
}
.w40{
 width: 40%;
}
.w50{
 width: 50%;
}
.w60{
 width: 60%;
}
.w70{
 width: 70%;
}
.w80{
 width: 80%;
}
.w90{
 width: 90%;
}
.w100{
 width: 100%;
}

.tShadow{
 text-shadow:2px 2px 2px rgba(0,0,0,0.4);
}

.btnPush a{
 display: inline-block;
}
.btnPush a .inner{
 position: relative;
 border:solid 2px #333;
 display: flex;
 background: #fff;
 z-index: 2;
 box-shadow: 3px 5px 0px rgba(228,0,127,1);
 transition: .5s;
}
.btnPush a:hover{
 opacity: 1;
}
.btnPush a:hover .inner{
 transform: scale(0.98,0.98);
 box-shadow: 3px 5px 0px rgba(228,0,127,0);
}
.btnPush a .inner>span{
 padding: 20px;
}
.btnPush a .inner>span.text{
 min-width: 200px;
}
.btnPush a .inner>span.icon{
 border-left: solid 2px #333;
}

.btnScale:hover,
.btnScale:hover a{
 opacity: 1;
}
.btnScale:hover img{
 opacity: 1;
 transform: scale(1.05,1.05);
 transition: .5s;
}

.styleBtn a{
 display: inline-block;
}
.styleBtn a .inner{
 position: relative;
 display: flex;
 background: var(--purple);
 color: #fff;
 z-index: 2;
 transition: .5s;
}
.styleBtn a .inner>span{
 padding: 10px;
}
.styleBtn a .inner>span.text{
 padding-left: 20px;
}

.styleList.list1>li{
 position: relative;
 padding-left: 25px;
 margin-bottom: 10px;
}
.styleList.list1>li:before{
 position: absolute;
 content: "";
 display: block;
 width: 12px;
 height: 12px;
 background: #000;
 border-radius: 12px;
 left: 0px;
 top: 5px;
}
.styleList.list2{
 display: flex;
 text-align: center;
 flex-wrap: wrap;
}
.styleList.list2>li{
 display: block;
 width: 48%;
 margin: 1%;
 box-sizing: border-box;
}

.styleList.list3{
 display: flex;
 text-align: center;
 flex-wrap: wrap;
}
.styleList.list3>li{
 width: 31%;
 margin: 1%;
 box-sizing: border-box;
}

.styleList.list4{
 display: flex;
 text-align: center;
 flex-wrap: wrap;
}
.styleList.list4>li{
 width: 23%;
 margin: 1%;
 box-sizing: border-box;
}

.page_common{
 background: url(../img/bg_pageHeader.png) no-repeat top center;
 background-size: auto 750px;
}
.page_common #pageAbout{
 padding-top: 120px;
 padding-bottom: 100px;
}

.fcTextBox{
 border:solid 1px #000;
 padding: 40px 80px;
}
.fcMsgList{
 display: inline-block;
 margin-left: auto;
 margin-right: auto;
}
.fcMsgList li{
 text-align: left;
}
.fcMsgList li h4 span{
 background: #000;
 padding: 15px;
 display: inline-block;
 color: #fff;
 transform: skewX(-15deg);
 font-size: 220%;
}
.fcMsgList li p{
 padding: 10px 0px 25px;
}

/*
===================================================
	ps mini
===================================================
*/
@media screen and (max-width: 1380px) {
 #nav>ul>li a{
  display: block;
  padding: 10px 20px;
  color: #fff;
 }
 #nav .loginBtn{
  margin: 15px;
 }
}

/*
===================================================
	tb
===================================================
*/
@media screen and (max-width: 1200px) {
 #header{
  padding: 55px 0px 10px;
 }
 #nav>ul>li.loginBtn{
  position: absolute;
  right: 0px;
  top: 65px;
  width: auto;
 }
 #nav>ul>li{
  width: 30%;
  border: none;
 }
 #nav>ul>li.sublist>a{
  padding-right: 0px;
 }
 #nav>ul>li.sublist>a:after{
  display: inline-block;
  position: static;
  margin-left: 8px;
 }
 #nav>ul>li.sublist>a:hover:after{
  transform: rotate(135deg);
 }
}

/*
===================================================
	sp
===================================================
*/
@media screen and (max-width: 768px) {
 .sp-visible{
  visibility: visible;
  width: auto;
  height: auto;
 }
 .sp-hidden{
  visibility: hidden;
  width: 0px;
  height: 0px;
 }
 .sp-dBlock{
  display: block;
 }
 .sp-dIb{
  display: inline-block;
 }
 .sp-dNone{
  display: none;
 }
 .sp-menuBtn {
  cursor: pointer;
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 6px;
  width: 35px;
  height: 35px;
  border: solid 2px #888;
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.07);
 }
 .sp-menuBtn .sp-menuBtn__inner {
  transition: transform 0.5s;
  position: relative;
  top: 10px;
  left: 8px;
  width: 19px;
  height: 3px;
  background: #555555;
 }
 .sp-menuBtn .sp-menuBtn__inner::after {
  transition: transform 0.5s;
  position: absolute;
  top: 6px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #555555;
 }
 .sp-menuBtn .sp-menuBtn__inner::before {
  transition: transform 0.5s;
  position: absolute;
  top: 12px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #555555;
 }
 .sp-menuBtn.active .sp-menuBtn__inner {
  position: relative;
  top: 16px;
  left: 8px;
  width: 19px;
  height: 3px;
  background: #555555;
  transform: rotate(45deg);
 }
 .sp-menuBtn.active .sp-menuBtn__inner::after {
  position: absolute;
  top: 0px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #555555;
  transform: rotate(90deg);
 }
 .sp-menuBtn.active .sp-menuBtn__inner::before {
  position: absolute;
  top: 0px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #555555;
 }
 .sp-menuBtn span {
  display: none;
 }
 .sp-menuArea {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: scroll;
 }
 .sp-menuArea.active {
  transition: opacity 0.5s;
  opacity: 1;
  visibility: visible;
  z-index: 998;
 }
 .sp-menuArea .sp-menu {
  padding: 50px 10px 10px;
 }
 .sp-menuArea .sp-menu li {
  border-bottom: solid 1px #eee;
 }
 .sp-menuArea .sp-menu li a {
  position: relative;
  display: block;
  padding: 10px 5px 10px 12px;
  color: #555555;
 }
 .sp-menuArea .sp-menu li a::before {
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -3px;
  vertical-align: middle;
  content: "";
  display: block;
  border-left: solid 6px #555555;
  border-top: solid 4px transparent;
  border-bottom: solid 4px transparent;
 }
 .sp-font-s{
  font-size: 80%;
 }
 .sp-font-m{
  font-size: 100%;
 }
 .sp-font-l{
  font-size: 120%;
 }
 .sp-font-ll{
  font-size: 150%;
 }
 .sp-fLeft{
  float: left;
 }
 .sp-fRight{
  float: right;
 }
 .sp-tLeft{
  text-align: left;
 }
 .sp-tRight{
  text-align: right;
 }
 .sp-tCenter{
  text-align: center;
 }
 .sp-vTop{
  vertical-align: top;
 }
 .sp-vMiddle{
  vertical-align: middle;
 }
 .sp-vBottom{
  vertical-align: bottom;
 }
 .sp-mb1em{
  margin-bottom: 1em;
 }
 .sp-mb2em{
  margin-bottom: 2em;
 }
 .sp-mb3em{
  margin-bottom: 3em;
 }
 .sp-mt0{
  margin-top: 0px;
 }
 .sp-mt1em{
  margin-top: 1em;
 }
 .sp-mt2em{
  margin-top: 2em;
 }
 .sp-mt3em{
  margin-top: 3em;
 }
 .sp-pb1em{
  padding-bottom: 1em;
 }
 .sp-pb2em{
  padding-bottom: 2em;
 }
 .sp-pb3em{
  padding-bottom: 3em;
 }
 .sp-pt1em{
  padding-top: 1em;
 }
 .sp-pt2em{
  padding-top: 2em;
 }
 .sp-pt3em{
  padding-top: 3em;
 }
 .sp-p10{
  padding: 10px;
 }
 .sp-p20{
  padding: 20px;
 }
 .sp-p30{
  padding: 30px;
 }
 .sp-w10{
  width: 10%;
 }
 .sp-w20{
  width: 20%;
 }
 .sp-w30{
  width: 30%;
 }
 .sp-w40{
  width: 40%;
 }
 .sp-w50{
  width: 50%;
 }
 .sp-w60{
  width: 60%;
 }
 .sp-w70{
  width: 70%;
 }
 .sp-w80{
  width: 80%;
 }
 .sp-w90{
  width: 90%;
 }
 .sp-w100{
  width: 100%;
 }
 #header .contactArea .tel{
  display: none;
 }
 #header .contactArea .mail{
  background: #e4007f;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 10px;
 }
 #header{
  padding: 0px;
 }
 #header .logo img{
  height: 48px;
  width: auto;
 }
 #header .contactArea .join{
  display: none;
 }
 #nav{
  display: none;
 }
 #main{
 }
 #footer{
  padding: 30px 0px 20px;
 }
 #footer .ttl{
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
 }
 #footer .ttl *{
  padding: 5px;
 }
 #footer .text1{
  flex-direction: column;
  padding: 10px;
 }
 #footer .text1>p{
  padding: 10px;
 }
 #footer .text1 .time{
  display: flex;
 }
 #footer .text2{
  flex-direction: column;
 }
 #footer .text2>a{
  width: auto;
  text-align: center;
  display: block;
  padding: 10px;
  border-top: solid 1px var(--purple);
 }
 #footer .text2>a:first-child{
  border: none;
 }
 #footer .footerList1 ul{
  display: block;
  justify-content:center;
 }
 #footer .footerList1 ul li{
  border-right: none;
  border-bottom: solid 1px #fff;
 }
 #footer .footerList1 ul li:first-child{
  border-left: none;
 }
 #footer .footerList1 ul li a{
  display: block;
  padding: 10px 20px;
 }
 #footer .footerList2{
  text-align: center;
 }
 #footer .footerList2>*{
  text-align: center;
  display: inline-block;
 }
 #footer .footerList2 ul{
  text-align: center;
 }
 #footer .footerList2 ul li{
  display: inline-block;
 }
 #footer .footerList2 ul li a{
  position: relative;
  display: block;
  padding: 0px 15px;
 }
 #footer .footerList2 ul li a:before{
  display: block;
  content: "";
  position: absolute;
  border-left: solid 8px #fff;
  border-top:solid 4px transparent;
  border-bottom:solid 4px transparent;
  left: 0px;
  top: 50%;
  margin-top: -4px;
 }
 #footer .copyright{
  border-top: solid 1px #fff;
 }

 #pagetop{
  bottom: 5px;
  right: 5px;
 }
 #pagetop a .img{
  width: 80px;
 }

 .styleList.list3{
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  flex-direction: column;
 }
 .styleList.list3>li{
  width: auto;
  margin: 1%;
  box-sizing: border-box;
 }

 .styleList.list4{
  display: flex;
  text-align: center;
  flex-wrap: wrap;
 }
 .styleList.list4>li{
  width: 48%;
  margin: 1%;
  box-sizing: border-box;
 }

 .page_common #pageAbout{
  padding-top: 60px;
  padding-bottom: 50px;
  text-align: center;
 }

 .fcTextBox{
  border:solid 1px #000;
  padding: 20px;
 }
 .fcMsgList{
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
 }
 .fcMsgList li{
  text-align: left;
 }
 .fcMsgList li h4 span{
  background: #000;
  padding: 15px;
  display: inline-block;
  color: #fff;
  transform: skewX(-15deg);
  font-size: 110%;
  line-height: 1.5em;
 }
 .fcMsgList li p{
  padding: 10px 0px 25px;
 }

}