/* ##############################################################################

    DEFAULT

############################################################################## */
html {
  height: 100%;
  overflow-y: scroll;
}
body {
  height: 100%;
  font: 18px/1.231 "Lato", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, YuGothic, "游ゴシック", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0.08em;
  *font-size: small;
  *font: x-small;
  color: #000;
  -webkit-font-smoothing: antialiased;
}
*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
ul,
ol {
  list-style: none;
}
small {
  font-size: 86%;
}
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  outline: none;
}
a:hover {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

@media only screen and (min-width: 768px) {
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  @-moz-document url-prefix() {
    * {
      font-feature-settings: "palt";
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
    * {
      font-feature-settings: "palt";
    }
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    -webkit-text-size-adjust: none;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

/* ##############################################################################

    KEYFRAMES

############################################################################## */
@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade_in-disp {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 1;
  }
}
@keyframes fade_out-disp {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: none;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes slide_in_lft {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes slide_out_lft {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-10%);
  }
}
@keyframes slide_in_rgt {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes slide_out_rgt {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(10%);
  }
}
@keyframes slide_in_top {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes slide_out_top {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes slide_in_btm {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes slide_out_btm {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(10px);
  }
}

/* ##############################################################################

    COMMON

############################################################################## */

/* layout
**************************************** */

/* --- inner --- */
.inner {
  width: 98%;
  max-width: 1250px;
  margin: 0 auto;
}
.inner-sm {
  width: 95%;
  max-width: 1044px;
}
.inner-lg {
  width: 100%;
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --- float --- */
.flt-rgt {
  float: right;
}
.flt-lft {
  float: left;
}

/* --- flex --- */
.flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
}
.flex-end {
  -webkit-justify-content: end;
  -ms-justify-content: end;
  justify-content: end;
}
.flex-center {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.flex-between {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.flex-around {
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-wrap_reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.align-center {
  align-items: center;
}

/* --- margin --- */
.mgn-btm8 {
  margin-bottom: 8px;
}
.mgn-btm16 {
  margin-bottom: 16px;
}
.mgn-btm24 {
  margin-bottom: 24px;
}
.mgn-btm32 {
  margin-bottom: 32px;
}
.mgn-btm40 {
  margin-bottom: 40px;
}
.mgn-btm48 {
  margin-bottom: 48px;
}
.mgn-btm56 {
  margin-bottom: 56px;
}
.mgn-btm64 {
  margin-bottom: 64px;
}
.mgn-btm72 {
  margin-bottom: 72px;
}
.mgn-btm80 {
  margin-bottom: 80px;
}
.mgn-top80 {
  margin-top: 80px;
}
.mgn-btm180 {
  margin-bottom: 180px;
}

.mgn-btm300 {
  margin-bottom: 300px;
}

/* --- pc or sp --- */
.pc-none {
  display: none;
}
.sp-none {
  display: block;
}
.sp-none-inline {
  display: inline;
}

@media only screen and (max-width: 767px) {
  .inner {
    width: 90%;
  }
  .inner-sm {
    width: 88%;
  }
  .mgn-btm16 {
    margin-bottom: 8px;
  }
  .mgn-btm24 {
    margin-bottom: 16px;
  }
  .mgn-btm32 {
    margin-bottom: 16px;
  }
  .mgn-btm40 {
    margin-bottom: 24px;
  }
  .mgn-btm48 {
    margin-bottom: 24px;
  }
  .mgn-btm56 {
    margin-bottom: 32px;
  }
  .mgn-btm64 {
    margin-bottom: 32px;
  }
  .mgn-btm72 {
    margin-bottom: 40px;
  }
  .mgn-btm80 {
    margin-bottom: 40px;
  }
  .sp-none,
  .sp-none-inline {
    display: none;
  }
  .pc-none {
    display: block;
  }

  /* --- flex --- */
  .flex-sp-none {
    display: block;
  }
}

.txt-ctr {
  text-align: center;
}
.txt-rgt {
  text-align: right;
}
.txt_red {
  color: #ff008e;
}

.btn {
  display: inline-block;
  padding: 8px 48px;
  margin-left: auto;
  margin-right: auto;
  background-color: #3c59af;
  text-align: center;
  color: #fff;
  transition: all 0.2s;
}

/* --- hover --- */
.hover_opacity {
  opacity: 1;
  transition: all 0.2s;
}
.hover_opacity:hover {
  opacity: 0.5;
}

/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  line-height: 1;
  z-index: 9990;
  transition: all 0.4s ease-out;
}
.header .siteversion {
  font-size: 80%;
  padding-left: 8px;
  padding-bottom: 2px;
  color: #faae11;
}
.page-contact .header {
  position: static;
  background-color: transparent;
  box-shadow: none;
}
.header .inner {
  /*    width: 100%;
    max-width: 100%;*/
  height: 100%;
  /*padding-left: 24px;*/
}
.header--txt {
  font-size: 60%;
  line-height: 1.3;
  margin-right: auto;
  color: #777;
}

@media screen and (min-width: 768px) {
  .header--nav,
  .gnav,
  .gnav ul,
  .gnav li,
  .gnav a {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 56px;
  }
  .header .inner {
    padding-left: 0;
  }
  .header--logo {
    margin: 0 auto;
  }
  .header--nav {
    flex-shrink: 0;
  }
}

/* gnav
**************************************** */
.gnav {
}
.gnav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 12px;
  text-align: center;
  transition: all 0.2s;
}
.gnav--list {
  align-items: center;
}
.gnav a:hover {
  opacity: 0.6;
}
.gnav .current a {
  border-bottom: #04b1ff solid 3px;
}
.gnav span {
  padding: 8px 0;
  color: #04b1ff;
  font-weight: 700;
  font-size: 86%;
}
.gnav svg {
  background-color: #e1f5ff;
  padding: 1px;
  width: 32px;
  height: 32px;
  padding: 5px;
  border-radius: 50%;
  margin-right: 6px;
}
.gnav--list-home {
  margin-right: 8px;
}
.gnav .gnav--list-search,
.gnav .gnav--list-youtube {
  height: 46px;
}
.gnav--list-search a {
  background-color: #fff;
  border-radius: 4px;
  border: 2px solid #ff008e;
  margin-right: 12px;
}
.gnav--list-youtube a {
  background-color: #fff;
  border-radius: 4px;
  border: 2px solid #3c59af;
}
.gnav--list-search span {
  color: #ff008e;
}
.gnav--list-youtube span {
  color: #3c59af;
}
.gnav--list-search svg,
.gnav--list-youtube svg {
  background-color: #fff;
}

/* ---CTA --- */
.gnav--tel {
  margin-left: 8px;
  font-size: 147%;
}
.gnav--tel small {
  font-size: 59%;
}
.gnav--contact {
  margin-left: 8px;
  font-size: 107%;
}
.gnav--contact a {
  padding: 0 32px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .header .inner {
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .header--logo {
    margin-right: 16px;
    margin-left: 0;
  }
  .gnav--list-home {
    display: none;
  }
  .gnav li a {
    flex-direction: column;
    padding: 0;
    border: none;
    padding: none;
  }
  .gnav .gnav--list-search a {
    margin-right: 4px;
  }
  .gnav .gnav--list-search a,
  .gnav .gnav--list-youtube a {
    border: none;
    padding: 0 10px;
    background-color: #ffe8f4;
    padding-bottom: 4px;
    height: auto;
  }
  .gnav .gnav--list-youtube a {
    background-color: #e0e8ff;
  }
  .gnav span {
    padding: 0;
    font-size: 74%;
  }
  .gnav svg {
    margin-right: 0;
    background-color: transparent;
  }

  /*    .gnav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 0;
      padding: 64px 5% 5%;
      pointer-events: none;
      transition: .4s ease-out;
      transform: translateY(-100%);
      background-color: #eee;
    }
    .header.active .gnav {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }
    .gnav a {
      display: block!important;
      padding: 24px 24px;
    }
*/
  /* ---gnav_btn --- */
  /*    .gnav_btn {
      position: fixed;
      top: 0;
      right: 0;
      width: 56px;
      height: 56px;
      background-color: #000;
      z-index: 9999;
    }
    .gnav_btn--lines {
      position: relative;
      width: 28px;
      height: 20px;
    }
    .gnav_btn--lines span {
      transition: all .4s;
      box-sizing: border-box;
    }
    .gnav_btn--lines span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: #fff;
    }
    .gnav_btn--lines span:nth-of-type(1) {
      top: 0;
    }
    .gnav_btn--lines span:nth-of-type(2) {
      top: 50%;
    }
    .gnav_btn--lines span:nth-of-type(3) {
      bottom: 0;
    }
    .header.active .gnav_btn--lines span:nth-of-type(1) {
      -webkit-transform: translateY(9px) rotate(-45deg);
      transform: translateY(9px) rotate(-45deg);
    }
    .header.active .gnav_btn--lines span:nth-of-type(2) {
      opacity: 0;
    }
    .header.active .gnav_btn--lines span:nth-of-type(3) {
      -webkit-transform: translateY(-9px) rotate(45deg);
      transform: translateY(-9px) rotate(45deg);
    }
*/
  /* ---CTA --- */
  .gnav--tel {
    margin-left: 0;
    text-align: center;
  }
  .gnav--contact {
    margin-left: 0;
  }
}

/* ##############################################################################

    INDEX

############################################################################## */

.attention {
  background-color: #fff;
  padding: 24px;
}
.attention h3 {
  color: #f00;
  font-size: 120%;
  margin-bottom: 8px;
}

/* 参加企業・イベント
*************************************************** */
.hero_event {
  margin-top: 56px;
}
.hero_event img {
  width: 100%;
  height: auto;
}
.event_wrap {
  background: url(../images/common/pt_check_rightblue.jpg);
}
.event_wrap:nth-of-type(even) {
  background: url(../images/common/pt_check_blue.jpg);
}
.event_detail {
  padding: 80px 0 80px;
}
.event_detail table {
  width: 100%;
  margin-bottom: 20px;
}
.event_detail table th,
.event_detail table td {
  padding: 24px 26px;
  border-bottom: 1px solid #3c59af;
  line-height: 1.45;
  vertical-align: middle;
}
.event_detail table th {
  width: 200px;
  background-color: #00b0ff;
  color: #fff;
  font-size: 167%;
}
.event_detail table td {
  background-color: #fff;
  font-size: 178%;
  font-weight: bold;
  word-break: break-all;
}
.event_detail table td strong {
  display: block;
  color: #00b0ff;
}
.event_detail table td small {
  display: inline-block;
  line-height: 1.4;
}
.event_detail table td .free {
  display: inline-block;
  background-color: #ff008e;
  border-radius: 2px;
  padding: 6px 18px;
  margin-left: 24px;
  color: #fff;
  font-size: 82%;
}
.event_detail table td.seminar {
  font-size: 128%;
}
.event_detail table td a {
  text-decoration: underline;
  color: #3c59af;
}
.event_detail table td a:hover {
  color: #ff008e;
}
.event_detail .map {
  border: 8px solid #fff;
  height: 516px;
  margin-bottom: 24px;
}
.event_detail .map iframe {
  width: 100%;
}
.event_detail .btn {
  width: 100%;
  padding: 12px 48px;
  border-radius: 4px;
  border-bottom: 4px solid #1b3275;
  font-size: 142%;
}
.event_detail .btn:hover {
  color: #fff100;
}

/* 終了したイベントのスタイル */
.event_detail.end-event {
  padding: 40px 0 1px;
}
.event_detail.end-event table {
  position: relative;
}
.event_detail.end-event table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.event_detail.end-event table::after {
  content: "終了しました";
  position: absolute;
  top: 33%;
  left: 0;
  display: block;
  width: 100%;
  padding-left: 30px;
  font-size: 238%;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
}

/* インターンシップ業界研究フェア 旗のスタイル */
.event_detail.fair .inner,
.internship-and-business-research-fair .inner,
.internship-and-business-research-fair-02 .inner,
.internship-and-business-research-fair-03 .inner,
.internship-and-business-research-fair-04 .inner {
  position: relative;
}
.event_detail.fair .inner::before,
.internship-and-business-research-fair .inner::before,
.internship-and-business-research-fair-02 .inner::before,
.internship-and-business-research-fair-03 .inner::before,
.internship-and-business-research-fair-04 .inner::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -18px;
  width: 209px;
  height: 210px;
  background-position: center;
  background-size: cover;
}
.event_detail.fair-01 .inner::before,
.internship-and-business-research-fair .inner::before {
  background-image: url(../images/flag_01.png);
}
.event_detail.fair-02 .inner::before,
.internship-and-business-research-fair-02 .inner::before {
  background-image: url(../images/flag_02.png);
}
.event_detail.fair-03 .inner::before,
.internship-and-business-research-fair-03 .inner::before {
  background-image: url(../images/flag_03.png);
}
.event_detail.fair-04 .inner::before,
.internship-and-business-research-fair-04 .inner::before {
  background-image: url(../images/flag_04.png);
}

.urgency_event .event_date td span {
  display: inline-block;
  position: relative;
  padding: 0 4px;
}
.urgency_event .event_date td span::after {
  content: "";
  position: absolute;
  top: 48%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #c00;
  transform: translateY(50%);
}
.urgency_event .event_date td span + small {
  color: #c00;
}

.company {
  padding: 0 0 1px;
}
.event_wrap:last-of-type .company {
  padding: 0 0 340px;
}
.comany_content {
  background-color: #fff;
  padding: 56px;
  margin-bottom: 80px;
}
.comany_content .section_ttl .reset {
  display: block;
  position: absolute;
  top: 164px;
  right: 7%;
  width: 128px;
  height: 128px;
  padding: 39px 0;
  background: #00b2ff;
  border-radius: 50%;
  font-size: 108%;
  line-height: 1.3;
  text-indent: 0;
  color: #fff;
  border-bottom: 5px solid #b1e0f5;
  border-top: 4px solid #b1e0f5;
  border-right: 3px solid #b1e0f5;
  border-left: 3px solid #b1e0f5;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.comany_content .section_ttl .reset:hover {
  background: #3c59af;
  border-bottom: 5px solid #6a88e0;
  border-top: 4px solid #6a88e0;
  border-right: 3px solid #6a88e0;
  border-left: 3px solid #6a88e0;
}
.company--cat_list {
  margin-bottom: 15px;
}
.company--cat_list li {
  width: calc(100% / 5);
}
.company--cat_list li input[type="radio"] {
  display: none;
}
.company--cat_list li label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 114px;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-size: 123%;
  line-height: 1.4;
  cursor: pointer;
}
.company--cat_list li label::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(68, 68, 68, 0.6);
  transition: all 0.2s ease-out;
}
.company--cat_list li:hover label::before {
  background-color: rgba(68, 68, 68, 0.85);
}
.company--cat_list li input[type="radio"]:checked + label::before {
  background-color: rgba(0, 176, 255, 0.6);
}
.company--cat_list li label span {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.company--list li {
  position: relative;
  width: calc(100% / 2 - (4px * 1 / 2));
  margin-bottom: 4px;
  text-align: center;
  padding: 24px;
  background-color: #eee;
}
.company--list li:nth-child(4n + 1),
.company--list li:nth-child(4n + 2) {
  background-color: #eaeaea;
}
.link_wrapper {
  position: relative;
  justify-content: center;
  align-items: center;
}
.nolink_item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}
span.outer_link-name {
  position: relative;
}
.outer_only span.outer_link-name {
  margin-left: 0;
}
.outer_only span.outer_link-name::before {
  content: none;
}
.link_wrapper a:nth-child(2) {
  margin-left: 24px;
}
.link_wrapper a:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #333;
  z-index: 10;
  left: -16px;
  top: 2px;
  pointer-events: none;
}
.company--list li a {
  position: relative;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
}
.company--list li:hover > a + span {
  color: #3958b1;
}
.company--list li span {
  padding-bottom: 2px;
  border-bottom: 1px solid;
  font-weight: bold;
}
.parking_link {
  margin-top: 20px;
}
.parking_link li {
  margin-bottom: 8px;
}
.parking_link li a {
  display: block;
  padding: 14px;
  border-radius: 4px;
  border-bottom: 4px solid #1b3275;
  font-size: 120%;
}
.parking_link li a:hover {
  color: #fff100;
}
.company .map iframe {
  width: 100%;
}
/*出展企業がないとき*/
.no-company-date {
  background: #eaeaea;
  padding: 40px 0;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .event_detail {
    padding: 60px 0 40px;
  }
  .event_detail table th,
  .event_detail table td {
    display: block;
    padding: 8px 18px;
    width: 100%;
    border-bottom: none;
    font-size: 120%;
    word-break: break-all;
  }
  .event_detail table td .free {
    padding: 2px 6px;
    margin-left: 12px;
  }
  .event_detail table td.seminar {
    font-size: 100%;
  }
  .event_detail .map {
    height: 316px;
    margin-bottom: 8px;
  }
  .event_detail .map iframe {
    height: 300px;
  }
  .event_detail .btn {
    padding: 8px;
    font-size: 120%;
  }
  .event_detail .btn:hover {
    color: #fff;
  }
  .event_detail table th.event_name {
    background-color: #3958b0;
    padding: 16px 8px 16px 28px;
  }
  .event_detail.fair .inner::before,
  .internship-and-business-research-fair .inner::before,
  .internship-and-business-research-fair-02 .inner::before,
  .internship-and-business-research-fair-03 .inner::before,
  .internship-and-business-research-fair-04 .inner::before {
    top: -33px;
    left: 0;
    width: 89px;
    height: 90px;
  }
  .company {
    padding: 0 0 30px;
  }
  .event_wrap:last-of-type .company {
    padding: 0 0 200px;
  }
  .comany_content {
    padding: 16px;
    margin-bottom: 16px;
  }
  .comany_content .section_ttl img {
    width: 220px;
  }
  /*    .comany_content {
      padding: 0 0 38px;
      margin-bottom: 24px;
    }
    .comany_content .section_ttl {
      text-indent: 0;
      transform: translateY(-80px);
      margin-bottom: -62px;
    }
    .comany_content .section_ttl img {
      width: calc(320px/1.4);
    }
    .comany_content .reset {
      width: 100%;
      margin: 0 auto 12px;
      padding: 8px;
      background: #00b2ff;
      border-radius: 4px;
      font-size: 108%;
      color: #fff;
      text-align: center;
    }
    .comany_content select {
      width: 100%;
      height: 40px;
      padding: 0 0 0 8px;
      margin-bottom: 16px;
      font-size: 100%;
    }
    .company--list li {
      padding: 16px 8px;
    }
    .company--list li:nth-child(4n+1),
    .company--list li:nth-child(4n+2) {
      background-color: #eee;
    }
    .company .map,
    .parking_link {
      width: 100%;
    }
    .company .map iframe {
      height: 300px;
    }
    .parking_link li a {
      padding: 11px;
      font-size: 114%;
      line-height: 1.6;
    }
    .parking_link li a:hover {
      color: #fff;
    }
    .company--list li a {
      display: block;
    }
    .link_wrapper a:nth-child(2) {
      margin-left: 0;
    }
    .link_wrapper a:nth-child(2)::after {
      content: none;
    }
    .company--list li span {
      margin-left: 4px;
    }*/
}
@media only screen and (max-width: 320px) {
  .event_detail table th.event_name {
    padding: 18px 8px 18px 40px;
    font-size: 100%;
  }
  .company--list li {
    width: 100%;
    padding: 12px 8px;
  }
}

/* よくある質問
*************************************************** */
.faq {
  position: relative;
  padding: 8px 0 80px;
  margin-top: -100px;
  background-color: #fff;
  background-image: url(../images/faq_yellow_bg.png);
  background-position: top 300px center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.faq::before {
  display: none;
  content: "";
  position: absolute;
  top: -102px;
  left: 0;
  width: 100%;
  padding: 46px 0;
  background-color: #fff883;
  border-top: 120px solid #fff100;
  box-shadow: inset 0 32px 0 0 #ffea00, inset 0 -22px 0 0 #fff;
  border-bottom: 8px solid #fff883;
  transform: skewY(-6deg);
}
.faq .inner {
  position: relative;
  z-index: 1;
}
.faq .section_ttl {
  margin-bottom: 92px;
}
.faq_content:not(:last-child) {
  margin-bottom: 92px;
}
.faq_content dt {
  position: relative;
  z-index: 1;
}
.faq_content dd {
  position: relative;
  background-color: #fff;
  border: 4px solid #fff100;
  border-radius: 16px;
  padding: 58px 76px;
  margin-top: -44px;
}
.faq_content dd::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  display: block;
  width: 64px;
  height: 76px;
  background-image: url(../images/icon_a.png);
}
.faq_contents .faq_content:nth-child(odd) dd {
  margin-left: 73px;
}
.faq_contents .faq_content:nth-child(even) dd {
  margin-right: 73px;
}
.faq_contents .faq_content:nth-child(even) dt {
  text-align: right;
}
.faq_content dd strong {
  color: #ff008e;
  font-size: 108%;
}

@media only screen and (max-width: 767px) {
  .faq {
    padding: 8px 0 0;
    background-size: auto;
  }
  .faq::before {
    top: -60px;
    padding: 26px 0;
    background-color: #fff883;
    border-top: 40px solid #fff100;
    box-shadow: inset 0 20px 0 0 #ffea00, inset 0 -8px 0 0 #fff;
    border-bottom: 8px solid #fff883;
  }
  .faq .section_ttl {
    margin-bottom: 52px;
  }
  .faq .section_ttl img {
    width: calc(336px / 1.4);
  }
  .faq_content:not(:last-child) {
    margin-bottom: 32px;
  }
  .faq_content dd {
    padding: 38px 26px;
    margin-top: -20px;
  }
  .faq_contents .faq_content:nth-child(odd) dd,
  .faq_contents .faq_content:nth-child(even) dd {
    margin-left: 14px;
  }
  .faq_contents .faq_content:nth-child(even) dd {
    margin-right: 0;
  }
  .faq_content dd::before {
    top: -20px;
    left: -18px;
    width: 14%;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}

/* 合同企業説明会の歩き方
*************************************************** */
.step {
  position: relative;
  padding: 85px 0 400px;
  background-image: url(../images/common/pt_zigzag_pink.jpg);
}
.step::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: #fff;
  transform: skewY(6deg);
}
.step .inner {
  position: relative;
  z-index: 1;
}
.step .section_ttl {
  margin-bottom: 88px;
}
.step_content {
  background-color: #fff;
  padding: 66px 0 74px;
}
.step_list {
  position: relative;
}
.step_list::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 36px;
  height: 510px;
  border-left: 8px solid #ff008e;
}
.step_list li {
  position: relative;
}
.step_list li:not(:last-child) {
  margin-bottom: 34px;
}
.step_list li p {
  width: calc(100% - 200px);
}

@media only screen and (max-width: 767px) {
  .step {
    padding: 70px 0 220px;
  }
  .step::before {
    top: -210px;
  }
  .step .section_ttl {
    margin-bottom: 28px;
  }
  .step .section_ttl img {
    width: calc(360px / 1.4);
  }
  .step_content {
    padding: 26px 0 32px;
  }
  .step_list::before {
    left: 25px;
    height: 80%;
  }
  .step_list li {
    align-items: flex-start;
  }
  .step_list li h3 {
    width: 127px;
  }
  .step_list li p {
    width: calc(100% - 140px);
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
@media only screen and (max-width: 320px) {
  .step_list::before {
    left: 18px;
  }
  .step_list li h3 {
    width: 96px;
  }
  .step_list li p {
    width: calc(100% - 111px);
  }
}

/* home_searchform
*************************************************** */
.home_searchform {
  margin-top: -100px;
  padding: 100px 0 180px;
}


.companylist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  width: 70%;
  margin-inline: auto;

}
.companylist a {
  transition: .2s;
}
.companylist a:hover {
  opacity: 0.5;
}

.companylist li {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dadada;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.home .companylistwrap .section_ttl {
  color: #3c59af;
  font-size: 42px;
  letter-spacing: normal;
}
.home  .companylistwrap .company--info .section_ttl:after  {
  left: 50%;
  translate: -50% 0;
  width: 120%;
}

@media only screen and (max-width: 767px) {
  .companylist {
    display: grid;
    grid-template-columns: 100%;
    column-gap: 16px;
    row-gap: 8px;
    width: 90%;
    margin-inline: auto;
  
  }
  .companylist li  {
    margin-bottom: 4px;
    padding-bottom: 4px;
  }
  .companylistwrap.section_pdg {
    padding-block: 24px;
  }
  .companylistwrap .main_column  {
    padding: 24px;
  }
  .home .companylistwrap .section_ttl {
    font-size: 200%;
  }
  .home  .companylistwrap .company--info .section_ttl:after {
    height: 12px;
  }
}

/* 参加者の声
*************************************************** */
.voice {
  position: relative;
  padding: 0 0 180px;
  margin-top: -100px;
  background-color: #fff;
  background-image: url(../images/voice_blue_bg.png);
  background-position: top 160px center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.voice::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  padding: 26px 0;
  background-color: #79d6ff;
  border-top: 120px solid #00b0ff;
  box-shadow: inset 0 24px 0 0 #fff, inset 0 -6px 0 0 #fff;
  border-bottom: 6px solid #00b0ff;
  transform: skewY(-6deg);
}
.voice .inner {
  position: relative;
  z-index: 1;
}
.voice .section_ttl {
  margin-bottom: 98px;
}
.voice_list li {
  display: flex;
  align-items: center;
  width: calc(100% / 4 - (23px * 3 / 4));
  min-height: 237px;
  margin-bottom: 40px;
  background-color: #fff;
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  border-top: 1px solid #79d6ff;
  border-left: 1px solid #79d6ff;
  border-right: 3px solid #00b0ff;
  border-bottom: 3px solid #00b0ff;
  padding: 18px 28px;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.65;
}
.voice_list li:nth-child(2) {
  background-image: url(../images/img_voice_man01.png);
}
.voice_list li:nth-child(7) {
  background-image: url(../images/img_voice_woman01.png);
}
.voice_list li:nth-child(9) {
  background-image: url(../images/img_voice_woman02.png);
}
.voice_list li:nth-child(16) {
  background-image: url(../images/img_voice_man02.png);
}
.voice_list li:nth-child(2) p,
.voice_list li:nth-child(7) p,
.voice_list li:nth-child(9) p,
.voice_list li:nth-child(16) p {
  width: 130px;
}
.voice_list li:nth-child(9) p {
  margin-left: auto;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .voice {
    padding: 0 0 60px;
    background-size: auto;
  }
  .voice::before {
    top: -50px;
    background-color: #79d6ff;
    border-top: 50px solid #00b0ff;
    box-shadow: inset 0 24px 0 0 #fff, inset 0 -6px 0 0 #fff;
    border-bottom: 6px solid #00b0ff;
  }
  .voice .section_ttl {
    margin-bottom: 38px;
  }
  .voice .section_ttl img {
    width: calc(264px / 1.4);
  }
  .voice_list li {
    width: 100%;
    height: auto;
    min-height: 160px;
    margin-bottom: 15px;
    padding: 30px 18px;
    background-position: top center;
  }
  .voice_list li:nth-child(2) {
    background-image: url(../images/img_voice_man01_sp.png);
  }
  .voice_list li:nth-child(7) {
    background-image: url(../images/img_voice_woman01_sp.png);
  }
  .voice_list li:nth-child(9) {
    background-image: url(../images/img_voice_woman02_sp.png);
  }
  .voice_list li:nth-child(16) {
    background-image: url(../images/img_voice_man02_sp.png);
  }
  .voice_list li:nth-child(2) p,
  .voice_list li:nth-child(7) p,
  .voice_list li:nth-child(9) p,
  .voice_list li:nth-child(16) p {
    width: 50%;
  }
}

/* ##############################################################################

    FOOTER

############################################################################## */

.foot_links_content {
  position: relative;
  padding: 0 0 85px;
}
.foot_links_content::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 0;
  display: block;
  width: 100%;
  height: 120%;
  background: #3c59af;
  transform: skewY(6deg);
}
.foot_links_content .inner {
  position: relative;
}
.foot_bnr_area ul:first-child li {
  width: calc(100% / 5 - (13px * 4 / 5));
  background: #fff;
  border-radius: 9px;
}
.foot_bnr_area ul:first-child li a:hover {
  opacity: 0.5;
}
.foot_bnr_area ul:last-child li {
  width: calc(100% / 3 - (13px * 2 / 3));
  margin-right: 13px;
  background: #fff;
}
.foot_bnr_area ul:last-child li:last-child {
  margin-right: 0;
}
.foot_bnr_area ul:last-child li a:hover {
  opacity: 0.5;
}
.footer_catch {
  position: relative;
  width: 470px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 178%;
  color: #fff;
}
.footer_catch::before,
.footer_catch::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  display: block;
  border-bottom: 2px solid;
}
.footer_catch::before {
  top: 25px;
}
.footer_catch::after {
  bottom: 24px;
}
.footer_catch span {
  position: relative;
  background: #3c59af;
  padding: 0 30px;
  z-index: 1;
}

.footer {
  position: relative;
  background-color: #fff;
}
.footer--in {
  background-image: url(../images/img_footer_syukatsu.png);
  background-position: center;
  background-size: cover;
  padding: 54px 0 50px;
}
.footer--in h2 {
  margin-bottom: 24px;
}
.footer--in h3 {
  margin-top: 90px;
}
.footer--in span {
  margin-right: 18px;
}
.copyright {
  background-color: #f3f1f2;
  padding: 24px 0;
  font-size: 67%;
}

@media only screen and (max-width: 767px) {
  .foot_bnr_area ul:first-child li {
    width: calc(100% / 2 - (8px * 1 / 2));
    margin-bottom: 8px;
  }
  .foot_bnr_area ul:last-child li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .foot_bnr_area ul:first-child li a:hover,
  .foot_bnr_area ul:last-child li a:hover {
    opacity: 1;
  }
  .foot_links_content {
    padding: 0 0 45px;
  }
  .footer_catch {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 148%;
  }
  .footer_catch::before {
    top: 14px;
  }
  .footer_catch::after {
    bottom: 14px;
  }
  .footer_catch span {
    padding: 0 3%;
  }
  .footer--in {
    padding: 44px 0 40px;
  }
  .footer--in h3 {
    margin-top: 30px;
  }
  .footer--in span {
    display: block;
    margin-right: 0;
  }
  .copyright {
    padding: 12px 0;
  }
}

/* ##############################################################################

    下層

############################################################################## */

/* 404
*************************************************** */
.not_found {
  padding: 80px 0 140px;
}
.not_found h2 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 200%;
  color: #ff008e;
}
@media only screen and (max-width: 767px) {
  .not_found {
    padding: 50px 0 90px;
  }
}

/* ##############################################################################

    SEARCH ARCHIVE

############################################################################## */
.search_wrap {
  background: url(../images/pt_check_rightblue.jpg);
  padding-top: 100px;
  padding-bottom: 100px;
}
.search_wrap::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  padding: 26px 0;
  background-color: #79d6ff;
  border-top: 120px solid #00b0ff;
  box-shadow: inset 0 24px 0 0 #fff, inset 0 -6px 0 0 #fff;
  border-bottom: 6px solid #00b0ff;
}
.search_area {
  position: relative;
  padding: 130px 0 0;
  margin-top: 56px;
  margin-bottom: 40px;
}
.search_area .inner {
  position: relative;
}
.search_area img {
  position: absolute;
  top: -165px;
  left: 0;
  right: 0;
  margin: auto;
}
.search_area #searchform {
  background-color: #fff;
  padding: 130px 80px 80px;
  text-align: left;
}
#searchform select,
#searchform #s {
  height: 56px;
  border: none;
  padding: 0 32px 0 16px;
  border-radius: 4px;
  font: inherit;
  font-weight: bold;
  font-size: 100%;
  vertical-align: middle;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ccc;
}
#searchform select {
  width: 100%;
  background: #fff url(../images/arrow_down.png) right 10px center no-repeat;
  -webkit-background-size: 8px;
  background-size: 8px;
}
#searchform select::-ms-expand {
  display: none;
}
.form--wrap {
  display: flex;
}
.form--wrap > div {
  flex-grow: 1;
}
.form--wrap > div:not(:last-child) {
  margin-right: 8px;
}
.form--ttl {
  display: block;
  color: #04b0ff;
  font-size: 90%;
  font-weight: 700;
  text-align: left;
  margin-bottom: 2px;
}
#s {
  width: 100%;
}
#searchform input[type="submit"] {
  outline: 0;
  border-radius: 4px;
  border: none;
  background-color: #f18a07;
  cursor: pointer;
  padding: 12px 100px;
  color: #fff;
  font-size: 116%;
  letter-spacing: 0.12em;
  transition: all 0.2s ease-out;
  margin-left: 16px;
}
#searchform .area {
  flex-basis: 120px;
}
#searchform .area {
  flex-basis: 170px;
}
#searchform .genre {
  flex-basis: 270px;
}
#searchform .online {
  flex-basis: 220px;
}
/* --- checkbox --- */
.form--catlist {
  display: flex;
  flex-wrap: wrap;
}
.form--catlist li {
  margin-right: 5px;
  margin-bottom: 5px;
}
.form--catlist input[type="checkbox"] {
  display: none;
}
.form--catlist label {
  display: block;
  padding: 2px 15px;
  background-color: #eee;
  border-radius: 28px;
  transition: all 0.2s ease-out;
  cursor: pointer;
  font-size: 90%;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAA8klEQVRIS73V6xHCIBAE4N0K1ArUSrQU04npwA5MKVqJlmAH51wmyeDAweUlfwP7AQeEWLlx5XwMgIicAdwBHDLoB8CNZO2dWAi8AeydAxuSladvCIhnQNDHhVjAE8ClC2sAnAy8iFjAkaRuGUREa/LKrC6LWMCOpBbUA2g3E7GAB4C+iHqy9ISVWhKZU+QUGCFLA4rWJK+9HgK655vSPji/DzUMAT2Wut9LtBjoTswSSEVS707bosdOROYgP+FJYMZKonATmIAkw7PACMQMLwIOJBvuAjJIMdwNJBBX+CigQ7btoO6l9dzI//30PbOZ0ucLkRByGb4QhxAAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-size: 17px 17px;
  background-position: left 9px center;
  padding-left: 30px;
}
.form--catlist label:hover {
  background-color: #d6edfb;
  border-color: #d6edfb;
}
.form--catlist input[type="checkbox"]:checked + label {
  background-color: #9adfff;
  border-color: #9adfff;
}
.form--online .form--catlist label {
  background-color: #fff;
  background-size: 32px 32px;
  padding: 2px 15px;
  /* padding-right: 42px; */
  padding-left: 46px;
  margin-top: 11px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZGRkIiBkPSJNMTIsMkM2LjQ4NiwyLDIsNi40ODYsMiwxMnM0LjQ4NiwxMCwxMCwxMHMxMC00LjQ4NiwxMC0xMFMxNy41MTQsMiwxMiwyeiIvPjwvc3ZnPg==);
}
.form--online .form--catlist input[type="checkbox"]:checked + label {
  background-color: #fff;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjMDRiMGZmIiBkPSJNMTIsMkM2LjQ4NiwyLDIsNi40ODYsMiwxMmMwLDUuNTE0LDQuNDg2LDEwLDEwLDEwczEwLTQuNDg2LDEwLTEwQzIyLDYuNDg2LDE3LjUxNCwyLDEyLDJ6IE0xMC4wMDEsMTYuNDEzbC0zLjcxMy0zLjcwNSBMNy43LDExLjI5MmwyLjI5OSwyLjI5NWw1LjI5NC01LjI5NGwxLjQxNCwxLjQxNEwxMC4wMDEsMTYuNDEzeiIvPjwvc3ZnPg==);
}
.form--online .form--ttl {
  padding-left: 12px;
}

