@charset "UTF-8";
/*--------------------------------------------------------------------------

reset

---------------------------------------------------------------------------*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 0;
  counter-reset: number 0;
  word-break: break-all;
  height: 100%;
}
article, aside, details, figcaption, figure, main, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul, li {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
img {
  border: 0;
  vertical-align: top;
}
em {
  font-style: italic;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 0;
  padding: 0;
}
input, select, textarea {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
input:focus, textarea:focus, select:focus {
  outline: none;
}
iframe {
  width: 100%;
  height: auto;
}
/*--------------------------------------------------------------------------

html

---------------------------------------------------------------------------*/

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

.sp {
  display: none;
}

  @media screen and (max-width: 750px) {
    .pc {
      display: none !important;
    }
    .sp{
      display: block;
    }
  }

/*--------------------------------------------------------------------------

body

---------------------------------------------------------------------------*/

body {
  font-family: 'Noto Sans JP', sans-serif;
  min-width: 1125px;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.9;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

  @media screen and (max-width: 750px) {
    body {
      min-width: 100%;
    }
  }

a {
  color: #333333;
}
@media screen and (min-width: 750px) {
  a:hover,
  .open:hover {
    color: #333333;
    transition: 0.2s linear;
    opacity: 0.7;
  }  
}
@media screen and (max-width: 750px) {
  a:hover,
  .open:hover {
    color: #009cec;
  }  
}

/*--------------------------------------------------------------------------

header

---------------------------------------------------------------------------*/
#header-wrapper {margin-bottom: 30px;}
#Page_header {
  width: 100%;
  z-index: 99;
}
nav.main_menu_wrap {
    display: -webkit-flex;
    display: flex;
    width: 690px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    align-items: center;
}
@media screen and (max-width: 750px) {
  #Page_header {
    overflow: scroll;
  }
  nav.main_menu_wrap{
    width:auto;
  }
}
#title_box {
  width: 1160px;
  margin: 0 auto;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

@media screen and (max-width: 750px) {
 #title_box {
  width: auto;
  padding: 0px 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
 }
}
#title_box p,
.front-h1 {
  line-height: 15px;
  font-size: 11px;
  letter-spacing: 0px;
  float: left;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  #title_box p{
    font-size: 8px;
    line-height: 11px;
    letter-spacing: 0.5px;
  }
}
#title_box .logo img {
    display: block;
}
@media screen and (max-width: 750px) {
  #title_box .logo img {
    width: 100%;
  }
}
#title_box .logo span {
    font-size: 12px;
    text-align: right;
    font-weight: 500;
}
@media screen and (max-width: 750px) {
  #title_box .logo span {
    font-size: 10px;
    text-align: left;
    margin-bottom: 8px;
    line-height: 10px;
  }
}
#title_box .logo {
    float: left;
    display: block;
    margin-right: 15px;
    padding-top: 5px;
}
@media screen and (max-width: 750px) {
  #title_box .logo {
    width: 195px;
    padding: 0px;
    margin: 0px;
  }
}
#title_box .logo p {
    float: left;
}
#title_box ul {
  display: -webkit-flex;
  display: flex;
}

ul.main_menu li{
  position: relative;
  margin-right: 20px;
}
ul.main_menu li a span {
  font-size: 13px;
  margin-left: 6px;
  line-height: 25px;
}
ul.main_menu li a {
  font-size: 12px;
  line-height: 26px;
  font-weight: 300;
  color: #333333;
}

ul.main_menu li a:hover{
  opacity: 1;
}
ul.main_menu li a:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  opacity: 1;
}
ul.main_menu li a:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #d2be5e;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

/*-- ヘッダー検索窓 --*/
.post-search{
  position: relative;
}
.post-search i{
  position: absolute;
  left: 20px;
  top: 10px;
  color: #828282;
}
.post-search #form input {
    box-shadow: none;
    margin-left: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 100px;
    font: inherit;
    outline: none;
    border: solid 1px #d4d4d4;
    padding: 0px 10px 0px 30px;
    box-sizing: border-box;
    background-color: #ffffff;
    height: 33px;
    font-size: 13px;
    width: 230px;
}

@media screen and (max-width: 750px) {
  #header-wrapper {
  margin: 0px;
  position: fixed;
  z-index: 99;
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
  box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
  }
}

.journal .page_title h1 {
  width: 1110px;
  margin: 0 auto;
  text-align: left;
  color: #292929;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 19px;
  font-weight: 500;
  position: absolute;
  top: 200px;
  left: 95px;
}

  @media screen and (max-width: 750px) {
    .journal .page_title h1 {
      width: 100%;
    }
}

.journal .page_title {
  background-image: url(./image/page/bg_cover_journal.jpg);
  background-color: #c7d3df;
  height: 335px;
  background-size: 1225px;
  background-position: center;
  margin-top: ;
}

.journal .page_title:after {
  display: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .journal .page_title {
    background-image: url("./image/page/bg_cover_journal@2x.jpg");
  }
}

.journal .page_title .content_text {
  border: none;
  font-size: 15px;
  display: block;
  padding: 0px;
  margin: 10px 0px 20px 0px;
}

.journal .page_title p {

  font-size: 50px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
  line-height: 35px;
  display: inline-block;
  margin-top: 20px;
  font-weight: 100;
}


/*--------------------------------------------------------------------------

AD JOURNAL記事カラム

---------------------------------------------------------------------------*/

.post-text {
  margin-top: 20px;
}

.post-text ul {
  margin: 15px 0px;
  background-color: #e8e8e8;
  padding: 20px;
  border-radius: 2px;
}

.post-text ul li {
  list-style-type: disc;
  margin: 0px 0px 0px 20px;
  font-weight: 600;
  font-size: 15px;
}
@media screen and (max-width: 750px) {
  .post-text ul li{
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 10px;
  }
}
.post-text ul li a{
  font-weight: 300;
  text-decoration: underline;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* -- アイキャッチ下のバナーエリア --*/
.title-widget{
  margin-top: 30px;
}

/* -- 目次 --*/

p.toc_title {
  text-align: left !important;
  text-transform: uppercase;
  font-size: 18px !important;
  font-family: Roboto Condensed;
  letter-spacing: 1px;
}

#toc_container {
  background: #ffffff !important;
  padding: 30px 30px !important;
  border: 1px solid #ececec !important;
  box-sizing: border-box;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 2px;
}

ul.toc_list li a {
  border-top: solid 1px #ececec;
  display: block;
  color: #3f85ef;
  padding: 8px 0px;
}
ul.toc_list ul li a {
  padding-left: 30px;
}
#toc_container ul ul {
  margin-left: 0px !important;
}

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

ul.toc_list li a {
  display: block;
  padding: 8px 0px;
  line-height: 22px;
  font-size: 14px;
}
ul.toc_list ul li a {
  padding-left: 0px;
}
}


/*-- リンクカード --*/
@media screen and (max-width: 750px) {
  .article-inner section .lkc-external-wrap,
  .article-inner section .lkc-internal-wrap{
    border-right: 0px;
    border-left: 0px;
    border-radius: 0px;
  }
  .article-inner section .lkc-thumbnail {
  /* float: none; */
  width: 30%;
  display: block;
  margin: 0px 0px 10px 0px;
  padding-right: 10px;
  box-sizing: border-box;
  }
  .article-inner section .lkc-card{
    margin: 15px 0px;
  }

  .article-inner section .lkc-title{
    width: 70%;
  }
   .article-inner section .lkc-excerpt{
     display:none;
   }

  .article-inner section .lkc-title-text {
  font-size: 14px;
  line-height: 20px;
  }
}

/*--------------------------------------------------------------------------

フッター上お問合せ

---------------------------------------------------------------------------*/
.cta {
  text-align: center;
  padding: 50px 0px;
  background-color: #f3e9d6;
  width: 1160px;
  margin: 0 auto 100px auto;
  border-radius: 2px;
}

.cta h2 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 14px;
  letter-spacing: 1px;
}

.cta a {
  font-size: 16px;
  text-align: center;
  display: block;
  background-color: #e4a736;
  border-radius: 2px;
  padding: 15px;
  color: white;
  font-weight: 300;
  -webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  letter-spacing: 1px;
  width: 20%;
  display: block;
  margin: 25px auto 0 auto;
}

@media screen and (max-width: 750px) {
  .cta {
    text-align: center;
    padding: 50px 30px;
    background-color: #f3e9d6;
    width: 100%;
    margin: 0;
    border-radius: 2px;
    box-sizing: border-box;
  }

  .cta h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 35px;
  }

  .cta p {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .cta p br{
    display: none;
  }

  .cta a {
    font-size: 16px;
    text-align: center;
    display: block;
    background-color: #e4a736;
    border-radius: 2px;
    padding: 15px;
    color: white;
    font-weight: 300;
    -webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
    box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
    letter-spacing: 1px;
    width: 90%;
    display: block;
    margin: 25px auto 0 auto;
  }
}

nav.mnmd p {
    margin-bottom: 20px;
    width: 320px;
    padding: 0px;
}

nav.mnmd p img {
    width: 190px;
}

nav.mnmd p span {
    display: block;
    font-size: 12px;
}

@media screen and (max-width: 750px) {
  .footer_inner nav.mnmd {
    text-align: center;
  }

  .footer_inner nav.mnmd p {
    border: none;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0px;
    margin: 0px;
  }

  .footer_inner nav.mnmd p span {
    display: inline-block;
    width: 100%;
  }
}
/*--------------------------------------------------------------------------

footer

---------------------------------------------------------------------------*/
/*----------------------------
ホーム 下部リンク
-----------------------------*/

.home_footlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: white;
  height: 350px;
}
.home_footlink h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;

}
.home_footlink p {
  font-size: 13px;
  display: block;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 24px;
  margin-bottom: 30px;
}
.home_footlink a {
  background-color: #ffffff;
  font-size: 14px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 14px 0px;
  font-weight: 300;
  width: 200px;
  display: inline-block;
  text-align: center;
  color: #444444;
  opacity: 1;
}
.home_footlink a:hover, .more_recruit a:hover, .more_about a:hover {
  background-color: #cdab67;
  color: white;
}
.home_footlink_r {
  background-image: url(./image/common/corporate-bg.jpg);
  text-align: center;
  background-size: 100%;
  width: 50%;
  background-size: cover;
}
.home_footlink_l {
  background-image: url(./image/common/recruit-bg.jpg);
  text-align: center;
  background-size: 100%;
  width: 50%;
  background-size: cover;
}
.home_foot_bg {
    background-color: rgba(0, 0, 0, 0.38);
    padding: 49px 0px;
}
@media screen and (max-width: 750px) {
  .home_footlink {
    display: block;
    height: auto;
  }
  .home_footlink h2 {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
  
    line-height: 30px;
  }
  .home_footlink p {
    display: none;
  }
  .home_footlink a {
    font-size: 13px;
    padding: 10px 0px;
    width: 170px;
  }
  .home_footlink a:hover, .more_recruit a:hover, .more_about a:hover {
    background-color: #cdab67;
    color: white;
  }
  .home_footlink_r {
    background-image: url(./image/common/corporate-bg.jpg);
    text-align: center;
    background-size: 100%;
    width: 100%;
    background-size: cover;
  }
  .home_footlink_l {
    background-image: url(./image/common/recruit-bg.jpg);
    text-align: center;
    background-size: 100%;
    width: 100%;
    background-size: cover;
  }
  .home_foot_bg {
      background-color: rgba(0, 0, 0, 0.38);
      padding: 30px 0px;
  }
}

