@charset "UTF-8";
/* --------------------------------
[コーディングルール]
・SMACSSでCSS設計
・基本classのみ使用し、idはアンカーやJSで使用
・class名、フォルダ名、ファイル名はハイフン(-）区切り
・メディアクエリーはPCファーストで、 @include max {} または @include min {} を使用
-------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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, 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: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  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;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main {
  display: block;
}

html {
  font-size: 10px;
  margin-top: 0 !important;
}

body {
  line-height: 1.3;
  font-family: HelveticaNeueLTStd-Roman, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.3rem;
  color: #323232;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.05em;
}

a {
  color: #323232;
  text-decoration: none;
}

@media screen and (min-width: 751px) {
  a:hover {
    color: #323232;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul, ol {
  list-style-type: none;
}

th, b {
  font-weight: normal;
}

em, i {
  font-style: normal;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1.3s ease-out;
  transition: all 1.3s ease-out;
}

.fade-next {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1.3s ease-out;
  transition: all 1.3s ease-out;
}

.fade.is-fade {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-next.is-fade-next {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade.is-fadeKv {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  /*     position: relative;
    &:before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 1;
      width: 20%;
      height: 100%;
      background-color: #fff;
      transition: all 1.3s ease-out;
    }
    &:after {
      content: '';
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 1;
      width: 20%;
      height: 100%;
      background-color: #fff;
      transition: all 1.3s ease-out;
    } */
}

.fade.is-fadeKv.is-fade {
  /*     &:before {
      width: 0;
    }
    &:after {
      width: 0;
    } */
}

/* .fadeMain {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.3s ease-out;
  &.is-fade {
    opacity: 1;
    transform: translateY(0);
  }
  .fade.is-fadeKv {
    opacity: 1;
    transform: translateY(0);
  }
} */
sub {
  vertical-align: sub !important;
}

.yugothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
}

.simfont {
  font-family: "Noto Sans SC", sans-serif, SimSum, SimHei !important;
}

.fw-nomal {
  font-weight: normal !important;
}

.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 25px 30px 0 30px;
  z-index: 10;
  color: #fff;
  pointer-events: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.l-header-wrap.is-type2 {
  height: 70px;
}

@media screen and (max-width: 750px) {
  .l-header-wrap.is-type2 {
    height: 57px;
  }
}

.l-header-wrap:before {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  pointer-events: none;
}

@media screen and (max-width: 750px) {
  .l-header-wrap:before {
    height: 57px;
  }
}

.l-header-wrap.is-sc:before, .l-header-wrap.is-type2:before {
  opacity: 0;
}

@media screen and (max-width: 750px) {
  .l-header {
    height: 57px;
    padding: 20px 18px 0;
  }
}

.l-header.is-sc, .l-header.is-type2 {
  background-color: #fff;
  color: #323232;
}

@media screen and (max-width: 750px) {
  .l-header.is-sc, .l-header.is-type2 {
    height: 57px;
    padding: 20px 18px 0;
  }
}

.l-header a {
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.l-header.is-sc a,
.l-header.is-type2 a {
  color: #323232;
}

.l-header.is-sc {
  height: 60px;
  padding: 19px 30px 0 30px;
}

@media screen and (max-width: 750px) {
  .l-header.is-sc {
    height: 57px;
    padding: 20px 18px 0;
  }
}

@media screen and (max-width: 750px) {
  .l-header.is-open a {
    color: #fff;
  }
}

.l-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: auto;
}

.l-footer {
  margin-top: 180px;
  background-color: #F0F0F0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 750px) {
  .l-footer {
    margin-top: 90px;
  }
}

.l-footer-inner {
  padding: 25px 32px 20px;
}