@media screen and (max-width: 767px) {
  .search_ttl_img-sp {
    width: 200px;
  }
  .search_area {
    margin-top: 0;
  }
  .search_area img {
    top: -105px;
  }
  .search_wrap::before {
    top: -88px;
  }
  .search_area #searchform {
    padding: 90px 24px 24px;
  }
  .form--wrap {
    display: block;
  }
  #searchform select,
  #searchform #s {
    height: 48px;
  }
  .form--wrap > div:not(:last-child) {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .form--online .form--ttl {
    padding-left: 0;
  }
  .form--catlist label {
    padding: 2px 8px;
    font-size: 83%;
    background-image: none;
  }
  .form--online .form--catlist label {
    padding: 4px 15px 4px 45px;
    transition: none;
  }
  #searchform input[type="submit"] {
    margin-top: 16px;
    margin-left: 0;
    width: 100%;
  }
}

/* archive ttl
  *************************************************** */
.archive--event_ttl {
  font-size: 160%;
  color: #00b0ff;
  line-height: 1.4;
}

/* search--company_list
  *************************************************** */
.search--company_list {
  margin-top: 150px;
}
.search_area + .search--company_list {
  margin-top: 0;
}
.search--company_list .main_column {
  padding: 40px;
}
.search_button.btn {
  display: flex;
  width: 280px;
  margin: 0 0 0 auto;
  font-size: 94%;
  background-color: #3c59af;
  border-radius: 4px;
  border-bottom: 4px solid #112663;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
.search_button.btn:hover {
  background-color: #5e7ace;
}
@media screen and (max-width: 767px) {
  .search--company_list {
    margin-top: 0;
  }
  .search--company_list .main_column {
    padding: 24px 16px 17px;
  }
  .search_button.btn {
    width: 220px;
    font-size: 90%;
    padding: 4px 0 2px;
    margin: auto;
  }
}

/* post-company
  *************************************************** */
.post-company_wrap {
  display: flex;
  flex-wrap: wrap;
}
.post-company {
  width: calc(50% - 12px);
  padding: 16px 24px;
  font-size: 83%;
  border-top: 1px solid #79d6ff;
  border-left: 1px solid #79d6ff;
  border-right: 3px solid #00b0ff;
  border-bottom: 3px solid #00b0ff;
  margin-bottom: 24px;
}
.post-company:nth-child(odd) {
  margin-right: 24px;
}
.post-company h2 {
  padding-bottom: 8px;
  font-size: 140%;
}
.post-company h2 a {
  color: #3c59af;
}
.post-company--img {
  width: 240px;
  height: 160px;
  background-size: cover;
  background-position: center;
  margin-right: 16px;
}
.post-company--img.noimg {
  background-image: url(../images/company_noimg.png);
}
.post--txtarea {
  flex: 1;
}
.post-company--cat dt {
  width: 83px;
  float: left;
  clear: both;
  text-align: center;
  margin: 2px 0;
  background-color: #d6edfb;
  border-radius: 10px;
}
.post-company--cat dd {
  padding: 2px 0 2px 8px;
  overflow: hidden;
  display: -webkit-box;
}
.post-company--cat a:hover {
  text-decoration: underline;
}
.post-company--cat a:not(:last-child)::after {
  content: ",";
  margin-right: 4px;
}
.post-company--kodawari a {
  color: #666;
  font-size: 89%;
}
.post-company--kodawari a:not(:last-child)::after {
  content: "/";
  margin-left: 4px;
  margin-right: 4px;
}
.company_detail.btn {
  display: block;
  width: 240px;
  margin: auto;
  background-color: #ff41ab;
  border-radius: 4px;
  border-bottom: 4px solid #c31878;
  font-size: 120%;
}
.company_detail.btn:hover {
  background-color: #e43898;
}
.block.btn{
  display: block;
  width: fit-content;
  margin: auto;
  background-color: #3c59af;
  border-radius: 4px;
  border-bottom: 4px solid #112663;
  font-size: 120%;
  padding: 20px 80px;
}
.block.btn:hover {
  background-color: #5e7ace;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-left: auto;
  margin-right: auto;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .post-company_wrap {
    display: block;
  }
  .post-company {
    width: 100%;
  }
  .post-company--img {
    width: 150px;
    height: 100px;
  }
  .post--txtarea {
    font-size: 93%;
  }
  .post-company--cat dt {
    width: 53px;
    margin: 0;
    float: none;
  }
  .post-company--cat dd {
    padding: 2px 0 6px 2px;
  }
}

/* wp-pagenavi
  *************************************************** */
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
  align-items: center;
}
.wp-pagenavi a,
.wp-pagenavi .current {
  position: relative;
  display: inline-block;
  vertical-align: top;
  background-color: #d6edfb;
  width: 40px;
  height: 40px;
  line-height: 46px;
  border-radius: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  margin: 4px;
}
.wp-pagenavi a.page,
.wp-pagenavi .current {
  padding: 0;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}