#footer_text {
  margin: 0 auto;
  font-size: 12px;

  color: #797979;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
}
#footer_text strong {
  font-weight: normal;
}
#footer_text p,
#footer_text p span {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0px;
  line-height: 25px;
}
#footer_text span {
  display: block;
  font-size: 22px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-weight: 600;
}
#sec03_inner_bottom p small {
  font-size: 12px;
  color: white;
  font-weight: 100;
  margin-top: 10px;
}

.footer_inner, .footer_btm_inner {
  width: 1160px;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .footer_inner, .footer_btm_inner {
    width: 100%;
  }
}

.footer_inner nav {
  padding: 70px 0px;
  float: left;
  margin-right: 85px;
}

.footer_inner nav:last-child{
  margin-right:0px;
}
.footer_inner nav ul {
  text-align: left;
}
@media screen and (max-width: 750px) {
  .footer_inner nav {
    float: none;
    padding: 0px;
    margin: 0px;
  }
  .footer_inner nav ul.toggle-menu {
    display:none;
    background-color: #3b3b3b;
  }
  .footer_inner nav ul li{
  border-bottom: solid 1px #575757;
  }
  .footer_inner nav ul li a{
  padding: 8px 20px;
  width: 100%;
  box-sizing: border-box;
  }
}

.footer_inner nav p {
  color: #ffffff;
  padding: 3px 0px 10px 0px;
  letter-spacing: 2px;
  text-align: left;
  font-size: 15px;
  font-family: 'Noto Sans Japanese', sans-serif;
}
@media screen and (max-width: 750px) {
  .footer_inner nav p {
    padding: 15px 20px;
    font-size: 14px;
    border-bottom: solid 1px #575757;
  }
}
@media screen and (max-width: 750px) {
  .footer_inner nav p span {
    display:inline-block;
    float: right;
    font-size: 20px;
    line-height: 30px;
  }
}
#Footer {
  text-align: center;
  background-color: #343538;
}

.footer_inner ul li a {
  color: #bababa;
  padding: 3px 0px 3px 0px;
  display: inline-block;
  font-weight: 300;
  font-size: 13px;
  font-family: 'Noto Sans Japanese', sans-serif;
  letter-spacing: 1px;
}

#foot_credit img {
  margin-bottom: 60px;
}
#foot_credit p {
  font-size: 12px;
  color: #828282;
  margin-bottom: 85px;
}

.footer_info img {
  width: 150px;
  text-align: center;
}
small, .footer_btm a {
  color: gray;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 300;

  display: block;
  float: right;
  height: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_info {
  overflow: hidden;
  padding-top: 150px;
  padding-left: 50px;
  float: right;
}
footer .bottom_inner {
  background-color: #3F3F41;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .bottom_inner p, footer .bottom_inner a {
  color: #B3B3B3;
  font-family: "Noto Sans Japanese", sans-serif;
}
footer .bottom_inner .l-inner .inner_in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer .bottom_inner .l-inner .inner_in .block {
  text-align: center;
  padding: 0px 50px;
}
footer .bottom_inner .l-inner .inner_in .block p {
  font-size: 10px;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
footer .bottom_inner .l-inner .inner_in .block a {
  display: block;
}

.footer_btm {
  background-color: #303135;
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_btm ul {
  float: left;
}

.footer_btm ul li {
  display: inline-block;
  text-align: left;
  margin-right: 20px;
}

.footer_btm a, small {
  color: #bababa;
  padding: 3px 0px 3px 0px;
  display: inline-block;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 10px;

  line-height: 40px;
}
@media screen and (max-width: 750px) {
  small{
    text-align: center;
    float: none;
  }
}

.tag-nav{
  width: 1160px;
  margin: 0 auto;
  border-top: solid 2px;
  padding: 12px 0px 0px 0px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
.tag-nav li a{
  font-size: 14px;
  font-weight: 500;
  padding: 0px 6px;
  letter-spacing: -1px;
}
.tag-nav li a:hover{
  opacity: 1;
  background-color: #d6d6d6;
  border-radius: 100px;
}
.tag-nav li:last-child a{
  border:none;
}
.gnav li{
  position: relative;
}
ul.gnav span,
ul.tag-nav span {
    background-color: #dedede;
    padding: 3px 3px 3px 7px;
    border-radius: 2px 0px 0px 3px;
    margin-right: 20px;
    position: relative;
}
ul.tag-nav span{
  background-color: #039cec;
  color:white;
  height: 22px;
  font-size: 12px;
  padding-right: 10px;
}
ul.gnav span{
  font-size: 10px;
  color: #545454;
}
ul.gnav span:after{
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -11px;
  border: 10px solid #06060600;
  border-left: 9px solid #dedede;
}
ul.tag-nav span:after{
  content: "";
  position: absolute;
  top: 50%;
  left: 101%;
  margin-top: -14px;
  border: 14px solid #06060600;
  border-left: 14px solid #039cec;
}
.gnav li ul.children li {
    border-bottom: solid 1px #4a4a4a;
    display: flex !important;
    justify-content: space-between;
}
.gnav li ul.children li:last-child {
  border: none;
}
.gnav li ul.children li:hover{
  background-color: #272727;
  border-radius: 2px;
}
.gnav li ul.children li a:hover{
  opacity:1;
}
.gnav li ul.children{
  position: absolute;
  top: 35px;
  left: 90px;
  margin-left: -100px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
  background-color: #333333;
  border-radius: 2px;
  z-index: 99;
  padding: 0px;
  box-shadow: 0px 1px 7px 3px rgba(255, 255, 255, 0.16);
  display: inline-table;
}
.gnav li ul.children ul.children{
  background: #111;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  position: absolute;
  top: 0px;
  left: 274px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
  background-color: #333333;
  border-radius: 0px 3px 3px 0px;
  z-index: -2;
  padding: 0px;
  box-shadow: 0px 1px 7px 3px rgba(255, 255, 255, 0.16);
  display: inline-table;
  min-width: 175px;
}
.gnav li ul.children ul.children:before{
  display: none;
}
.gnav li ul.children li:hover ul.children{
  visibility: visible;
  opacity: 1;
}
.gnav li ul.children ul.children li{
  position: relative;
}
.gnav li ul.children ul.children li a{
  box-sizing: border-box;
  min-width: 150px;
}
.gnav li ul.children ul.children li:hover{
  background: #2a1f1f;
}
.gnav li ul.children li a{
  font-weight: 200 !important;
  border-right: 0px !important;
  padding: 13px 10px !important;
  display: inline-block;
  color: white !important;
  width: 100%;
  height: auto !important;
  min-width: 175px;
  box-sizing: border-box;
}
.gnav li ul.children:before{
    position: absolute;
    top: -13px;
    margin-left: 20px;
    border: 8px solid transparent;
    border-bottom: 8px solid #2f2f2f;
    content: "";
}
.gnav li:hover ul.children{
  visibility: visible;
  opacity: 1;
  transition: all 0.3s linear;
}
.gnav li.cat-item-7 a:after,
.gnav li.cat-item-25 a:after,
.gnav li.cat-item-105 a:after,
.gnav li.cat-item-86 a:after,
.gnav li.cat-item-6 a:after,
.gnav li.cat-item-4 a:after,
.gnav li.cat-item-9 a:after,
.gnav li.cat-item-3 a:after{
  content: "▼";
  margin-left: 5px;
  font-size: 10px;
  color: #a9a9a9;
}
.children .ti-angle-right::before{
  display: none;
}
.gnav li ul.children li a.ti-angle-right::after {
  content: "\e649";
  float: right;
  font-size: 10px;
  /* margin-left: 35px; */
  color: white;
}
#category-menu nav {
  width: 1160px;
  margin: 0 auto;
  padding: 5px 0px;
}

#category-menu nav ul li {
  display: inline-block;
  position: relative;
}

#category-menu nav ul li a {
  font-size: 0.87em;
  font-weight: 300;
  padding: 0px 10px;
  color: #585858;
  border-right: solid 1px #d0d0d0;
  height: 25px;
  overflow: hidden;
}
#category-menu nav ul li a:hover{
  opacity: 1;
  color: black;
}
#category-menu nav ul li:last-child a{
  border:none;
}

@media screen and (max-width: 750px) {
  #header-wrapper {
  margin: 0px;
  position: fixed;
  z-index: 99;
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
  box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
  top: 0;
  }
}

.journal .page_title h1 {
  width: 1110px;
  margin: 0 auto;
  text-align: left;
  color: #292929;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 19px;
  font-weight: 500;
  position: absolute;
  top: 200px;
  left: 95px;
}

  @media screen and (max-width: 750px) {
    .journal .page_title h1 {
      width: 100%;
    }
}

.journal .page_title {
  background-image: url(./image/page/bg_cover_journal.jpg);
  background-color: #c7d3df;
  height: 335px;
  background-size: 1225px;
  background-position: center;
  margin-top: ;
}

.journal .page_title:after {
  display: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .journal .page_title {
    background-image: url("./image/page/bg_cover_journal@2x.jpg");
  }
}

.journal .page_title .content_text {
  border: none;
  font-size: 15px;
  display: block;
  padding: 0px;
  margin: 10px 0px 20px 0px;
}

