@charset "UTF-8";


/* RESET
------------------------------------*/
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub,sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    position: relative;
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}
img {
    border-style: none;
    vertical-align: bottom;
    font-size:0;
}

article,aside,footer,header,nav,section,main {
    display: block;
}

* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: inherit;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: 0;
}

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}



/* BASE
------------------------------------*/

html {
    font-size: 62.5%;
    min-width: 1100px;
    height: 100%;
}
body {
    font-family: 'Noto Sans JP',"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, Verdana, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #333333;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    background: #EEEEEE;
}

.clearfix:after {
    content: "";
    clear: both;
    display: block;
}

.wrap {
  width: 1300px;
  margin: auto;
}
header,
footer {
    min-width: 1300px;
}

@media only screen and (max-width: 767px) {
    html { min-width: auto; }
    header,
    footer {
        min-width: initial;
    }
    .home .wrap,
    .page .wrap,
    .search .wrap,
    .single .wrap,
    .company .wrap,
    .category .wrap {
      width: 100%;
    }
} /* end @media */




/* COMMON
------------------------------------*/

.containar {
    display: -webkit-flex;
    display: flex;
    flex-flow: row;
    width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
}
.side {
    width: 310px;
    margin: 0 0 0 30px;
}
.main {
    -webkit-flex: 1;
    flex: 1;
    width: 860px;
}

.right { float: right; }
.left { float: left; }
.clear{ clear:both; }
.relative { position: relative; }