@media screen and (min-width: 751px) {
  .l-footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (max-width: 750px) {
  .l-footer-inner {
    padding: 30px 18px 30px;
  }
}

.u {
  /*   &-zoom {
    .u-zoomWrap {
      display: block;
      overflow: hidden;
    }
    .u-zoomImg {
      transition: all 1s;
      transform: scale(1);
    }
    @media screen and (min-width: 751px) {
      &:hover {
        .u-zoomImg {
          transform: scale(1.05);
        }
      }
    }
  } */
}

.u-over {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (min-width: 751px) {
  .u-over:hover {
    opacity: 0.7;
  }
}

.u-zoom {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (min-width: 751px) {
  .u-zoom:hover {
    opacity: 0.7;
  }
}

.u-inline {
  display: inline;
}

.u-inlineBlock {
  display: inline-block;
}

.u-block {
  display: block;
}

.u-table {
  display: table;
}

.u-tableCell {
  display: table-cell;
}

.u-txtLeft {
  text-align: left;
}

.u-txtCenter {
  text-align: center;
}

.u-txtRight {
  text-align: right;
}

.u-imgCover {
  display: block;
  height: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.u-img-b {
  margin-top: auto;
}

.u-kvImg {
  display: block;
  width: 100%;
}

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

@media screen and (max-width: 575px) {
  .u-pcSm {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .u-pcLg {
    display: none !important;
  }
}

@media screen and (max-width: 1279px) {
  .u-pcXl {
    display: none !important;
  }
}

@media screen and (min-width: 751px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (min-width: 576px) {
  .u-spSm {
    display: none !important;
  }
}

@media screen and (min-width: 961px) {
  .u-spLg {
    display: none !important;
  }
}

@media screen and (min-width: 1280px) {
  .u-spXl {
    display: none !important;
  }
}

.u-icon-blank {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../img/icon/blank-gy.png) no-repeat center center;
  background-size: contain;
}

.format a {
  color: #03c;
  text-decoration: none;
}

@media screen and (min-width: 751px) {
  .format a:hover {
    color: #69f;
  }
}

.format h2 {
  margin: 30px 0 20px;
  font-size: 24px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.format h3 {
  margin: 30px 0 20px;
  font-size: 18px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.format p, .format ul, .format ol, .format table {
  margin-bottom: 20px;
}

.format li {
  margin-bottom: 10px;
}

.format ul {
  list-style-type: disc;
  padding-left: 1.5em;
}

.format ol {
  list-style-type: decimal;
  padding-left: 1.5em;
}

.format hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #999;
}

.format table {
  width: 100%;
}

.format th {
  width: 150px;
  padding: 10px 20px;
  border: 1px solid #999;
  background-color: #eee;
}

.format td {
  padding: 10px 20px;
  border: 1px solid #999;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

img[class*="wp-image-"],
img[class*="attachment-"] {
  max-width: 100%;
  height: auto;
}

.wp-caption {
  width: auto !important;
}

.wp-caption-text {
  font-size: 13px;
  margin-top: 10px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .wp-caption-text {
    font-size: 10px;
  }
}

#wpadminbar {
  -webkit-transition: opaicity .3s;
  transition: opaicity .3s;
}

#wpadminbar.is-sc {
  opacity: 0;
  pointer-events: none;
}

.btn-viewmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-viewmore a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 48px;
  font-size: 13px;
  border: 1px solid #C8C8C8;
  padding-top: 0.2em;
}

@media screen and (max-width: 750px) {
  .btn-viewmore a {
    font-size: 11px;
    height: 40px;
  }
}

.btn-viewmore .u-icon-blank {
  position: relative;
  top: -.2em;
  margin-left: 1em;
}

.m-member-team {
  max-width: 876px;
  margin: 130px auto 80px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .m-member-team {
    margin: 50px auto;
  }
}

.m-member-team h2 {
  font-size: 13px;
  margin-bottom: 3em;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 750px) {
  .m-member-team h2 {
    font-size: 11px;
    margin-bottom: 1.2em;
  }
}

.m-member-team-memberWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  .m-member-team-memberWrap {
    margin: 0 -7px;
  }
}

.m-member-team-member {
  width: 140px;
  margin-right: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .m-member-team-member {
    width: 33.33%;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 0 7px;
  }
}

.m-member-team-memberImg img {
  width: 100%;
}

.m-member-team-memberName {
  font-size: 12px;
  margin-top: 1em;
}

@media screen and (max-width: 750px) {
  .m-member-team-memberName {
    font-size: 10px;
  }
}

@media screen and (min-width: 751px) {
  .m-member-team-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 751px) {
  .m-member-team-cols .works-team-memberWrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.m-member-honbu-memberWrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 750px) {
  .m-member-honbu-memberWrap {
    width: auto;
    margin: 51px -7px 0;
  }
}

.m-member-honbu-member {
  width: 140px;
  position: relative;
}

@media screen and (max-width: 750px) {
  .m-member-honbu-member {
    width: 33.33%;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 0 7px;
  }
}

@media screen and (min-width: 751px) {
  .m-member-honbu-member + .m-member-honbu-member {
    margin-left: 20px;
  }
}

.m-member-honbu-memberH {
  position: absolute;
  left: 0;
  top: -3em;
}

@media screen and (max-width: 750px) {
  .m-member-honbu-memberH {
    left: auto;
    top: -2em;
    font-size: 12px;
  }
}

.m-member-honbu-memberImg img {
  width: 100%;
}

.m-member-honbu-memberName {
  font-size: 12px;
  margin-top: 1em;
}

@media screen and (max-width: 750px) {
  .m-member-honbu-memberName {
    font-size: 10px;
  }
}

.m-img-with-caption {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.m-img-with-caption img {
  min-height: 0%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.is-caption-lt .m-img-caption, .is-caption-ct .m-img-caption, .is-caption-rt .m-img-caption {
  padding-top: 0;
  padding-bottom: 0.5em;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.is-caption-rt .m-img-caption, .is-caption-rb .m-img-caption {
  text-align: right;
}

.is-caption-ct .m-img-caption, .is-caption-cb .m-img-caption {
  text-align: center;
}

.m-img-caption {
  display: block;
  position: relative;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
  padding-top: 1em;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media screen and (max-width: 750px) {
  .m-img-caption {
    font-size: 9px;
  }
}

.is-ttl-wt .m-kv-edit-ttl {
  color: #FFF;
}

.is-ttl-wts .m-kv-edit-ttl {
  color: #FFF;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.is-ttl-bk .m-kv-edit-ttl {
  color: #000;
}

.m-kv-edit-kv.is-bg-gy:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.m-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.m-movie video {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.m-movie-aspect {
  position: relative;
  padding-top: 50%;
}

.m-concept {
  margin: 100px auto 120px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .m-concept {
    margin: 50px auto;
  }
}

.m-concept h2 {
  font-size: 25px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin: .5em 0 2em;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .m-concept h2 {
    font-size: 16px;
    margin-bottom: 1.5em;
  }
}

.m-concept-txt {
  margin: 0 auto;
  max-width: 820px;
  font-size: 15px;
  line-height: 2;
}

@media screen and (min-width: 961px) {
  .m-concept-txt {
    font-size: 15px;
  }
}

@media screen and (max-width: 750px) {
  .m-concept-txt {
    font-size: 12px;
    line-height: 1.6667;
  }
}

.h-logo {
  position: relative;
  z-index: 1;
}

.h-logo-txt a {
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.025em;
}

@media screen and (max-width: 750px) {
  .h-logo-txt a {
    font-size: 16px;
  }
}

@media screen and (max-width: 750px) {
  .h-nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    color: #323232;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }
  .l-header.is-open .h-nav {
    opacity: 1;
    pointer-events: auto;
  }
}

@media screen and (max-width: 750px) {
  .h-nav-inner {
    height: 100vh;
    overflow-y: auto;
  }
}

@media screen and (min-width: 751px) {
  .h-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 750px) {
  .h-nav ul {
    padding-top: 110px;
  }
}

@media screen and (max-width: 750px) {
  .h-nav ul.is-sub {
    padding-top: 30px;
  }
}

.h-nav li {
  margin-left: 1em;
}

@media screen and (max-width: 960px) {
  .h-nav li {
    margin-left: 0;
  }
}

.h-nav a {
  position: relative;
  display: block;
  font-size: 13px;
  padding: 5px 1em;
}

@media screen and (max-width: 750px) {
  .h-nav a {
    font-size: 14px;
    padding: 1em;
    color: #323232 !important;
  }
}

@media screen and (min-width: 751px) {
  .h-nav a:hover {
    color: #919191;
  }
}

@media screen and (min-width: 751px) {
  .h-nav a:hover:before {
    left: 10px;
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 750px) {
  .h-nav ul.is-sub a {
    font-size: 13px;
  }
}

.h-spMenu {
  position: absolute;
  right: 0;
  top: 0;
}

.h-spMenu a {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
}

.h-spMenu a span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 1px;
  background-color: #fff;
}

.h-spMenu a span:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: -8px;
  width: 20px;
  height: 1px;
  background-color: #fff;
}

.h-spMenu a span:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 1px;
  background-color: #fff;
}

.l-header.is-sc .h-spMenu span,
.l-header.is-type2 .h-spMenu span {
  background-color: #323232;
}

.l-header.is-sc .h-spMenu span:before, .l-header.is-sc .h-spMenu span:after,
.l-header.is-type2 .h-spMenu span:before,
.l-header.is-type2 .h-spMenu span:after {
  background-color: #323232;
}

@media screen and (max-width: 750px) {
  .l-header.is-open .h-spMenu span {
    background-color: transparent;
  }
  .l-header.is-open .h-spMenu span:before, .l-header.is-open .h-spMenu span:after {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background-color: #323232;
  }
  .l-header.is-open .h-spMenu span:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.f-nav {
  font-size: 13px;
}

@media screen and (max-width: 750px) {
  .f-nav {
    font-size: 11px;
  }
}

.f-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: .5em;
}

@media screen and (max-width: 750px) {
  .f-nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 15px;
  }
}

.f-nav li {
  margin-right: 2.2em;
}

@media screen and (max-width: 750px) {
  .f-nav li:last-child {
    margin-right: 0;
  }
}

.f-nav a {
  position: relative;
  display: block;
  padding: 5px 0;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.f-nav a:hover {
  color: #919191;
}

.f-nav a:hover:before {
  left: 0;
  width: 100%;
}

.f-nav .is-blank {
  position: relative;
  top: -3px;
  width: 14px;
  margin-left: 4px;
}

@media screen and (max-width: 750px) {
  .f-nav .is-blank {
    width: 12px;
  }
}

.f-nav p {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  padding: 5px 0;
}

.f-logos {
  text-align: right;
}

@media screen and (max-width: 750px) {
  .f-logos {
    text-align: center;
  }
}

@media screen and (max-width: 750px) {
  .f-logo {
    margin-bottom: 5px;
  }
}

.f-logo img {
  width: 183px;
}

@media screen and (max-width: 750px) {
  .f-logo img {
    width: 157px;
  }
}

.f-copy {
  font-size: 10px;
}

.page-ttl {
  padding: 56px 18px 23px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .page-ttl {
    padding: 23px 18px 25px;
  }
}

.page-ttl.is-margin {
  padding: 85px 18px 118px;
}

@media screen and (max-width: 750px) {
  .page-ttl.is-margin {
    padding: 40px 18px 50px;
  }
}

.page-ttl h1 {
  font-size: 36px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 77px;
}

@media screen and (max-width: 750px) {
  .page-ttl h1 {
    margin-bottom: 30px;
    font-size: 19px;
  }
}

.page-ttl.is-jp h1 {
  padding-top: 7px;
  font-size: 31px;
  font-family: HelveticaNeueLTStd-Roman, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 750px) {
  .page-ttl.is-jp h1 {
    font-size: 19px;
  }
}

.page-ttl p {
  font-size: 15px;
  line-height: 2;
}

@media screen and (min-width: 961px) {
  .page-ttl p {
    font-size: 17px;
  }
}

@media screen and (max-width: 750px) {
  .page-ttl p {
    font-size: 11px;
  }
}

.home-kv {
  margin-bottom: 105px;
}

@media screen and (max-width: 750px) {
  .home-kv {
    margin-bottom: 44px;
  }
}

.home-kv-slider {
  margin-bottom: 0 !important;
}

.home-kv-slider .slick-dots {
  bottom: 35px;
  right: 40px;
  width: auto;
}

@media screen and (max-width: 750px) {
  .home-kv-slider .slick-dots {
    bottom: 10px;
    right: auto;
    width: 100%;
  }
}

.home-kv-slider .slick-dots li button:before {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 1;
  font-size: 10px;
}

@media screen and (max-width: 750px) {
  .home-kv-slider .slick-dots li button:before {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

.home-kv-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}

.home-kv-slide {
  position: relative;
}

.home-kv-slide a,
.home-kv-slide span {
  display: block;
  position: relative;
}

.home-kv-slide a:before,
.home-kv-slide span:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

@media screen and (max-width: 750px) {
  .home-kv-slide a:before,
  .home-kv-slide span:before {
    height: 57px;
  }
}

.home-kv-slideBg {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.l-main.is-tb .home-kv-slideBg {
  height: 0 !important;
  padding-top: 75% !important;
}

@media screen and (max-width: 750px) {
  .home-kv-slideBg {
    height: 0 !important;
    padding-top: 66.66%;
  }
}

.home-kv-slideTtlWrap {
  position: absolute;
  left: 50px;
  bottom: 40px;
}

@media screen and (max-width: 750px) {
  .home-kv-slideTtlWrap {
    left: 20px;
    bottom: 40px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
  }
}

.home-kv-slideTtl {
  font-size: 16px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.home-kv-slideTtlEn {
  font-size: 11px;
  letter-spacing: 0.075em;
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.home-mes {
  margin-bottom: 137px;
}

@media screen and (max-width: 750px) {
  .home-mes {
    margin-bottom: 40px;
  }
}

.home-mes-inner {
  max-width: 931px;
  margin: 0 auto;
  padding: 0 18px;
}

.home-mes h2 {
  font-size: 34px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 750px) {
  .home-mes h2 {
    font-size: 19px;
  }
}

.home-mes-txt p {
  font-size: 15px;
  line-height: 2.125;
}

@media screen and (min-width: 961px) {
  .home-mes-txt p {
    font-size: 17px;
  }
}

@media screen and (max-width: 750px) {
  .home-mes-txt p {
    font-size: 12px;
    line-height: 1.6667;
  }
}

.home-mes-link {
  margin-top: 3.5em;
}

@media screen and (max-width: 750px) {
  .home-mes-link {
    margin-top: 2.5em;
  }
}

.home-mes-link a {
  font-size: 14px;
}

@media screen and (max-width: 750px) {
  .home-mes-link a {
    font-size: 11px;
  }
}

.home-mes-link a:hover {
  text-decoration: underline;
}

.home-cols3 {
  margin-bottom: 95px;
}

@media screen and (max-width: 750px) {
  .home-cols3 {
    margin-bottom: 75px;
  }
}

.home-cols3-ttl {
  max-width: 900px;
  margin: 0 auto 45px;
  padding: 0;
  -webkit-transition: opacity 1.3s ease-out, -webkit-transform 1.3s ease-out;
  transition: opacity 1.3s ease-out, -webkit-transform 1.3s ease-out;
  transition: opacity 1.3s ease-out, transform 1.3s ease-out;
  transition: opacity 1.3s ease-out, transform 1.3s ease-out, -webkit-transform 1.3s ease-out;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
  .home-cols3-ttl {
    max-width: none;
    padding-left: 186px;
  }
}

@media screen and (max-width: 750px) {
  .home-cols3-ttl {
    margin-bottom: 22px;
    padding: 0 18px;
  }
}

@media screen and (min-width: 751px) {
  .home-cols3-ttl div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.home-cols3 h2 {
  line-height: 1.2;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 60px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
  .home-cols3 h2 {
    font-size: 5vw;
  }
}

@media screen and (max-width: 750px) {
  .home-cols3 h2 {
    font-size: 32px;
  }
}

.home-cols3 h2 small {
  display: block;
  font-size: 18px;
  padding-left: 0.2em;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
  .home-cols3 h2 small {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 750px) {
  .home-cols3 h2 small {
    display: inline-block;
    font-size: 12px;
    margin-left: 0.5em;
    padding-left: 0;
  }
}

.home-cols3-lead {
  font-size: 15px;
  margin-left: 2em;
  padding-top: 1em;
}

@media screen and (min-width: 1080px) {
  .home-cols3-lead {
    margin-right: -70px;
  }
}

@media screen and (min-width: 961px) {
  .home-cols3-lead {
    font-size: 17px;
  }
}

@media screen and (max-width: 750px) {
  .home-cols3-lead {
    font-size: 12px;
    margin: .1em 0 0;
    padding: 0;
  }
}

.home-cols3-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: calc(50% - 465px);
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
  .home-cols3-posts {
    padding-left: 170px;
  }
}

@media screen and (min-width: 751px) {
  .home-cols3-posts {
    padding-right: 25px;
  }
}

.home-cols3-post {
  width: 33.33%;
  padding-left: 18px;
}

.home-cols3-post a {
  display: block;
}

.home-cols3-postThumb {
  padding-top: 67.6301%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 750px) {
  .home-cols3-postThumb {
    padding-top: 55.8824%;
  }
}

.home-cols3-postCat {
  font-size: 11px;
  margin-top: 1.5em;
  color: #919191;
}

@media screen and (min-width: 961px) {
  .home-cols3-postCat {
    font-size: 13px;
  }
}

@media screen and (max-width: 750px) {
  .home-cols3-postCat {
    font-size: 12px;
  }
}

.home-cols3-postTtl {
  margin-top: 0.1em;
  font-size: 15px;
  font-weight: bold;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 961px) {
  .home-cols3-postTtl {
    font-size: 17px;
  }
}

@media screen and (max-width: 750px) {
  .home-cols3-postTtl {
    font-size: 12px;
  }
}

.home-cols3-sliderWrap {
  padding: 0 18px;
}

.home-cols3-slider .slick-dots {
  bottom: -35px;
}

.home-cols3-slider .slick-prev,
.home-cols3-slider .slick-next {
  top: 24vw;
  width: 47px;
  height: 69px;
}

.home-cols3-slider .slick-prev:before,
.home-cols3-slider .slick-next:before {
  display: block;
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  width: 34px;
  height: 1px;
  background-color: #000;
  -webkit-transform: translate(-50%, -12px) rotate(-45deg);
          transform: translate(-50%, -12px) rotate(-45deg);
}

.home-cols3-slider .slick-prev:after,
.home-cols3-slider .slick-next:after {
  display: block;
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  width: 34px;
  height: 1px;
  background-color: #000;
  -webkit-transform: translate(-50%, 12px) rotate(45deg);
          transform: translate(-50%, 12px) rotate(45deg);
}

.home-cols3-slider .slick-prev {
  left: 0;
  z-index: 1;
}

.home-cols3-slider .slick-next {
  right: 0;
}

.home-cols3-slider .slick-next:before {
  -webkit-transform: translate(-50%, -12px) rotate(45deg);
          transform: translate(-50%, -12px) rotate(45deg);
}

.home-cols3-slider .slick-next:after {
  -webkit-transform: translate(-50%, 12px) rotate(-45deg);
          transform: translate(-50%, 12px) rotate(-45deg);
}

.home-cols3-slider .slick-disabled {
  display: none !important;
}

.home-cols1 {
  margin-bottom: 90px;
}

@media screen and (max-width: 750px) {
  .home-cols1 {
    margin-bottom: 45px;
  }
}

.home-cols1-posts {
  padding: 0 25px;
}

@media screen and (max-width: 750px) {
  .home-cols1-posts {
    padding: 0;
  }
}

.home-cols1-post a {
  display: block;
  position: relative;
}

.home-cols1-postThumb {
  padding-top: 52.8455%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 750px) {
  .home-cols1-postThumb {
    padding-top: 93.3333%;
  }
}

.home-cols1-postInfo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 25px 25px 60px;
}

@media screen and (max-width: 750px) {
  .home-cols1-postInfo {
    padding: 25px;
  }
}

.home-cols1-postTtl {
  font-size: 38px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 750px) {
  .home-cols1-postTtl {
    font-size: 18px;
  }
}

.home-cols1-postCat {
  font-size: 13px;
  margin-top: 2.5em;
}

@media screen and (max-width: 750px) {
  .home-cols1-postCat {
    font-size: 12px;
  }
}

.home-cols1-postTtl2 {
  font-size: 17px;
  margin-top: 0.3em;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 750px) {
  .home-cols1-postTtl2 {
    font-size: 12px;
  }
}

.home-news {
  margin-bottom: 150px;
  padding-top: 20px;
}

@media screen and (max-width: 750px) {
  .home-news {
    margin-bottom: 40px;
  }
}

.home-news-inner {
  padding-left: calc(50% - 465px);
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
  .home-news-inner {
    padding-left: 170px;
  }
}

.home-news-inner3 {
  padding: 0 25px 0 18px;
}

@media screen and (max-width: 750px) {
  .home-news-inner3 {
    padding: 0 18px;
  }
}

.home-news h2 {
  font-size: 24px;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 0.7em;
}

@media screen and (max-width: 750px) {
  .home-news h2 {
    font-size: 18px;
    margin-bottom: 0.4em;
  }
}

.home-news ul {
  border-top: 1px solid #828282;
}

.home-news li {
  border-bottom: 1px solid #828282;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  padding: 2em 0;
}

@media screen and (min-width: 961px) {
  .home-news li {
    font-size: 17px;
  }
}

@media screen and (max-width: 750px) {
  .home-news li {
    display: block;
    font-size: 12px;
    padding: 1.5em 0;
  }
}

.home-news li div {
  display: block;
}

.home-news li div:nth-child(1) {
  width: 7em;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 750px) {
  .home-news li div:nth-child(1) {
    display: inline-block;
  }
}

.home-news li div:nth-child(2) {
  width: 6.5em;
  font-family: HelveticaNeueLTW1G-Lt, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.05em;
  color: #919191;
}

@media screen and (max-width: 750px) {
  .home-news li div:nth-child(2) {
    width: auto;
    display: inline-block;
  }
}

.home-news li div:nth-child(3) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 750px) {
  .home-news li div:nth-child(3) {
    margin-top: 0.5em;
  }
}

.home-news-link {
  margin-top: 2.5em;
  text-align: right;
}

@media screen and (max-width: 750px) {
  .home-news-link {
    margin-top: 1.5em;
    text-align: center;
  }
}

.home-news-link a {
  display: inline-block;
  width: 200px;
  height: 48px;
  border: 1px solid #C8C8C8;
  text-align: center;
  padding: 18px 0 0 10px;
  letter-spacing: 0.05em;
  font-size: 13px;
}

@media screen and (max-width: 750px) {
  .home-news-link a {
    font-size: 11px;
    height: 40px;
    padding-top: 14px;
  }
}

.worksIndex-posts {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1280px) and (min-width: 751px) {
  .worksIndex-posts {
    padding: 0 48px;
  }
}

@media screen and (max-width: 750px) {
  .worksIndex-posts {
    padding: 0 13px;
  }
}

.worksIndex-post {
  width: 33.33%;
  padding: 0 12px;
  margin-bottom: 50px;
}

@media screen and (max-width: 750px) {
  .worksIndex-post {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 40px;
  }
}

.worksIndex-post a {
  display: block;
}

.worksIndex-post h2 {
  font-size: 15px;
  font-weight: bold;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-top: 1em;
}

@media screen and (min-width: 961px) {
  .worksIndex-post h2 {
    font-size: 17px;
  }
}

@media screen and (max-width: 750px) {
  .worksIndex-post h2 {
    margin-top: 0.75em;
    font-size: 12px;
  }
}

.works-kv-img {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.l-main.is-tb .works-kv-img {
  height: 0 !important;
  padding-top: 75% !important;
}

@media screen and (max-width: 750px) {
  .works-kv-img {
    height: 0 !important;
    padding-top: 66.66%;
    /*         @media (orientation: landscape){
          padding-top: 600px;
        } */
  }
}

.works-ttl {
  padding: 120px 18px 50px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .works-ttl {
    padding: 55px 18px 40px;
  }
}

.works-ttl h2 {
  font-size: 28px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 0.7em;
}

@media screen and (max-width: 750px) {
  .works-ttl h2 {
    font-size: 16px;
  }
}

.works-ttl-name {
  font-size: 18px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 750px) {
  .works-ttl-name {
    font-size: 12px;
  }
}

.works-work-img1 {
  max-width: 1136px;
  margin: 0 auto 30px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .works-work-img1 {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 750px) {
  .works-work-img1.is-last {
    padding: 0;
  }
}

.works-work-img1Img span {
  display: block;
  padding-top: 58%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.works-work-img1ImgCap {
  margin-top: 22px;
}

.works-work-img1ImgCap.is-rb {
  text-align: right;
}

@media screen and (max-width: 750px) {
  .works-work-img1ImgCap {
    font-size: 10px;
  }
}

.works-work-img2 {
  max-width: 1136px;
  margin: 0 auto 30px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .works-work-img2 {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 750px) {
  .works-work-img2.is-last {
    padding: 0;
  }
}

.works-work-img2Img span {
  display: block;
  padding-top: 118.18%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.works-work-img2ImgCap {
  margin-top: 22px;
}

.works-work-img2ImgCap.is-rb {
  text-align: right;
}

@media screen and (max-width: 750px) {
  .works-work-img2ImgCap {
    font-size: 10px;
  }
}

.works-work-img3 {
  max-width: 1136px;
  margin: 75px auto;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .works-work-img3 {
    margin: 20px auto;
  }
}

.works-work-img3.is-w50 {
  max-width: 586px;
}

@media screen and (max-width: 750px) {
  .works-work-img3.is-last {
    padding: 0;
  }
}

.works-work-img3Inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.works-work-img3Img {
  position: relative;
  width: 100%;
}

.works-work-conceptTxt {
  font-size: 15px;
  line-height: 2;
}

@media screen and (min-width: 961px) {
  .works-work-conceptTxt {
    font-size: 15px;
  }
}

@media screen and (max-width: 750px) {
  .works-work-conceptTxt {
    font-size: 12px;
    line-height: 1.6667;
  }
}

.works-work-last {
  margin: 100px 0;
}

@media screen and (max-width: 750px) {
  .works-work-last {
    margin: 50px auto;
  }
}

.works-work-lastImg img {
  width: 100%;
}

.works-work-lastImg .m-img-caption {
  padding-left: 10px;
  padding-right: 10px;
}

.works-layout {
  max-width: 1136px;
  margin: 80px auto;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .works-layout {
    margin: 50px auto;
  }
}

.works-layout h2 {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .works-layout h2 {
    font-size: 18px;
  }
}

.works-layout h3 {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .works-layout h3 {
    font-size: 16px;
  }
}

.works-layout-txt {
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .works-layout-txt {
    font-size: 13px;
  }
}

.works-layout-txt p {
  margin-bottom: 1em;
}

.works-layout-cap {
  margin-top: .8em;
  font-size: 12px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .works-layout-cap {
    font-size: 10px;
  }
}

.works-layout-movie video {
  width: 100%;
}

@media screen and (min-width: 751px) {
  .works-layout-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .works-layout-cols.is-valign-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .works-layout-cols.is-valign-b {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .works-layout-cols.is-valign-b p:last-child {
    margin-bottom: 0 !important;
  }
  .works-layout-cols.is-valign-b .event-layout-txt {
    position: relative;
    top: 0.7em;
  }
  .works-layout-cols.is-align-a {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .works-layout-cols.is-align-b {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .works-layout-cols.is-align-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 750px) {
  .works-layout-col {
    width: auto !important;
    margin-bottom: 50px;
  }
}

.works-info {
  max-width: 876px;
  margin: 130px auto 80px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .works-info {
    margin: 50px auto;
  }
}

.works-info h2 {
  font-size: 13px;
  margin-bottom: 3em;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 750px) {
  .works-info h2 {
    font-size: 11px;
    margin-bottom: 1.2em;
  }
}

.works-info-infos {
  margin-bottom: 100px;
}

@media screen and (max-width: 750px) {
  .works-info-infos {
    margin-bottom: 40px;
  }
}

.works-info-infos:last-child {
  margin-bottom: 0;
}

.works-info h3 {
  font-size: 13px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 2em;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 750px) {
  .works-info h3 {
    font-size: 11px;
    margin-bottom: 1.2em;
  }
}

@media screen and (min-width: 751px) {
  .works-info-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 751px) {
  .works-info-col:nth-child(1) {
    width: 46%;
  }
  .works-info-col:nth-child(2) {
    width: 49%;
  }
}

.works-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  line-height: 1.8462;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 750px) {
  .works-info dl {
    font-size: 12px;
  }
}

.works-info dt {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  width: 8.5em;
  letter-spacing: 0.075em;
}

.works-info dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.works-award {
  max-width: 876px;
  margin: 130px auto 80px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .works-award {
    margin: 50px auto;
  }
}

.works-award dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  line-height: 2;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 750px) {
  .works-award dl {
    font-size: 12px;
  }
}

.works-award dt {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  width: 8.5em;
  letter-spacing: 0.075em;
}

.works-award dt span {
  display: inline-block;
  cursor: pointer;
}

.works-award dt span:hover {
  text-decoration: underline;
}

.works-award dt span:after {
  content: '＋';
  display: inline-block;
  margin-left: 0.5em;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.works-award dt.is-open span:after {
  content: '−';
}

.works-award dd {
  display: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 13px !important;
}

@media screen and (max-width: 750px) {
  .works-award dd {
    font-size: 12px !important;
  }
}

.works-sns {
  max-width: 876px;
  margin: 80px auto;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .works-sns {
    margin: 50px auto;
  }
}

.works-sns-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.works-sns h2 {
  font-size: 13px;
  margin-right: 2em;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 750px) {
  .works-sns h2 {
    font-size: 11px;
  }
}

.works-sns-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.works-sns-icons li {
  margin-right: 10px;
}

.works-sns-icons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #4B4B4B;
  border-radius: 50%;
}

.works-sns-icons img.is-fb {
  width: 8px;
}

.works-sns-icons img.is-tw {
  width: 14px;
}

.works-rela {
  max-width: 1136px;
  margin: 170px auto 0;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .works-rela {
    margin: 50px auto;
  }
}

.works-rela h2 {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.075em;
  text-align: center;
  margin-bottom: 45px;
}

@media screen and (max-width: 750px) {
  .works-rela h2 {
    font-size: 12px;
    margin-bottom: 25px;
  }
}

.works-rela-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}

.works-rela-post {
  width: 33.33%;
  padding: 0 15px;
}

.works-rela-post a {
  display: block;
}

.works-rela-postThumb {
  padding-top: 57.8035%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 750px) {
  .works-rela-postThumb {
    padding-top: 57.8035%;
  }
}

.works-rela-postCat {
  font-size: 11px;
  color: #919191;
  margin-top: 1.5em;
}

@media screen and (min-width: 961px) {
  .works-rela-postCat {
    font-size: 13px;
  }
}

@media screen and (max-width: 750px) {
  .works-rela-postCat {
    font-size: 12px;
  }
}

.works-rela-postTtl {
  font-size: 15px;
  margin-top: .3em;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 961px) {
  .works-rela-postTtl {
    font-size: 15px;
  }
}

@media screen and (max-width: 750px) {
  .works-rela-postTtl {
    font-size: 12px;
  }
}

.works-rela-slider {
  padding-bottom: 15px;
}

.postid-296 .works-work-img2Img span {
  padding-top: 67.5%;
}

.single-works .m-concept:first-child {
  margin-top: 0;
}

.expertiseIndex-cats {
  max-width: 1036px;
  margin: 0 auto;
  padding: 0 18px;
}

.expertiseIndex-cat {
  margin-bottom: 20px;
  border: 1px solid #ccc;
}

@media screen and (max-width: 750px) {
  .expertiseIndex-cat {
    margin-bottom: 9px;
  }
}

.expertiseIndex-cat a {
  display: block;
  font-size: 17px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  padding: 22px 30px 18px;
  letter-spacing: 0.05em;
  position: relative;
}

@media screen and (max-width: 750px) {
  .expertiseIndex-cat a {
    font-size: 11px;
    padding: 14px 15px 12px;
  }
}

.expertiseIndex-cat a:before {
  content: '＞';
  display: block;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 22px;
  font-weight: normal;
  color: #999;
}

@media screen and (max-width: 750px) {
  .expertiseIndex-cat a:before {
    right: 15px;
    font-size: 13px;
    -webkit-transform: translateY(-50%) scale(0.9);
            transform: translateY(-50%) scale(0.9);
  }
}

.expertiseIndex-kv-inner {
  position: relative;
}

.expertiseIndex-kv-img {
  position: relative;
}

.expertiseIndex-kv-img span {
  display: block;
  height: 440px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 1280px) {
  .expertiseIndex-kv-img span {
    height: calc(34.375vw) !important;
  }
}

@media screen and (max-width: 750px) {
  .expertiseIndex-kv-img span {
    height: 200px;
  }
}

.expertiseIndex-kv h1 {
  font-size: 36px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  letter-spacing: 0.05em;
  z-index: 1;
}

@media screen and (max-width: 750px) {
  .expertiseIndex-kv h1 {
    font-size: 20px;
  }
}

.expertiseIndex-lead-inner {
  padding: 90px 18px;
  max-width: 980px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .expertiseIndex-lead-inner {
    padding: 45px 18px;
  }
}

.expertiseIndex-lead h2 {
  font-size: 24px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 1em;
}

@media screen and (max-width: 750px) {
  .expertiseIndex-lead h2 {
    font-size: 14px;
  }
}

.expertiseIndex-lead p {
  font-size: 15px;
  line-height: 2;
}

@media screen and (min-width: 961px) {
  .expertiseIndex-lead p {
    font-size: 17px;
  }
}

@media screen and (max-width: 750px) {
  .expertiseIndex-lead p {
    font-size: 11px;
    text-align: left;
  }
}

.expertiseIndex-leadImg-inner {
  padding: 0 18px 90px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .expertiseIndex-leadImg-inner {
    padding: 0 18px 45px;
  }
}

.expertiseIndex-leadImg-img {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
}

.expertiseIndex-posts {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 90px;
}

@media screen and (max-width: 1280px) and (min-width: 751px) {
  .expertiseIndex-posts {
    padding: 0 60px;
  }
}

@media screen and (max-width: 750px) {
  .expertiseIndex-posts {
    padding: 0 18px;
  }
}

.expertiseIndex-post {
  margin-bottom: 40px;
}

@media screen and (max-width: 750px) {
  .expertiseIndex-post {
    margin-bottom: 25px;
  }
}

.expertiseIndex-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .expertiseIndex-post a {
    display: block;
  }
}

.expertiseIndex-post-thumb {
  width: 58%;
}

@media screen and (max-width: 750px) {
  .expertiseIndex-post-thumb {
    width: auto;
  }
}

.expertiseIndex-post-thumb span {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 49.76%;
}

@media screen and (max-width: 750px) {
  .expertiseIndex-post-thumb span {
    width: auto;
  }
}

.expertiseIndex-post-info {
  width: 39%;
  margin-left: 3%;
  border-top: 1px solid #878787;
  padding: 50px 20px 30px;
}

@media screen and (max-width: 750px) {
  .expertiseIndex-post-info {
    width: auto;
    border-top: none;
    margin-left: 0;
    padding: 20px 20px 0;
  }
}

.expertiseIndex-post-info h2 {
  margin-bottom: 0.5em;
  font-size: 20px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  line-height: 1.7;
}

@media screen and (min-width: 1501px) {
  .expertiseIndex-post-info h2 {
    font-size: 22.44px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 1021px) {
  .expertiseIndex-post-info h2 {
    font-size: 1.47vw;
  }
}

@media screen and (max-width: 1020px) and (min-width: 751px) {
  .expertiseIndex-post-info h2 {
    font-size: 1.4vw;
  }
}

@media screen and (max-width: 750px) {
  .expertiseIndex-post-info h2 {
    font-size: 13px;
  }
}

.expertiseIndex-post-name {
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 1501px) {
  .expertiseIndex-post-name {
    font-size: 18.752px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .expertiseIndex-post-name {
    font-size: 1.25vw;
  }
}

@media screen and (max-width: 750px) {
  .expertiseIndex-post-name {
    font-size: 11px;
  }
}

.expertiseIndex-post-txt {
  font-size: 14px;
  line-height: 2;
}

@media screen and (min-width: 1501px) {
  .expertiseIndex-post-txt {
    font-size: 16.408px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .expertiseIndex-post-txt {
    font-size: 1.0938vw;
  }
}

@media screen and (max-width: 750px) {
  .expertiseIndex-post-txt {
    font-size: 11px;
  }
}

.term-computational_design_bim .expertiseIndex-kv-img:before {
  background-color: transparent;
}

.term-computational_design_bim .expertiseIndex-kv h1 {
  color: #323232;
}

.expertise-kv-inner {
  position: relative;
}

.expertise-kv-img {
  position: relative;
}

.expertise-kv-img span {
  display: block;
  height: calc(100vh - 70px);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.l-main.is-tb .expertise-kv-img span {
  height: 0 !important;
  padding-top: 75% !important;
}

@media screen and (max-width: 750px) {
  .expertise-kv-img span {
    height: calc(100vh - 57px);
  }
}

.expertise-kv h1 {
  font-size: 32px;
  line-height: 1.5625;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  position: absolute;
  left: 0;
  top: 50%;
  padding: 0 18px 1em;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 750px) {
  .expertise-kv h1 {
    font-size: 18px;
  }
}

.expertise-kv-name {
  font-size: 15px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  position: absolute;
  left: 0;
  bottom: 45px;
  width: 100%;
  text-align: center;
  padding: 0 18px;
  z-index: 1;
}

@media screen and (max-width: 750px) {
  .expertise-kv-name {
    bottom: 25px;
    font-size: 10px;
  }
}

.expertise-kv-cap {
  font-size: 10px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  text-align: right;
  padding: 0 15px;
  z-index: 1;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .expertise-kv-cap {
    bottom: 5px;
  }
}

.expertise-conImgHtxt {
  max-width: 1400px;
  margin: 100px auto 50px;
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt {
    margin: 40px auto 20px;
  }
}

.expertise-conImgHtxt.is-max {
  max-width: 1136px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt.is-max {
    padding: 0;
  }
}

.expertise-conImgHtxt-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt-inner {
    display: block;
    padding: 0 18px;
  }
}

.expertise-conImgHtxt.is-txtVaC .expertise-conImgHtxt-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.expertise-conImgHtxt-col1 {
  width: 50%;
  padding: 0 70px 0;
}

.expertise-conImgHtxt.is-max .expertise-conImgHtxt-col1 {
  padding-right: 0;
}

@media screen and (min-width: 1280px) {
  .expertise-conImgHtxt-col1 {
    width: calc(100vw - 640px);
  }
  .expertise-conImgHtxt.is-max .expertise-conImgHtxt-col1 {
    width: 50%;
  }
}

@media screen and (min-width: 1400px) {
  .expertise-conImgHtxt-col1 {
    width: calc(1400px - 640px);
  }
  .expertise-conImgHtxt.is-max .expertise-conImgHtxt-col1 {
    width: 50%;
  }
}

@media screen and (min-width: 751px) {
  .expertise-conImgHtxt-col1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 960px) {
  .expertise-conImgHtxt-col1 {
    padding: 0 50px 0;
  }
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt-col1 {
    width: auto;
    padding: 0;
  }
}

.expertise-conImgHtxt-col2 {
  width: 50%;
}

@media screen and (min-width: 1280px) {
  .expertise-conImgHtxt-col2 {
    width: 640px;
  }
  .expertise-conImgHtxt.is-max .expertise-conImgHtxt-col2 {
    width: 50%;
  }
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt-col2 {
    width: auto;
  }
}

.expertise-conImgHtxt-img {
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt-img {
    margin-bottom: 0;
  }
}

.expertise-conImgHtxt-cap {
  padding-left: 2.5em;
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt-cap {
    font-size: 10px;
    padding-left: 0;
  }
}

.expertise-conImgHtxt.is-max .expertise-conImgHtxt-cap {
  padding-left: 0;
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt.is-max .expertise-conImgHtxt-cap {
    padding-left: 0;
  }
}

.expertise-conImgHtxt-num {
  color: #bebebe;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt-num {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    margin-bottom: -30px;
  }
}

.expertise-conImgHtxt-num small {
  font-size: 12px;
  display: block;
  padding: 0 0 0.5em .2em;
  letter-spacing: 0.075em;
}

.expertise-conImgHtxt-num span {
  font-size: 80px;
  position: relative;
  right: 3px;
}

.expertise-conImgHtxt-num span:before {
  content: '';
  display: block;
  position: absolute;
  left: 90%;
  top: 36%;
  width: 80px;
  height: 1px;
  background-color: #bebebe;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.expertise-conImgHtxt h2 {
  font-size: 25px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin: .5em 0 2em;
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt h2 {
    font-size: 16px;
    margin-bottom: 1.5em;
  }
}

.expertise-conImgHtxt-txt {
  font-size: 15px;
  line-height: 2;
}

@media screen and (min-width: 961px) {
  .expertise-conImgHtxt-txt {
    font-size: 15px;
  }
}

@media screen and (min-width: 751px) {
  .expertise-conImgHtxt-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt-txt {
    font-size: 12px;
    line-height: 1.6667;
    margin-bottom: 30px;
  }
}

.expertise-conImgHtxt-txt p {
  margin-bottom: 1.5em;
}

.expertise-conImgHtxt-txt strong {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.expertise-conImgHtxt-img2 {
  margin-top: auto;
  margin-bottom: 20px;
  min-height: 0%;
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt-img2 {
    margin-top: 0;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 750px) {
  .expertise-conImgHtxt-cap2 {
    font-size: 10px;
  }
}

.expertise-conHtxtImg {
  width: 100%;
  max-width: 1400px;
  margin: 100px auto 50px;
}

.expertise-conHtxtImg-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg-wrap {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg {
    margin: 40px auto 20px;
  }
}

.expertise-conHtxtImg.is-max {
  max-width: 1136px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg.is-max {
    padding: 0;
  }
}

.expertise-conHtxtImg-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg-inner {
    display: block;
    padding: 0 18px;
  }
}

.expertise-conHtxtImg.is-txtVaC .expertise-conHtxtImg-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.expertise-conHtxtImg-col1 {
  width: 50%;
  padding: 0 70px 0;
}

.expertise-conHtxtImg.is-max .expertise-conHtxtImg-col1 {
  padding-left: 0;
}

@media screen and (min-width: 1280px) {
  .expertise-conHtxtImg-col1 {
    width: calc(100vw - 640px);
  }
  .expertise-conHtxtImg.is-max .expertise-conHtxtImg-col1 {
    width: 50%;
  }
}

@media screen and (min-width: 1400px) {
  .expertise-conHtxtImg-col1 {
    width: calc(1400px - 640px);
  }
  .expertise-conHtxtImg.is-max .expertise-conHtxtImg-col1 {
    width: 50%;
  }
}

@media screen and (min-width: 751px) {
  .expertise-conHtxtImg-col1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 960px) {
  .expertise-conHtxtImg-col1 {
    padding: 0 50px 0;
  }
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg-col1 {
    width: auto;
    padding: 0;
  }
}

.expertise-conHtxtImg-col2 {
  width: 50%;
}

@media screen and (min-width: 1280px) {
  .expertise-conHtxtImg-col2 {
    width: 640px;
  }
  .expertise-conHtxtImg.is-max .expertise-conHtxtImg-col2 {
    width: 50%;
  }
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg-col2 {
    width: auto;
  }
}

.expertise-conHtxtImg-img {
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg-img {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg-cap {
    font-size: 10px;
  }
}

.expertise-conHtxtImg-num {
  color: #bebebe;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg-num {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    margin-bottom: -30px;
  }
}

.expertise-conHtxtImg-num small {
  font-size: 12px;
  display: block;
  padding: 0 0 0.5em .5em;
  letter-spacing: 0.075em;
}

.expertise-conHtxtImg-num span {
  font-size: 80px;
  position: relative;
}

.expertise-conHtxtImg-num span:before {
  content: '';
  display: block;
  position: absolute;
  left: 90%;
  top: 36%;
  width: 80px;
  height: 1px;
  background-color: #bebebe;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.expertise-conHtxtImg h2 {
  font-size: 25px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin: .5em 0 2em;
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg h2 {
    font-size: 16px;
    margin-bottom: 1.5em;
  }
}

.expertise-conHtxtImg-txt {
  font-size: 15px;
  line-height: 2;
}

@media screen and (min-width: 961px) {
  .expertise-conHtxtImg-txt {
    font-size: 15px;
  }
}

@media screen and (min-width: 751px) {
  .expertise-conHtxtImg-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg-txt {
    font-size: 12px;
    line-height: 1.6667;
    margin-bottom: 30px;
  }
}

.expertise-conHtxtImg-txt p {
  margin-bottom: 1.5em;
}

.expertise-conHtxtImg-txt strong {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.expertise-conHtxtImg-img2 {
  margin-top: auto;
  margin-bottom: 20px;
  min-height: 0%;
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg-img2 {
    margin-top: 0;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 750px) {
  .expertise-conHtxtImg-cap2 {
    font-size: 10px;
  }
}

.expertise-conHtxtTxt .expertise-conHtxtImg-img2 {
  min-height: 0%;
}

.expertise-conHtxt {
  max-width: 716px;
  padding: 0 18px;
  margin: 100px auto 50px;
}

@media screen and (max-width: 750px) {
  .expertise-conHtxt {
    margin: 40px auto 20px;
  }
}

.expertise-conHtxt.is-l {
  max-width: 1136px;
}

.expertise-conHtxt-num {
  color: #bebebe;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .expertise-conHtxt-num {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    margin-bottom: -30px;
  }
}

.expertise-conHtxt-num small {
  font-size: 12px;
  display: block;
  padding: 0 0 0.5em .5em;
  letter-spacing: 0.075em;
}

.expertise-conHtxt-num span {
  font-size: 80px;
  position: relative;
}

.expertise-conHtxt-num span:before {
  content: '';
  display: block;
  position: absolute;
  left: 90%;
  top: 36%;
  width: 80px;
  height: 1px;
  background-color: #bebebe;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.expertise-conHtxt h2 {
  font-size: 25px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin: .5em 0 2em;
}

@media screen and (max-width: 750px) {
  .expertise-conHtxt h2 {
    font-size: 16px;
    margin-bottom: 1.5em;
  }
}

.expertise-conHtxt-txt {
  font-size: 15px;
  line-height: 2;
}

@media screen and (min-width: 961px) {
  .expertise-conHtxt-txt {
    font-size: 15px;
  }
}

@media screen and (max-width: 750px) {
  .expertise-conHtxt-txt {
    font-size: 12px;
    line-height: 1.6667;
    margin-bottom: 30px;
  }
}

.expertise-conHtxt-txt p {
  margin-bottom: 1.5em;
}

.expertise-conHtxt-txt strong {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.expertise-conImg {
  max-width: 1136px;
  margin: 0 auto;
  padding: 0 18px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 750px) {
  .expertise-conImg {
    margin: 0 auto 20px;
  }
}

.expertise-conImg-img {
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .expertise-conImg-img {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 750px) {
  .expertise-conImg-cap {
    font-size: 10px;
  }
}

.expertise-conImg100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 750px) {
  .expertise-conImg100 {
    margin-bottom: 30px;
  }
}

.expertise-conImg100:last-child {
  margin-bottom: 0;
}

.expertise-conImg + .expertise-conImg100 {
  margin-top: 140px;
}

@media screen and (max-width: 750px) {
  .expertise-conImg + .expertise-conImg100 {
    margin-top: 40px;
  }
}

.expertise-conImg100-img {
  margin-bottom: 20px;
}

.expertise-conImg100-img img {
  width: 100%;
}

.expertise-conImg100-cap {
  padding-left: 2.5em;
  padding-right: 2.5em;
  font-size: 13px;
}

@media screen and (max-width: 750px) {
  .expertise-conImg100-cap {
    font-size: 10px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

.expertise-conMovie {
  max-width: 1136px;
  margin: 0 auto;
  padding: 0 18px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 750px) {
  .expertise-conMovie {
    margin: 0 auto 20px;
  }
}

.expertise-conMovie-movie {
  position: relative;
  padding-top: 50%;
  margin-bottom: 20px;
}

.expertise-conMovie-movie video {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.expertise-conMovie-cap {
  margin: -5px 0 20px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .expertise-conMovie-cap {
    font-size: 10px;
  }
}

.expertise-layout {
  max-width: 1136px;
  margin: 80px auto;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .expertise-layout {
    margin: 50px auto;
  }
}

.expertise-layout h2 {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .expertise-layout h2 {
    font-size: 18px;
  }
}

.expertise-layout h3 {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .expertise-layout h3 {
    font-size: 16px;
  }
}

.expertise-layout-txt {
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .expertise-layout-txt {
    font-size: 13px;
  }
}

.expertise-layout-txt p {
  margin-bottom: 1em;
}

@media screen and (max-width: 750px) {
  .expertise-layout-cap {
    font-size: 10px;
  }
}

.expertise-layout-movie video {
  width: 100%;
}

@media screen and (min-width: 751px) {
  .expertise-layout-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .expertise-layout-cols.is-valign-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .expertise-layout-cols.is-valign-b {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .expertise-layout-cols.is-valign-b p:last-child {
    margin-bottom: 0 !important;
  }
  .expertise-layout-cols.is-valign-b .expertise-layout-txt {
    position: relative;
    top: 0.7em;
  }
}

@media screen and (max-width: 750px) {
  .expertise-layout-col {
    width: auto !important;
    margin-bottom: 50px;
  }
}

.expertise-interview {
  margin: -30px 0 -60px;
}

@media screen and (max-width: 750px) {
  .expertise-interview {
    margin: 30px 0 0;
  }
}

.expertise-interview-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1136px;
  margin: 0 auto;
  padding: 0 3px;
}

@media screen and (max-width: 750px) {
  .expertise-interview-items {
    display: block;
  }
}

.expertise-interview-item {
  width: 50%;
  padding: 30px 15px 30px;
}

@media screen and (max-width: 750px) {
  .expertise-interview-item {
    width: auto;
  }
}

.expertise-interview-item h2 {
  font-size: 21px;
  font-weight: bold;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 750px) {
  .expertise-interview-item h2 {
    font-size: 16px;
  }
}

.expertise-interview-itemInner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #969696;
  padding: 40px;
}

@media screen and (max-width: 750px) {
  .expertise-interview-itemInner {
    padding: 20px;
  }
}

.expertise-interview-itemName {
  font-size: 15px;
  margin-bottom: 2em;
}

@media screen and (max-width: 750px) {
  .expertise-interview-itemName {
    font-size: 13px;
  }
}

.expertise-interview-itemTxt {
  margin-bottom: 1em;
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .expertise-interview-itemTxt {
    font-size: 13px;
  }
}

.expertise-interview-itemImg {
  margin-top: auto;
  max-width: 150px;
  min-height: 0%;
}

.expertise-layout.expertise-layout-cols2Sec {
  margin: 0px auto 80px;
}

@media screen and (max-width: 750px) {
  .expertise-layout.expertise-layout-cols2Sec {
    margin: 0px auto 30px;
  }
}

@media screen and (max-width: 750px) {
  .expertise-layout.expertise-layout-cols2Sec .expertise-layout-col {
    margin-bottom: 20px;
  }
}

.postid-587 .expertise-conImgHtxt.is-max .expertise-conImgHtxt-col1:first-child {
  padding-right: 0;
  padding-left: 34px;
}

@media screen and (max-width: 750px) {
  .postid-587 .expertise-conImgHtxt.is-max .expertise-conImgHtxt-col1:first-child {
    padding-left: 0px;
  }
}

.postid-1844 .expertise-kv-cap {
  position: absolute;
  bottom: -25px;
  right: 0;
  padding-right: 5%;
  color: #323232;
  font-size: 14px;
  font-weight: normal;
}

@media screen and (max-width: 750px) {
  .postid-1844 .expertise-kv-cap {
    bottom: -30px;
    font-size: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 750px) {
  .postid-1844 .expertise-conHtxt.is-l:first-child {
    margin-top: 50px;
  }
}

.postid-1844 .l-main img {
  width: 100%;
}

.insightsIndex-lead {
  padding: 0 18px 40px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

@media screen and (max-width: 750px) {
  .insightsIndex-lead {
    padding: 0;
  }
}

.insightsIndex-posts {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 90px;
}

@media screen and (max-width: 1280px) and (min-width: 751px) {
  .insightsIndex-posts {
    padding: 0 60px;
  }
}

@media screen and (max-width: 750px) {
  .insightsIndex-posts {
    padding: 0 18px;
  }
}

.insightsIndex-post {
  margin-bottom: 40px;
}

@media screen and (max-width: 750px) {
  .insightsIndex-post {
    margin-bottom: 25px;
  }
}

.insightsIndex-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .insightsIndex-post a {
    display: block;
  }
}

.insightsIndex-post-thumb {
  width: 69%;
}

@media screen and (max-width: 750px) {
  .insightsIndex-post-thumb {
    width: auto;
  }
}

.insightsIndex-post-thumb span {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 48.68%;
}

@media screen and (max-width: 750px) {
  .insightsIndex-post-thumb span {
    width: auto;
  }
}

.insightsIndex-post-info {
  width: 28%;
  margin-left: 3%;
  border-top: 1px solid #878787;
  padding: 50px 30px 30px 30px;
}

@media screen and (max-width: 750px) {
  .insightsIndex-post-info {
    width: auto;
    border-top: none;
    margin-left: 0;
    padding: 20px 20px 0;
  }
}

.insightsIndex-post-info h2 {
  margin-bottom: 0.5em;
  font-size: 23px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 1501px) {
  .insightsIndex-post-info h2 {
    font-size: 26.956px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .insightsIndex-post-info h2 {
    font-size: 1.7969vw;
  }
}

@media screen and (max-width: 750px) {
  .insightsIndex-post-info h2 {
    font-size: 14px;
  }
}

.insightsIndex-post-info h2 img.is-icon {
  display: inline-block;
  margin-left: 10px;
  width: 15px;
  vertical-align: 2%;
}

.insightsIndex-post-copy {
  font-size: 20px;
  line-height: 1.6;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 1.3em;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 1501px) {
  .insightsIndex-post-copy {
    font-size: 23.44px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .insightsIndex-post-copy {
    font-size: 1.5625vw;
  }
}

@media screen and (max-width: 750px) {
  .insightsIndex-post-copy {
    font-size: 13px;
    margin-bottom: 0.5em;
  }
}

.insightsIndex-post-name {
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 1501px) {
  .insightsIndex-post-name {
    font-size: 18.752px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .insightsIndex-post-name {
    font-size: 1.25vw;
  }
}

@media screen and (max-width: 750px) {
  .insightsIndex-post-name {
    font-size: 11px;
  }
}

.insightsIndex-post-txt {
  font-size: 14px;
  line-height: 2;
  margin-right: -10px;
}

@media screen and (min-width: 1501px) {
  .insightsIndex-post-txt {
    font-size: 16.408px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .insightsIndex-post-txt {
    font-size: 1.0938vw;
  }
}

@media screen and (max-width: 750px) {
  .insightsIndex-post-txt {
    font-size: 11px;
  }
}

.insights-kv-inner {
  position: relative;
}

.insights-kv-img {
  position: relative;
}

.insights-kv-img span {
  display: block;
  height: calc(100vh - 70px);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.l-main.is-tb .insights-kv-img span {
  height: 0 !important;
  padding-top: 75% !important;
}

@media screen and (max-width: 750px) {
  .insights-kv-img span {
    height: calc(100vh - 57px);
  }
}

.insights-kv h1 {
  font-size: 36px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  position: absolute;
  left: 0;
  top: 50%;
  padding: 0 18px;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 750px) {
  .insights-kv h1 {
    font-size: 18px;
  }
}

.insights-kv-name {
  font-size: 15px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 45px;
  width: 100%;
  text-align: center;
  padding: 0 18px;
  z-index: 1;
}

@media screen and (max-width: 750px) {
  .insights-kv-name {
    bottom: 25px;
    font-size: 10px;
  }
}

.insights-conImgHtxt {
  max-width: 1112px;
  margin: 100px auto 110px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .insights-conImgHtxt {
    margin-top: 40px;
    margin-bottom: 0;
    padding: 0;
  }
}

.insights-conImgHtxt-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 750px) {
  .insights-conImgHtxt-inner {
    display: block;
    padding: 0 18px;
  }
}

.insights-conImgHtxt.is-txtVaC .insights-conImgHtxt-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.insights-conImgHtxt-col1 {
  width: 50%;
  padding: 0 0 0 30px;
}

@media screen and (max-width: 750px) {
  .insights-conImgHtxt-col1 {
    width: auto;
    padding: 0;
  }
}

.insights-conImgHtxt.is-imgS .insights-conImgHtxt-col1 {
  width: 68%;
}

@media screen and (max-width: 750px) {
  .insights-conImgHtxt.is-imgS .insights-conImgHtxt-col1 {
    width: auto;
  }
}

.insights-conImgHtxt-col2 {
  width: 50%;
}

@media screen and (max-width: 750px) {
  .insights-conImgHtxt-col2 {
    width: auto;
  }
}

.insights-conImgHtxt.is-imgS .insights-conImgHtxt-col2 {
  width: 32%;
}

@media screen and (max-width: 750px) {
  .insights-conImgHtxt.is-imgS .insights-conImgHtxt-col2 {
    width: auto;
  }
}

.insights-conImgHtxt-img {
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .insights-conImgHtxt-cap {
    font-size: 10px;
  }
}

.insights-conImgHtxt h2 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 30px;
  padding: 0 0 0 90px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1.25;
}

@media screen and (max-width: 750px) {
  .insights-conImgHtxt h2 {
    padding-left: 75px;
    height: 48px;
    font-size: 16px;
    margin-bottom: 1.5em;
  }
}

.insights-conImgHtxt h2 span {
  position: absolute;
  left: -3px;
  top: 10px;
  font-weight: normal;
  color: #bebebe;
  line-height: 1;
  font-size: 70px;
  font-family: HelveticaNeueLTStd-Roman, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 750px) {
  .insights-conImgHtxt h2 span {
    top: 8px;
    font-size: 52px;
  }
}

.insights-conImgHtxt-txt {
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .insights-conImgHtxt-txt {
    font-size: 12px;
    line-height: 1.6667;
    margin-bottom: 30px;
  }
}

.insights-conImgHtxt-img2 {
  margin-top: 80px;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .insights-conImgHtxt-img2 {
    margin-top: 0;
    margin-bottom: 20px;
  }
}

.insights-conHtxtImg {
  max-width: 1136px;
  margin: 100px auto 110px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .insights-conHtxtImg {
    margin-top: 40px;
    margin-bottom: 0;
    padding: 0;
  }
}

.insights-conHtxtImg-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .insights-conHtxtImg-inner {
    display: block;
    padding: 0 18px;
  }
}

.insights-conHtxtImg.is-txtVaC .insights-conHtxtImg-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.insights-conHtxtImg-col1 {
  width: 50%;
  padding: 0 30px 0 0;
}

@media screen and (max-width: 750px) {
  .insights-conHtxtImg-col1 {
    width: auto;
    padding: 0;
  }
}

.insights-conHtxtImg.is-imgS .insights-conHtxtImg-col1 {
  width: 68%;
}

@media screen and (max-width: 750px) {
  .insights-conHtxtImg.is-imgS .insights-conHtxtImg-col1 {
    width: auto;
  }
}

.insights-conHtxtImg-col2 {
  width: 50%;
}

@media screen and (max-width: 750px) {
  .insights-conHtxtImg-col2 {
    width: auto;
  }
}

.insights-conHtxtImg.is-imgS .insights-conHtxtImg-col2 {
  width: 32%;
}

@media screen and (max-width: 750px) {
  .insights-conHtxtImg.is-imgS .insights-conHtxtImg-col2 {
    width: auto;
  }
}

.insights-conHtxtImg-img {
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .insights-conHtxtImg-cap {
    font-size: 10px;
  }
}

.insights-conHtxtImg h2 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 30px;
  padding: 0 0 0 90px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1.25;
}

@media screen and (max-width: 750px) {
  .insights-conHtxtImg h2 {
    padding-left: 75px;
    height: 48px;
    font-size: 16px;
    margin-bottom: 1.5em;
  }
}

.insights-conHtxtImg h2 span {
  position: absolute;
  left: -3px;
  top: 10px;
  font-weight: normal;
  color: #bebebe;
  line-height: 1;
  font-size: 70px;
  font-family: HelveticaNeueLTStd-Roman, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 750px) {
  .insights-conHtxtImg h2 span {
    top: 8px;
    font-size: 52px;
  }
}

.insights-conHtxtImg-txt {
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .insights-conHtxtImg-txt {
    font-size: 12px;
    line-height: 1.6667;
    margin-bottom: 30px;
  }
}

.insights-conHtxtImg-img2 {
  margin-top: 80px;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .insights-conHtxtImg-img2 {
    margin-top: 0;
    margin-bottom: 20px;
  }
}

.insights-conHtxt {
  max-width: 1136px;
  margin: 100px auto 50px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .insights-conHtxt {
    margin-top: 40px;
    margin-bottom: 0;
  }
}

.insights-conHtxt h2 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 30px;
  padding: 0 0 0 90px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 750px) {
  .insights-conHtxt h2 {
    padding-left: 75px;
    height: 48px;
    font-size: 16px;
    margin-bottom: 1.5em;
  }
}

.insights-conHtxt h2 span {
  position: absolute;
  left: -3px;
  top: 10px;
  font-weight: normal;
  color: #bebebe;
  line-height: 1;
  font-size: 70px;
  font-family: HelveticaNeueLTStd-Roman, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 750px) {
  .insights-conHtxt h2 span {
    top: 8px;
    font-size: 52px;
  }
}

.insights-conHtxt-txt {
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .insights-conHtxt-txt {
    font-size: 12px;
    line-height: 1.6667;
    margin-bottom: 30px;
  }
}

.insights-conImg {
  max-width: 1136px;
  margin: 0 auto;
  padding: 0 18px;
}

.insights-conImg-img {
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .insights-conImg-cap {
    font-size: 10px;
  }
}

.insights-conImg100 {
  margin-bottom: 110px;
}

@media screen and (max-width: 750px) {
  .insights-conImg100 {
    margin-bottom: 30px;
  }
}

.insights-conImg100:last-child {
  margin-bottom: 0;
}

.insights-conImg + .insights-conImg100 {
  margin-top: 110px;
}

@media screen and (max-width: 750px) {
  .insights-conImg + .insights-conImg100 {
    margin-top: 40px;
  }
}

.insights-conImg100-img {
  margin-bottom: 20px;
}

.insights-conImg100-img img {
  width: 100%;
}

.insights-conImg100-cap {
  max-width: 1128px;
  margin: 30px auto 20px;
  padding: 0 2.5em;
  line-height: 2;
  font-size: 15px;
  font-weight: bold;
}

.insights-conImg100-cap.is-rb {
  text-align: right;
}

@media screen and (max-width: 750px) {
  .insights-conImg100-cap {
    font-size: 10px;
    padding: 0 18px;
  }
}

.insights-conMovie {
  max-width: 1136px;
  margin: 0 auto 110px;
  padding: 0 18px;
}

.insights-conMovie-movie {
  position: relative;
  padding-top: 50%;
  margin-bottom: 20px;
}

.insights-conMovie-movie video {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.insights-conMovie-cap {
  margin: -5px 0 20px;
  font-weight: bold;
}

.insights-conMovie-cap.is-rb {
  text-align: right;
}

@media screen and (max-width: 750px) {
  .insights-conMovie-cap {
    font-size: 10px;
  }
}

.insights-layout {
  max-width: 1136px;
  margin: 80px auto;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .insights-layout {
    margin: 50px auto;
  }
}

.insights-layout h2 {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .insights-layout h2 {
    font-size: 18px;
  }
}

.insights-layout h3 {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .insights-layout h3 {
    font-size: 16px;
  }
}

.insights-layout-txt {
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .insights-layout-txt {
    font-size: 13px;
  }
}

.insights-layout-txt p {
  margin-bottom: 1em;
}

@media screen and (max-width: 750px) {
  .insights-layout-cap {
    font-size: 10px;
  }
}

.insights-layout-movie video {
  width: 100%;
}

@media screen and (min-width: 751px) {
  .insights-layout-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .insights-layout-cols.is-valign-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .insights-layout-cols.is-valign-b {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .insights-layout-cols.is-valign-b p:last-child {
    margin-bottom: 0 !important;
  }
  .insights-layout-cols.is-valign-b .insights-layout-txt {
    position: relative;
    top: 0.7em;
  }
}

@media screen and (max-width: 750px) {
  .insights-layout-col {
    width: auto !important;
    margin-bottom: 50px;
  }
}

.insights-team {
  max-width: 876px;
  margin: 130px auto 80px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .insights-team {
    margin: 50px auto;
  }
}

.insights-team h2 {
  font-size: 13px;
  margin-bottom: 3em;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 750px) {
  .insights-team h2 {
    font-size: 11px;
    margin-bottom: 1.2em;
  }
}

.insights-team-memberWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  .insights-team-memberWrap {
    margin: 0 -7px;
  }
}

.insights-team-member {
  width: 140px;
  margin-right: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .insights-team-member {
    width: 33.33%;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 0 7px;
  }
}

.insights-team-memberImg img {
  width: 100%;
}

.insights-team-memberName {
  font-size: 12px;
  margin-top: 1em;
}

@media screen and (max-width: 750px) {
  .insights-team-memberName {
    font-size: 10px;
  }
}

@media screen and (max-width: 750px) {
  .publicityIndex-ttl {
    padding: 30px 18px 25px !important;
  }
}

@media screen and (max-width: 750px) {
  .publicityIndex-ttl h1 {
    margin: 0;
  }
}

.publicityIndex-posts {
  max-width: 1106px;
  margin: 0 auto;
  padding: 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  .publicityIndex-posts {
    padding-top: 20px;
  }
}

.publicityIndex-post {
  width: 25%;
  padding: 0 2%;
  margin-bottom: 55px;
}

@media screen and (max-width: 750px) {
  .publicityIndex-post {
    width: 50%;
    padding: 0 5%;
    margin-bottom: 35px;
  }
}

.publicityIndex-post-thumb span {
  display: block;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  padding-top: 111%;
}

.publicityIndex-post-txt {
  padding: 15px 9% 0;
  font-size: 13px;
  line-height: 1.54;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 750px) {
  .publicityIndex-post-txt {
    font-size: 10px;
  }
}

.publicityIndex-bottomBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 750px) {
  .publicityIndex-bottomBtns {
    display: block;
  }
}

.publicityIndex-bottomBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 17px 0;
}

@media screen and (max-width: 750px) {
  .publicityIndex-bottomBtn {
    margin: 20px 0 0;
  }
}

.publicityIndex-bottomBtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 353px;
  height: 62px;
  border: 1px solid #C8C8C8;
  font-size: 13px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 750px) {
  .publicityIndex-bottomBtn a {
    width: 302px;
    height: 47px;
    font-size: 11px;
  }
}

.publicityIndex-bottomBtn a .is-blank {
  display: inline-block;
  width: 14px;
  margin-left: 10px;
  vertical-align: baseline;
  position: relative;
  top: 2px;
}

@media screen and (max-width: 750px) {
  .publicityIndex-bottomBtn a .is-blank {
    width: 12px;
    margin-left: 8px;
  }
}

@media screen and (max-width: 750px) {
  .awardsIndex-ttl {
    padding: 30px 18px 15px !important;
  }
}

@media screen and (max-width: 750px) {
  .awardsIndex-ttl h1 {
    margin: 0;
  }
}

.awardsIndex-years {
  margin-top: -15px;
  margin-bottom: 45px;
}

@media screen and (max-width: 750px) {
  .awardsIndex-years {
    margin-bottom: 0;
    margin-top: 30px;
  }
}

.awardsIndex-years ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.awardsIndex-years li {
  font-size: 18px;
  letter-spacing: 0.07em;
  margin: 0 1.5em;
}

@media screen and (max-width: 750px) {
  .awardsIndex-years li {
    margin: 0 1em;
    font-size: 10px;
  }
}

.awardsIndex-years li a {
  color: #ccc;
}

.awardsIndex-years li a:hover {
  text-decoration: underline;
}

.awardsIndex-years li.is-cr a {
  color: #323232;
}

.awardsIndex-years li img.is-blank {
  display: inline-block;
  width: 14px;
  vertical-align: baseline;
}

@media screen and (max-width: 750px) {
  .awardsIndex-years li img.is-blank {
    width: 7px;
  }
}

.awardsIndex-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 90px 0;
}

@media screen and (max-width: 1280px) and (min-width: 751px) {
  .awardsIndex-posts {
    padding: 0 60px 0;
  }
}

@media screen and (max-width: 750px) {
  .awardsIndex-posts {
    padding: 20px 18px 0;
  }
}

.awardsIndex-note {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 90px 0;
  font-size: 13px;
}

@media screen and (max-width: 1280px) and (min-width: 751px) {
  .awardsIndex-note {
    padding: 0 60px 0;
  }
}

@media screen and (min-width: 1501px) {
  .awardsIndex-note {
    font-size: 15.236px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .awardsIndex-note {
    font-size: 1.0156vw;
  }
}

@media screen and (max-width: 750px) {
  .awardsIndex-note {
    padding: 20px 18px 0;
    font-size: 10px;
    display: block;
  }
}

.awardsIndex-note-title {
  white-space: nowrap;
  padding-left: 1.2%;
}

@media screen and (max-width: 750px) {
  .awardsIndex-note-title {
    padding-bottom: 10px;
  }
}

.awardsIndex-note-body {
  margin-left: 2vw;
}

.awardsIndex-post {
  width: 33.33%;
  padding: 0 1.2%;
  margin-bottom: 65px;
}

@media screen and (max-width: 750px) {
  .awardsIndex-post {
    width: 50%;
    padding: 0 1.2%;
    margin-bottom: 15px;
  }
}

.awardsIndex-post-thumb span {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 65.71%;
}

@media screen and (max-width: 750px) {
  .awardsIndex-post-info {
    min-height: 37px;
  }
}

.awardsIndex-post h2 {
  line-height: 1.5385;
  font-size: 13px;
  font-weight: bold;
  margin-top: 1.1em;
  margin-bottom: 0.4em;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 1501px) {
  .awardsIndex-post h2 {
    font-size: 15.236px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .awardsIndex-post h2 {
    font-size: 1.0156vw;
  }
}

@media screen and (max-width: 750px) {
  .awardsIndex-post h2 {
    line-height: 1.3333;
    margin-top: 0.8em;
    margin-bottom: 0.3em;
    font-size: 10px;
  }
}

.awardsIndex-post-name {
  font-size: 13px;
}

@media screen and (min-width: 1501px) {
  .awardsIndex-post-name {
    font-size: 15.236px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .awardsIndex-post-name {
    font-size: 1.0156vw;
  }
}

@media screen and (max-width: 750px) {
  .awardsIndex-post-name {
    font-size: 10px;
  }
}

.about-mes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 90px 70px;
}

@media screen and (max-width: 750px) {
  .about-mes {
    display: block;
    margin-bottom: 45px;
    padding-top: 20px;
    padding: 20px 18px 0;
  }
}

.about-mes-img {
  width: 51.5%;
}

@media screen and (max-width: 750px) {
  .about-mes-img {
    width: auto;
    margin: 0 -18px;
  }
}

.about-mes-info {
  width: 48.5%;
  padding-left: 70px;
}

@media screen and (max-width: 750px) {
  .about-mes-info {
    width: auto;
    padding-left: 0;
    margin-top: 45px;
  }
}

.about-mes h2 {
  font-size: 22px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 0.7em;
}

@media screen and (max-width: 750px) {
  .about-mes h2 {
    font-size: 15px;
  }
}

.about-mes-txt p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 1.4em;
}

@media screen and (min-width: 961px) {
  .about-mes-txt p {
    font-size: 17px;
  }
}

@media screen and (max-width: 750px) {
  .about-mes-txt p {
    font-size: 12px;
  }
}

@media screen and (max-width: 750px) {
  .about-mes-img2 {
    margin-top: 30px;
  }
}

.about-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 1500px;
  padding: 0 90px 60px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .about-btns {
    padding: 25px 18px 15px 0;
    display: block;
    width: 48%;
    margin: 0 0 0 auto;
  }
}

.about-btns-btn {
  margin-left: 20px;
}

@media screen and (max-width: 750px) {
  .about-btns-btn {
    margin: 0 0 18px;
  }
}

.about-btns-btn a {
  width: 210px;
  height: 50px;
  border: 1px solid #b3b3b3;
  font-size: 14px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 750px) {
  .about-btns-btn a {
    font-size: 12px;
    height: 37px;
    width: auto;
  }
}

.about-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 90px;
}

@media screen and (max-width: 750px) {
  .about-links {
    padding: 0 18px;
  }
}

.about-links p {
  width: 48.5%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  padding-bottom: 60px;
}

@media screen and (min-width: 1501px) {
  .about-links p {
    font-size: 21.096px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .about-links p {
    font-size: 1.4062vw;
  }
}

@media screen and (max-width: 750px) {
  .about-links p {
    font-size: 12px;
    padding-bottom: 25px;
    width: 48%;
  }
}

.about-links p:nth-child(2n + 1) {
  margin-right: 3%;
}

@media screen and (max-width: 750px) {
  .about-links p:nth-child(2n + 1) {
    margin-right: 4%;
  }
}

.about-links p a {
  display: block;
}

.about-links p .u-zoomWrap {
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .about-links p .u-zoomWrap {
    margin-bottom: 10px;
  }
}

.about-links p img {
  display: block;
}

.about-links p small {
  font-size: 15px;
  font-weight: normal;
  margin-left: 1em;
}

@media screen and (max-width: 750px) {
  .about-links p small {
    font-size: 10px;
  }
}

.about-links-title {
  display: inline-block;
  margin-top: 20px;
}

@media screen and (max-width: 750px) {
  .about-links-title {
    margin-top: 14px;
  }
}

.body-about .page-ttl h1 {
  margin-bottom: 0;
}

.ourofficesIndex-area {
  max-width: 1116px;
  margin: 0 auto;
  padding: 18px 18px 0;
}

@media screen and (max-width: 750px) {
  .ourofficesIndex-area {
    overflow: hidden;
    padding-top: 0;
  }
}

@media screen and (max-width: 750px) {
  .ourofficesIndex-area-img {
    margin: 0 -31px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 750px) {
  .ourofficesIndex-area-colsTtl {
    max-width: 339px;
    margin: 0 auto 0;
  }
}

.ourofficesIndex-area h2 {
  margin-top: 2em;
  margin-bottom: 1.5em;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 750px) {
  .ourofficesIndex-area h2 {
    font-size: 11px;
  }
}

.ourofficesIndex-area-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}

@media screen and (max-width: 750px) {
  .ourofficesIndex-area-cols {
    max-width: 339px;
    margin: 10px auto 0;
  }
}

.ourofficesIndex-area-col:nth-child(1) {
  width: 470px;
}

@media screen and (max-width: 750px) {
  .ourofficesIndex-area-col:nth-child(1) {
    width: 50%;
  }
}

.ourofficesIndex-area-col:nth-child(2) {
  width: 280px;
}

@media screen and (max-width: 750px) {
  .ourofficesIndex-area-col:nth-child(2) {
    width: 50%;
  }
}

.ourofficesIndex-area-col:nth-child(3) {
  width: 330px;
}

@media screen and (max-width: 750px) {
  .ourofficesIndex-area-col:nth-child(3) {
    width: auto;
  }
}

.ourofficesIndex-area-col li {
  font-size: 13px;
  margin-bottom: 1em;
}

@media screen and (max-width: 750px) {
  .ourofficesIndex-area-col li {
    font-size: 11px;
    margin-bottom: 0.6em;
  }
}

.ourofficesIndex-area-col li small {
  font-size: 12px;
  display: block;
}

@media screen and (max-width: 750px) {
  .ourofficesIndex-area-col li small {
    font-size: 10px;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    margin-bottom: 0.5em;
  }
}

.ourofficesIndex-area-col li a:hover {
  text-decoration: underline;
}

.ourofficesIndex-area-cols2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .ourofficesIndex-area-cols2 {
    display: block;
  }
}

.ourofficesIndex-area-cols2 ul:nth-child(1) {
  width: 47%;
}

.ourofficesIndex-area-cols2 ul:nth-child(2) {
  width: 53%;
}

.ourofficesIndex-area-cols3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .ourofficesIndex-area-cols3 {
    display: block;
  }
}

.ourofficesIndex-area-cols3 ul:nth-child(1) {
  width: 60%;
}

.ourofficesIndex-area-cols3 ul:nth-child(2) {
  width: 40%;
}

.ouroffices-kv {
  padding-top: 17px;
}

@media screen and (max-width: 750px) {
  .ouroffices-kv {
    margin-top: -30px;
  }
}

.ouroffices-kv-img {
  padding-top: 460px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 1280px) {
  .ouroffices-kv-img {
    padding-top: 35.94%;
  }
}

@media screen and (max-width: 750px) {
  .ouroffices-kv-img {
    padding-top: 300px;
  }
}

.ouroffices-lead {
  text-align: center;
  padding: 80px 18px;
  max-width: 856px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .ouroffices-lead {
    padding: 40px 18px;
  }
}

.ouroffices-lead h2 {
  font-size: 24px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.7;
}

@media screen and (max-width: 750px) {
  .ouroffices-lead h2 {
    font-size: 16px;
  }
}

.ouroffices-lead p {
  font-size: 15px;
  line-height: 2;
  text-align: left;
}

@media screen and (min-width: 961px) {
  .ouroffices-lead p {
    font-size: 17px;
  }
}

@media screen and (max-width: 750px) {
  .ouroffices-lead p {
    font-size: 13px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.ouroffices-img {
  max-width: 1136px;
  margin: 0 auto 50px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .ouroffices-img {
    margin-bottom: 25px;
  }
}

.ouroffices-img-img {
  text-align: center;
}

.ouroffices-img-cap {
  margin-top: 1em;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .ouroffices-img-cap {
    font-size: 10px;
    margin-top: 0.8em;
  }
}

.ouroffices-office {
  max-width: 1136px;
  margin: 0 auto;
  padding: 50px 18px 0;
  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) {
  .ouroffices-office {
    display: block;
    padding-top: 30px;
  }
}

.ouroffices-office-info {
  width: 38%;
}

@media screen and (max-width: 750px) {
  .ouroffices-office-info {
    width: auto;
  }
}

.ouroffices-office-info h2 {
  font-size: 18px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 2em;
}

@media screen and (max-width: 750px) {
  .ouroffices-office-info h2 {
    font-size: 15px;
  }
}

.ouroffices-office-info p {
  font-size: 14px;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 750px) {
  .ouroffices-office-info p {
    font-size: 12px;
  }
}

.ouroffices-office-info p.is-map {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  padding-top: 0.5em;
}

.ouroffices-office-info p.is-map img.is-blank {
  width: 16px;
  margin-left: 7px;
  vertical-align: -10%;
}

.ouroffices-office-map {
  width: 60%;
}

@media screen and (max-width: 750px) {
  .ouroffices-office-map {
    width: auto;
  }
}

.ouroffices-office-gmapWrap {
  position: relative;
  padding-top: 46.4789%;
}

.ouroffices-office-gmapWrap iframe {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.eventIndex-lead {
  padding: 0 18px 0px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

@media screen and (max-width: 750px) {
  .eventIndex-lead {
    padding: 0;
  }
}

.eventIndex-posts {
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 90px 0;
}

@media screen and (max-width: 1280px) and (min-width: 751px) {
  .eventIndex-posts {
    padding: 60px 60px 0;
  }
}

@media screen and (max-width: 750px) {
  .eventIndex-posts {
    padding: 20px 18px 0;
  }
}

.eventIndex-post {
  margin-bottom: 35px;
}

@media screen and (max-width: 750px) {
  .eventIndex-post {
    margin-bottom: 25px;
    display: block;
  }
}

.eventIndex-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .eventIndex-post a {
    display: block;
  }
}

.eventIndex-post-thumb {
  width: 67%;
}

@media screen and (max-width: 750px) {
  .eventIndex-post-thumb {
    width: auto;
  }
}

.eventIndex-post-thumb span {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 59.46%;
}

@media screen and (max-width: 750px) {
  .eventIndex-post-thumb span {
    width: auto;
  }
}

.eventIndex-post-info {
  width: 33%;
  padding: 20px;
  border: 1px solid #aaa;
  border-left: none;
  text-align: center;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 750px) {
  .eventIndex-post-info {
    width: auto;
    border: 1px solid #aaa;
    border-top: none;
  }
}

.eventIndex-post-info h2 {
  font-size: 22px;
  line-height: 1.7273;
  font-weight: bold;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 1em;
}

@media screen and (min-width: 1501px) {
  .eventIndex-post-info h2 {
    font-size: 25.784px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .eventIndex-post-info h2 {
    font-size: 1.7188vw;
  }
}

@media screen and (max-width: 750px) {
  .eventIndex-post-info h2 {
    font-size: 18px;
    line-height: 1.5;
  }
}

.eventIndex-post-info-name {
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 1501px) {
  .eventIndex-post-info-name {
    font-size: 18.752px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .eventIndex-post-info-name {
    font-size: 1.25vw;
  }
}

@media screen and (max-width: 750px) {
  .eventIndex-post-info-name {
    font-size: 11px;
  }
}

.eventIndex-post-catWrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 750px) {
  .eventIndex-post-catWrap {
    display: block;
  }
}

.eventIndex-post-cat {
  font-size: 15px;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}

@media screen and (min-width: 1501px) {
  .eventIndex-post-cat {
    font-size: 17.58px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .eventIndex-post-cat {
    font-size: 1.1719vw;
  }
}

@media screen and (max-width: 750px) {
  .eventIndex-post-cat {
    font-size: 12px;
  }
}

.eventIndex-post-nameWrap {
  height: 80px;
  padding-top: 10px;
}

@media screen and (max-width: 750px) {
  .eventIndex-post-nameWrap {
    height: auto;
    padding-top: 15px;
  }
}

.eventIndex-post-name {
  font-size: 16px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: .2em;
}

@media screen and (min-width: 1501px) {
  .eventIndex-post-name {
    font-size: 18.752px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .eventIndex-post-name {
    font-size: 1.25vw;
  }
}

@media screen and (max-width: 750px) {
  .eventIndex-post-name {
    font-size: 13px;
  }
}

.eventIndex-post-date {
  font-size: 16px;
}

@media screen and (min-width: 1501px) {
  .eventIndex-post-date {
    font-size: 18.752px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .eventIndex-post-date {
    font-size: 1.25vw;
  }
}

@media screen and (max-width: 750px) {
  .eventIndex-post-date {
    font-size: 13px;
  }
}

.event-kv {
  margin-bottom: 80px;
}

@media screen and (max-width: 750px) {
  .event-kv {
    margin-bottom: 40px;
  }
}

.event-kv span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}

@media screen and (min-width: 1501px) {
  .event-kv span {
    font-size: 17.58px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .event-kv span {
    font-size: 1.1719vw;
  }
}

@media screen and (max-width: 750px) {
  .event-kv span {
    font-size: 12px;
  }
}

.event-kv span.name {
  display: block;
  font-size: 23px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0;
  margin-top: .9em;
  margin-bottom: 0;
}

@media screen and (max-width: 750px) {
  .event-kv span.name {
    font-size: 13px;
  }
}

.event-mTtl {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .event-mTtl {
    font-size: 18px;
  }
}

.event-lead {
  text-align: center;
  padding: 90px 18px 90px;
}

@media screen and (max-width: 750px) {
  .event-lead {
    padding: 20px 18px 30px;
  }
}

.event-lead h2 {
  font-size: 24px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 750px) {
  .event-lead h2 {
    font-size: 16px;
  }
}

.event-lead p {
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .event-lead p {
    font-size: 13px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.event-img {
  max-width: 1136px;
  margin: 0 auto 100px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .event-img {
    margin-bottom: 50px;
  }
}

.event-img-img {
  text-align: center;
}

.event-img-cap {
  margin-top: 1em;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .event-img-cap {
    margin-top: 0.8em;
    font-size: 10px;
  }
}

.event-imgImg {
  max-width: 1136px;
  margin: 0 auto 50px;
  padding: 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .event-imgImg {
    margin-bottom: 25px;
  }
}

.event-imgImg-item {
  width: 50%;
  padding: 0 2%;
}

.event-imgImg-img {
  text-align: center;
}

.event-imgImg-cap {
  margin-top: 1em;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .event-imgImg-cap {
    margin-top: 0.8em;
    font-size: 10px;
  }
}

.event-imgMargin {
  max-width: 1136px;
  margin: 80px auto;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .event-imgMargin {
    margin: 40px auto;
  }
}

.event-imgMargin-img {
  text-align: center;
}

.event-imgMargin-cap {
  margin-top: 1em;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .event-imgMargin-cap {
    margin-top: 0.8em;
    font-size: 10px;
  }
}

.event-txt {
  max-width: 836px;
  margin: 80px auto;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .event-txt {
    margin: 40px auto;
  }
}

.event-txt p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 1em;
}

@media screen and (max-width: 750px) {
  .event-txt p {
    font-size: 13px;
  }
}

.event-img100 {
  margin: 80px auto;
}

@media screen and (max-width: 750px) {
  .event-img100 {
    margin: 40px auto;
  }
}

.event-img100-img {
  text-align: center;
}

.event-img100-cap {
  margin-top: 1em;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .event-img100-cap {
    margin-top: 0.8em;
    font-size: 10px;
  }
}

.event-imgTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1136px;
  margin: 0 auto 100px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .event-imgTxt {
    display: block;
    margin: 0 auto 50px;
  }
}

.event-imgTxt-col1 {
  width: 50%;
}

@media screen and (max-width: 750px) {
  .event-imgTxt-col1 {
    width: auto;
    padding-top: 0;
  }
}

.event-imgTxt.is-imgL .event-imgTxt-col1 {
  width: 47%;
}

@media screen and (max-width: 750px) {
  .event-imgTxt.is-imgL .event-imgTxt-col1 {
    width: auto;
  }
}

.event-imgTxt-col1.is-margin {
  padding-left: 60px;
}

@media screen and (max-width: 750px) {
  .event-imgTxt-col1.is-margin {
    padding-left: 0;
  }
}

.event-imgTxt-col1 p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 1em;
}

@media screen and (max-width: 750px) {
  .event-imgTxt-col1 p {
    font-size: 13px;
  }
}

.event-imgTxt-col1 h2 {
  margin-bottom: 0.5em;
}

.event-imgTxt-col2 {
  width: 50%;
}

@media screen and (max-width: 750px) {
  .event-imgTxt-col2 {
    width: auto;
  }
}

.event-imgTxt.is-imgL .event-imgTxt-col2 {
  width: 53%;
}

@media screen and (max-width: 750px) {
  .event-imgTxt.is-imgL .event-imgTxt-col2 {
    width: auto;
  }
}

.event-imgTxt-cap {
  margin-top: 1em;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .event-imgTxt-cap {
    margin-top: 0.8em;
    font-size: 10px;
  }
}

.event-movie {
  max-width: 1136px;
  margin: 0 auto 100px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .event-movie {
    display: block;
    margin: 0 auto 50px;
  }
}

.event-movie-movie video {
  width: 100%;
}

.event-movie-cap {
  margin-top: 1em;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .event-movie-cap {
    margin-top: 0.8em;
    font-size: 10px;
  }
}

.event-team {
  max-width: 1136px;
  margin: 0 auto 0;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .event-team {
    display: block;
    margin: 0 auto;
  }
}

.event-team h2 {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 35px;
}

.event-team ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.event-team li {
  width: 140px;
  margin-right: 20px;
}

.event-team-name {
  margin-top: 1em;
  font-size: 12px;
}

.event-team-memberWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  .event-team-memberWrap {
    margin: 0 -7px;
  }
}

.event-team-member {
  width: 140px;
  margin-right: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .event-team-member {
    width: 33.33%;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 0 7px;
  }
}

.event-team-memberImg img {
  width: 100%;
}

.event-team-memberName {
  font-size: 12px;
  margin-top: 1em;
}

@media screen and (max-width: 750px) {
  .event-team-memberName {
    font-size: 10px;
  }
}

.event-con {
  max-width: 1136px;
  margin: 80px auto;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .event-con {
    margin: 50px auto;
  }
}

.event-con h2 {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .event-con h2 {
    font-size: 18px;
  }
}

.event-con h3 {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .event-con h3 {
    font-size: 16px;
  }
}

.event-con-txt {
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .event-con-txt {
    font-size: 13px;
  }
}

.event-con-txt p {
  margin-bottom: 1em;
}

@media screen and (max-width: 750px) {
  .event-con-cap {
    font-size: 10px;
  }
}

.event-con-movie video {
  width: 100%;
}

@media screen and (min-width: 751px) {
  .event-con-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .event-con-cols.is-valign-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .event-con-cols.is-valign-b {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .event-con-cols.is-valign-b p:last-child {
    margin-bottom: 0 !important;
  }
  .event-con-cols.is-valign-b .event-con-txt {
    position: relative;
    top: 0.7em;
  }
}

@media screen and (max-width: 750px) {
  .event-con-col {
    width: auto !important;
    margin-bottom: 50px;
  }
}

.single-event .m-concept {
  padding: 0;
}

.cultureIndex-lead {
  padding: 0 18px 0px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

@media screen and (max-width: 750px) {
  .cultureIndex-lead {
    padding: 0;
  }
}

.cultureIndex-posts {
  max-width: 1500px;
  margin: 0 auto;
  padding: 65px 90px 0;
}

@media screen and (max-width: 1280px) and (min-width: 751px) {
  .cultureIndex-posts {
    padding: 65px 60px 0;
  }
}

@media screen and (max-width: 750px) {
  .cultureIndex-posts {
    margin-top: 0;
    padding: 0 18px 0;
  }
}

.cultureIndex-post {
  margin-bottom: 40px;
}

@media screen and (max-width: 750px) {
  .cultureIndex-post {
    margin-bottom: 25px;
    display: block;
  }
}

.cultureIndex-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .cultureIndex-post a {
    display: block;
  }
}

.cultureIndex-post-thumb {
  width: 67%;
}

@media screen and (max-width: 750px) {
  .cultureIndex-post-thumb {
    width: auto;
  }
}

.cultureIndex-post-thumb span {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 59.46%;
}

@media screen and (max-width: 750px) {
  .cultureIndex-post-thumb span {
    width: auto;
  }
}

.cultureIndex-post-info {
  width: 33%;
  padding: 20px;
  border: 1px solid #aaa;
  border-left: none;
  text-align: center;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 750px) {
  .cultureIndex-post-info {
    width: auto;
    border: 1px solid #aaa;
    border-top: none;
  }
}

.cultureIndex-post-info h2 {
  font-size: 22px;
  line-height: 1.7273;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 1501px) {
  .cultureIndex-post-info h2 {
    font-size: 25.784px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .cultureIndex-post-info h2 {
    font-size: 1.7188vw;
  }
}

@media screen and (max-width: 750px) {
  .cultureIndex-post-info h2 {
    font-size: 16px;
    line-height: 1.5;
  }
}

.cultureIndex-post-info-name {
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 1501px) {
  .cultureIndex-post-info-name {
    font-size: 18.752px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .cultureIndex-post-info-name {
    font-size: 1.25vw;
  }
}

@media screen and (max-width: 750px) {
  .cultureIndex-post-info-name {
    font-size: 11px;
  }
}

.cultureIndex-post-cat {
  font-size: 15px;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}

@media screen and (min-width: 1501px) {
  .cultureIndex-post-cat {
    font-size: 17.58px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .cultureIndex-post-cat {
    font-size: 1.1719vw;
  }
}

@media screen and (max-width: 750px) {
  .cultureIndex-post-cat {
    font-size: 11px;
  }
}

.culture-kv span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}

@media screen and (min-width: 1501px) {
  .culture-kv span {
    font-size: 17.58px;
  }
}

@media screen and (max-width: 1500px) and (min-width: 751px) {
  .culture-kv span {
    font-size: 1.1719vw;
  }
}

@media screen and (max-width: 750px) {
  .culture-kv span {
    font-size: 12px;
  }
}

.culture-kv-img {
  padding-top: 460px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 750px) {
  .culture-kv-img {
    padding-top: 300px;
  }
}

.culture-lead {
  text-align: center;
  padding: 100px 18px 50px;
}

@media screen and (max-width: 750px) {
  .culture-lead {
    padding: 40px 18px 30px;
  }
}

.culture-lead h2 {
  font-size: 24px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 750px) {
  .culture-lead h2 {
    font-size: 16px;
  }
}

.culture-lead p {
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .culture-lead p {
    font-size: 13px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.culture-logo {
  text-align: center;
  margin: 0 0 100px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .culture-logo {
    margin-bottom: 50px;
  }
}

.culture-img {
  max-width: 1136px;
  margin: 0 auto 100px;
  padding: 0 18px 0;
}

@media screen and (max-width: 750px) {
  .culture-img {
    margin-bottom: 50px;
  }
}

.culture-img-img {
  text-align: center;
}

.culture-imgImg {
  max-width: 1136px;
  margin: 0 auto 100px;
  padding: 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 750px) {
  .culture-imgImg {
    display: block;
    margin-bottom: 50px;
  }
}

.culture-imgImg-item {
  width: 50%;
  padding: 0 2%;
}

@media screen and (max-width: 750px) {
  .culture-imgImg-item {
    width: auto;
  }
}

@media screen and (max-width: 750px) {
  .culture-imgImg-item:nth-child(1) {
    margin-bottom: 50px;
  }
}

.culture-imgImg-img {
  text-align: center;
}

.culture-imgImg-cap {
  margin-top: 1em;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .culture-imgImg-cap {
    margin-top: 0.8em;
  }
}

.culture-imgTxt {
  max-width: 1136px;
  margin: 0 auto 100px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .culture-imgTxt {
    margin-bottom: 50px;
  }
}

.culture-imgTxt-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .culture-imgTxt-cols {
    display: block;
  }
}

.culture-imgTxt-img {
  width: 42%;
}

@media screen and (max-width: 750px) {
  .culture-imgTxt-img {
    width: auto;
  }
}

.culture-imgTxt-cap {
  margin-top: 1em;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .culture-imgTxt-cap {
    margin-top: 0.8em;
  }
}

.culture-imgTxt-info {
  width: 58%;
  padding-left: 40px;
}

@media screen and (max-width: 750px) {
  .culture-imgTxt-info {
    width: auto;
    padding-left: 0;
  }
}

.culture-imgTxt-info h2 {
  font-size: 18px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin: 2em 0 1em;
}

@media screen and (max-width: 750px) {
  .culture-imgTxt-info h2 {
    font-size: 16px;
  }
}

.culture-imgTxt-txt p {
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .culture-imgTxt-txt p {
    font-size: 13px;
  }
}

.culture-imgMargin {
  max-width: 1136px;
  margin: 0 auto 100px;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .culture-imgMargin {
    margin: 0 auto 50px;
  }
}

.culture-imgMargin-img {
  text-align: center;
}

.culture-imgMargin-cap {
  margin-top: 1em;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .culture-imgMargin-cap {
    margin-top: 0.8em;
  }
}

.culture-txt {
  max-width: 836px;
  margin: 80px auto;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .culture-txt {
    margin: 40px auto;
  }
}

.culture-txt p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 1em;
}

@media screen and (max-width: 750px) {
  .culture-txt p {
    font-size: 13px;
  }
}

.culture-img100 {
  margin: 80px auto;
}

@media screen and (max-width: 750px) {
  .culture-img100 {
    margin: 40px auto;
  }
}

.culture-img100-img {
  text-align: center;
}

.culture-img100-cap {
  margin-top: 1em;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .culture-img100-cap {
    margin-top: 0.8em;
  }
}

.culture-con {
  max-width: 1136px;
  margin: 80px auto;
  padding: 0 18px;
}

@media screen and (max-width: 750px) {
  .culture-con {
    margin: 50px auto;
  }
}

.culture-con h2 {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .culture-con h2 {
    font-size: 18px;
  }
}

.culture-con h3 {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .culture-con h3 {
    font-size: 16px;
  }
}

.culture-con-txt {
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .culture-con-txt {
    font-size: 13px;
  }
}

.culture-con-txt p {
  margin-bottom: 1em;
}

@media screen and (max-width: 750px) {
  .culture-con-cap {
    font-size: 10px;
  }
}

.culture-con-movie video {
  width: 100%;
}

@media screen and (min-width: 751px) {
  .culture-con-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .culture-con-cols.is-valign-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .culture-con-cols.is-valign-b {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .culture-con-cols.is-valign-b p:last-child {
    margin-bottom: 0 !important;
  }
  .culture-con-cols.is-valign-b .culture-con-txt {
    position: relative;
    top: 0.7em;
  }
}

@media screen and (max-width: 750px) {
  .culture-con-col {
    width: auto !important;
    margin-bottom: 50px;
  }
}

.single-culture .m-concept {
  padding: 0;
}

.careersIndex-lead {
  padding: 0 18px 0px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

@media screen and (max-width: 750px) {
  .careersIndex-lead {
    padding: 0;
  }
}

.careersIndex-kv-img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 415px;
}

@media screen and (min-width: 1280px) {
  .careersIndex-kv-img {
    height: calc(32.42vw) !important;
  }
}

@media screen and (max-width: 750px) {
  .careersIndex-kv-img {
    height: 210px;
  }
}

.careersIndex-mes {
  text-align: center;
  padding: 90px 18px 25px;
}

@media screen and (max-width: 750px) {
  .careersIndex-mes {
    padding: 35px 18px 30px;
  }
}

.careersIndex-mes-txt p {
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .careersIndex-mes-txt p {
    line-height: 1.8;
    font-size: 11px;
  }
}

.careersIndex-posts {
  max-width: 1116px;
  margin: 0 auto;
  padding: 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.careersIndex-post {
  width: 33%;
  margin-bottom: 50px;
  padding: 0 10px;
}

@media screen and (max-width: 750px) {
  .careersIndex-post {
    width: 50%;
    padding: 0 7px;
    margin-bottom: 40px;
  }
}

.careersIndex-post a {
  display: block;
}

.careersIndex-post-thumb span {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 79.49%;
}

@media screen and (max-width: 750px) {
  .careersIndex-post-thumb span {
    padding-top: 100%;
  }
}

.careersIndex-post-copy {
  font-size: 17px;
  line-height: 1.5294;
  margin: 1em 0 0.5em;
  min-height: 50px;
}

@media screen and (max-width: 750px) {
  .careersIndex-post-copy {
    font-size: 11px;
    margin: 1em 0 0.5em;
    min-height: auto;
  }
}

.careersIndex-post h2 {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 750px) {
  .careersIndex-post h2 {
    font-size: 10px;
  }
}

.careersIndex-post h2 span {
  font-weight: normal;
}

.careersIndex-btns {
  margin-top: 60px;
}

@media screen and (max-width: 750px) {
  .careersIndex-btns {
    margin-top: 30px;
  }
}

.careersIndex-btns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 750px) {
  .careersIndex-btns ul {
    display: block;
    padding: 0 18px;
  }
}

.careersIndex-btns li {
  margin: 0 10px;
}

@media screen and (max-width: 750px) {
  .careersIndex-btns li {
    margin: 0 0 15px;
  }
}

.careersIndex-btns li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.075em;
  width: 280px;
  height: 62px;
  border: 1px solid #B4B4B4;
}

@media screen and (max-width: 750px) {
  .careersIndex-btns li a {
    width: 100%;
    font-size: 12px;
    height: 55px;
  }
}

.careersIndex-btns li a img.is-blank {
  position: relative;
  top: -3px;
  width: 14px;
  margin-left: 5px;
}

@media screen and (max-width: 750px) {
  .careersIndex-btns li a img.is-blank {
    width: 12px;
    margin-left: 5px;
  }
}

.careers-kv-img {
  padding-top: 460px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 1280px) {
  .careers-kv-img {
    padding-top: 35.94%;
  }
}

@media screen and (max-width: 750px) {
  .careers-kv-img {
    padding-top: 210px;
  }
}

.careers-lead {
  max-width: 1136px;
  padding: 0 58px 0 268px;
  margin: 55px auto 85px;
}

@media screen and (max-width: 750px) {
  .careers-lead {
    padding: 0 18px;
    margin: 15px auto 20px;
  }
}

.careers-lead h2 {
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 750px) {
  .careers-lead h2 {
    font-size: 14px;
    margin-bottom: 0.4em;
  }
}

.careers-lead p {
  font-size: 16px;
}

@media screen and (max-width: 750px) {
  .careers-lead p {
    font-size: 10px;
    width: calc(111% + 17px);
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

.careers-lead p b {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.15em;
}

.careers-lead p span {
  font-weight: normal;
  letter-spacing: 0.06em;
}

.careers-flow {
  max-width: 1136px;
  padding: 0 18px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .careers-flow {
    padding: 0 15px;
  }
}

.careers-flow-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.careers-flow-block.is-empty {
  margin-top: -90px;
  margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
  .careers-flow-block.is-empty {
    margin-top: -50px;
    margin-bottom: 10px;
  }
}

.careers-flow-year {
  position: relative;
  width: 250px;
  padding: 0 0 20px 22px;
}

@media screen and (max-width: 750px) {
  .careers-flow-year {
    width: 100px;
    padding: 0 10px 10px;
  }
}

.careers-flow-year:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  bottom: -8px;
  width: 1px;
  background-color: #707070;
}

.careers-flow-year.is-none:before {
  display: none;
}

.careers-flow-yearNum {
  position: relative;
  font-size: 15px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 0.2em;
}

@media screen and (max-width: 750px) {
  .careers-flow-yearNum {
    font-size: 12px;
  }
}

.careers-flow-yearNum.is-txt {
  font-weight: normal;
}

.careers-flow-yearNum + .careers-flow-yearNum {
  margin-top: 0.5em;
}

.careers-flow-yearNum:before {
  content: '';
  display: block;
  position: absolute;
  left: -26px;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #646464;
  border-radius: 50%;
}

@media screen and (max-width: 750px) {
  .careers-flow-yearNum:before {
    top: 5px;
    left: -14px;
  }
}

.careers-flow-yearTxt {
  font-size: 13px;
}

@media screen and (max-width: 750px) {
  .careers-flow-yearTxt {
    font-size: 10px;
    width: 111%;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

.careers-flow-yearTxt.is-project {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
}

@media screen and (max-width: 750px) {
  .careers-flow-yearTxt.is-project {
    font-size: 12px;
  }
}

.careers-flow-yearTxt + .careers-flow-yearNum {
  margin-top: 20px;
}

.careers-flow-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 15px;
  line-height: 2;
  padding-bottom: 60px;
}

@media screen and (max-width: 750px) {
  .careers-flow-info {
    padding-left: 5px;
    font-size: 11px;
    padding-bottom: 30px;
  }
}

.careers-flow-info.is-marginS {
  padding-bottom: 10px;
}

@media screen and (max-width: 750px) {
  .careers-flow-info.is-marginS {
    padding-bottom: 10px;
  }
}

.careers-flow-info h2 {
  font-size: 18px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  margin-bottom: 1.5em;
  line-height: 1.5;
}

@media screen and (max-width: 750px) {
  .careers-flow-info h2 {
    font-size: 12px;
  }
}

.careers-flow-info p {
  margin-bottom: 1.5em;
}

.careers-flow-info ul {
  margin: 0 0 1.5em -1.0em;
}

.careers-flow-info ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.careers-flow-img {
  margin-bottom: 20px;
}

.careers-flow-img p {
  margin-bottom: 0;
}

.careers-flow-note {
  font-size: 10px;
}

.careers-flow-cols4to6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .careers-flow-cols4to6 {
    display: block;
  }
}

.careers-flow-cols4to6Col:nth-child(1) {
  width: 41.6%;
  margin-right: 20px;
}

@media screen and (max-width: 750px) {
  .careers-flow-cols4to6Col:nth-child(1) {
    width: auto;
    margin-right: 0;
  }
}

.careers-flow-cols4to6Col:nth-child(2) {
  width: 58.4%;
}

@media screen and (max-width: 750px) {
  .careers-flow-cols4to6Col:nth-child(2) {
    width: auto;
  }
}

.careers-flow-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 750px) {
  .careers-flow-cols {
    display: block;
  }
}

.careers-flow-cols.is-valign-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.careers-flow-cols.is-valign-b {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.careers-flow-cols.is-valign-b p:last-child {
  margin-bottom: 0 !important;
}

.careers-flow-colsCol {
  position: relative;
  width: 50%;
}

@media screen and (max-width: 750px) {
  .careers-flow-colsCol {
    width: 100% !important;
    margin-bottom: 25px;
  }
}

.careers-flow-colsCol:not(:last-child) {
  margin-right: 20px;
}

@media screen and (max-width: 750px) {
  .careers-flow-colsCol:not(:last-child) {
    margin-right: 0;
  }
}

.careers-flow-imgCap {
  margin-top: 0.5em;
  font-size: 13px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .careers-flow-imgCap {
    font-size: 10px;
  }
}

.careers-flow-imgCap.is-r {
  text-align: right;
}

.careers-flow-info .wp-caption-text {
  margin-top: -10px;
  font-size: 10px;
  line-height: 1.2;
  text-align: right;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .careers-flow-info .wp-caption-text {
    margin-top: 1em;
  }
}

.newsIndex-posts {
  max-width: 1036px;
  margin: 0 auto;
  padding: 70px 18px 0;
}

.newsIndex-posts-inner {
  border-top: 1px solid #828282;
}

.newsIndex-post {
  border-bottom: 1px solid #828282;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  padding: 2em 0;
}

@media screen and (max-width: 750px) {
  .newsIndex-post {
    display: block;
    font-size: 12px;
    padding: 1.5em 0;
  }
}

.newsIndex-post div {
  display: block;
}

.newsIndex-post div:nth-child(1) {
  width: 7em;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 750px) {
  .newsIndex-post div:nth-child(1) {
    display: inline-block;
  }
}

.newsIndex-post div:nth-child(2) {
  width: 6.5em;
  font-family: HelveticaNeueLTW1G-Lt, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.05em;
  color: #919191;
}

@media screen and (max-width: 750px) {
  .newsIndex-post div:nth-child(2) {
    width: auto;
    display: inline-block;
  }
}

.newsIndex-post div:nth-child(3) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 750px) {
  .newsIndex-post div:nth-child(3) {
    margin-top: 0.5em;
  }
}

.newsIndex-postNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 750px) {
  .newsIndex-postNav {
    display: block;
  }
}

.newsIndex-postNav-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 17px 0;
}

@media screen and (max-width: 750px) {
  .newsIndex-postNav-btn {
    margin: 20px 0 0;
  }
}

.newsIndex-postNav-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
  height: 62px;
  border: 1px solid #C8C8C8;
  font-size: 13px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 750px) {
  .newsIndex-postNav-btn a {
    width: 220px;
    height: 47px;
    font-size: 11px;
  }
}

.newsIndex-postNav-btn a .is-blank {
  display: inline-block;
  width: 14px;
  margin-left: 10px;
  vertical-align: baseline;
  position: relative;
  top: 2px;
}

@media screen and (max-width: 750px) {
  .newsIndex-postNav-btn a .is-blank {
    width: 12px;
    margin-left: 8px;
  }
}

.links-links-inner {
  max-width: 1106px;
  margin: 0 auto;
  padding: 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
  .links-links-inner {
    padding: 0 12px;
  }
}

.links-links-link {
  width: 33%;
  padding: 0 14px;
  margin-bottom: 80px;
}

@media screen and (max-width: 750px) {
  .links-links-link {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 40px;
  }
}

.links-links-link h2 {
  position: relative;
  font-size: 17px;
  font-family: HelveticaNeueeTextPro-Bold, HelveticaNeue, Helvetica, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .links-links-link h2 {
    font-size: 10px;
  }
}

.links-links-thumb {
  margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
  .links-links-thumb {
    margin-bottom: 5px;
  }
}

.links .is-blank {
  position: relative;
  top: -3px;
  width: 14px;
  margin-left: 4px;
}

@media screen and (max-width: 750px) {
  .links .is-blank {
    width: 8px;
  }
}

.links-bottomBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 750px) {
  .links-bottomBtns {
    display: block;
  }
}

.links-bottomBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 17px 0;
}

@media screen and (max-width: 750px) {
  .links-bottomBtn {
    margin: 20px 0 0;
  }
}

.links-bottomBtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 48px;
  border: 1px solid #C8C8C8;
  font-size: 13px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 750px) {
  .links-bottomBtn a {
    width: 200px;
    height: 48px;
    font-size: 11px;
  }
}

.links-bottomBtn a .is-blank {
  display: inline-block;
  width: 14px;
  margin-left: 10px;
  vertical-align: baseline;
  position: relative;
  top: 2px;
}

@media screen and (max-width: 750px) {
  .links-bottomBtn a .is-blank {
    width: 12px;
    margin-left: 8px;
  }
}

/* --------------------------------
[サンプルコード]
-----------------------------------
    白文字が太いとき
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;

    画像文字を縮小してぼやけるとき
    backface-visibility;
    -webkit-backface-visibility;

    自動カーニング
    font-feature-settings : 'palt';

    両端揃え
    text-align: justify;
    text-justify: inter-ideograph;

    クリアーフィックス
    .clearfix {zoom: 1;}
    .clearfix:after {
      content: "";
      display: block;
      clear: both;
    }

    スマホ画像切り替え
    <picture>
      <source media="(max-width:767px)" srcset="image_sp.jpg">
      <img src="image.jpg" alt="">
    </picture>

    ダミー画像 GIF形式（39bytes）
    <img src="data:image/gif;base64,R0lGODlhAQABAGAAACH5BAEKAP8ALAAAAAABAAEAAAgEAP8FBAA7" alt="" height="1" width="1">

    NotoSans
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
-------------------------------- */

/*# sourceMappingURL=styles.css.map */