.journal .page_title p {

  font-size: 50px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
  line-height: 35px;
  display: inline-block;
  margin-top: 20px;
  font-weight: 100;
}
/*-----------------------------
ドロワー
------------------------------*/
  @media screen and (max-width: 750px) {
    header .menu_btn {
      float: right;
      padding: 2px 0px 0px 0px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
    }

    .menu_trigger,
    .menu_trigger span {
      display: inline-block;
      -webkit-transition: all .4s;
         -moz-transition: all .4s;
          -ms-transition: all .4s;
           -o-transition: all .4s;
              transition: all .4s;
      box-sizing: border-box;
    }

    .menu_trigger {
      position: relative;
      width: 30px;
      height: 22px;
    }

    .menu_trigger span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #000;
    }

    .menu_trigger span:nth-of-type(1) {
      top: 0;
    }

    .menu_trigger span:nth-of-type(2) {
      top: 50%;
      left: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
      transform: translate3d(-50%, -50%, 0);
    }

    .menu_trigger span:nth-of-type(3) {
      bottom: 0;
    }

    .menu_trigger.active span:nth-of-type(1) {
      -webkit-transform: translateY(20px) rotate(-315deg) scale(.8);
      transform: translateY(20px) rotate(-315deg) scale(.8);
      top: -10px;
    }

    .menu_trigger.active span:nth-of-type(2) {
      width: 40px;
      height: 40px;
      background-color: transparent;

      border-radius: 50%;
    }

    .menu_trigger.active span:nth-of-type(3) {
      -webkit-transform: translateY(-20px) rotate(315deg) scale(.8);
      transform: translateY(-20px) rotate(315deg) scale(.8);
      bottom: -10px;
    }

    .menu_box {
      display: none;
      width: 100%;
      background-color: #ffffff;
      box-sizing: border-box;
      z-index: 99;
    }

    .c_menu{
      position: relative;
    }

    .c_menu ul li:last-child {
        border-bottom: none;
    }

    .menu_box nav > ul {
      width: 100%;
      margin: 0 auto;
    }

    .menu_box nav ul li:nth-child(4) ul{
      border-top: 1px solid #ACACAC;
      display: none;
      background-color: #EFEFEF;
    }

    .post_category li,
    .menu_box nav ul li {
      border-bottom: 1px solid #ededed;
    }

    .menu_box nav > ul > li:last-child {
      border: none;
    }

    .menu_box nav > ul > li a {
      display: block;
      font-size: 16px;
      padding: 12px 20px;
    }

    .menu_box nav > ul > li > ul {
        position: relative;
    }

    .post_category {
      margin-bottom: 20px;
    }
    .post_category .children{
      display: none;
    }
    .post_tag ul li{
      display: inline-block;
      border: none;
    }
    .post_tag ul li a::before{
      content: "#";
      margin-right: 5px;
    }
    .post_tag ul li a::after{
      display: none;
    }
    .post_category p {
        padding: 4px 10px 5px;
        color: #FFF;
        font-size: 14px;
        letter-spacing: 1px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        background-color: #4BB7C9;
    }

    .post_category li a {
      display: block;
      font-size: 14px;
      padding: 7px 10px;
      font-weight: 500;
    }

    .post_category li a:after {
      content: "\f144";
      font-family: 'Font Awesome 5 Free';
      color: #979797;
      float: right;
      font-size: 16px;
      line-height: 25px;
    }
  }

.sns_area ul {
    display: -webkit-flex;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 0px 5px;
    box-sizing: border-box;
}
/*-- SNSボタン --*/
.sns_area ul li a {
    width: 100%;
    margin: 0px;
    padding: 5px 0px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sns_area ul li {
    width: 24%;
    height: 60px;
}
/*--------------------------------------------------------------------------

固定ページ　共通

---------------------------------------------------------------------------*/
.page {
  margin: 0 auto;
}
.page_title {
  text-align: center;
  color: white;
  background-size: cover;
  background-color: #292929;
  background-repeat: no-repeat;
  height: 250px;
  margin: 0 auto;
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  width: 1160px;
  overflow: hidden;
}

.page_inner {
  width: 1160px;
  margin: 0 auto;
}

.page_title p {

  font-size: 70px;
  line-height: 35px;
  display: inline-block;
  margin-top: 100px;
  font-weight: 500;
  letter-spacing: 3px;
}

.page h1 {
  font-size: 14px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 300;
  letter-spacing: 2px;
}

#main {
  color: #333333;
}

.title_line {
  text-align: center;
  margin: 60px auto 95px auto;
  border-top: solid 1px black;
  width: 40px;
}

.about_text {
    text-align: center;
    margin-bottom: 120px;
}

.about_text h2 {
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 40px;
    padding-top: 70px;
    letter-spacing: 2px;
}

.about_text p {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
    line-height: 30px;
}
/*--------------------------------------------------------------------------

固定ページ AGENCY OFFER

 ---------------------------------------------------------------------------*/
.agency-offer img{
  max-width: 100%;
}
.agency {
  padding: 30px 30px 70px 30px;
  background-color: white;
  color: black;
}
.agency-title h2 {
  font-size: 13px;
  font-weight: 500;
}

.agency-title p {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
}

.agency-title {
  margin-bottom: 30px;
}

.agency-content p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1px;
}

.agency-content small {
  font-size: 13px;
  display: block;
  width: 100%;
  color: black;
  padding: 10px 0px 0px 0px;
  line-height: initial;
  margin-bottom: 10px;
}
.agency-content a {
  text-decoration: underline;
  color: blue;
}
.agency-category .agency-content {
  display: flex;
}
.agency-category .agency-content ul {
  margin-right: 40px;
  font-size: 17px;
}
.agency-flow p {
  margin-bottom: 30px;
}
.agency-register-info {
  padding: 20px;
  border: solid 1px gainsboro;
  background-color: #FDFDEB;
  margin-top: 20px;
}
.agency-register-info p{
  font-size: 13px;
  line-height: 22px;
}
@media screen and (max-width: 750px){
  .agency-content p {
    font-size: 15px;
  }
  .agency-category .agency-content{
    display: block;
  }
  .agency-content p br{
    display: none;
  }
}
/*--------------------------------------------------------------------------

固定ページ form

 ---------------------------------------------------------------------------*/

.form_title {
  background: none;
  height: 250px;
  color: #333333;
}

.form_title h1 {
    padding-top: 70px;
    font-size: 40px;
    margin-bottom: 0px;
    font-weight: 500;
}

.form_title p {
    font-size: 15px;
    margin: 0px;
}

.form_section {
  padding: 90px 200px 100px 200px;
  margin-bottom: 100px;
}

.form_caution{
  margin: 40px 0px;
  font-size: 13px;
  text-align: center;
}

.form_section table{
  table-layout: fixed;
  width: 100%;
}

.form_section table tr th{
  padding-top: 10px;
  text-align: left;width: 25%;font-size: 15px;font-weight: 300;padding-bottom: 50px;vertical-align: top;}
.form_section table tr th .required{
  font-size: 11px;
  color: white;
  background-color: #d61111;
  width: 40px;
  display: inline-block;
  height: 18px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  letter-spacing: 1px;
  margin-right: 10px;
  font-weight: 300;
  line-height: 17px;
}
.form_section table tr th .any{
  font-size: 11px;
  color: white;
  background-color: #727273;
  width: 40px;
  display: inline-block;
  height: 18px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  letter-spacing: 1px;
  margin-right: 10px;
  font-weight: 300;
  line-height: 17px;
}


.form_section table tr td input,
.form_section table tr td textarea{
  width: 100%;
  background-color: #efefef;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  height: 50px;
  padding: 0px 15px;
  box-sizing: border-box;
}

.form_section table tr td textarea{
  height: 200px;
}

.form_section .wpcf7-submit {
  font-size: 18px;
  background-color: #e4a736;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  width: 400px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: 300;
  -webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  border: none;
  margin:0 auto;
  cursor: pointer;
}

.dl_file {
  border: solid 1px #e4e4e4;
  margin-bottom:  30px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.form_section .dl_file p {
  margin: 20px 70px 20px 30px;
  font-size: 15px;
  letter-spacing:  1px;
  font-weight: 300;
  text-align: left;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.form_section .dl_file p object{
    width: 30px;
  margin-right: 20px;
}

.dl_file input {
  border: none;
}

.dl_file p span {
  display: inline-flex;
  font-weight: 500;
}

.privacy_check {
    margin: 30px 0px;
    width: 100%;
}
.privacy_title {
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}
.privacy_description {
  font-size: 13px;
  text-align: center;
  display: block;
}
.privacy_check div{
  border: solid 1px #dedede;
  padding: 30px;
  font-size: 12px;
  height: 100px;
  overflow: scroll;
  margin: 20px 0px;
}
.p-ok {
  background-color: #fffbdb;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  border-radius: 2px;
  margin-bottom: 30px;
}

.p-ok .required {
  font-size: 11px;
  color: white;
  background-color: #d61111;
  width: 40px;
  display: inline-block;
  height: 18px;
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  letter-spacing: 1px;
  margin-right: 10px;
  font-weight: 300;
  line-height: 17px;
  vertical-align: text-top;
}

input[type="checkbox"] {
  width: 20px !important;
  height: 20px;
  line-height: 23px;
}

/*--------------------------------------------------------------------------

固定ページ privacy

 ---------------------------------------------------------------------------*/

.privacy {
  margin: 0 auto;
}
.privacy ul li, .security ul li {
  padding-bottom: 30px;
}
.privacy ul li .title, .security ul li .title {
  font-weight: bold;
}
.privacy ul li a, .security ul li a {
  text-decoration: underline;
}

/*--------------------------------------------------------------------------

固定ページ download

 ---------------------------------------------------------------------------*/
.download .about_text p span{
  font-size: 12px;
}

.download_list {
  display: -webkit-flex;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 200px;
}


.download_list::before,
.news_list::before{
  content:"";
  display: block;
  width:30%;
  order:1;
}
.download_list::after{
  content:"";
  display: block;
  width:23%;
}

.download_list .ebook {
  width: 23%;
  text-align: center;
  -webkit-box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
  box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
  box-sizing: border-box;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 70px;
  overflow: hidden;
  position: relative;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}

.ebook:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px)
  -webkit-box-shadow: 0 18px 35px rgba(50,50,93,.1), 0 8px 15px rgba(0,0,0,.07);
  -webkit-box-shadow: 0 18px 35px rgba(50,50,93,.1), 0 8px 15px rgba(0,0,0,.07);
  box-shadow: 0 18px 35px rgba(50,50,93,.1), 0 8px 15px rgba(0,0,0,.07);
}

.ebook h3 {
  font-weight: 500;
  font-size: 13px;
  letter-spacing:  1px;
  margin-bottom: 10px;
  line-height: 20px;
}

.ebook h3:after {
  content: "";
  width: 80px;
  background-color: #efa620;
  display: block;
  height: 2px;
  margin: 15px auto 20px auto;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

.ebook figure {
  height: 185px;
  width: 100%;
}


.book_label {
  position: absolute;
  border: solid 1px #ececec;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  width: 120px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 168px;
  font-size: 12px;
  padding: 5px 10px;
  font-weight: 400;
  letter-spacing:  1px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color:  white;
}

.book_ebook{
  color: #ea9800;
}

.book_service{
  color: #00a5ea;
}

.ebook p {
  font-size: 13px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
  line-height: 20px;
  color: #666666;
}

.download_list .ebook img {
  width: 100%;
  height: auto;
}

.dowload_list_btm {
  padding: 35px 25px 25px 25px;
}

.ebook a {
  background-color: #f9f9f9;
  display: block;
  padding: 15px 0px;
  color: #efa620;
  font-size: 14px;
  font-weight: 300;
  letter-spacing:  0px;
}

.ebook a:hover {
  color: #333333;
}

.ebook a::after{
  position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)
}

