@charset "utf-8";
/* CSS Document */

.clearfix:after {
    content: "";
    clear: both;
    display: block;
}

body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Helvetica, verdana, "Lucida Grande", "ＭＳ Ｐゴシック", "Osaka", Arial, sans-serif;
    color: #333333;
    font-size: 14px;
}

.whiteArea { background: #FFFFFF;}
.blueArea {
    background: url(../img/night_bg.gif) repeat;
    padding: 20px 0 5px;
}
.blueArea.pt0 {
    padding-top: 0;
}
.inner {
    width: 95%;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}
h3 {
    margin: 0 auto 10px!important;
    width: 83%;
}
.step h3{width: 96%;}
.environment h3{width: 73%;}
.income h3{width: 93%;}
.voice h3{width: 91%;}
h3,h4 { text-align: center;}
.text {
    text-align: left;
    line-height: 1.6;
}
.table {display: table;border-collapse: separate;}
.table .tablecell {display: table-cell;width: 50%;}
.taC { text-align: center;}
.taR { text-align: right;}
.annotation {
    color: #666666;
    text-align: left;
    line-height: 1.6;
    font-size: 12px;
}
em {
    color: #d94274;
    font-size: 28px;
    -webkit-text-stroke-width: 1.2px;
    -webkit-text-stroke-color: #d94274;
    -webkit-text-fill-color: #d94274;
}
em span {font-size: 24px;font-weight: normal;}
a:hover { opacity: 0.8;}
.fl-L { float: left;}
.fl-R { float: right;}

.inB { display: inline-block;}


#header .top {
    width: 95%;
    margin: 8px auto 2px;
}
#header .top h1 {
    width: 35%;
}
#header .top h1 img {
    width: 95%;
}
#header .top .tel {
    text-align: right;
    vertical-align: middle;
    width: 32%;
}
#header .top .tel img {
    width: 90%;
}
#header .main {
    position: relative;
    background: url(../img/header_main_bg.jpg) no-repeat;
    background-size: 100%;
    background-color: #f1f1f1;
    width: 100%;
    margin: 0 auto;
}
#header .main h2 {
    width: 85%;
    /* height: 16rem; */
    height: 69vw;
    padding: 16px 0 6.2% 9%;
}

#header .main .lead {
    /* margin: 22.5% auto 0; */
    margin: 0 auto;
}

#header .main .merit {
    width: 97%;
    margin: 10px auto 0 auto;
}

#header .main .merit li {
    text-align: center;
}

.blueArea.first {
    padding: 0 0 10px;
}
.appeal {
    padding: 30px 0 0;
}
.appeal_title {
    padding: 10px 0;
    margin-bottom: -25px;
}

.appeal .catch {
    width: 100%;
    margin: 0 auto;

}
.appeal .pointArea {
	margin: 0 0 40px 0;
	}
.appeal h3 {
    margin: 15px auto 25px!important;
    width: 90%;
}
.appeal .pointArea h4 {
    background: #fefae3;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 3px #d9dee0;
    padding: 20px 20px;
}
.appeal .pointArea ul {
    background: #FFFFFF;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 3px #d9dee0;
    padding: 20px 0;
}
.appeal .pointArea ul li {
    padding: 10px 5%;
}
.appeal .pointArea ul li dl dt {
    color: #d94274;
    font-size: 20px;
    -webkit-text-stroke-width: 1px;
    border-bottom: 1px dashed;
    background: url(../img/icon_star.png) no-repeat left 4px;
    background-size: 5%;
    line-height: 1.2;
    padding: 0 0 10px 7%;
    margin: 0 0 10px;
}
.appeal .pointArea ul li dl dd {
    font-size: 16px;
    text-indent: -1em;
    padding-left: 1em;
}
.appeal .pointArea ul li dl dd span.en {
    color: #eaa8be;
    font-size: 8px;
    margin-right: 6px;
}

.appeal .incomeArea {
    margin: 0 0 40px;
}
.appeal .incomeArea h4 {
    margin: 10px 0 15px;
}

.appeal .incomeArea .text {
    font-size: 16px;
}
.appeal .incomeArea .text span {
    font-size: 14px;
}

.yBlock {
    background: #fcf9f0;
    box-shadow: 0 1px 6px #e0d9d9;
    border-radius: 8px;
    padding: 20px 5%;
    margin: 30px 0;
}
.yBlock.mb0 {
    margin-bottom: 0;
}