a {
    color: #333;
    text-decoration: none;
}
.linkBlue { color: #0033cc; }
.linkBlue:hover { text-decoration: underline;}

p, ul {
    line-height: 1.7em;
    font-size: 1.4rem;
}
.ft30 { font-size: 3.0rem; }
.ft20 { font-size: 2.0rem; }
.ft18 { font-size: 1.8rem; }
.ft15 { font-size: 1.5rem; }
.ft14 { font-size: 1.4rem; }
.ft13 { font-size: 1.3rem; }
.ft12 { font-size: 1.2rem; }
.ft11 { font-size: 1.1rem; }
.ft10 { font-size: 1.0rem; }
.fwb { font-weight: bold; }

.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt70 { margin-top: 70px; }
.mt100 { margin-top: 100px; }

.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
.mb60 { margin-bottom: 60px; }
.mb70 { margin-bottom: 70px; }
.mb100 { margin-bottom: 100px; }

.img100 { width: 100%; height: auto; }
.img100c {
    display: block;
    max-width: 100%; height: auto;
    margin-left: auto;
    margin-right: auto;
}
.img_m100 { max-width: 100%; height: auto; }
.img_l {
    float: left;
    margin: 0 30px 30px 0;
}
.img_r {
    float: right;
    margin: 0 0 30px 30px;
}

.fadein {
    opacity: 0;
    transition: opacity 2s;
}
.fadeinOn {
    opacity: 1;
}

.sp { display: none; }

.displayNone { display: none; }

@media only screen and (max-width: 767px) {

    .pc { display: none !important; }
    .sp { display: inherit; }

    .containar {
        display: block;
        width: 100%;
        margin: 20px 0 0 0;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .side {
        width: 100%;
        margin: 0;
    }
    .main {
        width: 100%;
        margin-top: 20px;
    }

} /* end @media */




/* COMMON2
------------------------------------*/

h1,h2,h3,h4 {
    line-height: 1.3em;
}
.ttl01 {
    position: relative;
    font-size: 1.8rem;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    margin-bottom: 30px;
}
.ttl01::after {
    content: "";
    display: block;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 150px;
    border-bottom: 1px solid #707070;
}
.ttl01 img {
    position: relative;
    top: -3px;
    width: 29px;
    height: 33px;
    vertical-align: middle;
    margin-right: 20px;
}

.ttl02 ,
.ttl03 {
    position: relative;
    width: 100%;
    text-align: center;
    font-weight: bold;
    background: url(../img/titleLine.png) no-repeat;
    background-size: 100% 1px;
    background-position: center;
    margin-bottom: 30px;
}
.ttl02 span ,
.ttl03 span {
    background: #eee;
    padding: 0 30px;
    position: relative;
    z-index: 5;
}
.ttl04 {
    border: 1px solid #CBCBCB;
    border-left: 10px solid #666;
    border-radius: 3px;
    background-color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 20px;
    margin-bottom: 30px;
}
.ttl05 {
    position: relative;
    border-bottom: 1px solid #707070;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 15px;
    margin-bottom: 20px;
}
.ttl05::before {
    position: absolute;
  	left: 0px;
  	top: 10px;
  	content: '';
  	width: 5px;
  	height: 35px;
  	background-color: #484848;
  	border-radius: 10px;
}
.ttl06 {
    border-bottom: 1px solid #707070;
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.ttl06 span {
    font-size: 2.0rem;
}
.ttl07 {
    width: 100%;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    margin: 50px 0 30px 0;
}


.pun {
    background-color: #DDD;
    height: 42px;
    padding: 10px 50px;
}
.pun li {
    display: inline-block;
  	position: relative;
  	padding-right: 15px;
  	margin-right: 5px;
}
.pun li a {
    font-size: 1.2rem;
}
.pun li::before {
    content: '/';
    position: absolute;
    font-size: 1.2rem;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.pun li:last-child {
  	margin-right: 0;
  	padding-right: 0;
  	color: #000;
}
.pun li:last-child::before {
	 content: normal;
}
.pun .pun__home{
    background-image: url(../img/home.png);
    background-repeat: no-repeat;
    background-size: 17px auto;
    background-position: center left;
    padding-left: 23px;
}

@media only screen and (max-width: 767px) {

    .ttl01 {
        padding: 5px 0;
        font-size: 1.4rem;
    }
    .ttl01::after {
        width: 130px;
    }
    .ttl01 img {
        width: 22px;
        height: 26px;
    }

    .ttl02 {
        font-size: 1.8rem;
    }
    .ttl04 {
        font-size: 1.6rem;
        padding: 16px;
    }
    .ttl05 {
        font-size: 1.6rem;
    }
    .ttl06 {
        font-size: 1.6rem;
    }
    .ttl07 {
        font-size: 1.8rem;
    }

    .pun {
        padding: 5px 10px;
        height: 33px;
    }
    .pun li {
        padding-right: 10px;
    }
    .pun li a {
        font-size: 1.0rem;
        padding-right: 0px;
    }
    .pun .pun__home {
        background-size: 10px auto;
        padding-left: 15px;
    }

}


/* HEADER
------------------------------------*/

header {
    position: relative;
    margin: auto;
    vertical-align: middle;
    background: #fff;
    height: 70px;
}
.headLogoWrap {
    display: inline-block;
    padding: 0 20px;
}
.headLogoWrap .tagline {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.2em;
    color: #6E6E6E;
	margin-top: 6px;
}
.headLogo {
    margin-top: 6px;
    width: 163px;
    height: 27px;
}
.gnavi {
    display: inline-block;
    position: absolute;
    top: 30px;
    left: 270px;
}
.gnavi a {
    position: relative;
    margin: 0 20px;
    font-size: 1.2rem;
    color: #333;
}
.contactBtn {
    position: absolute;
    top: 20px;
    right: 80px;
    display: inline-block;
    padding: 8px 18px 8px 38px;
    height: 30px;
    border: 1px solid #CCC;
    border-radius: 20px;
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
	transition: background-color 0.5s;
	background: #333 url(../img/mail.png) no-repeat;
	background-size: 17px 13px;
	background-position: 15px 7px;
}
.contactBtn:hover {
	background-color: #666;
}

input.buttonSearch {
  background: url("../img/search.png") no-repeat center;
  background-size: 22px 22px;
  width: 22px;
  height: 22px;
  position: absolute;
  right: 9px;
  top: 7px;
  cursor: pointer;
  z-index: 9;
	transition: all 0.5s ease;
}
.searchForm {
  float: right;
  position: absolute;
  right: 30px;
  top: 15px;
	font-size: 13px;
}
.searchForm input[type=search] {
  width: 15px;
  padding-left: 10px;
  color: transparent;
  float: right;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
  visibility: hidden;
  opacity: 0;
	transition:  width 0.5s;
}
.searchKeyword::-webkit-search-cancel-button {
    position: absolute;
    right: 35px;
}
.searchForm input[type=search]:hover {
    background-color: #fff;
}
.searchForm input:-moz-placeholder, header .searchForm input::-webkit-input-placeholder {
    color: transparent;
}
.searchForm.active input[type=search] {
    border: solid 1px #ccc;
    border-radius: 20px;
    width: 280px;
    height: 35px;
    padding-left: 9px;
    color: #000;
    background-color: #fff;
    cursor: auto;
    opacity: 1;
    visibility: visible;
}

.spHeadMenu {
    position: absolute;
    top: 15px;
    right: 16px;
    width: 21px;
    height: 17px;
}
.spClose {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 22px;
    height: 22px;
}

.spMenuTitle {
    text-align: center;
    padding: 18px 0;
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
}
.spLinkArea {
    background-color: #fff;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 20px 16px;
    background-image: url(../img/link-arrow.png);
    background-repeat: no-repeat;
    background-size: 5px auto;
    background-position: center right 18px;
}
.spLinkArea img {
    position: relative;
    top: -2px;
    width: 18px;
    height: 21px;
    vertical-align: middle;
    margin-right: 10px;
}
.spMenuSubTitle {
    text-align: center;
    width: 100%;
}
.spWrap {
    padding: 16px;
}
.spMenuList1 {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}
.spMenuList1 li {
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 5px;
    width: 49%;
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.spMenuList1 li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px;
}
.spMenuList2 {
    margin-top: 25px;
}
.spMenuList2 li {
    margin-bottom: 5px;
    padding-left: 24px;
    background-image: url(../img/link-arrow.png);
    background-repeat: no-repeat;
    background-size: 5px auto;
    background-position: center left;
}
.spLinkBtn {
    margin: 20px 0;
}
.spLinkBtn a {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 30px;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 1.3rem;
    background-image: url(../img/link-arrow.png);
    background-repeat: no-repeat;
    background-size: 5px auto;
    background-position: center right 15px;
}
.spKeywordSearch {
    position:relative;
    width: 100%;
    height: 40px;
}
.spKeywordSearch .spKeyword {
    position:absolute;
    left:0;
    top:0;
    width: 100%;
    height: 38px;
    background: #fff;
    border: 1px solid #707070;
    border-radius: 4px 0 0 4px;
    font-size: 1.3rem;
    padding: 0 10px;
}
.spKeywordSearch .sbSearch {
    width: 68px;
    height: 38px;
    position:absolute;
    right: 0;
    top:0;
    background: #333333;
    border: 1px solid #333333;
    border-radius: 0 4px 4px 0;
    color: #fff;
    font-size: 1.3rem;
}


@media only screen and (max-width: 767px) {

    header { height: 44px; }
    .headTtl { display: none; }
    #searchform,.headBtn { display: none; }
    .headLogoWrap {
        padding: 0;
    }
    .headLogo {
        width: 110px;
        height: 18px;
        margin: 13px 0 0 16px;
    }

}

@media only screen and (max-width: 320px) {


}



/* FOOTER
------------------------------------*/
footer {

}
.footerLink {
    background: #fff;
    text-align: center;
    padding: 20px;
}
.footerLink h2 {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding: 32px 0 0 28px;
    width: 93px;
    height: 91px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background: url(../img/balloon.png) no-repeat;
    background-size: 92px 90px;
}
.footerLink p {
    display: inline-block;
    background-color: #E3F5FF;
    text-align: left;
    margin: 10px 0 0 10px;
    padding: 20px 30px;
    max-width: 916px;
    width: 70%;
}
.footerLink ul {
    margin: 20px 0 10px -600px;
    text-align: center;
}
.footerLink li {
    display: inline-block;
    padding-left: 12px;
    margin-right: 16px;
    background-image: url(../img/link-arrow.png);
    background-repeat: no-repeat;
    background-size: 6px auto;
    background-position: top 8px left;
}
.footerLink li a {
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
}
.footLogo {
    margin: 20px 0;
    width: 163px;
    height: 27px;
}
.footerCr {
    background-color: transparent;
    text-align: center;
}
#topcontrol { z-index: 1000;}



@media only screen and (max-width: 767px) {

  .footerLink {
      padding: 16px;
  }
  .footerLink p {
      margin: 0 0 0 5px;
      padding: 10px;
      width: 64%;
      font-size: 1.1rem;
  }
  .footerLink ul {
      margin: 20px 0 0 0;
      text-align: center;
  }
  .footerLink li a {
      font-size: 1.1rem;
  }
  .footLogo {
      width: 172px;
      height: 29px;
  }
}



/* SIDE
------------------------------------*/

.side section {
    background: #fff;
    text-align: center;
    padding: 20px 0 1px 0;
}
.side section h2 {
    font-size: 1.4rem;
}

.sideSeparater {
    margin: 10px 0;
    border-top: 1px solid #CCC;
}

.sideRecommend li {
    position: relative;
    background: #fff;
    margin: 15px 15px;
}
.sideFlex {
    display: -webkit-flex;
    display: flex;
}
.sideFlexTxt {
    -webkit-flex: 1;
    flex: 1;
}
.sideFlexImg {
    margin-right: 10px;
    overflow: hidden;
}
.sideFlexImg img {
    width: 75px;
    height: 75px;
}
.sideFlexTxt {
    text-align: left;
    padding-right: 6px;
}
.sideFlexTxt p {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #333;
    line-height: 17px;
}
.sideFlexTxt p.title {
    min-height: 50px;
}
.sideFlexTxt p.company {
    margin-bottom: 0;
}

ul.sideTopics {
    text-align: left;
    padding: 0 18px 10px 18px;
}
ul.sideTopics li {
    display: inline-block;
    padding: 0 5px 0 11px;
    text-align: left;
    min-width: 49%;
    background-image: url(../img/tagArr.png);
    background-repeat: no-repeat;
    background-size: 5px auto;
    background-position: top 8px left;
}
ul.sideTopics li a {
    font-size: 1.1rem;
}
ul.sideTopics li a:hover {
	text-decoration: underline;
	color: #999;
}
.moerTopics {
	position: relative;
	display: block;
    text-align: center;
	border-top: 1px solid #ccc;
	margin-top: 10px;
}
.moerTopics a {
	display: block;
	padding: 14px 0;
	top: 0; left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
    font-size: 1.1rem;
	background-image: url(../img/tagArr2.png);
	background-repeat:  no-repeat;
	background-position: top 17px right 16px;
	background-size: 8px auto;
	transition: background 0.5s ease;
}
.moerTopics a:hover {
	background-color: #ddd;

}

.side section.banner {
    background: transparent;
    padding: 0;
}
.side section.banner img {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 767px) {

    .side { margin-top: 30px; }
    .sideFlexImg img {
        width: 80px;
        height: 80px;
    }
    .sideRankCat {
        padding: 6px;
    }

}



/* CONTENTS COMMON
------------------------------------*/
.link-underline {
    position: relative;
}
.link-underline::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #333;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}
.link-underline:hover::after {
    transform: scale(1, 1);
}


.flexList {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flexListCompany::before{
    content:"";
    display:block;
    width: 186px;
    height:0;
    order:1;
}
.flexListCompany::after{
    content:"";
    display: block;
    width: 186px;
    height: 0;
}
.flexListPost::after{
    content:"";
    display: block;
    width: 32%;
    height: 0;
}
.company .flexListPost::before{
    content:"";
    display:block;
    width: 24%;
    height:0;
    order:1;
}
.company .flexListPost::after{
    content:"";
    display:block;
    width: 24%;
    height:0;
}
.page .flexListTopics {
    background-color: #fff;
    padding: 40px;
    padding-bottom: 30px;
}
.page .flexListTopics::before{
    content:"";
    display:block;
    width: 24%;
    height:0;
    order:1;
}
.page .flexListTopics::after{
    content:"";
    display:block;
    width: 24%;
    height:0;
}

.flexList__company {
    width: 186px;
}
.flexList__company img {
    width: 186px;
    height: 186px;
    box-shadow: 0 0 10px #ccc;
	transition: box-shadow 0.5s;
}
.flexList__company img:hover {
    box-shadow: 0 0 20px #aaa;
}

.flexList__post {
    padding: 18px;
    width: 32%;
    background-color: #fff;
	position: relative;
	transition: box-shadow 0.5s, opacity 2s;
}
.flexList__post:hover {
    box-shadow: 0 0 20px #aaa;
}
.flexList__post a {
	position: absolute;
	top:0; left:0;
	width: 100%;
	height: 100%;
}

.company .flexList__post {
    width: 24%;
}
.flexList__post img {
    width: 240px;
    height: 160px;
    border: 1px solid #eee;
}

.flexList__topics {
    display: inline-block;
    width: 24%;
    font-size: 1.3rem;
    padding-left: 12px;
    margin-bottom: 10px;
    background-image: url(../img/link-arrow.png);
    background-repeat: no-repeat;
    background-size: 5px auto;
    background-position: center left;
}

.catLabel {
    position: relative;
    top: -10px;
    left: 10px;
    padding: 3px 5px;
    font-size: 1.0rem;
    font-weight: 900;
    color: #fff;
    background-color: #ccc;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    position: relative;
    font-size: 2.0rem;
    font-weight: bold;
}
.pagination span,
.pagination .pager {
    display: block;
    width: auto;
    margin: 4px;
    padding: 10px;
    border: 1px solid #fff;
    background-color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 16px;
    border-radius: 25px;
}
/* ページ番号 */
.pagination .pager{
    width: 38px;
}
/* ホバー時 & 現在のページ */
.pagination a.pager:hover,
.pagination .current  {
    color: #fff;
    border-color: #FFB102;
    background-color: #FFB102;
}
.pagination img {
    position: relative;
    top: -2px;
}
/* 前へ */
.pagination a.prev img,
/* 次へ */
.pagination a.next img {
    margin: 0 20px;
    width: 8px;
    height: 14px;
}
/* 最初へ */
.pagination a.first img,
/* 最後へ */
.pagination a.last img{
    width: 15px;
    height: 14px;
}

/* Page x / y */
.pagination span.page_num {
    display: none;
}


@media only screen and (max-width: 767px) {

    .flexList__company {
        width: 48%;
    }
    .flexList__company img {
        width: 100%;
        height: auto;
        box-shadow: 0 0 10px #ccc;
    }

    .company .flexList__post ,
    .flexList__post {
        padding: 20px;
        width: 100%;
    }
    .flexList__post .list-thumbnail img {
        width: 100%;
        height: auto;
        border: 1px solid #eee;
    }
    .page .flexListTopics {
        padding: 30px;
        padding-bottom: 20px;
    }
    .flexList__topics {
        width: 49%;
        font-size: 1.1rem;
    }


    .pagination {
        font-size: 1.0rem;
        margin: 20px 0 30px 0;
    }
    .pagination span,
    .pagination .pager {
        display: block;
        width: 25px;
        margin: 4px;
        padding: 5px;
        line-height: 10px;
        border-radius: 15px;
    }
    .pagination img {
        top: 0;
    }
    /* 前へ */
    .pagination a.prev img,
    /* 次へ */
    .pagination a.next img {
        margin: 0 10px;
        width: auto;
        height: 9px;
    }
    /* 最初へ */
    .pagination a.first img,
    /* 最後へ */
    .pagination a.last img{
        width: auto;
        height: 9px;
    }
  }




/* TOP PAGE
------------------------------------*/

.slider {
    margin-bottom: 80px;
    width: 100%;
}
.slider img {
	width: 900px;
	height: 380px;
}
.slider img:hover {
	opacity: 0.7;
	transition: opacity 0.5s ease;
}
.moreLink {
    height: 19px;
    background-image: url(../img/morelink-icon.png);
    background-repeat: no-repeat;
    background-size: 17px auto;
    background-position: center left;
    padding-left: 24px;
}
.moreLink a {
    font-size: 1.3rem;
}
.moreLink a:hover {
	color: #777;
	border-bottom: 1px solid #777;
}

.moreLinkBtn {
    text-align: center;
}
.moreLinkBtn a {
    display: inline-block;
    width: 333px;
    padding: 20px;
    background-color: #fff;
    border-radius: 30px;
    font-size: 1.3rem;
    background-image: url(../img/link-arrow.png);
    background-repeat: no-repeat;
    background-size: 8px auto;
    background-position: center right 20px;
	transition: all 0.5s;
}
.moreLinkBtn a:hover {
	background-color: #ccc;
}

.articleListImg img {
  width: 33%;
}


@media only screen and (max-width: 767px) {

  .sliderIn img {
    width: 100%;
    height: auto;
  }

  .moreLink {
      line-height: 15px;
      background-size: 15px auto;
      background-position: center right 60px;
      margin-bottom: 30px;
  }
  .moreLink a {
      font-size: 1.1rem;
  }
}



/* --------------- CONTENTS --------------- */

.companyImage {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;

    background-color: #ccc;
    height: 400px;
    min-width: 1300px;
}

.company dl .company-thumbnail {
    float: left;
    position: relative;
    top: -100px;
    margin-right: 50px;
	margin-bottom: -50px;
}
.company dl .company-thumbnail img {
    width: 186px;
    height: 186px;
    box-shadow: 0 0 10px #ccc;
}
.company dl .company-url a {
    color: #3E68B7;
}
.company dl dd p{
    font-size: 1.4rem;
}

.tabArea {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 40px 20px 0 20px ;
}
.tabArea label{
    width: 140px;
    height: 38px;
    border: 1px solid #707070;
    border-radius: 5px;
    padding: 10px 0;
    color: #707070;
    background: #fff;
    text-align: center;
    font-size: 1.3rem;
    cursor: pointer;
}
.tabArea label:hover{
    color: #333;
    background: #ccc;
}
.tabArea label:not(:first-child){
    margin-left: 5px;
}

.panelArea{
    background: transparent;
    margin: 30px 20px 0 20px;
}
.tabPanel{
    width: 100%;
    padding: 5px 0;
    display: none;
}
.tabArea label.active{
    color: #fff;
    background: #333;
}
.tabPanel.active{
    display:block;
}


.single .companyImage {
    height: 230px;
}
.single .linkBtn a{
    display: inline-block;
    width: 175px;
    padding: 10px;
    background-color: #fff;
    border-radius: 30px;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    background-image: url(../img/link-arrow-r.png);
    background-repeat: no-repeat;
    background-size: 5px 8px;
    background-position: center left 15px;
}
.single .company-thumbnail {
    float: left;
    margin-right: 20px;
}
.single .company-thumbnail img {
    width: 100px;
    height: 100px;
    box-shadow: 0 0 10px #ccc;
}
.single .cpmpany-attribute p {
    display: inline-block;
}
.single .catLabel2 {
    padding: 3px 5px;
    font-size: 1.0rem;
    font-weight: 900;
    color: #fff;
}
.single .post-date{
    margin-left: 10px;
    font-size: 1.3rem;
    color: #6E6E6E;
}
.single .slash{
    padding: 0 10px;
    font-size: 1.3rem;
    color: #6E6E6E;
}
.single .cpmpany-name{
    font-size: 1.3rem;
    color: #6E6E6E;
}
.single .main h1 {
    margin-top: 15px;
    font-size: 2.4rem;
}
.single .snsLink {
    border-top: 1px solid #C9C9C9;
    display: table;
    border-collapse: separate;
    border-spacing: 10px;
    margin: 30px 0 0 0;
    padding: 5px 0;
    width: 100%;
    vertical-align: middle;
    text-align: right;
}
.single .snsLink span {
   margin-right: 10px;
}
.single .snsLink a{
    display: table-cell;
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 22px;
    margin-left: 10px;
}
.single a.snsLink__facebook {
    background-image: url(../img/facebook.png);
    background-size: 22px 22px;
}
.single a.snsLink__twitter {
    height: 18px;
    background-image: url(../img/twitter.png);
    background-size: 22px 18px;
}
.single .postBottom {
    border-bottom: 1px solid #333333;
}


@media only screen and (max-width: 767px) {

  .companyImage {
      height: 186px;
      width: 100%;
      min-width: initial;
		background-size: cover;
  }
  .single .companyImage {
      height: 120px;
  }

  .company dl .company-thumbnail {
      margin-right: 10px;
      top: -35px;
	  margin-bottom: 20px;
  }

  .company dl .company-thumbnail img {
      width: 85px;
      height: 85px;
  }
  .company dl .company-name {
      font-size: 1.6rem;
  }
  .company dl dd p{
      font-size: 1.3rem;
  }
  .company dl .company-english {
      font-size: 1.1rem;
      margin-bottom: 15px;
  }
  .company dl .company-url {
      font-size: 1.1rem;
  }
  .tabArea {
      justify-content: space-between;
      margin: 30px 0 0 0;
  }
  .tabArea label{
      min-width: 49%;
      margin-bottom: 5px;
      margin-left: 0px !important;
  }
  .panelArea{
      margin: 30px 0 0 0;
  }

  .single .linkBtn {
      padding: 3px;
      margin-bottom: 20px;
  }
  .single .company-thumbnail {
      margin-right: 16px;
  }
  .single .company-thumbnail img {
      width: 64px;
      height: 64px;
  }
  .single .cpmpany-attribute p {
      display: block;
      margin-bottom: 5px;
  }
  .single .post-date {
      margin-left: 0;
  }
  .single .main h1 {
      margin-top: 5px;
      font-size: 1.6rem;
      overflow: hidden;
      zoom: 1;
  }
}

/* 問い合わせ */
.contact ol {
    margin-left: 30px;
    list-style-type: decimal;
}
.contact ol li {
    margin-bottom: 15px;
}

.page .formGuide {
    background-color: #fff;
    width: 100%;
    padding: 30px;
    font-size: 1.5rem;
    line-height: 1.5em;
    border-bottom: 1px dotted #ccc;
    margin-top: 50px;
    margin-bottom: 0;
}
.mw_wp_form {
    background-color: #fff;
    width: 100%;
    padding: 30px;
    margin-bottom: 50px;
}

.mw_wp_form form input[type="text"],
.mw_wp_form form input[type="email"],
.mw_wp_form textarea {
    width: 100%;
    border: 1px solid #84B2E0;
    border-radius: 3px;
    background-color: #F8F8F8;
    font-size: 1.5rem;
    padding: 10px;
}
.mw_wp_form .itemTitle{
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0;
}
.formGuide span.required,
.mw_wp_form span.required {
    padding: 3px 10px;
    background-color: #E88836;
    border-radius: 2px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    margin-right: 10px;
}
.mw_wp_form .itemTitle .required {
    margin-left: 20px;
}
.mw_wp_form .btnArea {
    width: 100%;
    text-align: center;
    margin: 50px 0 20px 0;
}
.mw_wp_form .sendBtn {
    position: relative;
    text-align: center;
    background-color: #333;
    border-radius: 20px;
    width: 332px;
    height: 47px;
    font-size: 1.3rem;
    color: #fff;
    background-image: url(../img/link-arrow-white.png);
    background-repeat: no-repeat;
    background-size: 8px 14px;
    background-position: center right 20px;
}
.mw_wp_form_confirm .formTxtChk {
    background-color: #F8F8F8;
    width: 100%;
    font-size: 1.5rem;
    padding: 10px;
    margin: 10px 0;
}
.mw_wp_form .returnLink {
    display: block;
    font-size: 1.4rem;
    margin: 25px auto;
    color: #3E68B7;
}

.mw_wp_form_complete {
    display: none;
}

@media only screen and (max-width: 767px) {
  .contact img {
      width: 100%;
      height: auto;
  }
  .mw_wp_form {
      padding: 15px;
  }
  .page .formGuide {
      font-size: 1.4rem;
      padding: 15px;
  }
  .mw_wp_form .itemTitle {
      font-size: 1.4rem;
  }
  .mw_wp_form .sendBtn {
      width: 100%;
  }
}


/* 固定ページ */
.page .main p {
    margin-bottom: 20px;
}
.page .policyUl {
    list-style-type: disc;
    padding-left: 20px;
}