.downloads .page_title {
  background-image: url(./image/page/bg_cover_download.jpg);
  background-position: center;
}

/*--------------------------------------------------------------------------

AD JOURNAL基本設定

---------------------------------------------------------------------------*/
/*-- breadcrumb --*/
#breadcrumb {
  width: 1160px;
  margin: 10px auto;
  text-align: left;
}

@media screen and (max-width: 750px) {
  #breadcrumb {
    width: 100%;
  }
}

#breadcrumb li {
  display: inline-block;
  font-size: 11px;
  color: gray;
}
.about.page {
  width: 100%;
}
#breadcrumb span.bread_arrow {
  font-size: 15px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
  pointer-events: none;
}
#breadcrumb a, #breadcrumb span {

  font-size: 11px;
  color: #626262;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
}
#breadcrumb li:not(:last-child):after,
#breadcrumb span.bread_arrow:not(:last-child):after{
  content: ">";
  font-size: 11px;
  padding: 0px 3px;
}

#breadcrumb a:hover, #breadcrumb span:hover {
  text-decoration: underline;
}

/*-- レイアウト --*/

@media screen and (max-width: 750px) {
  .journal, .words{
  padding-top: 80px;
  }
}
.single-post {
  width: 1160px;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .single-post{
    width: 100%;
  }
}

.column-wrapper {
  width: 785px;
  margin: 0 auto;
  padding-bottom: 80px;
  /* overflow: hidden; */
  float: left;
}

.column-wrapper.archive {
  display: -webkit-flex;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

  @media screen and (max-width: 750px) {
    .column-wrapper {
      width: 95%;
      float: none;
      padding-bottom: 0px;
    }
  }

.column-box {
  width: 900px;
  float: left;
}

@media screen and (max-width: 750px) {
  .column-box {
    width: 100%;
  }
}

.column-wrapper .entry {
  width: 48%;
  box-sizing: border-box;
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  overflow: hidden;
}
.column-wrapper .entry.entry-first:first-child{
  width: 100%;
}

.entry.entry-first:before {
    content: "新着";
    position: absolute;
    font-size: 12px;
    background-color: #ff5200;
    padding: 2px 10px;
    color: white;
    top: 4px;
    left: 4px;
    border-radius: 2px;
    z-index: 98;
}

.entry.entry-first:last-of-type {
  margin: 0px;
}

.column-wrapper .entry.entry-first:first-child a{
  position:relative;
}
.column-wrapper .entry.entry-first:first-child .entry-content{
  position: absolute;
  bottom: 0px;
  background-color: #232323e8;
  width: 100%;
  color: white;
  box-sizing: border-box;
}
.column-wrapper .entry.entry-first:first-child .entry-content-date{
  color:white;
}
.column-wrapper .entry.entry-first:first-child .entry-content h2.entry-title{
  font-size: 20px;
  margin-top: 10px;
  letter-spacing: 0px;
}
@media screen and (max-width: 750px){
  .column-wrapper .entry.entry-first:first-child .entry-content h2.entry-title {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 22px;
    padding: 0px 0px 10px 0px;
    margin: 0px;
  }
}
.column-wrapper .entry.entry-first:first-child .entry-content .content-info{
  height:auto;
  margin-bottom: 5px;
}
.column-wrapper .entry:nth-of-type(3n) {
  margin-right: 0px;
}

@media screen and (max-width: 750px) {
  .archive .entry{
    width: 100%;
    margin: 0 0 10px 0 !important;
    background-color: #f6f6f6;
    border-radius: 0px;
    border-bottom: solid 1px #dedede;
    padding-bottom: 10px;
  }
  .archive .entry a{
    display: -webkit-flex;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-flow: row-reverse;
  }
  .archive .entry h2{
    font-size: 15px;
    line-height: 20px;
  }
  .column-wrapper .entry:nth-of-type(3n) {
    margin-right: auto;
  }
  .column-wrapper .entry:last-child{
    margin-bottom:0px;
  }
  .content-info{
    display: none;
  }
}


.column-wrapper .entry .img-catch {
  overflow: hidden;
  border-bottom: solid 1px #f2f2f2;
  box-sizing: border-box;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}
@media screen and (max-width: 750px) {
  .column-wrapper .entry .img-catch:hover {
    transform: scale(1);
  }
}
.column-wrapper .entry img {
  width: 100%;
  height: auto;
}
.entry a {
  color: #292929;
  display: block;
}
h2.entry-title {
  font-size: 19px;
  font-weight: 500;
  line-height: 27px;
}
.column-wrapper .entry:hover h2.entry-title {
  color: #009cec;
}
.entry-content {
  padding: 10px 20px 15px 20px;
}
@media screen and (max-width: 750px) {
  .entry-content {
    padding: 0px 8px 8px 8px;
  }
}
.entry-content .tag-cate {
  display: inline-block;
}
@media screen and (max-width: 750px) {
  article.new-entry .tag-cate {
    padding: 0px 0px 0px 5px;
    border-left: solid 1px gray;
  }
}
.entry-content-date {
  display: inline-block;
  font-size: 11px;
  color: gray;
  font-weight: 300;
}
.entry-content .content-info {
  padding-top: 10px;
  overflow: hidden;
  height: 66px;
  font-size: 13px;
  font-weight: 300;
  text-align: justify;
  text-justify: inter-ideograph;
  -ms-text-justify: inter-ideograph;
  line-height: 21px;
  text-overflow: ellipsis;
}
/*-- 新着記事 --*/
.entry.entry-first a {
  display: -webkit-flex;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.entry.entry-first h2{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.entry.entry-first {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
.entry.entry-first .content-info{
  height: auto;
}

@media screen and (max-width: 750px){
  .entry.entry-first{
    margin-bottom:10px
  }
  .entry.entry-first h2{
    font-size:14px;
    line-height:19px;
  }
}

.entry.entry-first:first-child .img-catch{
  width:100%
}

.entry.entry-first .img-catch {
    width: 30%;
}

@media screen and (max-width: 750px){
  .entry.entry-first .img-catch,
  .archive .entry .img-catch {
    width: 35%;
  }
}

.entry.entry-first .entry-content {
    width: 70%;
    box-sizing: border-box;
    padding: 5px 15px;
}

@media screen and (max-width: 750px){
  .entry.entry-first .entry-content,
  .archive .entry .entry-content {
    padding:0px 10px;
    width:65%;
    box-sizing: border-box;
  }
}
.column nav {
  width: 980px;
  height: auto;
  margin: 0 auto 100px auto;
}

  @media screen and (max-width: 750px) {
    .column nav {
      width: 100%;
    }
  }

.column nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: flex-start;
  border-left: solid 1px gainsboro;
  box-sizing: border-box;
}
ul.cat-nav li {
  border-right: solid 1px gainsboro;
  flex: 1 0 0%;
  margin: 0;
  text-align: center;
  box-sizing: border-box;
}

.column nav ul li a {
  display: block;
  color: #5b5b5b;
  font-size: 13px;
}

.column-pagenation {
  height: auto;
  text-align: center;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .column-pagenation {
    margin-bottom: 20px;
  }
}
.column-pagenation .page-numbers {
  margin: 20px 5px 0px 5px;
  display: inline-block;
  padding: 10px 5px 2px 5px;
  box-sizing: border-box;
  width: 55px;
  height: 55px;

  font-size: 20px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
  line-height: 35px;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 3px;
  background-color: #ffffff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
@media screen and (max-width: 750px) {
  .column-pagenation .page-numbers {
    margin: 0px 10px 0px 0px;
  }
}
.column-pagenation .page-numbers:hover {
  background-color: #009cec;
  color: white;
  opacity: 1;
}

.column-pagenation .page-numbers.current {
  background-color: #009cec;
  color: #fff;
}

.column-pagenation .prev, .column-pagenation .next {
  border: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/*-- column category --*/

.tag-cate p {
  color: #009cec;
  border-left: solid 1px gray;
  padding-left: 4px;
  line-height: 11px;
  font-size: 11px;
}
/*-- タグでの投稿一覧表示 --*/

.tag-post .entry {
  width: 32.7%;
  margin: 0px;
}
.tag-post .entry .entry-content{
  padding: 5px 10px 15px 10px;
}
.tag-post .entry h2{
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}
@media screen and (max-width: 750px) {
  .tag-post .entry{
    width: 100%;
    min-width: 210px;
    margin-right: 10px;
  }
  .column-wrapper .entry:nth-of-type(3n) {
    margin-right: 10px;
  }
}
.tag-post {
  position: relative;
  margin-top: 30px;
}
.tag-entry-wrap{
  display: -webkit-flex;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .tag-entry-wrap{
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: inherit;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 0px 10px;
  }
}
.tag-title {
  width: 100%;
  margin: 0px 0px 18px 0px;
  font-size: 18px;
  border-top: solid 3px #3a3a3a;
  padding: 10px 0px 0px 0px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .tag-title {
    justify-content:space-between;
    padding-right: 10px;
    font-size: 19px;
  }
}
.tag-title a{
  font-size: 12px;
  margin-left: 20px;
  border-bottom: solid 1px;
}
@media screen and (max-width: 750px) {
  .tag-post .entry h2{
    font-size: 14px;
    line-height: 19px;
  }
}
.tag-post h2:before {
  background: #ff7600;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  top: 0px;
  width: 200px;
}

.tag-mini-view .entry a {
  display: flex;
  width: 100%;
}

.tag-mini-view section {
  width: 48%;
}
.tag-mini-view .entry:last-child {
  display: block;
}
@media screen and (max-width: 750px) {
  .tag-mini-view section{
    width: 100%;
  }
}

.tag-mini-view .entry {
  width: 100%;
  margin-bottom: 10px;
  height: 85px;
}

.tag-mini-view .entry h2{
  font-size: 13px;
}


.tag-mini-view .entry .img-catch{
  width: 40%;
}

.tag-mini-view .entry .entry-content{
  width: 60%;
}

.tag-mini-view {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .tag-mini-view{
    display: block;
  }
}

/*-- ÃƒÂ£Ã¢â‚¬Å¡Ã‚Â«ÃƒÂ£Ã†â€™Ã¢â‚¬Â ÃƒÂ£Ã¢â‚¬Å¡Ã‚Â´ÃƒÂ£Ã†â€™Ã‚ÂªÃƒÂ£Ã†â€™Ã‚Â¼ÃƒÂ£Ã†â€™Ã…Â¡ÃƒÂ£Ã†â€™Ã‚Â¼ÃƒÂ£Ã¢â‚¬Å¡Ã‚Â¸ --*/

.category_cover img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 100%;
}

.category_cover {
  background-color: #c7d3df;
  margin-bottom: 10px;
  display: block;
  height: 105px;
  overflow: hidden;
}

.category_title {
  margin: 20px auto 30px auto;
  width: 100%;
}

.category_title h1 {
  font-size: 20px;
  line-height: 23px;
  font-weight: 500;
}

.category_title p {
  font-size: 13px;
  font-weight: 300;
  text-align: justify;
  text-justify: inter-ideograph;
  -ms-text-justify: inter-ideograph;
}

.child_category {
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  margin-bottom: 10px;
  margin-top: 20px;
  border-top: dashed 1px silver;
  padding-top: 20px;
}
.category_title ul li {
  display: inline-block;
  margin-right: 10px;
}
.category_title ul li a {
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  text-justify: inter-ideograph;
  -ms-text-justify: inter-ideograph;
  text-decoration: underline;
  margin-bottom: 5px;
}
img.lkc-favicon {
    width: 15px !important;
}
/*--------------------------------------------------------------------------

サイドバー

---------------------------------------------------------------------------*/

/* -- 左サイドバー --*/
.sidebar-left{

}
/* -- 基本設定 --*/

aside#sidebar {
  float: right;
  width: 320px;
}
  @media screen and (max-width: 750px) {
    aside#sidebar {
      float: none;
      width: 95%;
      margin: 30px auto 0 auto;
    }
  }
#sidebar h2 {
  letter-spacing: 1px;
  font-size: 18px;
  text-align: center;
  padding: 10px;
  color: #292929;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 30px;
}

/* -- プレミアムサービス --*/
.premium{
  border: solid 1px #000000;
  margin-bottom: 20px;
  background-color: white;
  border-radius: 2px;
}
.premium p{
  font-size: 19px;
  font-weight: 300;
  margin: 20px;
  color: #dc7b00;
  line-height: 20px;
}
.premium ul li{
  line-height: 22px;
  border-top: solid 1px #cecece;
  position: relative;
}
.premium ul li a{
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  display: block;
}
.premium ul li a:hover{
  opacity: 1;
}
.premium ul li a i{
  font-size: 22px;
  vertical-align: bottom;
  margin-right: 5px;
}
.premium ul li a i:last-of-type{
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 22px;
}
.premium ul li a span{
  display: inline-block;
  width: 100%;
  font-size: 12px;
  color: gray;
}
.premium ul li a span:first-of-type{
  display: inline-block;
  width: 80%;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  color: #333333;
}
.premium ul li a:hover span:first-of-type{
  text-decoration: underline;
}
/* -- 記事ランキング --*/

.popular-posts .wpp-list li {
  position: relative;
  overflow: visible;
  border-bottom: solid 1px #e6e6e6;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.popular-posts .wpp-list li:last-child {
  border: none;
  padding: 0px;
  margin: 0px;
}

.popular-posts .wpp-list li:before {
  content: counter(section);
  position: absolute;
  z-index: 98;
}
#wpp-2 ul.wpp-list li {
  counter-increment: section;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#wpp-2 ul.wpp-list li .r_right {
  font-size: 12px;
  margin-left: 10px;
  font-weight: 500;
  line-height: 18px;
  width: 100%;
}
#wpp-2 ul.wpp-list li .r_right a{
  display: block;
}
#wpp-2 ul.wpp-list li .r_right a:hover, .widget_categories ul li a:hover, .widget_categories ul li a:hover:after {
  color: #009cec;
  opacity: 1;
}