.wp-pagenavi .current {
  background-color: #9adfff;
}
.wp-pagenavi a[rel="next"],
.wp-pagenavi a[rel="prev"] {
  font-size: 0;
  background-color: #9a9a9a;
}
.wp-pagenavi a[rel="next"]:hover,
.wp-pagenavi a[rel="prev"]:hover {
  background-color: #888;
}
.wp-pagenavi a[rel="next"]::before,
.wp-pagenavi a[rel="prev"]::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
.wp-pagenavi a[rel="next"]::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.wp-pagenavi a[rel="prev"]::before {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.wp-pagenavi .pages,
.wp-pagenavi .last,
.wp-pagenavi .first {
  display: none;
}

@media only screen and (max-width: 768px) {
  .wp-pagenavi {
    margin-bottom: 60px;
  }
}

/* result
   ############################### */
.search_result {
  margin-right: 24px;
}
.search_result span {
  font-size: 160%;
  margin-left: 8px;
  margin-right: 4px;
  color: #ff41ab;
}
.search_result--cat span {
  display: inline-block;
  background-color: #e2e2e2;
  font-size: 86%;
  padding: 0 14px;
  border-radius: 20px;
}
.search_result--cat .event {
  background-color: #9adfff;
}
@media screen and (max-width: 767px) {
  .search_result {
    margin-right: 0;
    text-align: center;
  }
  .search_result--cat {
    text-align: center;
    margin-bottom: 8px;
  }
  .search_result--cat span {
    font-size: 70%;
    padding: 0 8px;
  }
}

/* ##############################################################################

    SINGLE

############################################################################## */

/* company
*************************************************** */
.single-company,
.archive-company {
  background: url(../images/pt_check_rightblue.jpg);
}
.single-company .main_column {
  padding: 40px;
}
.main_column {
  width: 100%;
  background: #fff;
  padding: 80px 40px;
  margin-bottom: 0;
  display: block;
}
.company--table table {
  width: 100%;
}
.company--table table th,
.company--table table td {
  padding: 24px 40px;
  border-bottom: 1px solid #3c59af;
  line-height: 1.45;
  vertical-align: middle;
  font-size: 112%;
}
.company--table table th {
  width: 300px;
  background: #246cb9;
  color: #fff;
}
.company--table table td {
  background-color: #fff;
  font-weight: bold;
}
.company--table a {
  color: #03b1ff;
  text-decoration: underline;
}
.companyTxt {
  width: 50%;
  margin-right: 40px;
}
.companyTxt.no-img {
  margin: auto;
}
.company_image-area {
  width: 50%;
}
.company_image {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  width: 100%;
  height: 600px;
}

.single-company .section_ttl {
  font-size: 178%;
  position: relative;
  z-index: 10;
  color: #246cb9;
  padding: 0 16px;
  font-weight: bold;
}
.single-company .company--info .section_ttl.single {
  margin: 0 0 16px;
}
.single-company .company--info .section_ttl:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 24px;
  background-color: #fff000;
  opacity: 0.5;
  bottom: 0;
  z-index: -1;
  left: 0;
}
.single-company .company--info .section_ttl.company--list:after {
  opacity: 0;
}
.single-company .company--info .footer_catch {
  color: #3c59af;
}
.single-company .company--info .footer_catch span {
  background-color: #fff;
}
.single-company .company--info iframe {
  width: 640px;
  height: 360px;
  margin: auto;
  display: block;
  margin-bottom: 32px;
}
.single-company .company--url {
  margin-top: 24px;
}
.single-company .company--url li {
  display: inline-block;
}
.single-company .company--url li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
}
.single-company .company--url a {
  color: #03b1ff;
  text-decoration: underline;
}
.single-company .company--info .post-company--cat {
  margin-top: 24px;
  border: 1px dashed #aaa;
  padding: 16px;
}
.company--info .features_image,
.messeage_image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 88% auto;
  width: 100%;
  height: 450px;
}
.company--info .features_title,
.message_title {
  font-size: 124%;
  font-weight: bold;
}
.company--info .message_name {
  font-weight: bold;
  font-size: 86%;
}
.company--info .message_img-area {
  width: 30%;
}
.company--info .message_text-area {
  width: 66%;
}