.grad-wrap {
    position: relative;
}
.grad-item {
  position: relative;
  overflow: hidden;
  height: 100px; /*隠した状態の高さ*/
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(252,249,240,0) 0%, rgba(252,249,240,0.9) 50%, rgba(252,249,240,0.9) 50%, #fcf9f0 100%);
  background: linear-gradient(top, rgba(252,249,240,0) 0%, rgba(252,249,240,0.9) 50%, rgba(252,249,240,0.9) 50%, #fcf9f0 100%);
  content: "";
}
.grad-trigger {
  display: none; /*チェックボックスは常に非表示*/
}
.grad-trigger:checked + .grad-btn {
  display: none; /*チェックされていたら、grad-btnを非表示にする*/
}
.grad-trigger:checked ~ .grad-item {
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad-trigger:checked ~ .grad-item::before {
  display: none; /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}
.grad-btn {
    z-index: 2;
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    width: 148px;
    margin: auto;
    padding: .5em 0;
    border-radius: 2px;
    background: #0f90ba;
    color: #fff;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}

.appeal .inexperience .title {
    font-size: 15px;
    -webkit-text-stroke-width: 0.7px;
    color: #666;
    margin: 7px 0;
    line-height: 1.4;
}
.appeal .inexperience .graphArea div {
    margin: 20px 0;
}
.appeal .inexperience .graphArea p {
    text-align: center;
    width: 86%;
    margin: 0 auto 0 14%;
}
.appeal .inexperience .graphArea p .img3 {
    width: 70%;
}
.appeal .inexperience .graphArea .text{
    line-height: 1.7;
    text-align: left;
    margin: 10px 0;
    width: 100%;
}
.appeal .inexperience .graphArea .annotation {
    font-size: 13px;
    margin-top: 20px;
    text-align: left;
    margin: 20px 0;
}

.contactArea {
    background: url(../img/contact_img_triangle.png) no-repeat 50% 0;
    background-size: 40%;
    margin: 0 auto;
    padding: 60px 0 45px;
}
.contactBox {
    background-image: url(../img/contact_bg_top.png), url(../img/contact_bg_btm.png), url(../img/contact_bg_mdl.png);
    background-repeat: no-repeat, no-repeat, repeat-y;
    background-size: 95% 14px, 95% 14px, 95% 10px;
    background-position: top, bottom, center;
    padding: 25px 8% 20px;

}
.contactBox--bd02 {
    background-image: url(../img/contact_bg_top2.png), url(../img/contact_bg_btm2.png), url(../img/contact_bg_mdl2.png);
    background-repeat: no-repeat, no-repeat, repeat-y;
    background-size: 100% auto, 100% auto, 100% 10px;
    background-position: top, bottom, center;
    padding: 25px 8% 20px;
    margin-top: 20px;
}
.contactBox .title {
    margin-bottom: 10px;
}
.contactBox .btn {
    margin: 15px 0;
    text-align: center;
}
.contactArea .briefingBox {
    background: #dbeef5;
    padding: 10px 5%;
    border-radius: 12px;
}
.contactArea .briefingBox .text {
    margin: 0 0 20px;
    -webkit-text-stroke-width: 0.6px;
}
.contactArea .briefingBox a {
    display: block;
    position: relative;
}

.work {
    padding: 20px 0;
}
.work h3 {
    width: 95%;
}
.work .femaleImg {
    width: 45%;
    margin: 0 auto;
}
.work .checkArea {
    background: #FFFFFF;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 2px 4px #d5dee2;
    padding: 0 5% 15px;
    margin: -5px 0 0;
}
.work .checkArea  .img {
    width: 273px;
    position: absolute;
    left: -10px;
    bottom: 0;
}
.work .checkArea  ul li {
    margin: 0 0 5px auto;
    padding: 20px 0 8px 12%;
    font-size: 16px;
    -webkit-text-stroke-width: 0.5px;
    color: #666666;
}
.work .checkArea  ul li span {
    color: #d94274;
    font-weight: bold;
}

.work .checkArea  ul li:nth-child(1) {
    background: url(../img/icon_number1.png) 0 20px no-repeat;
    background-size: 9%;
}
.work .checkArea  ul li:nth-child(2) {
    background: url(../img/icon_number2.png) 0 20px no-repeat;
    background-size: 9%;
}
.work .checkArea  ul li:nth-child(3) {
    background: url(../img/icon_number3.png) 0 20px no-repeat;
    background-size: 9%;
}


.work .works {
    border-spacing: 60px 10px;
}
.work .works .left {
    margin: 0 auto;
}
.work .works .left h4 {
    text-align: center;
}
.work .works .text {
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0;
}
.work .works .text span {
  color: #d94274;
  font-weight: bold;
}

.work .works .detail {
    background: #FFFFFF;
    vertical-align: top;
    padding: 20px 7%;
    margin-top: 20px;
    position: relative;
}
.work .works .detail:before {
    content: url(../img/icon_moon.png);
    top: -30px;
    right: -10px;
    position: absolute;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    transform: scale(0.6);
}

.work .works .detail .title {
    color: #0f90ba;
    font-size: 20px;
    -webkit-text-stroke-width: 1px;
    margin-bottom: 8px;
}
.work .works .detail_txt {
    margin-top: 10px;
}

.work .works .detail ul.day {}
.work .works .detail ul.day li {
    display: inline-block;
    margin-right: 40px;
    line-height: 1.8;
    font-size: 15px;
}
.work .works .detail ul.day li span {
    color: #0f90ba;
}
.work .works .schedule {
    margin: 20px 0 0;
    vertical-align: top;
}
.work .works .schedule .scheduleInner {
    background: url(../img/work_photo2.jpg) no-repeat left bottom #FFFFFF;
    background-size: 67%;
    border: 1px solid #0f90c9;
    border-radius: 8px;
    padding: 20px 10px;
    margin: 0 0 10px;
    height: 29rem;
}
.work .works .schedule .scheduleInner .title {
    color: #0f90ba;
    -webkit-text-stroke-width: 1px;
    text-align: center;
    font-size: 20px;
    line-height: 1.2;
    padding-right: 5px;
}
.work .works .schedule .scheduleInner .time {
    font-size: 13px;
    margin: 15px 0 10px 0;
    line-height: 1.8;
}
.work .works .schedule .scheduleInner .time span {
    text-indent: 0.7em;
    display: inline-block;
}
.work .works .schedule .scheduleInner .annotation {
    font-size: 12px;
    text-align: center;
}

.voice {
    padding: 10px 0 10px;
}
.voice ul li {
    border-bottom: 2px dotted #bedce6;
    padding: 15px 0;
}
.voice ul li:last-child {
    border-bottom: none;
}
.voice ul li .img {
    width: 23%;
    vertical-align: top;
}
.voice ul li .textBox {
    vertical-align: top;
    padding: 0 2%;
    width: 77%;
}
.voice ul li .textBox .title {
    color: #0f90ba;
    font-size: 18px;
    -webkit-text-stroke-width: 1px;
    line-height: 1.3;
}
.voice ul li .textBox .profile {
    font-size: 12px;
    color: #666666;
    margin: 10px 0;
}
.voice ul li .text {
    font-size: 15px;
    line-height: 1.6;
}
.voice ul li .text span {
    color: #d94274;
    font-weight: bold;
}

.voice .question {
    color: #0f90ba;
    -webkit-text-stroke-width: 0.8px;
    margin-bottom: 10px;
}
.voice .answer {
    line-height: 1.4;
    width: 77%;
    padding: 0 4px;
}
.voice .question span {
    display: table-cell;
    vertical-align: top;
    font-size: 20px;
    line-height: 1.4;
}
.voice span.em {
    font-size: 32px;
    font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    -webkit-text-stroke-width: 1px;
    line-height: 0.8;
    padding-right: 10px;
}
.voice .answer span.em {
    color: #d94274;
    line-height: 0.8;
    text-align: right;
}
.voice .answer .bodyText {
    font-size: 12px;
}

.step {
    margin: 0 auto;
}
.step .lead {
    margin: 30px auto 0;
    width: 85%;
}
.step ul {
    display: table;
    margin: 10px 0;
    width: 100%;
}
.step ul li {
    display: table-cell;
    padding-right: 5px;
}
.step ul li:last-child {
    padding: 0;
    width: 17%;
}
.step .annotation {
    text-align: center;
}
.step h4 {
    margin: 30px 0 15px;
}
.step .img {
    margin: 15px 0;
    text-align: center;
}
.step .briefingBox {
    background: #FFFFFF;
    border: 2px solid #0f90ba;
    border-radius: 8px;
    padding: 20px 3% 13px;
    margin: 20px 0;
}
.step .briefingBox .title {
    vertical-align: top;
    margin-bottom: 10px;
    text-align: center;
}
.step .briefingBox .taC {
    width: 70%;
    margin: 20px auto 5px;
}
.step .briefingBox .img {
    vertical-align: bottom;
    margin: 5px 0 0;
    padding-left: 20px;
    width: 40%;
}
.step .briefingBox .table .text {
    vertical-align: middle;
    width: 60%;
}
.step .briefingBox .table .text img {
    margin: 3px 0;
}
.step .briefingBox a {
    display: block;
    margin-top: -6px;
    text-align: center;
}

.group {
    margin: 30px 0;
}
.group .title {
    color: #0f90ba;
    font-size: 22px;
    -webkit-text-stroke-width: 1px;
    text-align: center;
    line-height: 1.4;
    margin: 15px 0;
}
.group ul {
    margin: 16px 0 0;
}
.group ul li {
    float: left;
    width: 48.5%!important;
    padding-right: 3%;
    margin-bottom: 20px;
}
.group ul li:nth-child(even) {
    padding: 0;
}
.group ul li dl {
    line-height: 1.8;
    margin-top: 5px;
}
.group ul li dl dt {
    font-size: 14px;
    -webkit-text-stroke-width: 0.7px;
}
.group ul li dl dd {
    font-size: 13px;
}
.group .about {
    background: #e7f4f8;
    padding: 10px;
    margin-bottom: 20px;
    -webkit-text-stroke-width: 0.7px;
}
.group .aboutArea {
    margin: 20px 0;
}
.group .aboutArea .company {
    vertical-align: top;
    margin-bottom: 20px;
}
.group .aboutArea table th,
.group .aboutArea table td {
    padding: 3px 0;
}
.group .aboutArea table th {
    -webkit-text-stroke-width: 0.6px;
    width: 25%;
}
.group .aboutArea table td {
    padding-left: 20px;
    line-height: 1.4;
}
.group .aboutArea .img {
    text-align: center;
    width: 110px;
    margin: 15px auto 0;
}

#footer {
    border-top: 1px solid #bbb;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}
#footer .copyright {
    margin: 10px 0;
}

@media screen and (min-width: 480px) {
.work .works .schedule .scheduleInner {
    background-size: 40%;
    padding: 20px 10% 5% 5%;
}
}


/*改修css*/

#info_btn{
	position:fixed;
	bottom:0;
	z-index:9999;
	background-color: rgba(255,255,255,0.6);
	width:100%;
}

#info_btn p{
	width:60%;
	padding:0 20%;
}
#info_btn p a{
	display:block;
}