.wpp-thumbnail {
  width: 80px;
  height: auto;
}
#wpp-2 ul.wpp-list li .r_right span {
  display: inline-block;
  font-size: 12px;

  letter-spacing: 1px;
  font-weight: 300;
}
#execphp-2 ul.wpp-list li a {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
#execphp-2 ul.wpp-list li span {
  display: block;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #676767;
}

.wpp-list li:before, #execphp-2 .wpp-list li:before {
  background-color: #2d2d2d;
  color: #ffffff;
  float: left;
  height: 25px;
  width: 25px;
  font-size: 15px;

  text-align: center;
  font-weight: 800;
  border-radius: 2px;
  margin-bottom: 40px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  line-height: 26px;
}

.wpp-list li:first-child:before, #execphp-2 .wpp-list li:first-child:before {
  color: #ffffff;
  background-color: #ff5200;
}

.wpp-list li:nth-child(2):before, #execphp-2 .wpp-list li:nth-child(2):before {
  color: #ffffff;
  background-color: #abadb9;
}

.wpp-list li:nth-child(3):before, #execphp-2 .wpp-list li:nth-child(3):before {
  color: #ffffff;
  background-color: #8e6708;
}

.widget {
  margin-bottom: 20px;
  background-color: white;
  padding: 15px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.image-widget {
  background: none;
  padding: 0px;
}

#custom_html-3,
#custom_html-4 {
  background: none;
  padding: 0px;
}

.widget img {
  max-width: 100%;
  height: auto;
}
/*-- A8 --*/
.sidebar-ad{
  line-height: 0px;
}
.sidebar-shopad p{
  line-height: 20px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 500;
}
.sidebar-shopad a{
  margin-bottom: 15px;
}
.sidebar-shopad a img{
  width: 100%;
}
.sidebar-shopad a:last-of-type{
  margin: 0px;
}
/*-- カテゴリ --*/
.widget_categories ul li:last-child {
  border: none;
}

.widget_categories ul li a {
  display: block;
  font-size: 13px;
  padding: 12px 0px;
  font-weight: 500;
  border-bottom: solid 1px #f3f3f3;
}
.widget_categories ul li ul li a{
  font-size: 12px;
  font-weight: 300;
  border: none;
  padding: 5px 0px;
}

.widget_categories ul li a:after {
  content: "＞";
  float: right;
  padding-right: 10px;
  font-size: 10px;
  color: gray;
}

.widget_custom_html a {
  display: block;
  border: solid 1px #f3f3f3;
  box-sizing: border-box;
}
.widget_custom_html a:last-child{
  margin-bottom:0px
}
@media screen and (max-width: 750px) {
  .widget_categories{
    display:none;
  }
}
/*-- ヘッダーsns --*/

.side-sns li a {
  border-radius: 2px;
  height: 25px;
  width: 25px;
  display: block;
  padding: 1px;
  box-sizing: border-box;
  color: white;
  font-size: 14px;
  text-align: center;
  line-height: 23px;
  margin-left: 5px;
}