@media screen and (max-width: 767px) {
  .single-company .main_column {
    padding: 16px;
  }
  .companydata {
    flex-direction: column;
    margin-bottom: 32px;
  }
  .single-company .section_ttl {
    font-size: 151%;
  }
  .company--table table th,
  .company--table table td {
    width: 100%;
    display: block;
    padding: 12px 20px;
    border: 1px solid #3c59af;
  }
  .single-company .section_ttl {
    padding: 0;
  }
  .companyTxt {
    width: 100%;
    margin: 0;
    margin-bottom: 24px;
  }
  .companyTxt h3 {
    text-align: left;
  }
  .main_column {
    width: 100%;
    padding: 24px;
  }
  .single-company .section_ttl.archive {
    font-size: 130%;
    line-height: 1em;
  }
  .single-company .section_ttl.archive:after {
    bottom: -8px;
    height: 16px;
    top: inherit;
  }
  /* .singleImg {
      width: 100%!important;
      overflow: hidden;
      background-position: top center!important;
      height: 200px!important;
    } */
  .single-company .company--info iframe {
    width: 100%;
    height: 176px;
  }
  .company--event table thead {
    display: none;
  }
  .company--event table td:first-child {
    background: #246cb9;
    color: #fff;
  }
  .company_image-area {
    width: 100%;
  }
  .company_image {
    height: 380px;
  }
  .features {
    display: block;
  }
  .company--info .features_image,
  .messeage_image {
    background-position: top center;
    background-size: 100% auto;
    height: 300px;
  }
  .company--info .features_image {
    margin-bottom: 16px;
  }
  .message {
    display: block;
  }
  .company--info .message_img-area {
    width: 100%;
  }
  .company--info .message_text-area {
    width: 100%;
  }
  .company--info .features_title,
  .message_title {
    margin-top: 24px;
  }
  .company--info .message_name {
    margin-bottom: 16px;
  }
}