#info_btn p img{
	width:100%;
	height:auto;
	padding:10px 0;
}

/*20170227お悩み訴求追加*/

.trouble {
    background: url(../img/trouble_bg.jpg) no-repeat top, url(../img/trouble_bg_btm_a.png) no-repeat bottom #fff;
    background-size: 100%;
    padding: 30px 0 20px;
    margin: 0;
}
.trouble .title {
    color: #0b7496;
    line-height: 1.4;
    -webkit-text-stroke-width: 0.5px;
    font-size: 15px;
}
.trouble .title em {
    color: #0b7496;
    font-size: 18px;
    -webkit-text-stroke-width: 1.2px;
    -webkit-text-stroke-color: #0b7496;
    -webkit-text-fill-color: #0b7496;
}
.trouble .lead {
    margin: 60px auto 15px 0;
    width: 70%;
}
.trouble ul { padding: 20px 0 30px;}
.trouble ul li {
    width: 70%;
}
.trouble ul li:nth-of-type(2),
.trouble ul li:nth-of-type(4) {
    margin: 5px 0 5px 33%;
    width: 70%;
}


.offerLinkAnchor {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
.offerLinkAnchor a {
    display: inline-block;
}
.jobOfferLink {
    background: #ffffff;
    box-shadow: 0 1px 6px #e0d9d9;
    border-radius: 16px;
    padding: 10px;
    margin: 0 0 20px;
}
.jobOfferLink .titleArea {
    display: block;
    width: 100%;
    padding: 20px 0;
}
.jobOfferLink .titleArea .title {
    display: block;
    width: 100%;
}

.jobOfferLink .titleArea .img {
    display: table-cell;
    vertical-align: middle;
}
.jobOfferLink .titleArea .img img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.jobOfferLink .contentArea {
    display: block;
}
.jobOfferLink .contentArea .title {
    width: 100%;
    margin-bottom: 20px !important;
}
.jobOfferLink .hometxt  {
  margin: 10px 0;
  font-size: 11px;
}
.jobOfferLink .contentArea .homeList {
    border-radius: 16px;
    background: #fcf9f0;
    padding: 20px;
    display: block;
    font-size: 0;
    letter-spacing: -.4em;
}
.jobOfferLink .contentArea .homeList li {
    display: inline-block;
    vertical-align: middle;
    width: 33.3%;
    font-size: 14px;
    letter-spacing: normal;
}
.jobOfferLink .contentArea .homeList li:nth-child(n+4) {
    margin-top: 20px;
}
.jobOfferLink .contentArea .homeList li a {
    display: inline-block;
    vertical-align: middle;
    color: #666;
    font-weight: bold;
    text-decoration: none;
}
.jobOfferLink .contentArea .homeList li a:hover {
    text-decoration: underline;
}
.jobOfferLink .contentArea .homeList li a:before {
    content:  "";
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
    margin-top: -4px;
    background: url(../img/arrow_pink01.png) center center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

#kangolp_body_sp {
    height: 220px;
    resize: none;
}