.side-sns .twitter a{background-color: #009cec;}

.side-sns .facebook a{background-color: #456eae;}

.side-sns .rss a{background-color: #EFA617;}

.side-sns .feedly a{background-color: #2bb24c; padding-top: 4px;}
/*--------------------------------------------------------------------------

AD JOURNAL記事カラム

---------------------------------------------------------------------------*/

.update {
  background-color: #fdffe2;
  margin-top: 20px;
  padding: 10px;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.update span {
  font-size: 16px;
  vertical-align: middle;
  line-height: 1px;
  margin-right: 10px;
}
.post-text {
  margin-top: 20px;
}

.post-text ul {
  margin: 15px 0px;
  background-color: #e8e8e8;
  padding: 20px;
  border-radius: 2px;
}

.post-text ul li {
  list-style-type: disc;
  margin: 0px 0px 0px 20px;
  font-weight: 600;
  font-size: 15px;
}
@media screen and (max-width: 750px) {
  .post-text ul li{
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 10px;
  }
}
.post-text ul li a{
  font-weight: 300;
  text-decoration: underline;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.post-top-ad{
  border-radius: 2px;
  margin-bottom: 15px;
  font-size: 13px;
}
.post-top-ad span{
  background-color: #9e9e9e;
  color: white;
  padding: 0px 7px;
  text-align: center;
  border-radius: 2px;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.post-top-ad a{
  color: #1356ab;
  margin-left: 5px;
}
@media screen and (max-width: 750px) {
  .post-top-ad{
    font-size: 10px;
    padding: 0px 10px;
  }
}
/* -- アイキャッチ下のバナーエリア --*/
.title-widget{
  margin-top: 30px;
}

/* -- 目次 --*/

p.toc_title {
  text-align: left !important;
  text-transform: uppercase;
  font-size: 18px !important;
  font-family: Roboto Condensed;
  letter-spacing: 1px;
}

#toc_container {
  background: #ffffff !important;
  padding: 30px 30px !important;
  border: 1px solid #ececec !important;
  box-sizing: border-box;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 2px;
}

ul.toc_list li a {
  border-top: solid 1px #ececec;
  display: block;
  color: #3f85ef;
  padding: 8px 0px;
}
ul.toc_list ul li a {
  padding-left: 30px;
}
#toc_container ul ul {
  margin-left: 0px !important;
}

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

ul.toc_list li a {
  display: block;
  padding: 8px 0px;
  line-height: 22px;
  font-size: 14px;
}
ul.toc_list ul li a {
  padding-left: 0px;
}
}


/* -- 新着記事 --*/

.new-entry-wrapper {
  display: -webkit-flex;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
}
.single-post article.new-entry {
  width: 31%;
  padding: 0px;
}

@media screen and (max-width: 750px) {
  .new-entry-wrapper{
    border-top: dotted 1px #c7c7c7;
  }
  .new-entry-wrapper .new-entry .img-catch{
    display: none;
  }
  .single-post article.new-entry {
    width: 100%;
    padding: 0px;
    margin-bottom: 0px;
  }
}
.newlist {
    background-color: white;
    margin: 30px 0px;
    padding: 30px;
    border-radius: 2px;
    width: 100%;
    box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .newlist {
    padding: 10px;
    margin-top: 0px;
  }
}
.new-entry .entry-content {
    padding: 0px 0px 15px 0px;
}
@media screen and (max-width: 750px) {
  .new-entry .entry-content{
    border-bottom: dotted 1px #c7c7c7;
    padding-bottom: 10px;
    padding-top: 5px;
  }
}
.new-entry .tag-cate p {
    border: none;
    padding-left: 0px;
}
@media screen and (max-width: 750px) {
  .new-entry .tag-cate p,
  .new-entry .entry-content-date{
    font-size: 12px;
    line-height: 13px;
    font-weight: 400;
    color: #333333;
    margin-right: 5px;
  }
}
.new-entry .entry-title {
    font-size: 13px;
}
@media screen and (max-width: 750px) {
.new-entry .entry-title {
  margin-bottom: 0px;
  letter-spacing: 0px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #1356ab;
  font-size: 14px;
  }
}

/*-----------------------------
SNSbutton
------------------------------*/

ul.snsb {
  margin: 0 0px 40px 0px;
  width: 35px;
  left: -90px;
  position: absolute;
}

.snsb li {
  text-align: center;
  list-style: none;
  width: 45px;
  height: 45px;
  box-sizing: border-box;
  border-radius: 100px;
  margin-bottom: 10px;
  vertical-align: inherit;
  box-shadow: 0 0 3px gray;
}
@media screen and (max-width: 750px) {
  .snsb li {
    width: 32%;
    margin-bottom: 7px;
  }
}

.snsb li:last-child {
  margin-right: 0;
}

.snsb li a {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.snsb li:hover {
  opacity: .7;
  filter: alpha(opacity=70);
  -ms-filter: alpha(opacity=70);
}

.snsb li p {
  color: #ececec;
  font-size: 14px;
  font-weight: 300;
  /* line-height: 10px; */
}

.sns-twitter {
  background: #55acee;
}

.sns-fb {
  background: #3b5998;
}

.sns-g {
  background: #dd4b39;
}

.sns-f {
  background-color: #86c040
}

.sns-htb {
  background: #2c6ebd;
}

.sns-pkt {
  background: #ee4056;
}

.btm-sns-button {
  position: fixed;
}

.btm-sns-button.pc.fixed {
  display: block;
}

.btm-sns-button a:hover {
  text-decoration: none;
}


@media screen and (max-width: 750px) {
  .btm-sns-button {
  margin-top: 0px;
  }
}

/*-- 記事SNSボタン --*/

.share {
  margin-bottom: 20px;
}
.like {
    display: -webkit-flex;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .like {
  margin: 10px 0px;
  }
}
.s_left {
  width: 35%;
}

.s_right {
  background-color: #494949;
  box-sizing: border-box;
  padding: 30px 20px;
  color: white;
  width: 65%;
  text-align: center;
}

.share ul {
  display: -webkit-flex;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.share ul li {
  text-align: center;
  border-radius: 2px;
  list-style: none;
  width: 19%;
  margin-bottom: 6px;
  overflow: hidden;
  padding: 7px 0px;
}

.share ul li a {
  color: white;
  display: block;
  overflow: hidden;
  padding: 5px 10px 5px 10px;
  text-align: center;
}

.share ul li img {
  width: auto;
  max-height: 16px;
  display: inline-block;
  vertical-align: middle;
}

.share ul li p {
  font-size: 12px;
  margin-bottom: 5px;
  line-height: 15px;
  display: block;
  vertical-align: middle;
}

@media screen and (max-width: 750px) {
  .share ul li {
  text-align: center;
  border-radius: 2px;
  list-style: none;
  width: 16%;
  margin-bottom: 0px;
  overflow: hidden;
  height: 40px;
  padding: 0px;
  }
  .share ul li a{
    padding: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .share ul li img{
    min-height: 16px;
    box-sizing: border-box;
    height: 100%;
  }
  li.share-plus {
    font-weight: 900;
    font-size: 19px;
    color: #3a70e6;
  }
  ul.share-plus-cont{
    background-color: #ffffff;
    position: absolute;
    right: 10px;
    border-radius: 2px;
    bottom: 55px;
    display: none;
    width: 250px;
    overflow: hidden;
  }
  .popup{
    display: none;
    height: 100vh;
    width: 100%;
    background: black;
    opacity: 0.7;
    position: fixed;
    top: 0;
    left: 0;
  }
  ul.share-plus-cont li{
    display: block;
    width: 100%;
    border-radius: 0px;
    height: auto;
  }
  ul.share-plus-cont li:first-child{
    border-bottom: solid 1px #999999;
  }
  ul.share-plus-cont li button,
  ul.share-plus-cont li p{
    font-size: 13px;
    width: 100%;
    font-weight: 400;
    display: block;
    text-align: left;
    padding: 2px 10px;
    line-height: 37px;
    color: #1356ab;
    border-radius: 0;
    box-sizing: border-box;
  }
  ul.share-plus-cont li button{
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    background-color: white;
  }
  ul.share-plus-cont li button span,
  ul.share-plus-cont li p span{
    margin-right: 10px;
  }
  ul.share-plus-cont li p span.copy-text {
    width: 205px;
    display: inline-block;
    margin-right: 0px;
  }
}

p.s_txt {
  font-size: 14px;
  letter-spacing: 3px;
  text-align: center;
  font-weight: 300;
  line-height: 15px;
  margin-bottom: 5px;
}
p.s_txt span {
  font-size: 18px;

  font-weight: 400;
  text-align: left;
  margin-right: 20px;
}
p.s_title {
  font-size: 12px;
  text-align: center;
  margin: 0px auto 10px auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
}

.single-post .s_right img {
  margin-bottom: 0px;
}

@media screen and (max-width: 750px) {
  .s_right,
  .s_left {
    width: 100%;
    background: none;
    padding: 25px 10px;
    border-radius: 2px;
    background-color: #494949;
  }
  .share{
    height: auto;
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    background: hsla(0,0%,100%,.95);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    background-color: white;
    z-index: 99;
    margin: 0px;
    padding: 5px;
    box-sizing: border-box;
  }
  p.s_txt span{
    margin-right:5px;
    font-size: 12px;
  }
  p.s_txt{
    letter-spacing: 1px;
    font-size: 12px;
    margin-bottom: 10px;
  }
}


/* -- Profile --*/

.author-profile-description {
  float: left;
  width: 600px;
}

.author-profile {
  overflow: hidden;
  border: solid 1px #ececec;
  margin-bottom: 30px;
  padding: 20px;
}

.author-profile .author-profile-avatar {
  float: left;
  width: 60px;
  margin-right: 20px;
  border: solid 1px #efefef;
  -webkit-border-radius: 100px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  height: 60px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-post article .author-profile .author-profile-avatar img {
  height: auto;
  max-width: 140%;
}

.author-profile .author-profile-name {
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: normal;
}

.author-profile .author-profile-bio {
  font-size: 12px;
  color: #686868;
}

.news {
  width: 1160px;
  margin: 0 auto;
  overflow: hidden;
}

.news-wrapper {
  width: 1160px;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .news {
    width: 100%;
  }
  .news-wrapper{
    width: 100%;
  }
}

.single-post article {
  box-sizing: border-box;
  border-bottom: #f0f0f0;
  background-color: white;
  padding: 30px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

@media screen and (max-width: 750px) {
  .single-post article{
    padding: 10px;
    width:100%;
    margin-bottom: 10px;
  }
}

.single-post article img {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-post .column-wrapper .attachment-full {
  width: 100%;
  height: auto;
  margin-bottom: 0px;
}

.single-post .post-info {
  margin-bottom: 30px;
  position: -webkit-sticky;
  position:sticky;
  top:0;
}
@media screen and (max-width: 750px) {
  .single-post .post-info {
    margin-bottom:0px;
  }
}
.single-post .page-title {
  padding: 0px 0 0px 0;
  font-size: 30px;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
  text-align: left;
  letter-spacing: 0px;
  margin: 0px;
  line-height: 40px;
}

@media screen and (max-width: 750px) {
  .single-post .page-title {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 32px;
    font-weight: 600;
  }
}

.single-post .post-info-sub {
  padding: 10px 0;
  position: relative;
}

@media screen and (max-width: 750px) {
  .single-post .post-info-sub {
    padding: 5px 0 10px 0;
    position: relative;
  }
}
/*-- タグ・カテゴリ --*/
.post-tags a{margin-right: 10px;}
.post-tags a:before {
    content: "#";
}
.post-categories a {
  color: #282828;
  line-height: 30px;
  font-weight: 300;
  font-style: inherit;
  font-size: 11px;
  letter-spacing: 1px;
  background-color: #f6f6f6;
  padding: 5px 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

/*-- 日付 --*/
.post-categories li {
  display: inline-block;
  margin-right: 10px;
  margin-top:10px;
}

.date {
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  margin-right: 20px;
  color: #898989;
}

.date time {
  margin-right: 10px;
}

@media screen and (max-width: 750px) {
  .date{
  font-size: 10px;
  margin-right: 0px;
  margin-bottom: 10px;
  display: block;
  }
  .post-categories li{
    margin-bottom: 10px;
  }
}

.single-post .post-text h2, .single-post .post-text h3, .single-post .post-text h4 {
  margin-top: 50px;
  margin-bottom: 20px;
}

.single-post .post-text{
  font-size: 16px;
  line-height: 37px;
  font-weight: 400;
  margin-top: 20px;
  color: #4c4c4c;
  letter-spacing: 1px;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .single-post .post-text p{
    line-height: 30px;
  }
}

.single-post .post-text p .yellow {
  background-color: #fff46e;
}

.single-post .post-text p a {
  text-decoration: underline;
}

.single-post .post-text p a:hover {
  opacity: 0.5;
}

.single-post .post-text p a[target="_blank"]{
  color: #1E88E5;
  text-decoration: none;
}
.single-post .post-text p a[target="_blank"]::before{
  content: "\e732";
  font-family: themify;
  text-decoration: none;
  margin-right: 3px;
}

.single-post .post-text img {
  max-width: 100%;
  width:100%;
  height: auto;
  box-sizing: border-box;
  margin: 20px 0px;
  border: solid 1px #f0f0f0;
  box-sizing: border-box;
}

.single-post .post-text h1 {
  font-size: 24px;
  border-bottom: 1px solid #282828;
}

.single-post .post-text h2 {
  font-size: 20px;
  position: relative;
  padding: 15px 15px;
  line-height: 1.4;
  background-color: #f6f6f6;
  border-left: solid 5px #3f85ef;
}

.single-post .post-text h3 {
  font-size: 18px;
  border-bottom: solid 1px #292929;
  padding: 10px 10px;
  border-top: solid 1px #292929;
  background-color: rgb(248, 248, 248);
}

@media screen and (max-width: 750px) {
  .single-post .post-text h2,.single-post .post-text h3, .single-post .post-text h4 {
    line-height: 25px;
    letter-spacing: 0px;
    margin: 10px 0px;
  }
}

.point-text {
  background-color: white;
  padding: 0px 20px 40px 20px;
  overflow: hidden;
  line-height: 30px;
  margin-top: 20px;
}

.single-post .post-text h4 {
  font-size: 16px;
  background-color: #ececec;
  padding: 10px;
}
blockquote {
  position: relative;
  padding: 20px 55px;
  box-sizing: border-box;
  font-style: italic;
  color: #464646;
  background: #eaeef1;
  margin: 30px 0px;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  blockquote{
    padding: 20px;
  }
}
blockquote:before {
  display: inline-block;
  top: 10px;
  left: 10px;
  vertical-align: middle;
  content: "\f10d";
  color: #b0b0b0;
  font-size: 22px;
  line-height: 1;
  z-index: 2;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  bottom: auto;
}
blockquote:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  border-width: 0 0 50px 50px;
  border-style: solid;
  border-color: transparent #f6f6f6;
}

.single-post .post-text blockquote p {
  position: relative;
  padding: 0;
  margin: 10px 0;
  z-index: 3;
  line-height: 1.8;
  font-size: 15px;
}
blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

.point {
  background-color: #fdfff2;
  padding: 30px;
  font-size: 14px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: solid 1px #e2e2e2;
  margin: 30px 0px;
  font-weight: 500;
  line-height: 30px;
}

.single-post .post-text .point p {
  font-size: 14px;
}
/*-- リンクカード --*/
@media screen and (max-width: 750px) {
  .article-inner section .lkc-external-wrap,
  .article-inner section .lkc-internal-wrap{
    border-right: 0px;
    border-left: 0px;
    border-radius: 0px;
  }
  .article-inner section .lkc-thumbnail {
  /* float: none; */
  width: 30%;
  display: block;
  margin: 0px 0px 10px 0px;
  padding-right: 10px;
  box-sizing: border-box;
  }
  .article-inner section .lkc-card{
    margin: 15px 0px;
  }

  .article-inner section .lkc-title{
    width: 70%;
  }
   .article-inner section .lkc-excerpt{
     display:none;
   }

  .article-inner section .lkc-title-text {
  font-size: 14px;
  line-height: 20px;
  }
}

/*--------------------------------------------------------------------------

関連記事

---------------------------------------------------------------------------*/

.yarpp-related {
  overflow: hidden;
  background-color: white;
  width: 100%;
  box-sizing: border-box;
  padding-top: 20px;
}
.post-navigation {
  overflow: hidden;
  background-color: white;
  margin: 0px 0px 20px 0px;
  padding: 30px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  width: 100%;
  min-width: 785px;
  box-sizing: border-box;
  margin-top: 20px;
}
.r_hline {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: bold;
}

.yarpp-related ul li .related_left {
  width: 30%;
}
@media screen and (max-width: 750px) {
  .yarpp-related ul li .related_left {
  display: none;
  }
  .yarpp-related ul li .related_right .r_date{
    display: none;
  }
}

.related_left {
  width: 30%;
  padding-right: 10px;
}

.yarpp-related ul {
  display: -webkit-flex;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.yarpp-related a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0px 15px 15px 15px;
}

.related_left img {
  box-sizing: border-box;
}

.yarpp-related li:nth-last-child( 2) {
  border-bottom: none;
  height: 55px;
}

.yarpp-related ul li a:hover {
  opacity: 0.7;
}

.yarpp-related li:nth-child(odd) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .yarpp-related li:nth-child(odd) {
    border-right: none;
    height: auto;
  }
  .yarpp-related a{
    padding: 0px;
  }
  .yarpp-related{
    padding: 10px;
    background-color: #d7e9ff;
    border-radius: 2px;
  }
  .post-navigation{
    margin:0px 0px 10px 0px;
    min-width: auto;
    padding: 15px;
  }
}

.yarpp-related li:nth-child(odd) a {
  padding-left: 0px;
}

.related_right {
  width: 75%;
}
@media screen and (max-width: 750px) {
  .related_right {
  width: 100%;
  }
}
p.r_date {
  font-size: 12px;
  color: gray;

  letter-spacing: 1px;
  font-weight: 300;
  line-height: 17px;
}
@media screen and (max-width: 750px) {
  p.r_date{
    font-size: 11px;
    line-height: 10px;
  }
}
p.r_title {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: justify;
  text-justify: inter-ideograph;
  -ms-text-justify: inter-ideograph;
}
@media screen and (max-width: 750px) {
  p.r_title{
    font-size: 14px;
    line-height: 18px;
    border-bottom: dotted 1px gray;
    padding: 10px 0px;
  }
}
.yarpp-related li:last-child {
  border: none;
  height: 55px;
}

.yarpp-related li {
  width: 50%;
  box-sizing: border-box;
}

@media screen and (max-width: 750px) {
  .yarpp-related li {
    width: 100%;
    height: initial !important;
  }
  .yarpp-related li:first-child {
    border-top: dotted 1px gray;
  }
}


/*--------------------------------------------------------------------------

ÃƒÂ¦Ã‚Â¬Ã‚Â¡ÃƒÂ£Ã‚ÂÃ‚Â®ÃƒÂ¨Ã‚Â¨Ã‹Å“ÃƒÂ¤Ã‚ÂºÃ¢â‚¬Â¹

---------------------------------------------------------------------------*/

.prev p {
  font-size: 17px;
  font-weight: bold;
}

.next p {
  font-size: 17px;
  font-weight: bold;
  /* text-align: right; */
}

.prev {
  float: left;
  border-right: solid 1px #dddddd;
  padding-right: 10px;
  width: 50%;
  box-sizing: border-box;
}

.next {
  width: 50%;
  float: right;
  padding-left: 20px;
  box-sizing: border-box;
}

.post-navigation a {
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .post-navigation a {
    font-size: 12px;
    line-height: 19px;
    display: inline-block;
  }
}
@media screen and (max-width: 750px) {
  .cta_inner {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
  }
  .cta_inner div {
    width: 100%;
    padding: 30px 10px;
    margin-bottom: 15px;
  }
  .cta_inner div a, .cta_abou_contactus a{
    margin-top: 0px;
    width: 95%;
    box-sizing: border-box;
  }
  .cta_inner div span{
    display: none;
    font-size: 35px;
  }
}
/*--------------------------------------------------------------------------

マーケティング用語集

---------------------------------------------------------------------------*/

/*-- メインビジュアル --*/
.words.page_title {
  background-color: #dac8be;
  width: 1160px;
  margin: 0 auto;
  padding: 50px 150px;
  box-sizing: border-box;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: black;
}
.page_title.words.words-law a {
    padding: 0px 0px;
    height: auto;
    margin: 0 auto;
}
.page_title.words.words-law a span{
    width: 70%;
    display: block;
    float: left;
}
@media screen and (max-width: 750px) {
  .page_title.words.words-law a span{
    width: 100%;
    display: block;
    float: none;
  }
}
.page_title.words.words-law a img{
    width: 30%;
    display: block;
    float: left;
}

section.page_title.words.words-law {
    height: auto;
    padding: 30px 0px;
}
@media screen and (max-width: 750px) {
  section.page_title.words.words-law {
    height: auto;
    padding: 15px 0px;
  }
}
@media screen and (max-width: 750px) {
  .words.page_title{
    width: 95%;
    padding: 15px;
    margin-top: 85px;
    margin-bottom: 10px;
    height: auto;
  }
}
.words.page_title div{
  width:70%;
}
@media screen and (max-width: 750px) {
  .words.page_title a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    color: black;
  }
  .words.page_title div{
  width:100%;
  }
}
.words.page_title:after {
  display: none;
}
@media screen and (max-width: 750px) {
  .words.page_title img{
  width: 30%;
  height: auto;
  margin-left: 10px;
  }
}
.words.page_title p {
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin: auto;
}
.words.page_title a p {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .words.page_title p {
  font-size: 17px;
  font-weight: 600;
  margin-top: 0px;
  letter-spacing: 1px;
  text-align: center;
  }
  .words.page_title a p {
    width: 100%;
  }
}
.words.page_title h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .words.page_title h1 {
  margin-top: 0px;
  margin-bottom: 10px;
  text-align: left;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 15px;
  }
  .words.page_title h1 br{
    display:none
  }
}

/*-- 検索ボックス --*/
.search_box{
  margin-bottom: 20px;
}
#word_s {
  height: 43px;
  color: #333;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 4px;
  padding-left: 10px;
  background-color: #ffffff;
  font-size: 14px;
  border: 0;
  border-radius: 2px 0px 0px 3px;
  display: inline-block;
  float: left;
  width: 400px;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  #word_s {
    width: 80%;
  }
}
input#word_search {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #292929;
  color: white;
  height: 43px;
  width: 100px;
  font-weight: 100;
  letter-spacing: 4px;
  border-radius: 0px 3px 3px 0px;
}
@media screen and (max-width: 750px) {
  input#word_search {
    width: 20%;
  }
}
input#word_search:hover {
  opacity: 0.7;
}

/*-- 検索ボックス --*/
.ad_related {
  background-color: #fdffe0;
  padding: 30px;
  margin-top: 30px;
}

.crp-list-title {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 10px;
  font-weight: 500;
}
ul.crp-list li {
  list-style-type: disc;
}
ul.crp-list li a {
  text-decoration: underline;
}
ul.crp-list {
  margin-left: 20px;
}

ul.ja, ul.en {
  margin-bottom: 20px;
  overflow: hidden;
}
ul.ja li a, ul.en li a {
  font-size: 25px;
  font-weight: 300;
  display: block;
  float: left;
  padding: 10px 25px;
  background-color: #ffffff;
  margin-right: 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 10px;
  width: 75px;
  box-sizing: border-box;
  text-align: center;
  height: 75px;
  line-height: 50px;
  border: solid 1px white;
}

.words_entry a {
  display: block;
  box-sizing: border-box;
  border: solid 1px white;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  width: 285px;
  height: 140px;
}
ul.word_l {
  display: -webkit-flex;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
  border-bottom: solid 1px gainsboro;
  padding-bottom: 78px;
}
ul.ja li a:hover, ul.en li a:hover, .words_entry a:hover {
  color: #00aee6;
  border: solid 1px gray;
  box-sizing: border-box;
}

.wordsh2, .search_box h2, .word_list h2 {
  font-size: 20px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 30px;
}

.words.column-inner section, .words_taxonomy .column-inner section {
  width: 100%;
  margin-bottom: 50px;
}
section.word_rank h3 a {
  font-size: 18px;
  color: #456eae;
  font-weight: 400;
}
section.word_rank article {
  border-bottom: solid 1px lightgrey;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
section.word_rank p {
  font-size: 14px;
  color: #676767;
  line-height: 22px;
  font-weight: 300;
}
section.word_rank article:before {
  content: "1";
  float: left;
  padding-right: 40px;
  height: 20px;
  width: 20px;
  font-size: 20px;

  text-align: center;
  padding: 10px;
  color: #ffffff;
  font-weight: 100;
  border-radius: 100px;
  margin-bottom: 40px;
  margin-right: 20px;
  margin-top: 20px;
  line-height: 22px;
}
section.word_rank article:first-child:before {
  content: "1";
  background-color: #eec800;
}
section.word_rank article:nth-child(2):before {
  content: "2";
  background-color: #abadb9;
}
section.word_rank article:nth-child(3):before {
  content: "3";
  background-color: #8e6708;
}
section.word_rank article:nth-child(4):before {
  content: "4";
  background-color: #ffffff;
  color: #7c7c7c;
  border: solid 1px #e3e3e3;
}
section.word_rank article:nth-child(5):before {
  content: "5";
  background-color: #ffffff;
  color: #7c7c7c;
  border: solid 1px #e3e3e3;
}
section.word_rank article:nth-child(6):before {
  content: "6";
  background-color: #ffffff;
  color: #7c7c7c;
  border: solid 1px #e3e3e3;
}
section.word_rank article:nth-child(7):before {
  content: "7";
  background-color: #ffffff;
  color: #7c7c7c;
  border: solid 1px #e3e3e3;
}
section.word_rank article:nth-child(8):before {
  content: "8";
  background-color: #ffffff;
  color: #7c7c7c;
  border: solid 1px #e3e3e3;
}
section.word_rank article:nth-child(9):before {
  content: "9";
  background-color: #ffffff;
  color: #7c7c7c;
  border: solid 1px #e3e3e3;
}
section.word_rank article:nth-child(10):before {
  content: "10";
  background-color: #ffffff;
  color: #7c7c7c;
  border: solid 1px #e3e3e3;
}

.column-wrapper .words_entry {
  box-sizing: border-box;
  margin-bottom: 10px;
  background-color: #ffffff;
  margin-right: 1.2%;
  width: 32%;
}

.column-wrapper .words_entry:nth-of-type(3n) {
  margin-right: 0px;
}

.column-wrapper .words_entry img {
  width: 100%;
  height: auto;
}

.words_entry .entry-content .content-info {
  height: auto;
}

.words_entry .entry-content .entry-title {
  margin-top: 0px;
}
li.search_words_entry {
  border-bottom: solid 1px lightgrey;
}
li.search_words_entry a {
  padding-bottom: 30px;
  padding-top: 20px;
  display: block;
}
li.search_words_entry a:hover h2 {
  text-decoration: underline;
}
h2.search_entry-title {
  font-size: 18px;
  color: #456eae;
  font-weight: 400;
}
p.search_content-info {
  font-size: 14px;
  color: #676767;
  line-height: 22px;
  font-weight: 300;
}
p.snumber {
  font-size: 13px;
  color: #676767;
  line-height: 22px;
  font-weight: 300;
  margin-top: 10px;
}
/*--------------------------------------------------------------------------

フッター上お問合せ

---------------------------------------------------------------------------*/
.cta {
  text-align: center;
  padding: 50px 0px;
  background-color: #f3e9d6;
  width: 1160px;
  margin: 0 auto 100px auto;
  border-radius: 2px;
}

.cta h2 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 14px;
  letter-spacing: 1px;
}

.cta a {
  font-size: 16px;
  text-align: center;
  display: block;
  background-color: #e4a736;
  border-radius: 2px;
  padding: 15px;
  color: white;
  font-weight: 300;
  -webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  letter-spacing: 1px;
  width: 20%;
  display: block;
  margin: 25px auto 0 auto;
}

@media screen and (max-width: 750px) {
  .cta {
    text-align: center;
    padding: 50px 30px;
    background-color: #f3e9d6;
    width: 100%;
    margin: 0;
    border-radius: 2px;
    box-sizing: border-box;
  }

  .cta h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 35px;
  }

  .cta p {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .cta p br{
    display: none;
  }

  .cta a {
    font-size: 16px;
    text-align: center;
    display: block;
    background-color: #e4a736;
    border-radius: 2px;
    padding: 15px;
    color: white;
    font-weight: 300;
    -webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
    box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
    letter-spacing: 1px;
    width: 90%;
    display: block;
    margin: 25px auto 0 auto;
  }
}

nav.mnmd p {
    margin-bottom: 20px;
    width: 320px;
    padding: 0px;
}

nav.mnmd p img {
    width: 190px;
}

nav.mnmd p span {
    display: block;
    font-size: 12px;
}

@media screen and (max-width: 750px) {
  .footer_inner nav.mnmd {
    text-align: center;
  }

  .footer_inner nav.mnmd p {
    border: none;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0px;
    margin: 0px;
  }

  .footer_inner nav.mnmd p span {
    display: inline-block;
    width: 100%;
  }
}
/*--------------------------------------------------------------------------

footer

---------------------------------------------------------------------------*/
/*----------------------------
モーダル
-----------------------------*/
.popup_fb_wrap{
  display: none;
  width: 250px;
  background-color: #ffffff;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 12px 27px 2px;
  -webkit-animation: engage--fadeInRight 0.5s linear;
  -moz-animation: engage--fadeInRight 0.5s linear;
  animation: engage--fadeInRight 0.5s linear;
  position: fixed;
  right: 30px;
  bottom: 30px;
  text-align: center;
}
.popup_fb{
  padding: 20px 0px;
  font-size: 14px;
  font-weight: 300;
  background-color:#3B5A9A;
  color: white;
  line-height: 19px;
  letter-spacing: 1px;
  border-radius: 2px 3px 0px 0px;
}
.popup_fb p span{
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 25px;
  display: block;
}
.close{
  color: white;
  background-color: #000000;
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 100px;
  border: solid 1px white;
  position: absolute;
  right: -10px;
  top: -10px;
  text-align: center;
  cursor: pointer;
}
.popup_fb_wrap .fb-like{
  padding: 10px 0px;
  height: 30px;
}
/*----------------------------
ホーム 下部リンク
-----------------------------*/

.home_footlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: white;
  height: 350px;
}
.home_footlink h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;

}
.home_footlink p {
  font-size: 13px;
  display: block;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 24px;
  margin-bottom: 30px;
}
.home_footlink a {
  background-color: #ffffff;
  font-size: 14px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 14px 0px;
  font-weight: 300;
  width: 200px;
  display: inline-block;
  text-align: center;
  color: #444444;
  opacity: 1;
}
.home_footlink a:hover, .more_recruit a:hover, .more_about a:hover {
  background-color: #cdab67;
  color: white;
}
.home_footlink_r {
  background-image: url(./image/common/corporate-bg.jpg);
  text-align: center;
  background-size: 100%;
  width: 50%;
  background-size: cover;
}
.home_footlink_l {
  background-image: url(./image/common/recruit-bg.jpg);
  text-align: center;
  background-size: 100%;
  width: 50%;
  background-size: cover;
}
.home_foot_bg {
    background-color: rgba(0, 0, 0, 0.38);
    padding: 49px 0px;
}
@media screen and (max-width: 750px) {
  .home_footlink {
    display: block;
    height: auto;
  }
  .home_footlink h2 {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
  
    line-height: 30px;
  }
  .home_footlink p {
    display: none;
  }
  .home_footlink a {
    font-size: 13px;
    padding: 10px 0px;
    width: 170px;
  }
  .home_footlink a:hover, .more_recruit a:hover, .more_about a:hover {
    background-color: #cdab67;
    color: white;
  }
  .home_footlink_r {
    background-image: url(./image/common/corporate-bg.jpg);
    text-align: center;
    background-size: 100%;
    width: 100%;
    background-size: cover;
  }
  .home_footlink_l {
    background-image: url(./image/common/recruit-bg.jpg);
    text-align: center;
    background-size: 100%;
    width: 100%;
    background-size: cover;
  }
  .home_foot_bg {
      background-color: rgba(0, 0, 0, 0.38);
      padding: 30px 0px;
  }
}

#footer_text {
  margin: 0 auto;
  font-size: 12px;

  color: #797979;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: 'liga', 'kern';
}
#footer_text strong {
  font-weight: normal;
}
#footer_text p,
#footer_text p span {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0px;
  line-height: 25px;
}
#footer_text span {
  display: block;
  font-size: 22px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-weight: 600;
}
#sec03_inner_bottom p small {
  font-size: 12px;
  color: white;
  font-weight: 100;
  margin-top: 10px;
}

.footer_inner, .footer_btm_inner {
  width: 1160px;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .footer_inner, .footer_btm_inner {
    width: 100%;
  }
}

.footer_inner nav {
  padding: 70px 0px;
  float: left;
  margin-right: 80px;
}

.footer_inner nav:last-child{
  margin-right:0px;
}
.footer_inner nav ul {
  text-align: left;
}
@media screen and (max-width: 750px) {
  .footer_inner nav {
    float: none;
    padding: 0px;
    margin: 0px;
  }
  .footer_inner nav ul.toggle-menu {
    display:none;
    background-color: #3b3b3b;
  }
  .footer_inner nav ul li{
  border-bottom: solid 1px #575757;
  }
  .footer_inner nav ul li a{
  padding: 8px 20px;
  width: 100%;
  box-sizing: border-box;
  }
}

.footer_inner nav p {
  color: #ffffff;
  padding: 3px 0px 10px 0px;
  letter-spacing: 2px;
  text-align: left;
  font-size: 15px;
  font-family: 'Noto Sans Japanese', sans-serif;
}
@media screen and (max-width: 750px) {
  .footer_inner nav p {
    padding: 15px 20px;
    font-size: 14px;
    border-bottom: solid 1px #575757;
  }
}
@media screen and (max-width: 750px) {
  .footer_inner nav p span {
    display:inline-block;
    float: right;
    font-size: 20px;
    line-height: 30px;
  }
}
#Footer {
  text-align: center;
  background-color: #343538;
}

.footer_inner ul li a {
  color: #bababa;
  padding: 3px 0px 3px 0px;
  display: inline-block;
  font-weight: 300;
  font-size: 13px;
  font-family: 'Noto Sans Japanese', sans-serif;
  letter-spacing: 1px;
}

#foot_credit img {
  margin-bottom: 60px;
}
#foot_credit p {
  font-size: 12px;
  color: #828282;
  margin-bottom: 85px;
}

.footer_info img {
  width: 150px;
  text-align: center;
}
small, .footer_btm a {
  color: gray;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 300;

  display: block;
  float: right;
  height: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_info {
  overflow: hidden;
  padding-top: 150px;
  padding-left: 50px;
  float: right;
}
footer .bottom_inner {
  background-color: #3F3F41;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .bottom_inner p, footer .bottom_inner a {
  color: #B3B3B3;
  font-family: "Noto Sans Japanese", sans-serif;
}
footer .bottom_inner .l-inner .inner_in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer .bottom_inner .l-inner .inner_in .block {
  text-align: center;
  padding: 0px 50px;
}
footer .bottom_inner .l-inner .inner_in .block p {
  font-size: 10px;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
footer .bottom_inner .l-inner .inner_in .block a {
  display: block;
}

.footer_btm {
  background-color: #303135;
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_btm ul {
  float: left;
}

.footer_btm ul li {
  display: inline-block;
  text-align: left;
  margin-right: 20px;
}

.footer_btm a, small {
  color: #bababa;
  padding: 3px 0px 3px 0px;
  display: inline-block;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 10px;

  line-height: 40px;
}
@media screen and (max-width: 750px) {
  small{
    text-align: center;
    float: none;
  }
}
